2006-07-28 Jonathan Chambers <joncham@gmail.com>
[mono.git] / mono / metadata / ChangeLog
blobce5680672b0ce0f64077c4b651ce805e82775967
1 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
3         * object.c (mono_remote_class_vtable): Need to create proxy vtable
4         entries for __ComObject type in addition to ComImport types.
5         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
6         about hash table.
8 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
10         * image.c: avoid tentative loading of modulerefs that contain
11         no metadata (P/Invoke library names).
13 2006-07-28  Dick Porter  <dick@ximian.com>
15         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
16         mono_loader_lock() somewhere, so don't delete the critical section
17         for now.  Found by running and exiting monodevelop.
19 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21         * filewatcher.c: define the inotify syscalls when we're building on
22         linux and have sys/syscall.h. The build system might not have support
23         for inotify but the target system might have it.
25 2006-07-26  Miguel de Icaza  <miguel@novell.com>
27         * domain.c: Documentation updates.
29         * loader.c (mono_free_method): Do not release the method
30         information if we are being profiled, as profilers will use this
31         information at shut down to present some data to the user.
33         This is needed so that the profiler does not crash, as the
34         profiler tends to keep MonoMethods around, and they might become
35         invalid if we free these.
37         (mono_get_method_constrained): Return the original CIL stream
38         method as well, so verification can be performed against it.
40 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
42         * filewatcher.[ch]: support for inotify file system watcher.
43         * icall.c: add new internal calls for the inotify file system watcher.
45 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
47         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
48         #78888.
50 2006-07-20  Dick Porter  <dick@ximian.com>
52         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
53         warning.
55 2006-07-20  Dick Porter  <dick@ximian.com>
57         * threads.c (start_wrapper): Do the thread cleanup while we still
58         hold a reference to its object.  Fixes bug 78123.
60 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
62         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
63         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
64           "managed-to-managed".
65         * icall.c: Redirect string constructors that take sbyte* to
66           ves_icall_System_String_ctor_RedirectToCreateString.
67         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
68           to CreateString () methods with matching signature.
69         * reflection.c: Use original security informations for
70           MONO_WRAPPER_MANAGED_TO_MANAGED.
71         * security-manager.c: Use original security informations for
72           MONO_WRAPPER_MANAGED_TO_MANAGED.
73         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
74           that is a placeholder and only its address should be used.
75         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
76           that is a placeholder and only its address should be used.
78 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
80         Begin implementing COM Interop.
81         * appdomain.c: Increment corlib version.
82         * class.c: Set ComImport classes' parent to __ComObject.
83         * loader.c: Mark cominterop methods as such.
84         * domain.c: Add __ComObject class to MonoDefaults structure.
85         * image.c: Add 2 hashtables to the image for COM Interop related methods
86         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
87         using the mempool allocator
88         
89         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
90         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
91         declaration for mono_metadata_type_dup_mp.
92         
93         * debug-helpers.c: Added strings for two additional wrapper types
94         * object.c: Create proxy objects for ComImport classes
95         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
96         and added __ComObject class to MonoDefaults structure.
97         
98         * object-internals.h: Finish MonoRealProxy definition, and add definition of
99         MonoComInteropProxy and MonoComObject.
100         
101         * marshal.c: Added support for COM Interop
102         (signature_cominterop): Converts managed signature to corresponding
103         unmanaged COM signature.
104         (cominterop_get_function_pointer): gets unmanaged function pointer via
105         COM object vtable
106         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
107         (cominterop_get_method_interface): returns interface type that method is defined on
108         (mono_mb_emit_cominterop_call): emits native call to function pointer
109         gotten from vtable
110         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
111         that matches signature of unmanaged function.
112         (cominterop_get_native_wrapper): wrapper around adjusted method call.
113         (cominterop_get_invoke): forwards call from proxy to __ComObject
114         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
115         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
116         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
117         
118         * marshal.h: Added Marshal icall declarations.
119         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
120         so we can access them in finalizer
121         
122 2006-07-14  Dick Porter  <dick@ximian.com>
124         * object.c (mono_type_initialization_cleanup): Fix a race
125         condition by temporarily commenting out the critical section
126         deletion.
128 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
130         * reflection.c (create_custom_attr): Fix some warnings.
131         (create_custom_attr_data): Ditto.
132         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
133         types. Fixes #78855.
135 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
137         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
139         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
141 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
143         * reflection.c (resolve_object): Add support for DynamicMethod.
145         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
146         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
148 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
150         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
151         don't leak GPtrArray's pdata has we have no use (nor free) for it.
153 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
155         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
156         Fixes #77888.
158 2006-06-30  Raja R Harinath  <rharinath@novell.com>
160         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
161         slightly: remove a shadow local variable.
163 2006-06-29  Raja R Harinath  <rharinath@novell.com>
165         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
166         definition that introduces the virtual function slot.
167         Also fix Coverity #105.
169 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
171         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
172         for dynamic assemblies. Fixes #78724.
174 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
176         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
177         Fixes #78722.
179 2006-06-21  Martin Baulig  <martin@ximian.com>
181         * reflection.c
182         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
183         fixes #76484.
185 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
187         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
189 2006-06-20  Raja R Harinath  <rharinath@novell.com>
191         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
192         nor TYPEREFs.
193         * class.c (mono_class_create_from_typespec): Add 'context' argument.
194         Inflate result if necessary.
195         (mono_class_get_full): Remove old version.  Rename from
196         'mono_class_get' and add 'context' argument.  Pass it to
197         ..._create_from_typespec.
198         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
199         (mono_ldtoken): Revert change below.
201 2006-06-20  Martin Baulig  <martin@ximian.com>
203         * class.c (mono_ldtoken): Don't pass the generic context to
204         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
206 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
208         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
209         and later freeing it. Fixes #78638.
211 2006-06-15  Miguel de Icaza  <miguel@novell.com>
213         * icall.c (mono_class_get_throw): Revert over-zealous error
214         throwing, the caller for mono_class_get_throw will cope with
215         errors when classes are not properly initialized already.
217         The code still copes with loader exceptions though.
219         Fixes the regression in reftype1 and reftype3 from the CAS tests.
220         
221 2006-06-14  Miguel de Icaza  <miguel@novell.com>
223         Fixes the `make run1' version of RuntimeAbort (to be commited,
224         source is in Bugzilla).
225         
226         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
227         FALSE on class loading failure instead of returning true.
229         * class.c (mono_class_create_from_typedef): It is possible for
230         mono_metadata_interfaces_from_typedef_full to fail if a class is
231         not found, cope with this.
232         
234 2006-06-14  Dick Porter  <dick@ximian.com>
236         * socket-io.c: 
237         * process.c: Fix a bunch of signed/unsigned warnings from gcc
238         4.1.1
240 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
242         * culture-info-table.h : oops, forgot to make it nsync with r61548.
244 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
246         * icall.c: Another fix for building mono in Visual Studio.
248 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
250         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
251         
252 2006-06-09  Martin Baulig  <martin@ximian.com>
254         * debug-mono-symfile.c: Put this back and really fix it this
255         time. Sorry for all the trouble.
257 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
259         * icall.c (mono_class_get_throw): Fix a warning.
260         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
261         ReflectionTypeLoadException if needed. Fixes #78606.
263         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
264         (mono_class_init): Ditto.
266         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
267         ref_only exceptions.
268         (mono_loader_clear_error): Make this work even if there is no error.
270 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
272         * object-internals.h marshal.c marshal.h icall.c: Implement method 
273         Marshal.GetComSlotForMethodInfo using internal call.
275 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
277         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
278         a function for signalling it.
280         * class.c (mono_class_from_typeref): Use the new kind of loader error when
281         a referenced assembly is not found.
283         * loader.c (mono_loader_error_prepare_exception): Add support for 
284         LOADER_ERROR_ASSEMBLY. Fix formatting.
286 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
288         * domain.c appdomain.c class-internals.h marshal.c: Add support 
289         for VARIANT marshalling on windows and increment corlib version
290         since Variant struct was added.
292 2006-06-03  Miguel de Icaza  <miguel@novell.com>
294         * debug-mono-symfile.c: Revert Martin's previous patch which broke
295         stack trace line information:
297         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
298         (Martin) when looking up B which is between A and C, return A not C.
300         Bug is #78573.
302         Thanks to Alexander Olk for tracking this down.
304 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
306         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
307         
308         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
309         avoid clobbering its value.
310         (mono_string_to_lpstr): Fix a warning on windows.
312 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
314         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
316         * reflection.c loader.c: Removed references to 'dummy' flag.
318         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
320         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
321         it gets GC tracking.
323         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
324         GC tracking.
325         
326         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
328         * marshal.c threadpool.c: Update callers of mono_async_result_new.
330         * appdomain.c: Bump corlib version.
332 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
334         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
335         CEE_STIND_REF when working with object references.
337 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
339         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
340         Fixes #78539.
342 2006-05-30  Miguel de Icaza  <miguel@novell.com>
344         * loader.c (method_from_memberref): Fix argument value for
345         mono_loader_set_error_method_load (I was passing the MonoClass
346         instead of the class name char *).
348 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
350         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
351         CEE_STIND_REF when working with object references.
353 2006-05-30  Martin Baulig  <martin@ximian.com>
355         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
356         mono_method_full_name() change and replace the ':' with a '.'
357         here.
359 2006-05-30  Martin Baulig  <martin@ximian.com>
361         * debug-mono-symfile.c
362         (mono_debug_symfile_lookup_location): Fix the algorithm:
363         when looking up B which is between A and C, return A not C.
365 2006-05-29  Martin Baulig  <martin@ximian.com>
367         * mono-debug.h
368         (MonoDebugMethodInfo): Make the typedef public.
369         (MonoDebugSourceLocation): New public struct.
371         * mono-debug.c
372         (mono_debug_source_location_from_address): Removed.
373         (mono_debug_source_location_from_il_offset): Removed.
374         (mono_debug_il_offset_from_address): Removed.
375         (mono_debug_address_from_il_offset): Removed.
376         (mono_debug_lookup_method): New public function.
377         (mono_debug_lookup_source_location): New public function; replaces
378         the old mono_debug_source_location_from_*() functions; see the
379         inline documentation.
380         (mono_debug_free_source_location): New public function.
381         (mono_debug_print_stack_frame): New public function; see the
382         inline documentation.
384         * debug-mono-symfile.c
385         (mono_debug_find_source_location): Renamed into
386         mono_debug_symfile_lookup_location(); only take a
387         `MonoDebugMethodInfo *' and an `offset' argument; added inline
388         documentation.
389         (mono_debug_find_method): Renamed into
390         mono_debug_symfile_lookup_method().
392 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
394         * assembly.c (mono_assembly_open_full): Dont overwrite the status
395         returned by mono_image_open_full ().
397         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
398         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
399         #78517.
401         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
402         #78518.
404 2006-05-27  Miguel de Icaza  <miguel@novell.com>
406         * class.c (mono_class_from_typeref): handle missing images
407         earlier, deals with bug #78418.   Refactor code; 
409         Fix a warning introduced in my previous commit (some stale code
410         from before I revisited my patch).
412         * class.c (mono_class_create_from_typedef): On failure, remove the
413         class from the MonoImage->class_cache as the class is not
414         initialized;   Fixes the leak pointed out by Paolo.
416 2006-05-25  Dick Porter  <dick@ximian.com>
418         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
419         DeleteCriticalSections until I figure out which one may still be
420         sometimes locked when mono_thread_cleanup is called.
422 2006-05-24  Dick Porter  <dick@ximian.com>
424         * threads.c (mono_thread_cleanup): Move the threading cleanup out
425         of mono_thread_manage and back into its own function, so it can be
426         called after the finalizer thread has finished.
428         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
430 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
432         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
433         Fixes #78495.
435         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
436         with non-blittable elements.
437         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
439 2006-05-24  Martin Baulig  <martin@ximian.com>
441         * mono-debug-debugger.h (MonoDebuggerEvent): Added
442         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
444         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
445         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
446         `mono_debugger_event_handler' to NULL.
448 2006-05-24  Martin Baulig  <martin@ximian.com>
450         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
452 2006-05-24  Martin Baulig  <martin@ximian.com>
454         * mono-debug-debugger.h
455         (mono_debugger_create_notification_function): Added
456         `MonoCodeManager *' argument.
458 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
460         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
462 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
464         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
465         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
466         implementation.
468 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
470         * icall.c: precise GC support: objects can't be stored in unmanaged
471         memory anymore, even if they are kept alive by other references: since
472         they can move the GC needs to be able to always find them.
474 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
476         * object.c: precise GC support for static fields. Support
477         for moving GCs: write barriers and pinned allocation for interned
478         strings.
480 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
482         * domain.c, domain-internals.h: precise GC support for the MonoDomain
483         structure.
485 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
487         * class.c, gc.c: sgen and precise GC updates.
489 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
491         * marshal.h, marshal.c: added write barrier wrapper and precise type
492         fixes.
494 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
496         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
497         support.
499 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
501         * reflection.c: precise and sgen GC updates.
503 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
505         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
507 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
509         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
511 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
513         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
514         MONO_TYPE_OBJECT. Fixes #78462.
516 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
518         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
519         and blittable types.
521 2006-05-17  Miguel de Icaza  <miguel@novell.com>
523         * class.c (mono_class_get_exception_for_failure): Implement parts
524         of a TODO: if the loader error is set (instead of the class
525         error), we return a Loader exception that can be properly thrown
526         elsewhere.
528         This was exposed by some Winforms 2.0 code that I tried to run
529         (Atsushi pointed me to it).
531 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
533         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
534         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
535         
536         * marshal.c (emit_marshal_vtype): Add limited support for 
537         UnmanagedType.LPStruct. Fixes #78427.
539         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
540         Applied a patch from kangaroo to fix #77523.
542 2006-05-17  Martin Baulig  <martin@ximian.com>
544         * threads.c
545         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
546         (debugger_thread_created): Removed.
547         (debugger_thread_exited): Removed.
549 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
551         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
553         * object-internals.h (MonoReflectionResource): Sync with managed version.
555 2006-05-12  Wade Berrier <wberrier@novell.com>
557         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
559 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
561         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
562         functions try to allocate from the image mempool.
564 2006-05-12  Dick Porter  <dick@ximian.com>
566         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
568 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
570         * object.c: The FieldGetter and FieldSetter methods require the full
571         name of the class, not only the name. Fixes bug #78277.
573 2006-05-11  Miguel de Icaza  <miguel@novell.com>
575         * loader.c (method_from_memberref): Do not pass the NULL klass to
576         mono_loader_set_error_() methods.  Pass the non-NULL value
577         (class). 
579 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
581         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
582         (mono_assembly_close): Null out assembly->image->references after freeing it.
584         * image.c (mono_image_close): Free image->references.
585         
586         * reflection.c (mono_image_basic_init): Fix a small memory leak.
588 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
590         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
591         before checking if it's NULL (g_assert).
593 2006-05-10  Martin Baulig  <martin@ximian.com>
595         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
596         I thought I already killed that two months ago, but now it somehow reappeared.
598 2006-05-10  Martin Baulig  <martin@ximian.com>
600         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
602 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
604         * reflection.c: Allocate memory for dynamically created methods in the image
605         mempools.
607 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
609         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
610         don't use the ad pointer before checking if it's NULL (g_assert).
612 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
614         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
615         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
617         * marshal.c: Allocate all signatures from mempools.
619         * marshal.c: Allocate some more signatures from mempools.
621 2006-05-09  Miguel de Icaza  <miguel@novell.com>
623         * object.c (mono_load_remote_field): The code used to provide a
624         temporary variable for returning results if the user did not
625         provide a result pointer.  But our temporary variable was allocted
626         on the satck.
628         Fix calling code to always pass a result area.   Coverity ID 103.
630 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
632         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
633         value, not the old. Fixes #78312.
634         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
636         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
637         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
638         per-image cache.
640         * assembly.c (mono_assembly_close): Free image->references.
642         * assembly.c (mono_assembly_names_equal): Fix a warning.
643         (mono_assemblies_cleanup): Cleanup more global data.
645         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
647         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
648         ptr_cache and image->modules.
650         * image.c (mono_image_init): Allocate array_cache lazily.
651         
652 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
654         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
655         behavior was changed recently and has bad side effects.
657 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
659         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
660         
661         * assembly.c (mono_assembly_close): Remove a debug printf.
663         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
665         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
666         to also allow for temporary references between mono_image_open ()/close ().
668         * domain.c (get_runtimes_from_exe): Add a FIXME.        
670 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
672         * marshal.c: Fix support for dynamic methods.
674         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
676         * marshal.c (mono_marshal_cleanup): New cleanup function.
678         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
679         image mempools.
681         * class.c (mono_class_init): Fix leaking class->nested_classes.
683         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
685         * image.c (mono_image_init): Initialize the new cashes.
687         * image.c (mono_image_close): Destroy the new cashes.
689         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
691         * mempool.c (mono_mempool_strdup): New helper function.
693         * class-internals.h: Add prototype for mono_loader_unlock ().
695         * domain.c (mono_jit_info_table_find): Fix a warning.
696         (mono_debugger_check_runtime_version): Ditto.
698         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
699         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
700         functions to these modules.
702         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
703         metadata modules.
704         
705         * marshal.c (mono_free_bstr): Fix a warning.
707         * assembly.c (mono_assembly_open_full): Fix another small leak.
709         * object.c: Fix some unload leaks in the remoting code.
711         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
712         function.
714         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
716         * reflection.c: Fix some unload leaks in dynamic assemblies.
718 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
720         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
721         * marshal.h: Add BSTR support on Win32
722         * icall.c: Add BSTR icalls
723         * metadata.h: Add BSTR enums
725 2006-04-28  Miguel de Icaza  <miguel@novell.com>
727         Work to catch the crash from #76795 and turn it into an
728         exception.   As I stubbed out pieces of the VisualBasic support,
729         I found a number of places where the code was failing and I added
730         checks to those places. 
731         
732         * metadata.c (do_mono_metadata_parse_generic_class): Make this
733         function return a status code.  If we fail to parse the signature
734         from mono_metadata_parse_generic_inst, return FALSE.
736         * loader.c (mono_get_method_from_token): If we fail to load the
737         method (mono_class_get) return NULL.   
739         * (method_from_memberref): Return NULL if we are unable to parse
740         the method signature
742         (mono_loader_error_prepare_exception): Since we now use the
743         loader_error flag internally to stop processing, and obtaining
744         exceptions that might be thrown will walk this code path the
745         proper way of going from a MonoLoaderError into a
746         MonoException was convoluted.   This new routine encapsulates the
747         process of turning the error into an exception and *clearing* the
748         error afterwards.
749         
750 2006-04-27  Miguel de Icaza  <miguel@novell.com>
752         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
753         with missing assemblies), and to cope with:
755                 * Missing fieldref from a non-existing assembly.
756                 * Missing methodref from a non-existing assembly.
758         The first batch of work to address *some* of the issues from 76661.
759         
760         * object.c (mono_class_create_runtime_vtable): If we fail to
761         initialize the class raise the exception here. 
763         * metadata.c (mono_class_get_overrides_full): If any methods fail
764         to load return the failure to the caller.
766         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
767         flagging assemblies that failed to load.   
769         Do not crash if we are unable to load the assembly.
771         (mono_assembly_close): Do nothing with REFERENCE_MISSING
772         assemblies. 
774         * loader.c (mono_loader_set_error_type_load): Change the
775         convention to always pass unallocated strings, so we make our own
776         copies (I know our own code had duplicated strings before, but
777         this keeps the normal conventions).
778         (method_from_memberref): Call mono_loader_set_error_method_load
779         for all possible failures of loading the class. 
780         Remove assert, turn into a loader error.
782         (mono_loader_error_to_exception): Move this routine from mini
783         (mini_loader_error_to_exception) there was no need to have that in
784         mini. 
786         * class.c (mono_class_from_typeref): If we were not able to load
787         the assembly with mono_assembly_load_reference, call the
788         mono_loader_set_error_type_load to register the problem.
790         (mono_class_setup_fields): If we fail to load the type from
791         mono_metadata_parse_type_full, call mono_class_set_failure and
792         break from the loop.
794         If class->exception_type is set, we do not layout the fields as
795         that might crash the runtime, and instead return (from breaking
796         from the previous loop).
798         (mono_class_setup_vtable): This now returns a boolean indicating
799         whether the table was properly setup.   The decision is driven by
800         mono_class_get_overrides_full which might run into non-existing
801         methods. 
802         
803         (mono_class_init): Returns TRUE on success or FALSE if there was a
804         problem in loading the type (incorrect assemblies, missing
805         assemblies, methods, etc).
807         When we call mono_class_setup_fields we also check for a potential
808         error inside this call (either a class exception or a general
809         loader exception).
811         (mono_class_create_from_typedef): If the parent fails to load
812         (calling mono_class_get_full) return NULL.
813         
814         ** Important **
816         calls to mono_metadata_parse_type_full should be checked
817         everywhere and set the mono_class_set_failure
818         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
820         The current patch checks the places where my manually constructed
821         tests show the errors are showing up, but we should do it
822         everywhere. 
824         ** Important2 **
826         mono_class_init return values should be tested everywhere, like
827         the previous case this is something that we should audit
828         everywhere and not only on the cases exposed by the tests I
829         created. 
831 2006-04-26  Miguel de Icaza  <miguel@novell.com>
833         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
834         boolean parameter and instead pass the information on `options'
835         parameter (FileOptions).
837         * icall.c: Register the new signature for MonoIO.Open.
839         * debug-helpers.c (dis_one): Trying to understand how coverity
840         works.  Fix Run 5, item 78.
842 2006-04-26  Dick Porter  <dick@ximian.com>
844         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
845         dereference.
847 2006-04-25  Martin Baulig  <martin@ximian.com>
849         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
851         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
852         debugger_thread_created().
853         (debugger_gc_push_all_stacks): Don't handle the main thread in any
854         special way.
855         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
856         (mono_debugger_finalize_threads): New function; undo the effects
857         of mono_debugger_init_threads().
858         (mono_debugger_create_all_threads): Removed.
860 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
862         * image.c (mono_image_close): Tidy up trace messages.
864         * assembly.c (mono_assembly_close): Ditto.
866         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
867         no longer references an already freed assembly. Fixes #78168.
869 2006-04-21  Dick Porter  <dick@ximian.com>
871         * threads.c (mono_thread_detach): Fix reference counting when
872         detaching threads.
874 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
876         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
877         #78155.
879 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
881         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
882         (mono_type_to_stind): Ditto.
884         * marshal.c: Use the new helper functions to simplify code.
886         * image.c (mono_image_close): Add some code for help debug assembly unloading
887         problems.
889         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
890         image mempool.
892         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
893         assembly was already loaded in another appdomain. Fixes #78083.
895 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
897         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
898         referenced assemblies.
899         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
901         * domain.c (mono_domain_free): Add a trace message.
903         * appdomain.c (add_assemblies_to_domain): Ditto.        
905         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
906         field.  
908 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
910         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
912 2006-04-12  Martin Baulig  <martin@ximian.com>
914         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
915         `USE_INCLUDED_LIBGC'.   
917 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
919         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
920         the patch contains ../ and a small directory name later. Hopefully fixes
921         #78035.
923 2006-04-10  Martin Baulig  <martin@ximian.com>
925         Clean up the debugger's thread-handling code.
927         The debugger's thread-handling code has been moved from
928         ../mini/debug-debugger.c to threads.c.  We now iterate directly
929         over the `threads' hash, keep track of exiting threads and also
930         use proper locking.
932         We can now debug XSP and XSP based applications with the debugger.
934         * object-internals.h (MonoThread): Added `gpointer end_stack'.
936         * threads.h
937         (MonoThreadCallbacks): Removed; this was only used by the debugger.
938         (mono_install_thread_callbacks): Likewise.      
940         * threads.c (mono_thread_callbacks): Removed.
941         (debugger_thread_created, debugger_thread_exited): New static functions.
942         (start_wrapper): Call debugger_thread_created().
943         (thread_cleanup): Call debugger_thread_exited().
944         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
945         (mono_debugger_init_threads): New public function.
946         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
947         iterate directly over the `threads' hash and also use proper locking.
949         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
951         * mono-debug-debugger.h
952         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
954 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
956         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
957         argument type=array. Fixes #78057.
959 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
961         * culture-info-table.h : regenerated. Fixed bug #69652.
963 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
965         * loader.c metadata.c: Reapply a variant r59116.
966         
967         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
969         * class.c (mono_class_setup_interface_offsets): New internal function.
971         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
972         interfaces too. Fixes #77398.
974         * reflection.c (encode_cattr_value): Add support for 
975         parameter type=object, argument type=array.
976         (load_cattr_value): Ditto. Fixes #77916.
978         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
979         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
981         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
982         a byval char array and CharSet is Ansi.
984         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
986 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
988         * metadata.c: Add some locking comments.
989         
990         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
991         mempool.
992         (mono_metadata_free_method_signature): Don't free the signature itself.
994         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
996         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
997         reference the same MonoImage.
998         (mono_assembly_load_from_full): Add an assert.
1000 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
1002         * image.c (mono_image_close): Don't put the image we are about to free into the
1003         loaded_images_guid_hash.
1005         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
1006         to reduce code duplication.
1008         * marshal.c: Register the native functions called by this module as icalls, to
1009         somewhat centralize the creation of MonoMethodSignature's.
1011         * loader.c (mono_method_signature): Add a cache for method signatures.
1013         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
1014         the parameter attributes of a method.
1015         (mono_metadata_parse_method_signature_full): Refactored the computation of
1016         parameter attributes into a separate function. Also avoid one allocation in
1017         most cases.
1019         * assembly.c (mono_assembly_close): Ditto.
1021         * image.c (mono_image_close): Log trace messages with INFO level.
1023         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
1025         * image.c reflection.c: Correct reference counting of image modules.
1026         
1027         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
1028         of this function from the image mempool.
1029         
1030         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
1031         to allow more cached types to be used.
1033         * mono-debug.c (mono_debug_add_method): Appled patch from
1034         David S. Miller  <davem@sunset.davemloft.net>: Access 
1035         minfo->lexical_blocks[] entry elements using read32().
1037 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
1039         * loader.c (mono_free_method): No longer free the method header for non-dynamic
1040         methods as it is allocated from the mempool.
1042         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
1043         image mempool.
1045         * metadata-internals.h: Add comments describing the reference counting scheme
1046         used for MonoImage and MonoAssembly.
1048         * image.c assembly.c reflection.c: Rework reference counting of images and 
1049         assemblies so they are freed when the runtime is shut down. Free some 
1050         additional memory structures when an image is unloaded.
1051         
1052 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
1054         * class.c loader.c reflection.c: Allocate more data structures in
1055         the image mempool.
1057 2006-03-31  Miguel de Icaza  <miguel@novell.com>
1059         * icall.c
1060         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
1061         build on pre glib 2.4 systems.
1063 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
1065         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
1067         * icall.c: Fix some warnings.
1069 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
1071         * culture-info-table.h : regenerated.
1073 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
1075         * threads.c, object-internals.h, verify.c: changed the culture caching
1076         code to use a normal MonoArray for storage so the GC can keep track of
1077         them easily. Fixed bits of the cache logic, too and simplified the
1078         code.
1080 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
1082         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
1083         thread for non-Boehm GCs.
1085 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
1087         * domain.c, object.c, domain-internals.h: reduce the amount of memory
1088         needed to keep track of the data for static fields.
1090 2006-03-29  Raja R Harinath  <rharinath@novell.com>
1092         Fix #75172
1093         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
1094         for interface classes.  Use 'num_methods' instead.
1095         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
1096         before using '->vtable_size' field.
1098 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
1100         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
1101         doesn't contain managed pointers, so use a normal hashtable.
1103 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
1105         * reflection.c, class-internals.h, domain.c: fixed handling of types
1106         used as values for objects in custom attributes (bug #77915):
1108 2006-03-24  Martin Baulig  <martin@ximian.com>
1110         * class.c (mono_class_setup_fields): Added support for generic
1111         instances; fixes #77580.
1113 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1115         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
1117 2006-03-24  Dick Porter  <dick@ximian.com>
1119         * file-io.c (get_file_attributes): More stat macro breakage.
1120         Fixes bug 77759.
1122 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
1124         * profiler.c: added the file=filename option in the default profiler
1125         to output the profile data to filename.
1127 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1129         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
1130         bug #77877.
1132 2006-03-22  Martin Baulig  <martin@ximian.com>
1134         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
1135         allocated `MonoClassField *' in `fb->handle'.
1137 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1139         * class.c, image.c, metadata-internals.h: implemented new mechanism to
1140         allocate interface ID to save memory and allow better ID reuse on
1141         appdomain unload. setup_generic_vtable () removal from Martin.
1143 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
1145         * object.h, appdomain.c, domain.c, exception.c, icall.c,
1146         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
1147         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
1148         write barriers for reference stores with managed objects accessed with
1149         C structures in the runtime and in embedding programs.
1151 2006-03-20  Raja R Harinath  <rharinath@novell.com>
1153         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
1154         'interface_id' and 'max_interface_id' fields of MonoClasses
1155         representing open generic types.
1157 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
1159         * object.h, object.c, icall.c: added functions to deal with
1160         storing valuetypes that contain references in managed objects.
1161         * reflection.c, string-icalls.c, threads.c, marshal.c: small
1162         fixes and comments around uses of mono_array_addr ().
1164 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
1166         * object.h, icall.c, monitor.c: object.GetHashCode ()
1167         implementation that supports the moving garbage collector.
1169 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
1171         * icall.c, threads-types.h, threads.c: implemented finalizer for
1172         LocalDataStoreSlot.
1174 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
1176         * metadata.c (mono_type_size): Add a fixme.
1177         (mono_type_stack_size): Ditto.
1179         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
1180         'type_forwarders' field.
1182         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
1183         attribute from net 2.0.
1185         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
1186         from class.c.
1188         * class.c (mono_class_setup_fields): Fix a warning.
1189         
1190         * class.c (mono_class_from_name): Add support for assemblyref entries
1191         in the EXPORTEDTYPE table.
1193         * reflection.c: Add support for handling type forwarders under net 2.0.
1195         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
1196         
1197 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
1199         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
1200         overwriting entries in ModuleBuild->types, also clean up the code
1201         a little. Fixes #77774.
1203 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
1205         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
1206         load friend assembly info when present.
1208 2006-03-14  Raja R Harinath  <rharinath@novell.com>
1210         Fix crasher on gtest-158.cs.
1211         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
1212         the return value if the MonoClass we want is yet in an
1213         inconsistent state.
1214         * class.c (mono_class_create_from_typedef): Add an comment
1215         explaining an order dependency between mono_class_setup_parent and
1216         mono_class_setup_mono_type.
1218 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
1220         * class.c: documentation updates and events bug fix.
1222 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
1224         * class.c: some cleanup, locking fixes.
1226 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
1228         * class.c: fix the generics code to setup nested
1229         type info to the instantiated type (bug #77770).
1231 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
1233         * marshal.c: fixed a few type correctness issues.
1235 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
1237         * loader.c: the Set/Get/Addrtess array methods should be public.
1239 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
1241         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
1242         
1243         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
1244         info->wrapper.
1246 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
1248         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
1250         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
1252         * mempool.c (mono_mempool_alloc): Speed this up a bit.
1253         (mono_mempool_alloc0): Ditto.
1255 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1257         * socket-io.c:
1258         (create_object_from_sockaddr): it was allocating 4 extra bytes
1259         for the AF_UNIX data. Fixes bug #77747.
1261 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
1263         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
1265 2006-03-09  Dick Porter  <dick@ximian.com>
1267         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
1268         Fixes bug 76966 again.
1270 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
1272         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
1273         names from r57532
1274         * appdomain.c: Bumped corlib version to 48 (due to r57532)
1276 2006-03-07  Martin Baulig  <martin@ximian.com>
1278         * object.c
1279         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
1281 2006-03-07  Martin Baulig  <martin@ximian.com>
1283         * class.c
1284         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
1285         regression introduced in r56970; see gtest-252.cs.
1287         * loader.c (mono_get_method_constrained): Correctly handle generic
1288         methods; see gtest-253.cs.
1290 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
1292         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
1294 2006-03-04  Martin Baulig  <martin@ximian.com>
1296         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
1297         compute the parent type at runtime, just like we're already doing
1298         it for interfaces.
1300         * reflection.c
1301         (mono_reflection_bind_generic_parameters): Don't compute the
1302         parent type anymore.
1304         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
1306 2006-03-04  Martin Baulig  <martin@ximian.com>
1308         * mono-debug-debugger.h
1309         (mono_debugger_create_notification_function): Allocate memory at
1310         runtime and return a pointer to it.
1312 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
1314         * assembly.c: Fix windows build.
1315         
1316         * assembly.c: Fix build.
1318         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
1320         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
1321         
1322 2006-03-03  Dick Porter  <dick@ximian.com>
1324         * process.c
1325         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
1326         Check parameters before dereferencing them.  Fixes Aaron's part of
1327         bug 77393.
1329 2006-03-03  Raja R Harinath  <rharinath@novell.com>
1331         Fix performance regression.
1332         * loader.c (find_method_in_class): Add 'from_class' argument.
1333         Rename 'klass' argument to 'in_class'.  The signature is compared
1334         against the method in 'in_class', and the corresponding method is
1335         returned from 'from_class'.
1336         (find_method): Walk both 'in_class' and 'from_class' in parallel.
1337         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
1338         type definition and generic instantiation in parallel.
1339         (mono_get_method_constrained): Update to changes.
1341 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
1343         * threads.c: make sure the domain is correct, too when doing
1344         mono_thread_attach ().
1346 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
1348         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
1349         windows. Fixes #77683.
1351 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
1353         * object.h, *: introduced specific way to set elements of an array
1354         of references to be used as write barrier. Still need to audit the
1355         uses of mono_array_addr.
1357 2006-03-01  Miguel de Icaza  <miguel@novell.com>
1359         * object-internals.h: New field to cache the assmebly name, patch
1360         from Tambet Ingo (tambet@ximian.com)
1362 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
1364         * decimal.h, class-internals.h, metadata-internals.h,
1365         file-io.h: mark a few function declarations as internal, to
1366         reduce the number of PLT entries.
1368 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1370         * file-io.c: fix typo in warning message.
1372 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
1374         * loader.c: on unix, lookup the "*A" version of a function
1375         if charset is auto as a second option before failing.
1377 2006-02-28  Raja R Harinath  <rharinath@novell.com>
1379         * class.h (mono_class_inflate_generic_method): Revert to two
1380         argument version.
1381         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
1382         (mono_class_inflate_generic_method_full): Add.
1383         * class.c (mono_class_inflate_generic_method_full): Rename from
1384         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
1385         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
1386         * loader.c, reflection.c: Update to changes.
1388 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
1390         * icall.c: const fixes and small improvements.
1392 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1394         * threadpool.c: for asynchronous connect(), enable the same workaround
1395         for BSD 6 as for the Mac. Fixes bug #77637.
1397 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
1399         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
1400         formatted classes. Fixes #77524.
1402 2006-02-24  Raja R Harinath  <rharinath@novell.com>
1404         * class.c (inflate_generic_type): Add a couple more
1405         micro-optimizations.
1406         (inflate_generic_context): Don't use the 'gmethod' from
1407         'inflate_with'.
1408         (mono_class_inflate_generic_method): If the method has generic
1409         parameters, but the passed-in context doesn't have a 'gmethod',
1410         create one.  Use the possibly simplified generic instantiation
1411         from the declaring class instead of the one passed in.
1413 2006-02-24  Raja R Harinath  <harinath@gmail.com>
1415         Make generic method signature and method header handling lazy.
1416         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
1417         (inflate_generic_header): Likewise.
1418         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
1419         parameter to avoid inflating types.
1420         (mono_get_inflated_method): Empty out.
1421         * class.h (mono_class_inflate_generic_method): Update to changes.
1422         * loader.c (mono_get_method_from_token): Don't parse signature for
1423         generic methods, nor methods of generic classes.
1424         (mono_method_signature): Rename from 'mono_method_signature'.
1425         Inflate signature on demand.
1426         (mono_method_get_header): Inflate method header on demand.
1427         * reflection.c: Update to changes.
1429 2006-02-23  Raja R Harinath  <rharinath@novell.com>
1431         * metadata.c (mono_metadata_inflate_generic_inst): If the
1432         instantiation is closed, don't bother expanding it in the new
1433         context.
1434         * class.c (inflate_generic_class): If the generic instantiation
1435         doesn't change after inflation, return the argument itself.
1436         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
1437         Add bounds checks.
1438         (inflate_generic_context): If neither the generic class nor the
1439         generic method instantiations change, return the original context.
1440         * reflection.c (mono_method_get_object): Do
1441         'mono_get_inflated_method' before accessing the ->klass field.
1442         (inflate_mono_method): Don't create a MonoGenericMethod unless
1443         necessary.
1444         (inflate_method): Don't pass a constructed type as the declaring
1445         type of a methodbuilder.
1447 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
1449         * object.c: fix memory overwrite.
1451 2006-02-22  Dick Porter  <dick@ximian.com>
1453         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
1454         it doesn't work any more.
1455         (mono_threads_request_thread_dump): Fix unused variable warnings.
1457 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
1459         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
1460         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
1461         the public header file.
1463 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
1465         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
1467 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
1469         * class-internals.h, object.c: reduce the size of MonoVTable
1470         and store the interface_offsets array at negative offsets.
1472 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
1474         * metadata.c: tweak table descriptors data structures to reduce
1475         size and runtime relocations.
1477 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
1479         * marshal.c: fix some types and opcodes to be type-safe
1480         in marshaling wrappers.
1482 2006-02-21  Ankit Jain  <jankit@novell.com>
1484         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
1486 2006-02-21  Raja R Harinath  <rharinath@novell.com>
1488         * metadata.c (get_constraints): Relax debugging checks for monodis.
1490 2006-02-21  Ankit Jain  <jankit@novell.com>
1492         * metadata.c (mono_metadata_load_generic_params): Move the code
1493         checking for ambiguous generic params from here to mono/dis/get.c
1494         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
1496 2006-02-21  Raja R Harinath  <harinath@gmail.com>
1498         Fix assertion triggered when compiling nemerle.
1499         * class.c (mono_get_shared_generic_inst): Rename from
1500         get_shared_inst and make non-static.
1501         * loader.c (mono_get_shared_generic_method): New.  Used to create
1502         the MonoGenericContext-equivalent of a MonoGenericContainer.
1503         (mono_get_method_from_token): Initialize the 'context' field of
1504         the created MonoGenericContainer.
1505         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
1506         * metadata.c (get_constraints): Add sanity check.
1507         * class-internals.h: Add new internal methods.
1509         * reflection.c (verify_safe_for_managed_space): New sanity check.
1510         Currently checks that owner-less generic parameters aren't allowed
1511         in managed space.
1512         (mono_type_get_object): Use it.
1513         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
1514         that are now in mono_type_get_object.
1515         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
1517 2006-02-19  Raja R Harinath  <harinath@gmail.com>
1519         * metadata.c (mono_type_create_from_typespec): Rename from
1520         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
1521         argument and caching of types in the generic container.
1522         (unwrap_arrays, find_generic_param): Remove.
1523         * metadata-internals.h: Update.
1524         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
1526 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
1528         * class.c (mono_class_get_exception_for_failure): Fix a warning.
1530         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
1531         return values. Fixes #77581.
1533         * class.c (mono_fnptr_class_get): Switch name and name_space.
1535         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
1536         classes and add support for [In, Out] attributes.
1537         (mono_marshal_free_asany): Ditto. Fixes #77524.
1539 2006-02-18  Raja R Harinath  <harinath@gmail.com>
1541         * class.c (mono_class_from_generic_parameter): Make more robust to
1542         incomplete MonoGenericContainers from monodis.
1544 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
1546         * class-internals.h: added some more exception types.
1547         * class.c, metadata.c: added a few checks to handle missing
1548         types.
1550 2006-02-17  Raja R Harinath  <rharinath@novell.com>
1552         Use owner-less generic-params some more.
1553         * class.c (my_mono_class_from_generic_parameter): Remove.
1554         (mono_class_from_generic_parameter): Handle null image,
1555         param->name and param->owner.
1556         (mono_class_from_mono_type): Update.
1557         (mono_class_create_from_typespec): Remove 'container' parameter.
1558         If that parameter is non-null, the result is always inflated by
1559         'mono_class_get_full' anyway.
1560         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
1561         parameter.
1562         (mono_class_get_full): Update.
1564         * class.c (inflate_generic_type) [GENERICINST]: If the generic
1565         instance is not open, don't bother inflating.
1566         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
1567         parse metadata for inflated classes.
1568         (_mono_class_get): Change GenericContext* parameter to
1569         GenericContainer*.
1570         (mono_class_create_from_typespec): Likewise.  Simplify, and
1571         implement trivially.  All the cases are handled in
1572         mono_class_from_mono_type.  Don't inflate returned class.
1573         (mono_class_get_full): Delegate GENERICINST optimization to
1574         inflate_generic_type.
1575         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
1577 2006-02-16  Dick Porter  <dick@ximian.com>
1579         * socket-io.c (create_object_from_sockaddr): Fix typo.
1580         (create_sockaddr_from_object): Check array lengths before
1581         potentially accessing items off the end.
1582         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
1583         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
1584         (ves_icall_System_Net_Sockets_Socket_Send_internal)
1585         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
1586         length checks to avoid wraparound overflows.
1587         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
1588         contents of the array of sockets
1589         (hostent_to_IPHostEntry2)
1590         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
1591         Check return value of inet_ntop ().
1592         (addrinfo_to_IPHostEntry): Fix typo
1594 2006-02-16  Raja R Harinath  <rharinath@novell.com>
1596         Type metadata parsing doesn't use generic-instantiation information.
1597         * metadata.c (mono_metadata_parse_array_full): Change
1598         MonoGenericContext* parameter to MonoGenericContainer*.
1599         (mono_metadata_parse_type_full): Likewise.
1600         (mono_type_create_from_typespec_full): Likewise.
1601         (mono_metadata_parse_mh_full): Likewise.
1602         (mono_metadata_parse_generic_inst): Likewise.
1603         (do_mono_metadata_parse_generic_class): Likewise.
1604         (do_mono_metadata_parse_type): Likewise.
1605         * metadata-internals.h: Update to changes.
1606         * class.c (mono_class_find_enum_basetype): Likewise.
1607         (mono_class_setup_fields): Likewise.
1608         (mono_class_create_from_typespec): Likewise.
1609         * loader.c (method_from_methodspec): Likewise.
1610         (mono_get_method_from_token): Likewise.
1611         (mono_method_get_header): Likewise.
1613 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
1615         * marshal.c: handle additional GENERICINST case (patch from
1616         Thong Nguyen <tum@veridicus.com>).
1617         Fix a few cases where LDIND_I/STIND_I was used for references.
1619 2006-02-16  Raja R Harinath  <rharinath@novell.com>
1621         * reflection.c (mono_reflection_get_token): Remove unused variable.
1623 2006-02-16  Martin Baulig  <martin@ximian.com>
1625         * reflection.c (mono_reflection_get_token): Add support for fields
1626         in instantiated generic types.
1628         * icall.c
1629         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
1631 2006-02-15  Martin Baulig  <martin@ximian.com>
1633         * icall.c
1634         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
1635         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
1636         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
1637         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
1639 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
1641         * class.c, metadata.c, metadata.h, object.c, icall.c,
1642         marshal.c: changed mono_type_get_underlying_type () to do
1643         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
1644         Fixed handling of instantiated generic valuetypes (bug #75479).
1646 2006-02-15  Raja R Harinath  <rharinath@novell.com>
1648         * metadata.c (mono_metadata_decode_signed_value): Simplify.
1649         Delegate to mono_metadata_decode_value, and work on the returned value.
1651         * icall.c (ves_icall_MonoType_GetGenericArguments):
1652         Add consistency check here too.
1653         
1654 2006-02-15  Ankit Jain  <jankit@novell.com>
1656         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
1657         char/short etc.
1659 2006-02-15  Ankit Jain  <jankit@novell.com>
1661         * metadata.c (mono_metadata_decode_signed_value): New function to decode
1662         signed values, used only for representing lower bounds of arrays.
1663         (mono_metadata_parse_array_full): Use new
1664         mono_metadata_decode_signed_value to decode lower bounds.
1666 2006-02-14  Martin Baulig  <martin@ximian.com>
1668         * reflection.c
1669         (mono_reflection_get_token): Support "MonoGenericMethod" and
1670         "MonoGenericCMethod" and allow generic instances / methods.
1672 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
1674         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
1675         to obtain the terminal size using an ioctl.
1677         * object.c (mono_nullable_init): Revert this as nullable reference
1678         types are not valid.
1679         (mono_nullable_box): Ditto.
1681 2006-02-09  Dick Porter  <dick@ximian.com>
1683         * threads.c (mono_thread_detach): Drop a reference to the thread
1684         we're detaching.
1686 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
1688         * object.c (mono_nullable_init): Handle nullable reference types.
1689         (mono_nullable_box): Ditto. Fixes #77446.
1691 2006-02-07  Martin Baulig  <martin@ximian.com>
1693         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
1695 2006-02-07  Ankit Jain  <jankit@novell.com>
1697         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
1698         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
1699         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
1700         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
1701         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
1702         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
1704 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
1706         * class.c (mono_class_create_generic): Set type_token as well.
1708         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
1709         compatible with MS.
1711 2006-02-02  Martin Baulig  <martin@ximian.com>
1713         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
1714         has never been used so far.
1716 2006-02-02  Martin Baulig  <martin@ximian.com>
1718         * mono-debug-debugger.h: Changed comment at the top of this file;
1719         the header is not installed, but it's safe to #include it from
1720         within the JIT.
1722         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
1723         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
1725 2006-02-02  Martin Baulig  <martin@ximian.com>
1727         * mono-debug.h
1728         (MonoSymbolTable): Removed the `metadata_info' field.
1730         * mono-debug.c
1731         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
1733         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
1734         (mono_debugger_add_builtin_types): Removed.
1735         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
1736         (mono_debugger_create_notification_function): We now operate on a
1737         pre-allocated area; take a `gpointer' and return `void'.
1739         * mono-debug-debugger.c
1740         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
1741         (mono_debugger_add_builtin_types): Removed.
1743 2006-02-02  Martin Baulig  <martin@ximian.com>
1745         * threads.c (mono_debugger_create_all_threads): New public method.
1747 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
1749         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
1750         breaks on several platforms.
1752 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
1754         * assembly.c: the VS.NET build doesn't supply default values for
1755         MONO_ASSEMBLIES and MONO_CFG_DIR.
1757 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
1759         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
1760         helper function.
1762         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
1764         * loader.c (method_from_memberref): Fix a warning.
1766         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
1768         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
1769         with explicit layout. Fixes #77433.
1771 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
1773         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
1774         max_interface_id is initialized before using it. Fixes #77398.
1775         (ves_icall_Type_GetInterfaces): Ditto.
1777 2006-01-30  Raja R Harinath  <rharinath@novell.com>
1779         * metadata.c (mono_metadata_parse_method_signature_full): Don't
1780         allocate memory for parameter attributes when parsing memberref
1781         signatures.
1782         * loader.c (mono_loader_set_error_method_load): Don't warn.
1783         (method_from_memberref): Ensure MissingMethodException gets thrown
1784         if method is not found.  Make warning more informative.
1786 2006-01-29  Raja R Harinath  <harinath@gmail.com>
1788         Fix #77397
1789         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
1790         return true if is byref.
1791         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
1792         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
1793         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
1795 2006-01-27  Raja R Harinath  <rharinath@novell.com>
1797         Fix tests/find-method.2.il
1798         * loader.c (find_method, find_method_in_class): Remove is_inflated
1799         argument.  Revert 2006-01-18 change.
1800         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
1801         is generic, search for method in its generic definition.
1802         * class.c (mono_class_setup_vtable_general): Print generic
1803         arguments of generic types in debugging printf.
1805 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
1807         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
1809         * threads.c (mono_threads_request_thread_dump): New helper function.
1811 2006-01-25  Raja R Harinath  <rharinath@novell.com>
1813         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
1815 2006-01-25  Ankit Jain  <jankit@novell.com>
1817         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
1818         move definition to ..
1819         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
1820         
1821 2006-01-25  Ankit Jain  <jankit@novell.com>
1822             Raja R Harinath  <rharinath@novell.com>
1824         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
1825         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
1826         as necessary.
1828 2006-01-25  Martin Baulig  <martin@ximian.com>
1830         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
1831         `MonoDebuggerThread' into debug-debugger.c.
1833 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
1835         * profiler.c: fix printing of data.
1837 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
1839         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
1840           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
1842 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
1844         * object.c: fix deadlock related to string interning.
1846 2006-01-23  Martin Baulig  <martin@ximian.com>
1848         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
1850         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
1852 2006-01-23  Martin Baulig  <martin@ximian.com>
1854         * mono-debug.h: Moved the prototypes of some functions which are
1855         used by the JIT here from mono-debug-debugger.h.
1857 2006-01-21  Martin Baulig  <martin@ximian.com>
1859         * Makefile.am: Don't install mono-debug-debugger.h.
1861 2006-01-21  Martin Baulig  <martin@ximian.com>
1863         * mono-debug-debugger.h: Enforce the private status of this header
1864         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
1865         Moved some stuff from mono-debugger-jit-wrapper.h here.
1867 2006-01-20  Raja R Harinath  <rharinath@novell.com>
1869         * class.c (mono_class_from_typeref): Add a sanity test to help
1870         catch lack of assembly load/search hooks.
1872 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
1874         * marshal.c (emit_struct_conv): Relax the fields with same offset
1875         check even more. Fixes #77230.
1877 2006-01-18  Martin Baulig  <martin@ximian.com>
1879         * loader.c (find_method_in_class): Added `gboolean is_inflated'
1880         argument; if false, we compare the uninstantiated signatures.
1881         (method_from_memberref): Compare the uninstantiated signatures;
1882         fixes #76417.
1884 2006-01-18  Robert Jordan  <robertj@gmx.net>
1886         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
1887         Clear the weak link. Fixes bug #77170.
1889         * gc.c (mono_gchandle_free):
1890         Reflect *-gc.c changes (tiny optimization).
1892 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
1894         * metadata.c (mono_metadata_signature_dup): Applied patch from
1895         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
1896         Fixes #77288.
1898 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
1900         * marshal.c (emit_struct_conv): Allow fields with the same offset when
1901         marshalling from native to managed code. Fixes #77230.
1903 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1905         * threadpool.c: fix problem (Mac only) when more than one asynchronous
1906         connect. Fixes bug #77020.
1908 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
1910         * class.c: fixed id assignement for nested interfaces (bug #77275).
1911         Added also better info for --print-vtable debugging.
1913 2006-01-12  Martin Baulig  <martin@ximian.com>
1915         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
1916         interfaces on-the-fly; fixes #76625.
1918         * class-internals.h
1919         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
1920         don't need that anymore.
1922 2006-01-12  Miguel de Icaza  <miguel@novell.com>
1924         * socket-io.c
1925         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
1926         To avoid initing the nested_classes when not needed I turned the
1927         PeerCredData as a toplevel internal class, as it has to be shared
1928         anyways. 
1930         Fixes the CASA issue.
1932 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
1934         * domain.c: Accessors for MonoJitInfo
1936         * profiler-private.h: Add jitinfo to the end jit hook
1938         * profiler.[ch]: Define new hooks, called after jitting which give
1939         the MonoJitInfo that was compiled
1941 2006-01-10  Martin Baulig  <martin@ximian.com>
1943         * class.c (mono_class_setup_events): Add support for generic
1944         classes; fixes #76440.
1946 2006-01-06  Raja R Harinath  <rharinath@novell.com>
1948         Fix #77160.
1949         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
1950         on passed-in method.
1952 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
1954         * object.c (mono_runtime_invoke_array): Add Nullable support.
1956         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
1958 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
1960         * file-io.c: Don't consider sockets as directory and avoid an endless
1961         loop. Fix bug #76966.
1963 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
1965         * object.c (mono_nullable_init): New helper function.
1966         (mono_nullable_box): Ditto.
1968         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
1970         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
1972         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
1973         
1974 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
1976         * class.c (mono_class_is_assignable_from): Make T assignable to 
1977         Nullable<T>.
1979 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
1981         * appdomain.c: Bump corlib version to 46.
1982         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
1983         serialization purpose) and changed ves_icall_System_Reflection_
1984         Assembly_get_code_base signature to accept a boolean (to escape, or 
1985         not, the assembly code base).
1987 2005-12-23  Dick Porter  <dick@ximian.com>
1989         * icall.c: 
1990         * threads-types.h: 
1991         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
1992         CreateEvent icall now returns "created" boolean parameter.
1994 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
1996         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
1997         #76967.
1999         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
2000         when attr_klass is an interface. Fixes #77045.
2002 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
2004         * marshal.c (emit_struct_conv): Fix previous patch.
2005         
2006         * marshal.c (emit_struct_conv): Add a check for fields with the same
2007         offset.
2009 2005-12-20  Raja R Harinath  <rharinath@novell.com>
2011         Fix regression in Mono.C5.
2012         * class.c (mono_class_create_generic): If 'klass' is an interface
2013         set up the interface offsets.
2014         (mono_class_is_assignable_from): Don't throw away generic arguments.
2016 2005-12-19  Raja R Harinath  <rharinath@novell.com>
2018         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
2019         type parameters.
2021 2005-12-15  Raja R Harinath  <rharinath@novell.com>
2023         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
2024         dead store.
2025         (do_mono_metadata_parse_generic_class): Don't pass the current
2026         generic context when parsing the type being instantiated: it
2027         cannot use it, anyway.
2029         * loader.c (method_from_memberref): Don't inflate a signature if
2030         it doesn't contain any type parameters.
2032 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
2034         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
2036 2005-12-14  Martin Baulig  <martin@ximian.com>
2038         * class.c
2039         (mono_type_get_name_recurse): Don't return null for type
2040         parameters and open generic classes.
2041         (mono_class_setup_methods): Don't exclude generic instances.
2042         (mono_get_unique_iid): Use different IDs for different
2043         instantiations of the same generic type.
2044         (mono_class_setup_vtable): Only use setup_generic_vtable() for
2045         open generic instances; create a normal vtable for closed generic
2046         instances.
2047         (mono_class_setup_vtable_general): We're now also called for
2048         closed generic instances.
2050         * reflection.c
2051         (mono_reflection_bind_generic_parameters): Correctly use
2052         mono_metadata_lookup_generic_inst() everywhere.
2054 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
2056         * object.c (mono_class_create_runtime_vtable): Call 
2057         mono_class_setup_vtable ().
2059         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
2060         function.
2061         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
2062         #76959.
2064         * loader.c (mono_loader_set_error_type_load): Print the type load
2065         warnings to the console so they are more visible to the user.
2066         (mono_loader_set_error_method_load): Ditto.
2068         * reflection.c (ensure_runtime_vtable): Revert the last change as it
2069         is still broken.
2070         
2071         * reflection.c (ensure_runtime_vtable): Fix build.
2073         * reflection.c (ensure_runtime_vtable): Disable an optimization which
2074         doesn't work in all cases.
2076 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
2078         * object.c (mono_array_new_full): Treat a single dimensional array
2079         with 0 lower bounds as an szarray. Fixes #76973.
2081         * reflection.c (custom_attr_visible): Really fix this.
2083 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
2085         * reflection.c (custom_attr_visible): Allow nested public attributes
2086         as well.
2088         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
2089         interface check.
2091 2005-12-12  Raja R Harinath  <harinath@gmail.com>
2093         * class.c (set_generic_param_owner): Delete.
2094         (mono_class_create_from_typedef): Don't set ->owner field of
2095         generic parameters to "param containers" of enclosing classes.
2096         * reflection.c (mono_reflection_initialize_generic_parameter):
2097         Likewise.
2099 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
2101         * reflection.c (custom_attr_visible): Fix build.
2103 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
2105         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
2106         private attributes.
2107         
2108         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
2109         handling of null parameter defaults.
2111 2005-12-09  Raja R Harinath  <rharinath@novell.com>
2113         * class.c (mono_class_from_generic_parameter): Don't set
2114         klass->generic_container.
2115         (my_mono_class_from_generic_parameter): Likewise.
2117 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
2119         * reflection.c (load_public_key): Fix a warning.
2120         (method_encode_code): Fix unaligned accesses.
2122 2005-12-07  Martin Baulig  <martin@ximian.com>
2124         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
2126         * reflection.c
2127         (write_generic_param_entry): Encode our custom attrs.
2129         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
2131 2005-12-07  Martin Baulig  <martin@ximian.com>
2133         * reflection.c (encode_new_constraint): Removed; we don't use the
2134         `NewConstraintAttribute' anymore.
2136 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
2138         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
2139         not fire a TypeResolve event when Assembly.GetType () is called.
2141 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
2143         Beginning of support for nullable types in the runtime. Parts of
2144         this patch are from Martin.
2146         * appdomain.c (MONO_CORLIB_VERSION): Bump
2148         * domain.c (mono_init_internal): get the nullable type
2150         * class.c (mono_class_is_nullable): New method
2151         (mono_class_get_nullable_param): New mehod
2152         (mono_class_create_generic): In types T? set cast_class to T
2154         * class-internals.h (MonoDefaults): new nullable default class
2155         (mono_class_get_nullable_param, mono_class_get_nullable_param):
2156         new methods.
2158 2005-12-05  Raja R Harinath  <rharinath@novell.com>
2160         * metadata.c (select_container): New.  Refactor code to select the
2161         appropriate GenericContainer given the type of generic parameter
2162         we are looking for.
2163         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
2164         not a MonoGenericContext.  Use select_container.  Update parameters.
2165         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
2166         and MONO_TYPE_MVAR.
2167         (unwrap_arrays): Remove duplicate tests.
2168         (find_generic_param): Rename from 'has_same_context'.  Now walks a
2169         generic instantiated class to find any arguments that are generic
2170         parameters.
2171         (mono_type_create_from_typespec_full): Use find_generic_param to
2172         avoid evicting some generic instantiations from the typespec
2173         cache.
2175 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
2177         * reflection.c: fixed writing of doubles on ARM FPA.
2179 2005-12-02  Robert Jordan  <robertj@gmx.net>
2181         * icall.c: Fixed EventInfo.ReflectedType (#76829).
2183 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2185         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
2186         least on SUSE 10 they are not the same (on debian, they are just the
2187         same thing).
2189 2005-12-01  Raja R Harinath  <rharinath@novell.com>
2191         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
2192         DeclaringType for VARs and MVARs.
2193         * class.c (set_generic_param_owner): Fix initialization of owner
2194         fields.
2196 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
2198         * icall.c: fixed Enum.ToObject() to correctly convert the values.
2200 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2202         * threadpool.c: workaround for a bug that shows up on the Mac:
2203         select()+connect() on a blocking socket is not like it should
2204         be, so we proceed to connect() in that case, wasting the I/O
2205         threadpool thread until connect succeedes. Fixes bug #75436.
2207 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2209         * threadpool.c: fix typo when setting file descriptor states.
2211 2005-11-28  Raja R Harinath  <rharinath@novell.com>
2213         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
2214         * metadata.c (mono_metadata_parse_method_signature_full): Don't
2215         create a temporary signature container.
2216         (mono_metadata_parse_generic_param): Update to changes.
2217         (mono_type_create_from_typespec_full): Update to changes.
2218         * loader.c (method_from_memberref): Don't use a
2219         MonoGenericContainer while parsing a memberref signature.
2220         (method_from_methodspec): Remove dead-store of the 'container'
2221         variable.  It's overwritten before use.
2223         * metadata.c (mono_type_create_from_typespec_full): Make debugging
2224         checks tighter.
2225         (mono_metadata_parse_generic_param): Likewise.
2226         * loader.c (find_method_in_class): Does not need a
2227         MonoGenericContainer.  Use 'mono_method_signature' rather than
2228         'mono_method_signature_full'.
2229         (find_method, mono_get_method_constrained, method_from_memberref):
2230         Update to changes.
2232         * metadata.c (mono_type_create_from_typespec_full): Ensure that
2233         owner-less generic-parameters are never evicted from the typespec
2234         cache.
2236         * loader.c (method_from_memberref): Don't use the current context
2237         when parsing signatures.
2238         (method_from_methodspec, mono_get_method_from_token): Update to changes.
2240         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
2241         side-effects in g_assert.
2242         * loader.c (mono_get_method_from_token): Resolve klass earlier so
2243         that we don't potentially lose information.
2245 2005-11-26  Dick Porter  <dick@ximian.com>
2247         * icall.c:
2248         * threads.c: icalls to implement basic (ie, not named)
2249         System.Threading.Semaphore.
2251 2005-11-24  Dick Porter  <dick@ximian.com>
2253         * process.c
2254         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
2255         Use GetProcessId() if it's available.
2257 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
2259         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
2261 2005-11-23  Raja R Harinath  <rharinath@novell.com>
2262             Ankit Jain  <jankit@novell.com>
2264         * loader.c (mono_get_method_from_token): Initialize 'method' field
2265         of all generic parameters before parsing the signature.  Remove
2266         code that "fixed"-up MVAR references.
2268 2005-11-23  Ankit Jain  <jankit@novell.com>
2270         * metadata.c (mono_metadata_has_generic_params):
2271         (mono_metadata_load_generic_param_constraints):
2272         (mono_metadata_load_generic_params): Move duplicate code ...
2273         (mono_metadata_get_generic_param_row): ... here. Returns the
2274         first row-id in GenericParam table for a given owner (token).
2275         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
2276         prototype.
2278 2005-11-23  Raja R Harinath  <rharinath@novell.com>
2279             Ankit Jain  <jankit@novell.com>
2281         * metadata.c (mono_metadata_class_equal): Pass signature_only when
2282         comparing VARs too.
2283         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
2284         type->data.generic_param only if the type is an MVAR.
2285         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
2286         leak owner-less VARs and MVARs into managed space.
2288 2005-11-21  Martin Baulig  <martin@ximian.com>
2290         * class-internals.h
2291         (MonoMethod): Moved the `generic_container' here from
2292         `MonoMethodNormal' since we now also need it for
2293         `MonoMethodPInvoke';
2294         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
2295         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
2296         an union containing both `MonoMethodNormal' and
2297         `MonoMethodPInvoke'.
2299         * loader.c
2300         (mono_get_method_from_token): Allow implementing generic methods
2301         as interncalls.
2303         * threads.c
2304         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
2305         icall.
2307 2005-11-17  Dick Porter  <dick@ximian.com>
2309         * icall.c: 
2310         * process.h: 
2311         * process.c: Split the Process Start_internal icall into
2312         ShellExecuteEx_internal and CreateProcess_internal, which are
2313         called depending on whether UseShellExecute is true.  Fixes bug
2314         76670.
2316         * appdomain.c (MONO_CORLIB_VERSION): Incremented
2318 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
2320         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
2321         'msize' parameters, use the information in 'mspec' instead.
2322         (emit_object_to_ptr_conv): Ditto.
2324         * marshal.c (emit_struct_conv): Handle explicit layout structs with
2325         fields out of order. Fixes #76733.
2327 2005-11-17  Ankit Jain  <jankit@novell.com>
2329         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
2331 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
2333         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
2334           bug #76575.
2336 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
2338         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
2339         for types with non-auto layout. Fixes #76717.
2341 2005-11-16  Ankit Jain  <jankit@novell.com>
2343         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
2344         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
2345         if generic_context is null.
2346           (mono_metadata_generic_param_equal): param->owner can be null.
2347           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
2348         null.
2350 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
2352         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
2353         the correct value.
2355 2005-11-15  Martin Baulig  <martin@ximian.com>
2357         * object.c (set_value): Use mono_class_from_mono_type() instead of
2358         the hack for generic instances; fixes #76136.
2360 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
2362         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
2363         fields.
2365         * image.c (load_metadata_ptrs): Initialize the new fields.
2367         * reflection.c (create_dynamic_mono_image): Ditto.
2369         * reflection.c (build_compressed_metadata): Use the new fields.
2371         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
2372         icall.
2374         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
2375         icall.
2376         
2377 2005-11-15  Ankit Jain  <jankit@novell.com>
2378             Raja R Harinath  <harinath@gmail.com>
2380         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
2381         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
2382         new per-generic_container cache if the cached MonoType's context matches
2383         the current context.
2384           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
2385         to the expected context.
2386           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
2388 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2390         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
2391         we changed the signature of an icall.
2392         * icall.c: Modify to mono_double_ParseImpl return true/false 
2393         depending on the success, instead of throwing the exception. This will
2394         help us in Double.TryParse methods.
2395         
2396 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
2398         * marshal.c (emit_marshal_object): Throw an exception when
2399         marshalling 'object' instead of crashing. Fixes #76696.
2401 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
2403         * class-internals.h: Add prototype for mono_type_get_full_name ().
2405 2005-11-11  Dick Porter  <dick@ximian.com>
2407         * threads.c (mono_thread_manage): Make sure the main thread has
2408         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
2410 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
2412         * loader.c (mono_loader_set_error_type_load): Log a warning to the
2413         console about the missing type.
2414         (mono_loader_set_error_method_load): Ditto.
2416 2005-11-09  Miguel de Icaza  <miguel@novell.com>
2418         * mono-config.c (mono_get_config_dir): Set the system defaults if
2419         none is specified.
2421         * assembly.c (mono_set_dirs): New API entry point to set the
2422         assembly and the config directory in one call
2424 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
2426         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
2427         the ftnptr was created from a delegate in a domain other than the
2428         current domain. Fixes #75377.
2430         * exception.h exception.c: Add mono_get_exception_not_supported ().
2432 2005-11-08  Martin Baulig  <martin@ximian.com>
2434         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
2436 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
2438         * security-manager.h: Added definitions to deal with strongname key 
2439         pairs bigger (and smaller) than 1024 bits.
2440         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
2441         adjust wrt the public key length being used.
2443 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
2445         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
2446           Windows build (r51396-51397).
2448 2005-11-03  Martin Baulig  <martin@ximian.com>
2450         * class.c (mono_class_setup_vtable_general): Also add generic
2451         methods to the vtable; fixes #76581.
2453 2005-11-01  Miguel de Icaza  <miguel@novell.com>
2455         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
2456         sure that we lookup GetString method from the System.Text.Encoding
2457         class, not the derived class or we get an empty method.
2459         Fixed class #76612.
2461 2005-10-25  Miguel de Icaza  <miguel@novell.com>
2463         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
2464         if it has been previously set (embedders). 
2466         Make mono_set_rootdir available also on Unix.
2468 005-10-24  Robert Jordan  <robertj@gmx.net>
2470         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
2472 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
2474         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
2475         only calls which are made to native code use this flag.
2477         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
2479 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
2481         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
2482         Add support for FieldBuilders.
2484 2005-10-29  Martin Baulig  <martin@ximian.com>
2486         * mono-debug.c
2487         (mono_debug_using_mono_debugger): New public method; returns
2488         whether we're running inside the debugger.
2490 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
2492         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
2493         for Method/Constructor/FieldBuilders.
2495 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
2497         * reflection.c (module_add_cattrs): Save custom attributes for global methods
2498         and fields as well.
2500 2005-10-26  Martin Baulig  <martin@ximian.com>
2502         * mono-debug-debugger.c
2503         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
2505 2005-10-24  Raja R Harinath  <harinath@gmail.com>
2507         * icall.c (base64_to_byte_array): Don't pass an out-of-range
2508         integer to isspace.
2510 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
2512         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
2513         when passing valuetypes byref. Fixes #76502.
2515 2005-10-19  Jackson Harper  <jackson@ximian.com>
2517         * profiler.c: Don't put a . in front of types that are not in a
2518         namespace.
2520 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
2522         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
2524 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
2526         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
2527         #76436.
2528         (mono_marshal_get_ldflda_wrapper): Fix a warning.
2530 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2532         * assembly.c metadata-internals.h icall.c: Define an additional
2533         parameter for mono_assembly_name_parse_full, so we can avoid creating
2534         S.R.AssemblyName.Version when no version info wasn't passed.
2535         
2536 2005-10-09  Miguel de Icaza  <miguel@novell.com>
2538         * class.c (mono_type_get_full_name): Reimplement method that was
2539         removed. 
2541         * image.c: Some docs
2543 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
2545         * profiler.c (output_newobj_profile): Fix printing of Total memory
2546         on x86.
2548 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
2550         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
2552 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
2554         * threads.c: remove debug output.
2556 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
2558         * threads.c (mono_thread_manage): Fix crashes if more than 64
2559         threads need to be aborted. Hopefully fixes #75899.
2561         * assembly.c (mono_stringify_assembly_name): New helper function.
2563         * class.c: Use mono_stringify_assembly_name instead of the similar
2564         static function.
2566         * assembly.h assembly.c: Add support for calling a postload search 
2567         hook if an assembly cannot be loaded.
2569         * appdomain.c: Register new search hooks which call the AssemblyResolve
2570         events in AppDomain. Fixes #75231
2572 2005-10-07  Martin Baulig  <martin@ximian.com>
2574         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
2575         methods without debug info.
2577 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
2579         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
2580         wrappers.
2582 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2584         * file-io.c: now that we return symlinks, use lstat and, when the file
2585         is a symbolic link, stat, to get the file attributes. Also avoid the
2586         conversion to/from utf16/external.
2588 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
2590         * class.c (mono_class_layout_fields): Compute klass->has_references
2591         correctly if an embedded valuetype is not yet initialized. Fixes
2592         #76331.
2594 2005-10-04  Martin Baulig  <martin@ximian.com>
2596         * metadata.c
2597         (mono_metadata_load_generic_param_constraints): New public
2598         function; splitted the constraints loading out from
2599         mono_metadata_load_generic_params().
2601         * class.c (mono_class_create_from_typedef): Call
2602         mono_metadata_load_generic_param_constraints() after setting up
2603         the type and creating our parent; fixes #75329.
2605 2005-10-04  Martin Baulig  <martin@ximian.com>
2607         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
2608         non-dynamic parent classes.
2610 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
2612         * file-io.c : win32 build fix (ETXTBSY seems not found).
2614 2005-10-04  Martin Baulig  <martin@ximian.com>
2616         * reflection.c
2617         (mono_image_get_methodspec_token): Make the cache actually work;
2618         fixes #75974.
2620 2005-10-04  Martin Baulig  <martin@ximian.com>
2622         * class.c (mono_class_name_from_token): Removed the unneccessary
2623         `MonoGenericContext *' argument.
2625 2005-10-04  Martin Baulig  <martin@ximian.com>
2627         * loader.c
2628         (method_from_methodspec): Make the caching work again; fixes the
2629         performance regression from #76262.
2631 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2633         * file-io.c:
2634         * file-io.h:
2635         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
2636         GetFileSystemEntries that performs the same work but without going
2637         into io-layer, locking, etc.
2639 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
2641         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
2642         ThreadState_Stopped as well. Fixes #76047.
2644 2005-09-29  Martin Baulig  <martin@ximian.com>
2646         * class.c
2647         (inflate_generic_context): If the new context has a `gmethod', set
2648         its `container' that that gmethod's `container'.
2650         * metadata.c
2651         (mono_metadata_parse_generic_param): Simplify things;
2652         `generic_container = generic_context->container;' is just fine.
2654         * loader.c (method_from_methodspec): Code cleanups.
2656 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
2658         * decimal.c: fix warning (and let gcc generate correct
2659         code on ARM with optimizations).
2661 2005-09-28  Martin Baulig  <martin@ximian.com>
2663         * loader.c
2664         (method_from_memberref): Added `MonoGenericContext *class_context'
2665         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
2666         (method_from_methodspec): If we're a memberref, use the enclosing
2667         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
2669 2005-09-28  Martin Baulig  <martin@ximian.com>
2671         * object.c (mono_runtime_invoke_array): Added support for
2672         MONO_TYPE_GENERICINST; fixes #75917.
2674 2005-09-27  Martin Baulig  <martin@ximian.com>
2676         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
2677         `k->byval_arg.type' to determine the actual type.
2679         * loader.c (method_from_methodspec): Removed some hacks.
2681 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
2683         * class-internals.h (mono_field_is_deleted): Do the test for
2684         rtspecialname before we check the actual name of the field. This
2685         prevents us from dereferencing a pointer into the string table,
2686         saving us from accessing a few pages
2688         * *.c: Replace the use of {Enter,Leave}CriticalSection with
2689         macros. This will allow a deadlock debugger to easily be plugged
2690         in.
2692 2005-09-27  Martin Baulig  <martin@ximian.com>
2694         * loader.c (method_from_methodspec): Create a "signature"
2695         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
2697 2005-09-27  Martin Baulig  <martin@ximian.com>
2699         * class.c
2700         (inflate_generic_class): Correctly set the new context's
2701         container.
2703         * loader.c
2704         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
2705         instead of a `MonoGenericContext *'.
2706         (mono_method_signature_full): Take a `MonoGenericContainer *'
2707         instead of a `MonoGenericContext *'.
2709         * metadata.c
2710         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
2711         instead of a `MonoGenericContext *'.
2712         (mono_metadata_parse_method_signature_full): Likewise.
2714 2005-09-26  Martin Baulig  <martin@ximian.com>
2716         * class.c
2717         (mono_class_from_generic_parameter): Set `klass->generic_container'
2718         (mono_class_from_generic_parameter): Likewise.
2719         (mono_bounded_array_class_get): We inherit the generic container
2720         from the element class.
2722         * loader.c
2723         (find_method, find_method_in_class): Take a `MonoGenericContext *'
2724         argument rather than computing it here.
2725         (method_from_memberref): Correctly set the generic context before
2726         parsing the signature.  Fixes #75681.
2728 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
2730         * object.c (mono_class_has_special_static_fields): Fix warnings.
2732 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2734         * assembly.c: Add parse_public_key function, to
2735         par the public keys. Also added mono_assembly_name_parse_full,
2736         to define it the parsed key should be freed or not.
2737         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
2738         to parse a long format assembly name.
2739         * metadata-internals.h: Keep mono_assembly_name_parse_full as
2740         private, since calling it to preserve the key requires
2741         freeing it manually.
2742         
2743 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
2745         * locales.c : removed HAVE_ICU part.
2747 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
2749         * object.c (mono_class_create_runtime_vtable): Avoid calling 
2750         field_is_special_static if the klass has no special static fields.
2752         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
2753         (MonoCachedClassInfo): Likewise.
2755         * object.c (mono_class_has_special_static_fields): New helper function.
2757 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
2759         * class.c (mono_class_create_from_typedef): Don't call 
2760         interfaces_from_typedef_full for enums.
2761         (mono_class_create_from_typedef): Compute the base types of enums directly
2762         without calling mono_class_setup_fields ().
2763         (mono_class_find_enum_basetype): New helper function.
2765         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
2766         one place inside the string heap.
2767         
2768 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
2770         * class.c: locking fixes, code cleanups, some docs added.
2771         Allocate some data structures in the image mempool.
2773 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
2775         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
2776         the example code.
2777         
2778 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
2780         * class-internals.h, class.c, reflection.c: reduce memory taken by
2781         MonoClass.
2783 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
2785         * metadata.c, metadata.h, loader.h: documentation updates, code and
2786         API cleanups.
2788 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
2790         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
2791         the example code.
2793         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
2794         page faults caused by the runtime while reading metadata.
2796 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2798         * socket-io.c: the field names were changed 3 months ago and no one
2799         realized until bug #76077 got filed!
2801 2005-09-20  Martin Baulig  <martin@ximian.com>
2803         * icall.c (assembly_icalls): Removed some unused debugger icalls.
2805 2005-09-20  Martin Baulig  <martin@ximian.com>
2807         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
2808         write the rank into the class entry.
2810 2005-09-20  Martin Baulig  <martin@ximian.com>
2812         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
2814 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
2816         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2818         * icall.c (custom_attrs_defined_internal): New icall.
2820         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
2821         function.
2822         (mono_custom_attrs_construct_by_type): New helper function.
2824 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
2826         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
2827         terminate the resulting string. Fixes #76123.
2829 2005-09-16  Martin Baulig  <martin@ximian.com>
2831         * mono-debug.c
2832         (mono_debug_add_method): Ignore inflated methods for the moment.
2834 2005-09-14  Martin Baulig  <martin@ximian.com>
2836         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
2838 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
2840         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
2841         return a success/failure indication.
2842         (mono_metadata_interfaces_from_typedef_full): Ditto.
2843         (get_constraints): Ditto.
2845 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
2847         * marshal.c (emit_marshal_array): Fix handling of null arrays.
2848         
2849         * marshal.c (emit_marshal_array): Add support for returning string
2850         arrays from delegates. Fixes #76063.
2852         * marshal.c: Use the emit_ldloc/stloc macros where possible.
2854 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
2856         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
2857         icall.
2859 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
2861         * reflection.c icall.c: Fix after mono_get_exception_type_load
2862         signature change.
2864         * assembly.c (mono_assembly_get_assemblyref): New helper function.
2865         (mono_assembly_load_reference): Use the new helper.
2867         * class-internals.h (MonoLoaderError): New structure containing 
2868         information about type loading errors.
2870         * class-internals.h loader.c: Add APIs to store per-thread loader
2871         error information.
2873         * loader.c class.c: Set the loader error if needed.
2875         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
2877 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
2879         * decimal.c: fixed to handle the broken ARM fp format.
2881 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
2883         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
2884         broken.
2886 2005-09-06  Martin Baulig  <martin@ximian.com>
2888         * domain.c (supported_runtimes): Added v2.0.50727.
2890 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
2892         * culture-info.h: reduce the size of some structures.
2894 2005-09-05  Martin Baulig  <martin@ximian.com>
2896         Reflect latest API changes in the August CTP.
2898         * icall.c
2899         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
2900         ("MonoType.HasGenericArguments"): Removed.
2901         ("MonoMethod.BindGenericParameters"): Renamed to
2902         "MakeGenericMethod".
2903         ("MethodBuilder.BindGenericParameters"): Renamed to
2904         "MakeGenericMethod".    
2906 2005-09-05  Martin Baulig  <martin@ximian.com>
2908         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
2910 2005-09-05  Martin Baulig  <martin@ximian.com>
2912         Applying a patch from Michal Moskal <malekith@nemerle.org>.
2914         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
2915         generic_container is non-NULL.
2917 2005-09-05  Martin Baulig  <martin@ximian.com>
2919         Applying a patch from Michal Moskal <malekith@nemerle.org>.
2921         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
2923 2005-08-29  Michal Moskal  <malekith@nemerle.org>
2925         * reflection.c (encode_locals,
2926         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
2927         for large generic types.
2929 2005-09-05  Martin Baulig  <martin@ximian.com>
2931         Applying a patch from Michal Moskal <malekith@nemerle.org>.
2933         * class.c (mono_dup_array_type): New public method.
2934         (mono_metadata_signature_deep_dup): New public method.
2935         (dup_type): Correctly duplicate array and function types.
2937 2005-09-05  Martin Baulig  <martin@ximian.com>
2939         Applying a patch from Michal Moskal <malekith@nemerle.org>.
2941         * reflection.c (get_default_param_value_blobs): Handle generic types
2942         and generic methods.
2944 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
2946         * class.c: Fixed error reporting (method/class were inversed) for 
2947         inheritance demands.
2948         * security-manager.c|h: Added the AppDomain when calling the managed
2949         System.Security.SecurityManager.InheritanceDemand method.
2951 2005-09-01  Raja R Harinath  <rharinath@novell.com>
2953         * reflection.c (encode_marshal_blob): 'marshaltype' and
2954         'marshaltyperef' are alternate sources for the custom marshaler
2955         name.
2957 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
2959         * class.c: fix creation of array classes with rank == 1
2960         (patch by Ankit Jain <jankit@novell.com>).
2962 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
2964         * object.c: fix check for creating the bound data for arrays vs
2965         szarrays.
2967 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2969         * object.c: configuration file name is now based on the executable name,
2970         not the image name. Fixes bug #75931.
2972 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
2974         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
2975         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
2977 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
2979         * rand.c: Use wincrypt.h instead of WinCrypt.h.
2981 2005-08-24  Ankit Jain  <jankit@novell.com>
2982             Raja R Harinath  <rharinath@novell.com>
2984         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
2985           called by it recursively.
2986           (mono_class_init): Remove special case in pending_init handling, since it's
2987           superseded by the fix to mono_class_from_typeref.
2989 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
2991         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
2992         BROKEN_THREAD_START stuff.
2994 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
2996         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
2997         trampoline.
2999         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
3000         
3001         * object.c (mono_delegate_ctor): Replace the original function address with
3002         a delegate trampoline.
3004 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
3006         * icall.c: add boolean argument to base64_to_byte_array and 
3007         InternalFromBase64String to control whether a whitespace-only string
3008         is allowed (or should casue a FormatException to be thrown). We need
3009         this as the behavior has changed between MS.NET 1.x and 2.0, and we
3010         to match the MS behaviour in both profiles.
3011         * appdomain.c: Bump corlib version.
3013 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3015         This patch implements a big portion of publisher policy
3016         support, used to bind assembly versions and redirect
3017         one assembly from version A to version B.
3019         * assembly.c:
3020         New GSList loaded_assembly_bindings, for storing the cached
3021         assembly bindings.
3022         (assembly_binding_maps_name): New static function for checking if a 
3023         assembly binding information maps an assembly name.
3024         (mono_assembly_binding_info_free): New function for freeing
3025         assembly binding information resources.
3026         (get_publisher_policy_info): New static function for retrieving 
3027         assembly binding information from a MonoImage.
3028         (compare_versions): New static function for comparing an assembly
3029         binding information data and the version of an assembly name.
3030         (check_policy_versions): New static function for checking if an
3031         assembly binding info mapping an assembly name is valid for it.
3032         (mono_assembly_load_publisher_policy): New static function for
3033         loading the 'policy.major.minor.MyAssembly' image for an assembly
3034         with an assembly name 'aname'.
3035         (mono_assembly_bind_version): New static function for updating
3036         assembly redirection.
3037         (mono_assembly_apply_binding): New static function for applying
3038         assembly binding.
3039         (search_binding_loaded): New static function for searching 
3040         loaded assembly binding infos in the cache domain.
3041         (mono_assembly_load_full): Don't apply assembly binding for
3042         reflection only assemblies.
3044         * metadata-internals.h: Add MonoAssemblyBindingInfo,
3045         which contains information about assembly binding. Also
3046         declare signature for mono_config_parse_publisher_policy ()
3047         function, used to retrieve pub policy info.
3048         
3049         * mono-config.c:
3050         (publisher_policy_start): New static function used to parse publisher 
3051         policy config files.
3052         (publisher_policy_parser): New static MonoParseHandler containing 
3053         the functions used when parsing config files.
3054         (mono_config_parse_publisher_policy): New function for parsing
3055         publisher policy files.
3056         
3057 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
3059         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
3061         * marshal.c (mono_delegate_free_ftnptr): Ditto.
3063         * object.c (mono_get_addr_from_ftnptr): New helper function.
3065         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
3067         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3069 2005-08-19  Dick Porter  <dick@ximian.com>
3071         * threads.c, threads.h, appdomain.c, appdomain.h,
3072         profiler-private.h, monitor.c, object.c, object-internals.h,
3073         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
3074         store the thread ID, so it can hold a 64 bit value if needed.
3076 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
3078         * reflection.c (mono_reflection_create_dynamic_method): Store the
3079         handle class into the method references as well so ldtoken works in
3080         dynamic methods.
3082         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
3083         types.
3085 2005-08-19  Ankit Jain <jankit@novell.com>
3087         Fix #75847.
3088         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
3089           here rather than using the method signature of a arbitrary function
3090           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
3091           two arguments.
3092           Hack done with Harinath.
3094 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3096         * threadpool.c: disable printing stack traces when we get a exception
3097         in a threadpool thread. I need to do more testing to figure out which
3098         cases actually print this. Fixes bug #75828.
3100 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3102         * icall.c: there might be ignored whitespace after the last '='. This
3103         fixes length computation and bug #75840.
3105 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
3107         * assembly.c (mono_assembly_load_full): Consider .exe extension as
3108         well. Fixes #75809.
3110         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
3111         #75784.
3112         
3113         * reflection.c (create_custom_attr_data): Ditto.
3115 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
3117         * locales.c, culture-info.h : removed RegionLCIDMap.
3118         * culture-info-tables.h : regenerated.
3120 2005-08-16  Martin Baulig  <martin@ximian.com>
3122         * class.c (mono_type_get_name_recurse): Small fix.
3124 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
3126         * locales.c : indentation fixie.
3128 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
3130         * object-internals.h,
3131           locales.h,
3132           locales.c,
3133           culture-info.h,
3134           icall.c : added RegionInfo table support.
3135         * culture-info-table.h : regenerated for region support.
3137 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
3139         * reflection.c (resolve_object): handle all kinds of MonoMethod
3140         including generic ones
3142 2005-08-12  Ankit Jain <jankit@novell.com>
3144         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
3145           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
3147 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
3149         * process.c: Don't close a thread handle when it's NULL. This is a
3150         workaround for bug #75733.
3152 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
3154         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
3156 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
3158         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
3160 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3162         * threadpool.c: if a work item in the thread pool has a callback that
3163         catches a exception, don't propagate it after invoking the callback.
3164         Fixes bug #75336.
3166 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
3168         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
3170         * class-internals.h (MonoCachedClassInfo): Add some new fields.
3172         * class.c (mono_class_init): Load field info lazily in the AOT case.    
3174         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
3176 2005-08-03  Ankit Jain  <jankit@novell.com>
3178         Fix #75683.
3179         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
3180           PInvoke calling convention is 0.
3182 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
3184         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
3185         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
3187 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
3189         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
3190         to handle threads not started by the GC (patch by Michael Meeks
3191         <michael.meeks@novell.com>).
3193 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
3195         * reflection.c: Make buffer used in emitting types larger for some
3196         big generic types (patch by Michal Moskal).
3198 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
3200         * mono-debug.c: Fix some (not all) alignment problems.
3202 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3204         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
3205         Invoke mono_image_load_from_data_full passing the refonly
3206         parameter.
3208         * assembly.c
3209         (mono_assembly_open_from_bundle): Add the refonly argument, 
3210         in order to pass it to other methods it calls to.
3211         (do_mono_assembly_open): Add the refonly argument, in order 
3212         to pass it to other methods it calls to.
3213         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
3214         the refonly parameter to it.
3216         * image.c: Add loaded_images_refonly_hash and
3217         loaded_images_refonly_guid_hash to cache the reflection
3218         only loaded images.
3219         (mono_images_init): Initialize the hash tables used for
3220         caching the reflection only images.
3221         (load_modules): Invoke mono_image_open_full passing the refonly
3222         parameter to load the modules the correct way.
3223         (build_guid_table): Add the refonly argument, to re-build the 
3224         correct hash table.
3225         (do_mono_image_open): Added the refonly argument, in order to
3226         define it for the loaded image.
3227         (mono_image_loaded_full): New function, which receives an
3228         additional parameter to look for the image in the refonly or
3229         non-refonly section.
3230         (mono_image_loaded): Updated, using mono_image_loaded_full.
3231         (mono_image_loaded_by_guid_full): The same case that happens
3232         with mono_image_loaded_full.
3233         (mono_image_loaded_by_guid): Likewise.
3234         (register_image): Use the ref_only variable inside MonoImage
3235         to decide in which hash table store the current image.
3236         (mono_image_open_from_data_full): Rename
3237         mono_image_open_from_data to mono_image_open_from_data_full,
3238         adding the refonly argument, to define the ref_only variable 
3239         inside MonoImage.
3240         (mono_image_open_from_data): Return 
3241         mono_image_open_from_data_full.
3242         (mono_image_open_full): Rename mono_image_open to
3243         mono_image_open_full, receiving the new refonly argument,
3244         to pass it to inner methods.
3245         (mono_pe_file_open): Update this function, to open
3246         a MonoImage as a non-refonly image.
3247         (mono_image_close): Use the refonly variable inside
3248         MonoImage to remove the image from the correct caches.
3250         * image.h: Add the signatures of mono_image_open_full,
3251         mono_image_open_from_data_full, mono_image_loaded_full,
3252         mono_image_loaded_by_guid_full.
3254         * metadata-internals.h: Add the ref_only field to 
3255         MonoImage.
3256         
3257 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3259         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
3260         Fix the last behavior, which used to load the assemblies and
3261         extract MonoReflectionAssemblyName information, instead of
3262         extract it from the metadata tables. Needed for Reflection
3263         Only assemblies.
3264         
3265 2005-07-29  Martin Baulig  <martin@ximian.com>
3267         * mono-debug-debugger.c
3268         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
3269         not initialized.
3271         * mono-debug.c
3272         (mono_debug_address_from_il_offset): Check whether we have
3273         debugging support before attempting to take the lock.
3274         (mono_debug_source_location_from_address): Likewise.
3275         (mono_debug_source_location_from_il_offset): Likewise.
3276         (mono_debug_il_offset_from_address): Likewise.
3277         (mono_debug_address_from_il_offset): Likewise.
3279 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
3281         * class.c (mono_class_from_name_case): Add support for dynamic images.
3282         Fixes #75650.
3284         * object.c (mono_class_compute_gc_descriptor): Add a workaround
3285         for #75479.
3287 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
3288         
3289         * reflection.c (mono_method_get_object): Fix warning.
3291 2005-07-28  Martin Baulig  <martin@ximian.com>
3293         * mono-debug.c
3294         (mono_debug_add_wrapper): Also write the wrapper type.
3296 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
3298         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
3299         
3300         * class.c (mono_class_init): Avoid reading nested classes if the AOT
3301         data indicates the class has none.
3303 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
3305         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
3306         loader lock with the debugger lock. Prevents deadlocks for beagle.
3308         Beagle can now run on an smp box for a weekend without any
3309         issues. Woohoo!
3311 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
3313         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
3314         in a module. Fixes #75629.
3316 2005-07-26  Martin Baulig  <martin@ximian.com>
3318         * mono-debug.c (mono_debug_add_wrapper): New static method.
3319         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
3320         interncall or a wrapper.
3322         * mono-debug.h (MonoDebugWrapperData): New public typedef.
3323         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
3324         (MONO_DEBUGGER_VERSION): Bump to 51.
3326         * mono-debug-debugger.c
3327         (mono_debugger_add_type): Removed this empty function.
3328         (mono_debugger_add_method): Likewise.
3330 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
3332         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
3333         before accessing method->slot.
3335 2005-07-21  Jb Evain  <jbevain@gmail.com>
3337         * reflection.c (method_encode_clauses/class): Handle filters clauses.
3338         Fixes #75010.
3340 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
3342         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
3343         #75587.
3345 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
3347         * image.h image.c: Add mono_image_get_guid () API function.
3349 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
3351         There were issues when multiple threads tried to load
3352         assemblies. A deadlock was created between assemblies_mutex and
3353         mono_domain_assemblies_lock. This fixes the issue by making the
3354         assembly ref counting be lock free. See bug 75586.
3355         
3356         * image.c (mono_image_close): The add ref function here was using
3357         Interlocked operations while the unref was using a mutex and a
3358         --. I don't think this was ever a bug that would be exposed in a
3359         non-pendantic way (ie, by an embedder doing a ref on one thread
3360         and an unref on another), but for the sake of correctness, this is
3361         now Interlocked.
3363         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
3364         (mono_assembly_load_reference): Call mono_assembly_addref rather
3365         than touching the refcount ourselves.
3366         (mono_assembly_close): Use InterlockedDecrement to unref the
3367         assembly. Don't acquire the lock unless it is actually needed.
3369 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
3371         * class.c (mono_class_layout_fields): Fix calculation of has_references
3372         for generic types.
3374 2005-07-12  Martin Baulig  <martin@ximian.com>
3376         Applying a patch from Michal Moskal <malekith@nemerle.org>.
3378         * metadata.c
3379         (mono_type_hash): Provide better hashing for generic instances.
3380         (mono_generic_inst_hash): Improve hashing.
3381         (mono_generic_class_hash): Likewise.
3383         * reflection.c (mymono_metadata_type_hash): Improve hashing for
3384         generic instances.
3386 2005-07-12  Martin Baulig  <martin@ximian.com>
3388         * reflection.c (mono_reflection_create_runtime_class): Remove the
3389         hack for generic type definitions and non-`Run' assemblies.
3390         (mono_reflection_bind_generic_parameters): Also use
3391         `klass->wastypebuilder' to check for TypeBuilders.
3393 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
3395         * class.c (mono_class_layout_fields): Fix calculation of has_references
3396         for generic types.
3398         * class.c (inflate_generic_class): Fix a leak.
3399         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
3400         for generic types.
3402 2005-07-11  Martin Baulig  <martin@ximian.com>
3404         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
3405         on error.
3407 2005-07-11  Martin Baulig  <martin@ximian.com>
3409         * loader.c (find_method): Also lookup in
3410         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
3412 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
3414         * appdomain.c (mono_domain_unload): Don't free the error message
3415         before passing it to mono_get_exception_...
3417         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
3418         
3419 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
3421         * threads.c: try to better guess an available RT signal (bug #75387).
3423 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
3425         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
3426         and CACHE_OBJECT.
3428 2005-07-07  Martin Baulig  <martin@ximian.com>
3430         * class.c (mono_type_get_name_full): Return NULL for
3431         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
3432         fixes #75408.
3434 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
3436         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
3437         exit the appdomain as well being aborted.
3439         * threadpool.c: Create all threadpool threads inside the root appdomain, and
3440         change back to the root domain after calling managed code. This enables
3441         appdomains using threadpools to be unloaded.
3443 2005-07-07  Martin Baulig  <martin@ximian.com>
3445         * class-internals.h
3446         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
3447         into `MonoDynamicGenericClass' since we only need it for dynamic
3448         types.
3450         * reflection.c (mono_class_bind_generic_parameters): We don't need
3451         to compute the `parent' here.
3453 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
3455         * culture-info-table.h : regenerated.
3457 2005-07-06  Martin Baulig  <martin@ximian.com>
3459         * icall.c
3460         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
3462         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
3464 2005-07-06  Martin Baulig  <martin@ximian.com>
3466         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
3467         we're doing a signature-only comparision; fixes #74945.
3469 2005-07-06  Martin Baulig  <martin@ximian.com>
3471         * class-internals.h (MonoGenericClass): Moved some things out into
3472         a new `MonoInflatedGenericClass' type.  
3473         (MonoInflatedGenericClass): New type; the `klass' of a
3474         `MonoGenericClass' is now computed lazyly in
3475         mono_get_inflated_generic_class().      
3477         * class.c (mono_get_inflated_generic_class): New public function.
3478         (mono_class_inflate_generic_method): Removed the unused
3479         `MonoClass *' argument.
3480         (setup_generic_vtable): Don't call mono_get_inflated_method() on
3481         all the methods.
3482         (mono_class_create_generic): Make this static and merge it with
3483         mono_class_create_generic_2(); we're now called automatically from
3484         mono_get_inflated_generic_class().
3486         * loader.c (mono_method_signature): Call
3487         mono_get_inflated_method() here.
3489 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
3491         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
3492         type of fields with RVA.
3494         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
3495         for this pseudo class.
3496         (my_mono_class_from_generic_parameter): Likewise.
3497         (mono_class_init): Allow interfaces to have cctors.
3499 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
3501         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
3502         lazily for AOT methods.
3504 2005-07-05  Martin Baulig  <martin@ximian.com>
3506         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
3507         returns FALSE for a successful match, not TRUE.
3509 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
3511         * loader.c (mono_method_get_index): Optimize this a bit.
3513 2005-07-04  Martin Baulig  <martin@ximian.com>
3515         * class.c
3516         (class_compute_field_layout): Move the check for generic type
3517         definitions into mono_class_layout_fields().  Fixes #74684.
3518         (mono_class_from_generic_parameter): Correctly compute
3519         `klass->parent'; fixes #75457.
3521         * reflection.c (register_assembly, register_module): Make sure
3522         `domain->rejobject_hash' is already created.
3524 2005-07-02  Martin Baulig  <martin@ximian.com>
3526         * class-internals.h
3527         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
3528         `MonoDynamicGenericClass'.      
3530 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
3532         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
3533         returned by a field getter is null, since null is a valid value.
3535 2005-07-01  Martin Baulig  <martin@ximian.com>
3537         * reflection.c (mono_reflection_generic_class_initialize): Update
3538         the `dgclass->fields [i].parent' to the correct class.
3539         (mono_image_get_fieldref_token): Use the declaring type, not the
3540         reflected type.
3542 2005-07-01  Martin Baulig  <martin@ximian.com>
3544         * loader.c (find_method): Also look in the interfaces; fixes #75429.
3546 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
3548         * threads.c (thread_cleanup): assert that thread != NULL
3549         (wait_for_tids_or_state_change): We were using the wrong variable
3550         when accessing wait->threads. `i' was always out of the bounds of
3551         the array.
3553 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3555         * loader.c: map user32 and kernel32 to libMonoSupportW
3557 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
3559         * appdomain.c (unload_thread_main): Mark this as WINAPI.
3561 2005-06-28  Martin Baulig  <martin@ximian.com>
3563         * loader.c (method_from_methodspec): Fix #75334.
3565 2005-06-28  Martin Baulig  <martin@ximian.com>
3567         Fix #74953 - Arrays now implement the generic IList<T> interface
3568         on the 2.0 platform.
3570         * class-internals.h (MonoDefaults): Added `generic_array_class'.
3572         * reflection.c (mono_class_bind_generic_parameters): New public
3573         function; similar to mono_reflection_bind_generic_parameters(),
3574         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
3576         * domain.c (mono_init_internal): Try to initialize.
3577         `mono_defaults.generic_array_class' here; this'll only succeed if
3578         we're using the 2.0 corlib.
3580         * icall.c
3581         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
3582         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
3583         (mono_lookup_internal_call): Added support for nested classes.
3585         * loader.c
3586         (mono_get_method_from_token): Set `result->signature->pinvoke' if
3587         we're an interncall and have generic arguments.
3589         * class.c
3590         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
3591         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
3592         instance of System.Array.InternalArray<T> for arrays, so they
3593         implement the generic IList<T> interface.
3595 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
3597         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
3598         (chastamar@yahoo.com). Fixes #75374.    
3600 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
3602         * culture-info-table.h: regenerated.
3604 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3606         * icall.c: handle spaces correctly for base64 strings.
3608 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
3610         * *.c: Kill some warnings.
3612 2005-06-23  Duncan Mak  <duncan@novell.com>
3614         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
3615         that this builds on Solaris 10 (x86).
3617 2005-06-23  Martin Baulig  <martin@ximian.com>
3619         * class.c
3620         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
3621         generic type definitions.
3623 2005-06-23  Martin Baulig  <martin@ximian.com>
3625         Fix #75331.
3627         * metadata.c (mono_class_get_overrides): Renamed to
3628         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
3629         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
3630         pass it to mono_get_method_full().
3632 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
3634         * reflection.c (mono_reflection_create_runtime_class): take the
3635         mono_domain_lock in this method. Prevents deadlocks
3637 2005-06-22  Martin Baulig  <martin@ximian.com>
3639         * loader.c (method_from_methodspec): Fix #75330.
3641 2005-06-22  Martin Baulig  <martin@ximian.com>
3643         * reflection.c (type_get_qualified_name): Use
3644         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
3645         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
3646         argument; use it if we don't have an assembly name.
3648 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
3650         * object.c: In mono_message_init, set "copy out" flag for in
3651         parameters with the [Out] flag.
3653 2005-06-21  Martin Baulig  <martin@ximian.com>
3655         * class.c
3656         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
3657         and MONO_TYPE_PTR.
3659 2005-06-21  Martin Baulig  <martin@ximian.com>
3661         * class.c (mono_class_init): Don't initialize `class->fields' for
3662         generic instances since they're initialized again in
3663         compute_field_layout(). 
3664         (compute_field_layout): Set the field's `generic_info' here; fix
3665         #75320. 
3667 2005-06-21  Martin Baulig  <martin@ximian.com>
3669         * class-internals.h
3670         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
3672         * metadata.c (mono_metadata_generic_method_equal): Also
3673         distinguish the `generic_class'; fixes #75334.
3675 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3677         * domain.c:
3678         * appdomain.c:
3679         * domain-internals.h:
3680         * reflection.c: 'domain_assemblies' field is now protected by its own
3681         lock. Don't call into managed code to run the AssemblyLoad event if we
3682         now there are no registered delegates for it.
3684 2005-06-20  Martin Baulig  <martin@ximian.com>
3686         * class.c (mono_class_is_assignable_from): Use a custom version of
3687         mono_class_has_parent() to make things work for generic instances;
3688         fix #75300.
3690 2005-06-20  Martin Baulig  <martin@ximian.com>
3692         * loader.c (method_from_methodspec): Apply a patch from
3693         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
3695 2005-06-20  Martin Baulig  <martin@ximian.com>
3697         * class.c (mono_class_init): Reverted Zoltan's last change; it
3698         breaks generics.
3700 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
3702         * threads.c (wait_for_tids_or_state_change): Add missing locking.
3704 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3706         * socket-io.c: fix the index in the socket array for writable/error
3707         sockets. Fixes bug #75306.
3709 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
3711         * class.c (mono_class_init): Allow interfaces to have static ctors.
3713 2005-06-17  Martin Baulig  <martin@ximian.com>
3715         * loader.c (method_from_methodspec): Use `context->container' when
3716         parsing the `gmethod->inst'.
3718 2005-06-17  Martin Baulig  <martin@ximian.com>
3720         * class.c (mono_type_get_name_recurse): Don't add the assembly
3721         name for type arguments.
3723 2005-06-15  Martin Baulig  <martin@ximian.com>
3725         * reflection.c (mono_image_get_inflated_method_token): Encode
3726         correct klass; fixes #75260.
3728 2005-06-13 Michal Moskal <malekith@nemerle.org>
3730         * icall.c: Make GetCorrespondingMethod/Constructor take
3731         MonoReflectionMethod method not MonoMethod. Removed
3732         MonoType.GetCorrespondingField, and make
3733         MonoGenericType.GetCorrespondingField take name not
3734         MonoClassField.
3736 2005-06-13  Michal Moskal <malekith@nemerle.org>
3738         * reflection.c (field_encode_signature, encode_locals):
3739          Make sizes of buffers for types larger (for big generic types).
3740          (create_generic_typespec,
3741          mono_reflection_sighelper_get_signature_local,
3742          mono_reflection_sighelper_get_signature_field):
3743          Add asserts for too small buffers.
3745 2005-06-15  Martin Baulig  <martin@ximian.com>
3747         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
3748         if our parent is not a dynamic type.
3750 2005-06-15  Martin Baulig  <martin@ximian.com>
3752         * class-internals.h (MonoTypeNameFormat): New enum.
3754         * class.c
3755         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
3756         (mono_type_get_full_name): Removed.
3757         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
3758         argument instead of the boolean's.
3760         * icall.c (ves_icall_System_MonoType_getFullName):
3761         Added `gboolean assembly_qualified'.    
3763         * reflection.h
3764         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
3766         * reflection.c (mono_reflection_parse_type): Parse the new type
3767         name format.
3769 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3771         * icall.c: no need to convert from utf16 to utf8 and then back again
3772         after the call to GetLogicalDrives.
3774 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3776         * icall.c: frombase64. Fix problems exposed by new tests.
3778 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3780         * icall.c: added internal calls for converting char [] and strings in
3781         base64 into byte [].
3783 2005-06-10  Martin Baulig  <martin@ximian.com>
3785         * class.c (mono_class_create_generic_2): Read the nested classes
3786         from the metadata rather than from `gklass->nested_classes' since
3787         `gklass' might not be initialized yet.
3789 2005-06-09  Duncan Mak  <duncan@novell.com>
3791         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
3792         all public headers. Fixes #74919.
3794 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
3796         * domain.c: The key for proxy_vtable_hash is now a pointer
3797         array. Added new GHashFunc and GCompareFunc functions for this.
3799         * class.h: The list of interfaces in MonoRemoteClass is known in
3800         advance and can't grow (we create a new MonoRemoteClass if needed),
3801         so now the interface array can be allocated together with
3802         MonoRemoteClass.
3803         
3804         * object.c: Added a new method create_remote_class_key.
3805         Fixed mono_remote_class so it does not depend on
3806         mono_upgrade_remote_class.
3807         Removed extend_interface_array.
3808         Added new method clone_remote_class(), which makes a copy of a remote
3809         class and adds a new interface or class to it.
3810         mono_upgrade_remote_class() now creates a new remote class (or gets
3811         it from the cache) if an vtable upgrade is needed. In this way
3812         we make sure that other objects sharing the same remote class
3813         don't get the new vtable with unwanted interfaces.
3814         
3815         * object-internals.h:
3816         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
3817         
3818         * marshal.c: Track changes in mono_upgrade_remote_class().
3820 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
3821         * icall.c: Add runtime methods for obtaining members of inflated
3822         class, which were created from supplied non-inflated members. It
3823         is used in internal Get{Method,Constructor,Field} methods in
3824         System.Type
3826 2005-06-09  Martin Baulig  <martin@ximian.com>
3828         * reflection.c
3829         (mono_reflection_bind_generic_method_parameters): Fix #75169.
3831 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3832         * reflection.c (mono_image_basic_init): Define
3833         Version in MonoDynamicAssembly. 
3834         
3835 2005-06-08  Martin Baulig  <martin@ximian.com>
3837         Fix #75136.
3839         * loader.c
3840         (mono_method_signature_full): New public method; takes a
3841         `MonoGenericContext *'.
3842         (find_method): Use mono_method_signature_full() and pass the
3843         klass'es context to it.
3845         * class.c (mono_class_is_inflated_method): Use
3846         mono_method_signature_full() and pass the context to it.
3848 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
3850         * object.c: add proper locking in mono_remote_class_vtable(),
3851         fixes possible memory corruption.
3853 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
3855         * marshal.c (mono_remoting_marshal_init): set
3856         initialized after initialization.
3858 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
3860         * locales.c : hush.
3862 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
3864         * object.c (extend_interface_array): fix really silly
3865         memory corrupting / comparison bug.
3867 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3869         * reflection.c: Functions added to support the creation
3870         of CustomAttributeData, which includes Attribute data
3871         used by ReflectionOnly methods.
3873         * reflection.h:  mono_reflection_get_custom_attrs_data and
3874          mono_custom_attrs_data_construct added (functions exposed).
3876          * icall.c: Added mono_reflection_get_custom_attrs_data
3877          as icall.
3878         
3879 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
3881         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
3882         lupus's request.
3884 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
3886         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
3888         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
3889         dynamic DllImportAttribute.
3891         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
3892         dynamic DllImportAttribute.
3894         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
3895         Fixes #75162.
3897 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3899         * threads.c: avoid segfault when an unstarted thread is aborted.
3901 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
3903         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
3904         Returns the name and version of the runtime for reporting.
3906 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3908         * appdomain.c: bump corlib version.
3909         * object-internals.h: new field in MonoReflectionAssembly.
3911 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3913         * object-internals.h: Carlos forgot to add this field.
3915 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3917         * icall.c: Added create_version to create instances
3918         of Version of MonoReflectionAssemblyName. This change helps
3919         the AssemblyName tests to keep running fine.
3920         
3921 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
3922   
3923         * object.c (mono_method_return_message_restore): A somehow less
3924         intrusive fix for #75138.
3926 2005-06-03  Raja R Harinath  <rharinath@novell.com>
3928         * object.c (mono_method_return_message_restore): Fix computation
3929         of expected number of out args.
3931 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
3933         * reflection.c (mono_image_get_method_info): Fix the case when the
3934         charset is empty.
3936 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
3938         * object.c: Added missing null check in
3939           mono_method_return_message_restore.
3941 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
3943         * reflection.c (mono_image_get_method_info): Handle the case when
3944         dllentry is empty.
3946 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
3948         * object.c: When creating the vtable for a proxy, take into account
3949         all inherited interfaces, not only the ones registered in
3950         iclass->interfaces. This fixs bug #74996.
3951         Also, in mono_method_return_message_restore, verify that the array
3952         of out args has the expected lengh.
3954 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3956         * socket-io.c: update the timeout in Poll when the call is interrupte.
3958 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3960         * socket-io.c: support abort/suspend in Select_internal after last
3961         change.
3963 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3965         * threadpool.c: remove warning.
3967 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3969         * icall.c:
3970         * socket-io.[ch]: Select_internal uses poll() now when available, thus
3971         removing the 1024 limit from select(). Runtime part of the fix for
3972         bug #71203.
3974 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3976         * socket-io.c: when resolving the addresses for the same
3977         host returned by gethostname(), get the local IPs from the interface
3978         list. Loopback addresses are discarded if the are interfaces up with
3979         non-loopback ones. Fixes bug #63265.
3981 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
3983         * appdomain.c, verify.c, object-internals.h, reflection.c:
3984         bumped corlib number to 36, and added new extra_flags field
3985         to ReflectionMethodBuilder and friends.  Fixes #75060.
3987 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
3989         * gc.c: register a new weak link only if the object is non-null
3990         (fixes bug#75047).
3992 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
3994         * culture-info.h : short time pattern too.
3996 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
3998         * culture-info.h : expand long time pattern string length.
4000 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
4002         * culture-info-table.h : update (more French date format; #72788).
4004 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
4006         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
4007         the method is static. Fixes #75029.
4009 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
4011         * reflection.c: Update the table_idx field of method builders after
4012         saving the module, since it can change. This is a workaround for
4013         bug #74914. 
4015 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
4017         * culture-info-table.h : update (additional French date format).
4019 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
4021         * icall.c (ves_icall_type_Equals): Revert last change.
4022         
4023         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
4025         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
4027 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
4029         * class-internals.h: Added executioncontext_class field to 
4030         MonoDefaults structure.
4031         * domain.c: Cache System.Threading.ExecutionContext class in 
4032         mono_defaults.
4033         * object.c: Capture the ExecutionContext for asynchroneous calls in
4034          mono_async_result_new.
4035         * object-internals.h: Added execution_context and original_context 
4036         fields to MonoAsyncResult. Added execution_context to MonoThread.
4037         * security-manager.c|.h: Added mono_get_context_capture_method to 
4038         return the capture method (if required by the security manager or by
4039         the framework version used).
4040         * threadpool.c: Apply capture (if present) ExecutionContext in 
4041         mono_async_invoke and revert to original context after it completes.
4043 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
4045         * culture-info-table.h : updated (real hacky solution for zh-CHT).
4047 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
4049         * culture-info-table.h : zh-CHT related workaround.
4051 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
4053         * marshal.c (emit_marshal_custom): Add some error checking and call the
4054         methods in the ICustomMarshaler interface. Fixes #74875.
4055         
4056         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
4057         native->managed wrappers.
4059 2005-05-12  Martin Baulig  <martin@ximian.com>
4061         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
4062         here and use the loader lock.
4064         * mono-debug.c: Properly lock when the debugger is not attached.
4065         (mono_debug_init): Release the initial lock if we're not running
4066         in the debugger.
4068 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
4070         * marshal.c (emit_marshal_custom): Pass through NULL values without
4071         calling the custom marshalling routines.
4073         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
4074         conversion in structures. Fixes #74882.
4076 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
4078         * culture-info-table.h : zh-* cultures were missing.
4080 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
4082         * threads.c: Added a new event background_change_event which is signaled
4083         when a thread changes its background mode.
4084         Moved here several checks previously done in managed code. The checks
4085         require the thread lock, and using the thread lock in managed code
4086         can result in deadlocks.
4087         Merged Start_internal and Thread_internal into a single method. Now 
4088         Thread_internal does all work of creating and starting a thread.
4089         Added icalls for setting and getting the state of the object. Moved from
4090         managed code to avoid locking there.
4091         Added wait_for_tids_or_state_change() which is called instad of
4092         wait_for_tids when waiting for non-backround threads to end. This method
4093         will return if one of the threads ends or the background_change_event
4094         is signaled.
4095         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
4096         the background mode. This method signals the background_change_event
4097         event.
4098         * icall.c:
4099         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
4100         removed Start_internal.
4101         
4102 2005-05-11  Martin Baulig  <martin@ximian.com>
4104         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
4105         to order of some fields to get proper alignment on 64-bit machines.
4107 2005-05-11  Martin Baulig  <martin@ximian.com>
4109         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
4110         changes as they're broken and completely fuck up the debugger.
4112         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
4114 2005-05-10  Martin Baulig  <martin@ximian.com>
4116         * reflection.c (mono_reflection_generic_class_initialize): Don't
4117         call mono_class_setup_parent() here.
4119 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4121         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
4122         send/receive timeout use an integer in milliseconds. We were using a
4123         struct timeval.
4125 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4127         * locales.c:
4128         (internal_get_cultures): reserve the first slot of the array for the
4129         InvariantCulture, which will be filled in managed code.
4131 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
4133         * reflection.c (mono_image_fill_module_table): Initialize the
4134         GENERATION field as well.
4136 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4138         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
4139         Monitor.Enter on the object.
4141 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
4143         * threads.c: Enable the wait for running threads when exiting.
4144         * icall.c: Suspend all threads before exiting.
4146 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
4148         * assembly.c (mono_assembly_load_reference): Fix warning.
4150 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4152         * threadpool.c: changed the default number of threads per cpu. From now
4153         on, the default will be 20 + (5 * number of cpus) instead of 50.
4155 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
4157         * loader.c (mono_method_get_signature_full): Add locking here.
4159 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
4161         * appdomain.c: Moved methods for parsing and freeing assembly
4162         names to assembly.c.
4163         * assembly.c, domain-internals.h: Created public methods for parsing
4164         assembly names. Fixed mono_assembly_load_with_partial_name:
4165         it now finds the best match, taking into account the version,
4166         token and culture specified in the partial name. Also return
4167         the latest version if no version information is specified.
4169 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
4171         * threadpool.c: replace check for SocketAsyncCall class.
4173 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4175         * threadpool-internals.h:
4176         * Makefile.am: added threadpool-internals.h
4178         * threadpool.c: call mono_unhandled_exception on exceptions not handled
4179         that happen in threadpool threads (tested on MS).
4180         (mono_thread_pool_remove_socket): new function that dispatch any pending
4181         AIO call on a socket that is closing. By now only epoll really needs it,
4182         as select/poll wake up when the socket closes.
4185         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
4187 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
4189         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
4191 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
4193         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
4195 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
4197         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
4198         has an abort request, convert it into a suspend request.
4200 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
4202         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
4203         warning for the usage of `UnmanagedFunctionPointerAttribute' which
4204         is not supported yet.
4206 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4208         * image.c: register assemblies loaded from data (bundles) in the loaded
4209         assemblies hash. Fixes bug #74772.
4211 2005-04-29  Martin Baulig  <martin@ximian.com>
4213         * class.c (mono_type_get_name_recurse): Update to the new naming
4214         schema from the latest .NET 2.x beta2.
4215         (mono_class_setup_vtable_general): If we're a generic instance,
4216         copy the vtable from our generic type definition and inflate all
4217         the methods in it.
4219         * loader.c (find_method): Update to the new naming schema from the
4220         latest .NET 2.x beta2.
4222 2005-04-29  Raja R Harinath  <harinath@gmail.com>
4224         * class.c (mono_class_init): Add a mono_loader_unlock to the
4225         #74734 fix.
4227 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
4229         * icall.c (ves_icall_System_Environment_Exit): Remove the 
4230         suspend_all_other_threads () call for the time being, since it can hang.
4232         * threads.c (mono_thread_manage): Similarly, disable the waiting for
4233         the background threads to exit, since it can also hang.
4235         * class.c (mono_class_init): Applied patch from Ankit Jain 
4236         (radical@gmail.com). Avoid pending init errors when a field refers
4237         to a nested class using a typeref. Fixes #74734.
4239         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
4240         this for dynamic modules.
4242 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4244         * threads.c: don't wait for threads that are in the process of aborting
4245         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
4246         and waiting for background threads to finish. This makes xsp and
4247         mod-mono-server exit without random length delays and/or hangs.
4249 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4251         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
4253 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
4255         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
4256         dynamic types to prevent infinite loops. Fixes #74727.
4258         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
4259         ..._is_assignable_to.
4261 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
4263         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
4265 2005-04-25  Martin Baulig  <martin@ximian.com>
4267         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
4269         * domain.c
4270         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
4272         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
4274         * reflection.c (build_compressed_metadata): Set metadata header
4275         version to 2.0.
4277 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
4279         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
4280         number into an integral and a decimal part. Fixes #70473.
4282         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
4284 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
4286         * culture-info-table.h : reflected the latest locale-builder output.
4288 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4290         * threadpool.c: check for SuspendRequested too when deciding if
4291         mono_thread_interruption_checkpoint should be called.
4293 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4295         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
4296         * threads.c: remove interruption_mutex and use Interlocked instead. When
4297         suspending all the threads, wait for all the suspended events at once.
4298         If we're shutting down and get an APC that is going to be queued,
4299         call mono_thread_execute_interruption immediately, as the thread might
4300         be sleeping on a pthread condition or mutex.
4302         * icall.c: call mono_runtime_set_shutting_down before suspending the
4303         threads.
4305         Fixes bug #74693. And now xsp is happier when exiting.
4307 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
4309         * loader.c (mono_stack_walk): Fix #74690.
4311 2005-04-22  Martin Baulig  <martin@ximian.com>
4313         * mono-debug.h (MonoDebugMethodJitInfo): Added
4314         `MonoDebugMethodJitInfo *jit'.
4316         * mono-debug.c (mono_debug_read_method): Cache the
4317         MonoDebugMethodJitInfo in `address->jit'.
4318         (mono_debug_free_method_jit_info): New public method.
4320 2005-04-22  Martin Baulig  <martin@ximian.com>
4322         * class.c (mono_class_is_assignable_from): Disallow
4323         type parameter -> interface.
4325 2005-04-21  Dick Porter  <dick@ximian.com>
4327         * threads.c (mono_thread_create): Turn an assertion into an error.
4329 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
4331         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
4332         
4333         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
4334         Fix some gcc 4.0 warnings.
4336 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
4338         * file-io.c: fix alt dir separator char on unix systems
4339         and cleanup (fixes bug #71214).
4341 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
4343         * marshal.c: Use CALLVIRT instead of CALL when dispatching
4344         a call to a remote domain, since the method may be an
4345         interface method in the client domain. This fixes bug #74192.
4347 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4349         * threadpool.c: recv/send are now performed before going back to managed
4350         code to save one transition.
4352 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4354         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
4356         * metadata/threadpool.c: removed hack to workaround the bug above.
4358         Fixes bug #74618.
4360 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
4362         * reflection.c reflection.h: Fix handling of parameter defaults in
4363         dynamic methods. Also fixes handling of parameter attributes.
4364         Fixes #74609.
4366         * mono-debug.c (mono_debug_close_image): Fix warning.
4368 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4370         * socket-io.h: replaced old unused field with new 'blocking'.
4371         * threadpool.c: restore socket blocking state on windows(tm).
4373 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
4375         * icall.c: don't return the codebase in the AssemblyName[] returned by
4376         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
4377         * object-internals.h: Removed FIXME (fields were presents) and fixed
4378         versioncompat declaration.
4380 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4382         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
4383         not closed, so don't cleanup when it happens.
4385 2005-04-13  Chris Toshok  <toshok@ximian.com>
4387         * mono-debug-debugger.h: change prototype for
4388         mono_debugger_lookup_type.
4390         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
4391         this function, although it should probably be named
4392         mono_debugger_init_type.
4394 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4396         * threadpool.c: fix non-AIO case.
4398 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
4400         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
4401         the built-in profiler to measure just JIT compilation times.
4403 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4405         * threadpool.c: the epollfd might be closed by another thread at
4406         any time, so ignore EBADF at treat it as a "we're closing" sign.
4408 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4410         * threadpool.c: release the semaphores with a count equals to the number
4411         of working threads in both IO and regular pools. Fixed typo that messed
4412         up the count of IO pool threads. Don't initialize the pipe handles if
4413         we're using epoll.
4415 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4417         * threadpool.c: some systems don't like a NULL when deleting the socket
4418         from epoll.
4420 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4422         * threadpool.c: fix semaphore allocation.
4424 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4426         * threadpool.c: added epoll() based implementation for asynchronous IO
4427         that is used instead of the default poll() when available.
4428         It can be disabled by setting MONO_DISABLE_AIO.
4430 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4432         * threadpool.c: windows needs 'closesocket' and instead of returning
4433         0 when the stream is closed while in select, it returns -1. Fixes bug
4434         #74573.
4436 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
4438         * class.c (class_compute_field_layout): Fix the regression caused by
4439         the previous try.
4441 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4443         * threadpool.c: separate pool for socket async. IO.
4444         * threadpool.h: mono_max_worker_threads is not a global any more.
4446 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
4448         * class.c (class_compute_field_layout): Fix #74549.
4450 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4452         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
4453         use 2 connected sockets instead.
4455 2005-04-08  Miguel de Icaza  <miguel@novell.com>
4457         * mono-config.c: Add new entry point for mkbundle
4458         mono_config_parse_memory. 
4460 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4462         * threadpool.c: removed another unused function.
4464 2005-04-08  Ankit Jain  <radical@corewars.org>
4466         * reflection.c (get_default_param_value_blobs): Add 'types'
4467         parameter to get the types encoded in the constant table.
4468         (mono_param_get_objects): Use the type from the constant table,
4469         not the type of the parameter, when creating default values.
4470         Handle null default values correctly.
4472 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4474         * file-io.c:
4475         * file-io.h:
4476         * threadpool.c:
4477         * threadpool.h:
4478         * icall.c:
4479         * socket-io.c: removed dead code for async IO.
4481 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4483         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
4485         * threadpool.c: intercept socket async. calls and pass them to a thread
4486         that is polling and dispatching the job items to the threadpool as
4487         socket become ready. Fixes bugs #71217, #71933.
4489         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
4490         between char and short/ushort arrays.
4492         * socket-io.c: remove dead code.
4494 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
4496         * locales.c,
4497           icall.c : removed InternalToUpper_Comp() and
4498           InternalToLower_Comp().
4500 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
4502         * char-conversions.h : The tables were incorrectly generated. Should
4503           be generated against invariant culture.
4505 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
4507         * object.c (mono_runtime_invoke_array): Fix return value when 
4508         passing pre-created valuetype objects to ctors.
4510         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
4511         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
4512         Fixes #74338.
4514 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
4516         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
4517         only used with --security and hides the wrong corlib version error.
4519 2005-03-30  Joshua Tauberer  <tauberer@for.net>
4521         * class.c: Changed mono_class_name_from_token so that types
4522         outside of a namespace don't have an initial period.  Improved
4523         the g_warning message used in _mono_class_get when loading
4524         fails.
4525         * assembly.c: In mono_assembly_load_reference, when an assembly
4526         can't be found, "No such file or directory" is misleading and
4527         unhelpful because a few paths were checked for the presence of
4528         the assembly.  When that happens (ENOENT), display a nicer
4529         message indicating the directories that were searched.  In all
4530         cases, the warning is made easier to read for non-hackers.
4532 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
4534         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
4535         project/solution.
4536         * appdomain.h|domain.c: Removed inline from functions.
4537         * appdomain.c: Reduced warnings when compiling on windows.
4538         * icall.c: Fixed output_debug declaration to gunichar2*.
4539         * mono-config.c: Reduced warnings when compiling on windows.
4540         * rand.c: Added missing "windows.h". Added missing return value.
4541         * rawbuffer.c: Added missing winsock2.h for windows.
4542         * sysmath.h: Added mono-compiler.h header to allow/ease 
4543         compilation with non-GCC compilers.
4544         * threads.c: Fixed declarations to compile with VS.NET C compiler.
4545         Removed cast warnings.
4547         Adapted from the work of J Lothian (for VC6).
4549 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
4551         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
4552         from default_path.
4554 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
4556         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
4557         the 2.0 profile.
4559 2005-03-27  Raja R Harinath  <harinath@gmail.com>
4561         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
4562         has to be in $(exec_prefix).  $(prefix) is for arch-independent
4563         stuff, and it would probably use $(prefix)/share rather than
4564         $(prefix)/lib.
4566 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4568         * console-io.c: added 2 includes that might be missing.
4570 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
4572         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
4573         profile.
4575         * reflection.c (create_custom_attr): Allocate the params array using
4576         alloca so it gets GC tracking.
4578 2005-03-23  Chris Toshok  <toshok@ximian.com>
4580         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
4581         out some spew.
4583 2005-03-24  Raja R Harinath  <rharinath@novell.com>
4585         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
4586         changes to pick up any changes in prefix, etc.
4588 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
4590         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
4591         
4592         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
4593         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
4595 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
4597         * class-internals.h object-internals.h class.c reflection.c: Extend the
4598         mono_lookup_dynamic_token () function to return the class of the
4599         token as well. 
4601         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
4602         well. Fixes #73848.
4604 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
4606         * security-manager.c: Skip inheritance checks for intra-corlib
4607         class inheritance and method overrides. This skips a lot of checks
4608         and (anyway) permissions cannot work until corlib is loaded.
4610 2005-03-23  Martin Baulig  <martin@ximian.com>
4612         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
4613         MONO_TYPE_GENERICINST.  
4615 2005-03-23  Martin Baulig  <martin@ximian.com>
4617         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
4619 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
4621         * class.c: added locking comments to some functions.
4622         Cache the interface offsets arrays (saves about 20 KB
4623         of runtime memory in a typical app).
4624         Reduce the time overhead in mono_class_setup_supertypes ().
4626 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
4628         * icall.c: speedup and fix leaks in GetMethodsByName and
4629         GetPropertiesByName.
4631 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
4633         * reflection.c: some locking fixes.
4635 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
4637         * metadata.c: added missing break in case statement.
4639 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
4641         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
4642         typedbyref return values. Fixes #73941.
4644 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
4646         * security-manager.c|h: Added demandunmanaged method and 
4647         suppressunmanagedcodesecurity class to MonoSecurityManager.
4648         Renamed aptc class to allowpartiallytrustedcallers.
4650 2005-03-17  Martin Baulig  <martin@ximian.com>
4652         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
4654 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4656         * file-io.c: disabled file async. IO using aio_*. It uses the
4657         threadpool now. Workaround for bug #73718.
4659 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
4661         * assembly.h, mono-config.c: added code to deal with bundled configs
4662         for bundled assemblies.
4664 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
4666         * *.c, private.h: cleanup, removing old private.h header file.
4668 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
4670         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
4671         and throw_on_unmappable_char attributes.
4673 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
4675         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
4676         _ProcessName_internal.
4678 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
4680         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
4681         #73631.
4683         * icall.c threads.c threads-types.h: Remove slothash icalls as they
4684         are no longer used.
4686 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
4688         * object.c (compute_class_bitmap): Add support for generics. Fixes
4689         #73527.
4691 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
4693         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
4695 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4697         * filewatcher.c: commented out the code for windows watcher, as we don't
4698         use it (we use the managed implementation instead).
4700 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
4702         * object-internals.h (MonoThread): Remove 'unused1' field.
4704         * appdomain.c: Bump corlib version.
4706         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
4708         * reflection.c (mono_reflection_create_runtime_class): Remove the
4709         AssemblyBuilder.Save optimization since it causes too many problems.
4711 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
4713         * exception.c|h: Added mono_get_exception_reflection_type_load to
4714         create a ReflectionTypeLoadException object.
4715         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
4716         to return NULL is a InheritanceDemand fails during reflection. Updated
4717         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
4718         ReflectionTypeLoadException if an InheritanceDemand fails during 
4719         reflection. Added icall mapping for GetLinkDemandSecurity.
4720         * security-manager.c|h: Added ves_icall_System_Security_
4721         SecurityManager_GetLinkDemandSecurity internal call to return the
4722         class and methods permissions set for a LinkDemand. Removed unused
4723         fields in MonoSecurityManager.
4725 2005-03-10  Martin Baulig  <martin@ximian.com>
4727         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
4728         it's a generic instance.
4730 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
4732         * reflection.c (mono_get_object_from_blob): Applied patch from
4733         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
4735         * class.c (mono_class_is_assignable_from): Another try at fixing 
4736         #73469 without breaking anything.
4738 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
4740         * class.c: (mono_class_is_assignable_from): Revert the last changes
4741         since they don't work with generics.
4742         
4743         * class.c (mono_class_is_assignable_from): Fix build bustage.
4745         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
4746         the managed IsAssignableFrom method. Fixes #73469.
4748         * reflection.c (mono_reflection_call_is_assignable_from): New helper
4749         function.
4751 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
4753         * object.c (mono_load_remote_field_new): Fix returning uninitialized
4754         memory when the remoting callback does not sets the out arguments.
4755         Fixes #73007.
4757         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
4758         by mistake.
4760         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
4762         * object-internals.h (MonoStackFrame): Sync with managed object layout.
4764         * appdomain.c: Bump corlib version.
4766 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
4768         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
4769         function.
4771         * threads.c (mono_thread_attach): Detect threads which are not started
4772         by the GC pthread wrappers.
4774 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
4776         * icall.c: Added new icall for RNG.
4777         * rand.c|h: Added new icall to open the RNG. This allows to share a 
4778         single handle on Linux to access /dev/urandom and fix #73183.
4780 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
4782         * object.c: setting the new vtable in a transparent proxy object must
4783         not change the GC descriptor.
4785 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
4787         * object.c: fixed compilation without GCJ support.
4788         * reflection.c: for runtime-created types ensure klass->has_references
4789         is correct (bug #73215).
4791 2005-03-02  Martin Baulig  <martin@ximian.com>
4793         * class.c (mono_class_is_assignable_from): Make this work if
4794         `oklass' is a generic instance; fixes #72831.
4796 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
4798         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
4799         with hasthis set.
4800         
4801         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
4803         * marshal.c: Reorganize native->managed marshalling code to also use
4804         the emit_marshal_... functions.
4806 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
4808         * object.c: typed allocs have issues with bitmap sizes > 30,
4809         so check for max_set >= 30.
4811 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
4813         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
4814         managed code. Fixes #73012.
4816         * metadata.h (MonoMarshalSpec): Add elem_mult field.
4818         * metadata.c reflection.c: Load/Emit elem_mult as well.
4819         
4820         * metadata.h (MonoMarshalSpec): Add comment.
4822         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
4824         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
4825         num_elem to -1 if not given.
4827         * object-internals.h (MonoReflectionMarshal): Add has_size field.
4829         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
4830         given values.
4832 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
4834         * null-gc.c (mono_gc_free_fixed): Was not compilable.
4836 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
4838         * reflection.c (encode_marshal_blob): Encode param_num field as well.
4840         * object-internals.h (MonoReflectionMarshal): Add param_num field.
4842 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
4844         * object.c: generalized the reference bitmap creation
4845         and added hooks for the new GC.
4846         * class-internals.c: removed the gc_bitmap field from MonoClass.
4848 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
4850         * domain.c: help the compiler to produce better code
4851         in mono_jit_info_table_find ().
4853 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
4855         * object.c: make all allocations look typed.
4857 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
4859         * socket-io.c: load Mono.Posix if it's not loaded already
4860         (fixes bug#73033).
4862 2005-02-24  Martin Baulig  <martin@ximian.com>
4864         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
4865         * reflection.c (dup_type): Likewise.
4867 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
4869         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
4870         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
4872 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
4874         * domain.c, threads.c, object-internals.h: make the critical thread
4875         local vars use the fast access mode (even when we're compiled in
4876         a lib). Provide accessors to be used by the jit during codegen.
4878 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4880         * appdomain.c: Changed hook functios behavior to include
4881         support for the reflection only assemblies. Some icalls were changed
4882         to support the mentioned assemblies too. Signatures of static methods
4883         try_assembly_resolve and real_load now have an additional parameter:
4884         refonly.
4886         * assembly.c: General changes to mono_assembly_ methods to support
4887         reflection only api. Functions mono_assembly_open, mono_assembly_load,
4888         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
4889         suffix, to support an additional gbool parameter to specify whether
4890         the assembli is reflection only or not. Created some new hook functions 
4891         to add support for reflection only assemblies. Signatures of static 
4892         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
4893         have now an additional parameter: refonly.
4895         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
4896         indicating whether the assembly is reflection only or not.
4898         * exception.c: Add mono_get_exception_invalid_operation.
4900         * icall.c: Throw an InvalidOperationException when trying to invoke
4901         a property/method/event, or trying to set/get the value of a field.
4902         Also add an icall to retrieve the ref_only flag to the
4903         MonoReflectionAssembly.
4905 2005-02-23  Chris Toshok  <toshok@ximian.com>
4907         Part of fix for #72827.
4908         * mono-debug.c (mono_debug_add_method): add lexical block data to
4909         the info we write.  Kind of a hack at the moment - we copy the
4910         lexical block info from the MonoDebugMethodInfo to the
4911         MonoDebugMethodJitInfo here, before writing it.
4912         (mono_debug_read_method): read the lexical block info.
4914         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
4916         * debug-mono-symfile.h: add lexical block support.
4918         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
4919         support.
4921 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
4923         * loader.c (mono_lookup_pinvoke_call): Fix warning.
4925         * object.c (mono_runtime_free_method): Call mono_free_method () and
4926         put the TODOs there.
4928         * loader.c (mono_free_method): Free up most memory allocated for 
4929         dynamic methods.
4931 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
4933         * reflection.c: properly flag a Type argument to a
4934         named custom attr value (bug #72248).
4936 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
4938         * reflection.c: reduce code duplication in named custom
4939         attribute encoding.
4941 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
4943         * reflection.c: properly encode custom attrs of type object
4944         (bug #72649).
4946 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
4948         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
4950 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
4952         * socket-io.c: load System.dll if it's not loaded already
4953         (bug #72850 and #70477).
4955 2005-02-21  Martin Baulig  <martin@ximian.com>
4957         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
4958         generic instances.
4960 2005-02-21  Martin Baulig  <martin@ximian.com>
4962         * reflection.c (mono_image_build_metadata): We also need to
4963         "fixup" the MethodImpl table after we computed the final method
4964         indices.  Call fixup_methodimpl() to do that.
4965         (fixup_methodimpl): New private method.
4967 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
4969         * assembly.c: special case mscorlib.dll (bug#72536),
4970         patch from Carlos Alberto Cortez.
4972 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
4974         * threads-types.h threads.c: Fix build bustage.
4976         * threads.c: Use a union for long<->double conversions.
4978         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
4979         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
4981         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
4982         containing the checkpoint call with NOT_TAKEN.
4983         
4984         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
4985         checkpoint before pushing the arguments, so they won't have to be
4986         spilled to stack.
4988 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
4990         * domain.c, assembly.c, domain-internals.h: make some data
4991         const and relocation-free.
4993 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
4995         * object.c, appdomain.c, class-internals.h: introduce the
4996         MonoClassRuntimeInfo structure to hold the info needed to
4997         use a class at runtime. Made mono_class_vtable() lock-free
4998         for all the appdomains.
5000 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
5002         * metadata-internals.h, image.c: introduce a per-image mempool to
5003         be used for memory that has the same lifetime as the image.
5005 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
5007         * domain.c: In mono_init_internal(), instead of selecting the first
5008         runtime version supported by an executable, get a list of all
5009         supported versions and select the one for which an mscorlib exists
5010         (since even if the runtime supports a given version, it doesn't mean
5011         that the framework for that version is installed).
5012         Modified get_runtimes_from_exe to support this behavior.
5013         In supported_runtimes, added information about additional system
5014         assembly versions.
5015         
5016         * assembly.c: Added support for more than one system assembly version
5017         per runtime version. Updated the assembly list.
5018         In mono_assembly_remap_version, removed the initial version check,
5019         since we don't know to which version we need to compare until we
5020         get the version set on which the assembly is based.
5021         Moved the code for loading corlib into the new method
5022         mono_assembly_load_corlib(), so it can be used by the initialization
5023         code.
5024         
5025         * domain-internals.h: Updated data structures and added declaration
5026         for mono_assembly_load_corlib.
5028 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
5030         * reflection.c (resolve_object): Fix the creation of the signature in 
5031         the SignatureHelper case.
5033         * assembly.c (mono_assembly_remap_version): Fix binary search.
5034         
5035 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
5037         * class.c: Added inheritance check when a method is overloaded (from a
5038         virtual method or when implementing an interface) and when a class is
5039         inherited. Added functions to set a failure for a class and to 
5040         retreive the exception from a failure.
5041         * class-internals.h: Added fields to MonoClass to keep the exception
5042         information status for inheritance (or other exceptions) to be thrown
5043         later (i.e. not at load time).
5044         * object.c: Throw the inheritance SecurityException when a type is to 
5045         be created with either class or method inheritance violations.
5046         * reflection.c|h: Fix when getting declsec from a class. Removed 
5047         unrequired code for class. Improved sanity in parameter naming.
5048         * security-manager.c|h: Added functions to check for class and method
5049         inheritance.
5051 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
5053         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
5054         and has_finalize in dynamic types as well.
5056 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
5058         * culture-info-table.h : fixed currency format for en-GB (and so on).
5060 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
5062         * gc.c: ensure the GC handles never have 0 as a value.
5064 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
5066         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
5067         a pointer to a struct to unmanaged code. Fixes #72625.
5069 2005-02-16  Martin Baulig  <martin@ximian.com>
5071         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
5073 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
5075         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
5077 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
5079         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
5081         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
5082         UnmanagedFunctionPointerAttribute, use it for determining calling convention
5083         etc. Fixes #71471.
5085         * reflection.c (mono_custom_attrs_get_attr): New helper function.
5087         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
5089 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
5091         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
5092         changes to make the current context a field in MonoThread.
5094 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
5096         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
5097         the last change.
5098         
5099         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
5100         extracted from mono_marshal_get_native_wrapper.
5102         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
5103         to create wrappers around native functions.
5105         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
5106         delegates for arbitrary function pointers. Fixes #71472.
5108 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
5110         * threads.c: cleaned up the code a little.
5112 2005-02-15  Martin Baulig  <martin@ximian.com>
5114         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
5115         the data table.
5117         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
5118         allocate larger chunks if needed.
5120 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
5122         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
5123         in by mistake.
5125 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
5127         * domain.c: keep the domains in an array and ensure the domain ids
5128         are kept small, so they can be used as indexes to domain-specific data
5129         with a small memory overhead.
5131 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
5133         * icall.c: Handle byref types in Type icalls. Fixes #72544.
5135 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
5137         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
5139 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
5141         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
5143         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
5144         values.
5146         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
5147         
5148 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
5150         * domain-internals.h: add the hashtable here.
5152         * class-internals.h: Remove `info' from MonoMethod
5154         * domain.c: Add a new hashtable, jit_trampoline_hash
5156 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
5158         * object.c: don't set the value of static fields
5159         (fixes bug#72494).
5161 2005-02-11  Martin Baulig  <martin@ximian.com>
5163         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
5164         (mono_debug_add_method): Silently ignore the method if it's too big.
5165         (mono_debug_add_type): Likewise.
5167 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
5169         * threads.c, appdomain.c: remove #ifdefs from the code.
5171 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
5173         * metadata-internals.h: Added flags to MonoAssembly to cache the most
5174         common security informations. This allows us to stay in unmanaged code
5175         when doing LinkDemand and it's special cases (except for the first 
5176         time for initialization). The flags a very much used with --security.
5177         * reflection.c|h: Added code to get declarative security attributes 
5178         for LinkDemand and InheritanceDemand. This required to refactor the
5179         existing code for Demand.
5180         * security-manager.c|h: Added new method fields for the special cases
5181         of LinkDemand.
5183 2005-02-10  Martin Baulig  <martin@ximian.com>
5185         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
5186         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
5188 2005-02-10  Martin Baulig  <martin@ximian.com>
5190         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
5191         debugging code; this is almost a complete rewrite.
5193         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
5195 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
5197         * domain.c, object.h: expose mono_string_equal () and 
5198         mono_string_hash ().
5199         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
5200         it's implemented in managed code.
5202 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
5204         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
5205         lo leak objects between appdomains.
5207 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
5209         * assembly.c: old compilers compilation fix from 
5210         robertj@gmx.net (Robert Jordan).
5212 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
5214         * class-internals.h: Little reminder for the future.
5216         * debug-helpers.c: Fix up wrapper_type_names
5218 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
5220         * image.c, metadata-internals.h: when loading an image from a file,
5221         mmap all of it and use the same codepaths as when using a
5222         in-memory image: the code is simpler and we use less memory
5223         (both writable and readonly).
5225 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
5227         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
5228         API to alloc runtime data structures that need to be tracked by the
5229         GC and contain pointers.
5230         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
5231         make the code more readable and eventually use a different GC.
5233 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
5235         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
5236         for out arguments.
5237         
5238 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
5240         * object.c: In release_type_locks(), don't release the cctor lock
5241         if it has already been released. This fixes a crash in the
5242         thread5 test.
5244 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
5246         * gc.c, marshal.c, icall.c: register a delegate for finalization
5247         only when the native function pointer has been allocated for it.
5249 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
5251         * object.c: cleaned up some code, allocate objects that are
5252         pointer free with the atomic malloc variant. Allocate memory
5253         for static data from the mempool if it's pointer-free.
5254         Allocate the bounds array at the end of the array data, when needed.
5255         * object-internals.h, object.h: move a private function in a private
5256         header.
5257         * class.c: handle missing case in tracking references in fields.
5259 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
5261         * class.c, class-internals.h: keep track if a type has
5262         reference fields in either the instance or static fields.
5264 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
5266         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
5267         and renamed to MonoRuntimeInfo. Added fields to store the expected
5268         framework assembly version. Changed mono_get_framework_version and
5269         mono_get_runtime_version for a single mono_get_runtime_info method.
5270         
5271         * assembly.c: Added method to remap system assembly versions to the
5272         current executing runtime version. Removed old mapping code.
5273         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
5274         
5275         * icall.c, reflection.c: Track api changes.
5277 2005-02-06  Miguel de Icaza  <miguel@novell.com>
5279         * loader.c (method_from_memberref): Improve error reporting,
5280         produce the class name instead of the typeref/typedef index. 
5282 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
5284         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
5286 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
5288         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
5289         stdcall and charset name mangling.  Reorganize the code and add
5290         some tracing stuff.
5292 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
5294         * monodiet.c: More iters!
5296         * marshal.c: Iter usage.
5298         * icall.c: Iter usage.
5300         * object.c: Use iters.
5302         * debug-helpers.c: More iters
5304 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
5306         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
5307         under win32.
5309 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
5311         * mono-debug-debugger.c: use iters
5313         * class.c, class-internals.h: mono_class_setup_events is static
5314         now
5316         * All callers: use iters
5318 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
5320         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
5321         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
5323 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
5325         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
5327         * marshal.h: Add prototypes for ldfld/stfld_remote.
5329         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
5330         this is called during startup.
5331         
5332 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
5334         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
5335         MonoThreadsSync struct private in monitor.c. Changed the way
5336         MonoThreadsSync is allocated so it's faster and there is no
5337         need to keep track of it with a finalizer and it uses less memory.
5338         This also finally allows us to allocate mono objects as ptrfree when
5339         there are no reference fields.
5341 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
5343         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
5344         disappearing link to the GC interface and use them to simplify
5345         the gchandles code.
5347 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
5349         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
5350         stfld_remote which call mono_load/store_field_new. This allows methods
5351         calling ldfld/stfld wrappers to be AOTed.
5353         * console-io.c: Include sys/filio.h under solaris.
5354         
5355         * console-io.c: Include curses.h if needed correctly.
5357 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
5358         
5359         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
5360         method->klass as well.
5362         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
5364         * class.c (mono_class_init): Switch on lazy initialization of 
5365         methods.
5367         * class.c (mono_class_get_finalizer): Handle the case when the 
5368         finalizer is inherited.
5370 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5372         * console-io.c: <curses.h> is needed by term.h on solaris.
5374 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
5376         * icall.c, class-internals.h, monodiet.c, class.c: Remove
5377         mono_class_setup_properties where possible. Remove this ftn from
5378         the header file, and make it static.
5380 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
5382         * loader.c: Add missing setup_... call.
5384         * class.c: Add missing setup_... calls.
5386         * class.c (mono_class_init): Switch on lazy initialization of 
5387         the generic vtable.
5388         
5389         * class.c (mono_class_init): Fix generics broken by the recent changes.
5391         * monodiet.c (handle_type): Add missing setup_... calls.
5393         * class.c: Back out garbage in previous patch.
5394         
5395         * class.c: Add missing setup_... calls.
5397         * class.c (mono_class_get_method_from_name_flags): Avoid calling
5398         mono_class_setup_methods () if possible.
5400         * class-internals.h (MonoClass): Add 'has_cctor' flag.
5402         * class-internals.h (MonoCachedClassInfo): New structure.
5404         * class.c: Initialize properties and events fields of MonoClass lazily.
5406         * class.c: Add infrastructure for lazily initializing the methods and
5407         vtable fields of MonoClass. Not yet used.
5409         * class.c (mono_class_get_finalizer): New helper function.
5411         * class.c: Add infrastructure for loading some class related data from
5412         an AOT file.
5414         * object.c: Add infrastructure for initializing the vtable from data
5415         in the AOT file.
5417         * gc.c (run_finalize): Use mono_class_get_finalizer ().
5419         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
5420         appropriate initialization function before accessing parts of the
5421         MonoClass structure.
5423         * marshal.c: Fix warnings.
5424         
5425         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
5427         * mono-debug-debugger.c (get_exception_message): Use 
5428         mono_class_get_method_from_name_flags ().
5430 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
5432         * reflection.c, appdomain.c: Replace a few manual searches that
5433         Zoltan missed. (Paolo approved this part of my initial patch).
5435 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
5437         * profiler.c: disable recording statistical events at report time.
5439 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
5441         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
5442         to byteswap arrays of enum values, too (bug #72080).
5444 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
5446         * appdomain.c (set_domain_search_path): Allow this to be called if
5447         domain->setup is not yet set.
5449         * loader.c (mono_method_get_index): New helper function.
5451         * loader.c reflection.c: Use mono_method_get_index ().
5453         * class.c (mono_class_get_method_from_name_flags): New helper method.
5455         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
5456         this.
5458         * class.c (mono_class_get_cctor): New helper method.
5460         * string-icalls.c object.c class.c marshal.c reflection.c: Use
5461         mono_class_get_method () to look up methods.
5463 2005-02-01  Miguel de Icaza  <miguel@novell.com>
5465         * console-io.c: Fix the build, this should work on Windows.
5467 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
5469         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
5470         be set to null to keep things valid
5472 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5474         * icall.c: added Console 2.0 icalls.
5475         * Makefile.am: added console-io.[ch]
5476         * console-io.[ch]: internal calls for Console 2.0 API.
5478 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
5480         * class.c: make sure we consider all the interfaces
5481         when calculating max_interface_id (bug found by
5482         Jeroen Frijters running ikvm).
5484 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
5486         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
5487         valuetype fields to null.
5489         * object.c (set_value): Ditto. Fixes #71669.    
5491 2005-01-31  Martin Baulig  <martin@ximian.com>
5493         * metadata.c (mono_metadata_has_generic_params): New public
5494         function; checks whether something is a generic method.
5496 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
5498         * appdomain.c: fix infinite recursion when adding assemblies.
5500 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
5502         * object.c: Fix small typo to return all items for Environment.
5503         GetCommandLineArgs.
5505 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
5507         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
5508         reflection.c: more domain and assembly-unload related fixes
5509         and memory leaks plugs.
5511 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
5513         * 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.
5515 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
5517         * loader.c (mono_method_signature): Make this method lazy
5518         (mono_get_method_from_token): Don't computate the signature here.
5520         Doing this saves quite a bit of memory. I got 90 kb on starting up
5521         monodoc. It should also save some disk reads on startup.
5523         * *: MonoMethod->signature might be NULL now. You *MUST* use
5524         mono_method_signature.
5526 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
5528         * object.c (mono_runtime_get_main_args): Return an array from the
5529         current domain here. Fixes #71938.
5531 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
5533         * monitor.c: formatting changes to comply with the
5534         mono coding style and remove #ifdefs from the code.
5536 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
5538         * metadata.c, private.h: remove some unneeded data
5539         and use a more compact representation for table schemas.
5541 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
5543         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
5544         to get a better distribution in hash tables.
5545         * *.c: use mono_aligned_addr_hash() where appropriate.
5546         * assembly.c: make var static.
5548 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
5550         * domain-internals.h: Put MonoJitInfo on a diet.
5552         * domain.c: Fix a warning.
5554 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
5556         * gc.c: rework the gc handles code to reuse handles
5557         when freed.
5559 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
5561         * domain.c: fixed long standing bug in mono_string_equal() which
5562         was brought to light with the ldstr changes.
5564 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
5566         * reflection.c: Remove warning by adding missing include for marshal.h
5568 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
5570         * domain.c, object.c: change the ldstr_table to hold
5571         MonoString* as keys: makes the runtime isinterned lookup
5572         faster and simplifies memory management.
5574 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
5576         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
5577         possible to add imperative security checks before calling the icall.
5578         * reflection.c: Return security attributes on the original MonoMethod
5579         (and not the wrapped one). This fix permissions on icalls.
5581 2005-01-25  Dick Porter  <dick@ximian.com>
5583         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
5584         the check for mktime() support actually test the mktime() return
5585         value.  "Fixes" bug 71682, though the output is still different to
5586         MS.
5588 2005-01-25  Martin Baulig  <martin@ximian.com>
5590         * class.c (mono_class_is_assignable_from): Make this work for
5591         generic instances.
5593 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
5595         * marshal.c (mono_string_utf8_to_builder)
5596         (mono_string_builder_to_utf16): We might not have ownership of the
5597         string. In thise case, we need to create a new buffer.
5599         * object-internals.h (mono_stringbuilder_capacity): sb->str might
5600         be null, in which case, use the default capacity.
5602 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
5604         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
5605         GC events to the profiler.
5607 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
5609         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
5610         if you don't want the GC to run.
5612 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
5614         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
5615         start providing a GC API and keeping different implementations in
5616         their own file.
5617         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
5619 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
5621         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
5622         mmap rather than allocating a huge buffer.
5623         (mono_debug_close_mono_symbol_file): Free the buffer allocated
5624         above.
5626 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
5628         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
5629         and CheckExecutionRights.
5630         * reflection.c|h: Keep the index of the declarative security to be 
5631         used, instead of the pointer, when AOT compiler is used. Also add 
5632         class initialization when requesting demands.
5633         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
5634         CheckExecutionRights. Both properties are now FALSE by default, and
5635         unmodifiable, unless the --security option is used.
5637 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
5639         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
5640         reflection.c: properly refcount images and assemblies, many leaks fixed.
5642 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5644         * threadpool.c: increase the timeout for threads in the thread pool to
5645         10s.  Fixes bug #67159.
5647 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
5649         * class-internals.h: Sun's compiler insists on explicit
5650         signed on bit fields to handle then correctly.
5652 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
5654         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
5655         Make the size of the array fit only the number of invalid path
5656         chars that we have.
5658         * class.c (_mono_class_get): Improve the error reporting when a
5659         class referenced is not found, to assist debugging. 
5661 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
5663         * threads.c: fix off-by-one error.
5664         * domain.c: free data allocated in the domain.
5666 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
5668         * reflection.c (mono_method_body_get_object): Fill out exception info
5669         as well.
5671         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
5672         structure.
5673         
5674 2005-01-19  Martin Baulig  <martin@ximian.com>
5676         * loader.c (mono_get_method_constrained): Make this work again.
5678 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
5680         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
5681         guint16 to match the managed side.
5683         * reflection.c (mono_reflection_body_get_object): Fill out local
5684         variables array.
5686         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
5687         as well.
5689         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
5690         'local_var_sig_token'.
5692 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
5694         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
5695         System.Drawing.
5697         * reflection.c (mono_method_body_get_object): Handle abstract and
5698         runtime methods.
5700 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
5702         * marshal.c, loader.c, class-internals.h, reflection.c:
5703         store the emthod data for a wrapper in an array instead of a list.
5705 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
5707         * marshal.c: change the code to allocate memory more
5708         conservatively for method wrappers.
5710 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
5712         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
5713         fields from MonoClass to the marshal info structure where they belong.
5715 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
5717         * class.c, object.c, class-internals.h, marshal.c: rearrange
5718         some fields and tweak some types to lower memory usage.
5720 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
5722         * threads.c (signal_thread_state_change): Handle the case when the
5723         target thread is the current thread.
5725         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
5727         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
5728         emit_ptr_to_object_conv. 
5730         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
5731         marshalling. Fixes #71352.
5733 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
5735         * metadata.h, blob.h: move table enum to blob.h so it can be included
5736         in any header.
5737         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
5738         cut the size of MonoImage/MonoDynamicImage.
5740 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
5742         * profiler.c (mono_profiler_install_simple): Fix default arguments.
5744 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
5746         * reflection.c, reflection.h, icall.c: add a function to check
5747         if an attribute type is defined for a metadata object.
5749 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
5751         * object-internals.h: Added some needed fields from StringBuilder class.
5752         * marshal.c: Set the maxCapacity when creating a StringBuilder.
5754 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
5756         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
5757         threads before shutting down the runtime.
5759         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
5761 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
5763         * object-internal.h, threads.c: implement stacksize and 
5764         parameterized thread start functionality (requires
5765         matching corlib). Marked broken code for later removal.
5767 2005-01-12  Martin Baulig  <martin@ximian.com>
5769         * class-internals.h (MonoGenericClass): Moved the `initialized'
5770         flag to MonoDynamicGenericClass, removed `init_pending'.
5771         (MonoGenericInst): Added `is_reference' flag.
5773 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
5775         * reflection.c (mono_image_create_pefile): Only set the pe_offset
5776         inside the MSDOS header. Fixes #71201.
5778         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
5779         gc thread.
5780         (mono_domain_finalize): Ditto.
5782 2005-01-12  Martin Baulig  <martin@ximian.com>
5784         * class.c (mono_get_shared_generic_class): Use the cache for
5785         non-dynamic generic classes.
5787         * class-internals.h (mono_class_create_generic_2): Removed
5788         function prototype, this function is now static inside class.c.
5790         * class.c (mono_class_create_generic_2): Made this static, only
5791         call it from mono_class_init() and mono_class_setup_parent().
5792         (collect_implemented_interfaces_aux): Call mono_class_init() on
5793         the interfaces we collect.
5794         (mono_class_setup_vtable): Call mono_class_init (class->parent).
5796 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
5798         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
5799         it a real thread handle.
5801         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
5802         MonoJitExceptionInfo, since each catch clause needs its own variable.
5803         
5804 2005-01-11  Dick Porter  <dick@ximian.com>
5806         * image.c (mono_pe_file_open): New variant on mono_image_open()
5807         that does not set up the CLI metadata; used for FileVersionInfo so
5808         it can get the data for windows binaries too.
5809         
5810         * process.c (process_read_string_block): Don't read off the end of
5811         the StringTable block.
5813         These both fix bug 70766.
5815 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
5817         * gc.c: set some fields to NULL at GC cleanup time.
5818         * threads.c: if we quit the main thread, call exit ().
5820 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
5822         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
5824 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
5826         * threads.h, threads.c, object.c: added accessor and settor for
5827         main_thread. Handle it specially when exiting from it: wait
5828         for other foreground threads to exit.
5830 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
5832         * process.c, verify.c: remove some bloat.
5834 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
5836         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
5837         the calling convention to cdecl under win32.
5839 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
5841         * object.c (mono_object_get_size): New function to get the size of
5842         an object instance.
5844         * profiler.c (simple_allocation): Use above.
5846 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
5848         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
5849         ves_icall_System_AppDomain_getRootDomain (as it's not required to
5850         get an appdomain by it's id and we can't assume the root's id is 0).
5851         * domain-internals.h: Change the function prototype to match.
5852         * icall.c: Change the icall table for AppDomain.
5854 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
5856         * locales.c (string_invariant_compare_char): Only compute
5857         GUnicodeTypes in the case where we need them.  Test for ordinality
5858         first and return if so.
5860         From the commit:
5862                 /*
5863                  * FIXME: here we must use the information from c1type and c2type
5864                  * to find out the proper collation, even on the InvariantCulture, the
5865                  * sorting is not done by computing the unicode values, but their
5866                  * actual sort order.
5867                  */
5869 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
5871         * loader.c: for P/Invoke methods, allow the "Internal" shared
5872         library name to refer to the calling process symbol namespace.
5874 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
5876         * Makefile.am: Add the security manager to the build.
5877         * security-manager.c|h: New. Initialization of the security manager.
5879 2005-01-07  Dick Porter  <dick@ximian.com>
5881         * threads.c: 
5882         * monitor.c: Update thread state during Monitor and WaitHandle
5883         waits.  Fixes bug 71031.
5885 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
5887         * reflection.c (property_encode_signature): Correctly handle when the
5888         property has no methods.
5890 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
5892         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
5893         
5894         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
5895         fields from mb, not rmb. Fixes #71017.
5897         * marshal.c (emit_ptr_to_str_conv): Add support for 
5898         ByValTStr -> string conversion. Fixes #71015.
5900         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
5902         * mempool.c (mono_mempool_contains_addr): New helper function.
5904 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
5906         * metadata.c (mono_metadata_compute_size): Fix size calculation of
5907         HasSematics encoded fields.
5908         
5909         * metadata.c (mono_type_to_unmanaged): Improve error message for 
5910         invalid string marshalling.
5912         * metadata.c: Fix warnings.
5913         
5914 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
5916         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
5917         profiler support.
5919 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
5921         * domain.c object.c domain-internals.h: Revert part of r38077 since the
5922         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
5923         tests.
5925 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
5927         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
5928         so methods containing these can be AOTed.
5930 2005-01-03  Martin Baulig  <martin@ximian.com>
5932         * loader.c (find_method): Removed the hack for generic instances.
5933         (method_from_memberref): If our parent is a generic instance, pass
5934         its generic type definition to find_method() and then inflate the
5935         method.
5936         (mono_get_method_constrained): Pass the generic type definition to
5937         find_method() and inflate the method later.
5939         * class-internals.h (MonoStats): Added `generic_class_count'.
5941         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
5942         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
5944         * reflection.c (mono_custom_attrs_from_params): Don't ignore
5945         generic type definitions.
5947 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
5949         * loader.c icall.c: Fix warnings.
5951 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
5953         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
5954         blittable types. Fixes #70864.
5956 2004-12-29  Martin Baulig  <martin@ximian.com>
5958         * icall.c
5959         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
5961         * reflection.c (mono_method_get_object): Create a
5962         "System.Reflection.MonoGenericMethod" for inflated methods; don't
5963         call mono_get_inflated_method().
5965         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
5967 2004-12-27  Martin Baulig  <martin@ximian.com>
5969         * class-internals.h (MonoMethod): Added `is_inflated' flag.
5970         (MonoMethodInflated): Added `inflated' field.
5972         * class.c (mono_class_inflate_generic_method): Don't really
5973         inflate the method here; just set the `is_inflated' flag in the
5974         MonoMethod.
5975         (mono_class_get_inflated_method): Actually inflate the method here
5976         if it's not already inflated; we use the MonoMethodInflated's new
5977         `inflated' field as a cache.
5979 2004-12-26  Martin Baulig  <martin@ximian.com>
5981         * class.c
5982         (inflate_generic_class): Moved some code out of inflate_generic_type().
5983         (mono_class_inflate_generic_method): If we're already inflated,
5984         inflate the context and use the declaring method; ie. make sure
5985         the declaring method of an inflated method is always the generic
5986         method definition.
5987         (mono_class_create_from_typedef): Create
5988         `class->generic_container->context->gclass'.
5990 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
5992         * metadata-internals.h, marshal.c, reflection.c: More
5993         MonoGHashTable->GHashTable.
5995         * domain-internals.h, class.c: Change MonoGHashTable's into
5996         GHashTables for some cases where no gc stuff is used
5998         All users: update apis
6000 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
6002         * metadata.c (builtin_types): Make this `const'. Makes this get
6003         put into the shareable section.
6004         (mono_metadata_init): Casts to make gcc happy.
6006 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
6008         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
6010 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
6012         * icall.c: Added an internal call to retrieve the position and length
6013         of assembly-level declarative security attributes (RequestMinimum, 
6014         RequestOptional and RequestRefuse). This is used by the Assembly class
6015         to re-create the corresponding permission sets.
6017 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
6019         * marshal.c: fix the stelemref wrapper to be type correct
6020         (and faster).
6022 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
6024         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
6025         to do key & 0x7fffffff. Hashtable already does this. It just
6026         results in longer code.
6028 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
6030         * appdomain.c: Bump corlib version.
6031         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
6032         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
6033         * reflection.c|h: Add functions to get declarative security infos
6034         (blob position and length) for assemblies, classes and methods.
6036 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
6038         * reflection.c: sort the constant table (bug #70693).
6040 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
6042         * object-internals.h, threads.c, domain.c: add accessors for
6043         the MonoThread and MonoDomain tls keys.
6045 2004-12-18  Martin Baulig  <martin@ximian.com>
6047         * class.c (inflate_generic_type): If we're inflating a generic
6048         instance, set `ngclass->context->container = context->container';
6049         ie. the container we inflated into.
6051         * metadata.c (mono_metadata_parse_generic_param): Reflect above
6052         inflate_generic_type() changes.
6054 2004-12-17  Martin Baulig  <martin@ximian.com>
6056         * class-internals.h
6057         (MonoGenericClass): Replaced `MonoType *generic_type' with
6058         `MonoClass *generic_class'.  Removed `dynamic_info'; if
6059         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
6060         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
6062 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
6064         * exception.c (mono_exception_from_token): New helper function.
6066 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
6068         * assembly.c (mono_assembly_load_with_partial_name): Call 
6069         mono_assembly_loaded before invoking the preload hooks. Fixes
6070         #70564.
6072         * object-internals.h (MonoThread): Change culture_info and 
6073         ui_culture_info into an array.
6075         * threads.c: Cache culture info objects from more than one appdomain.
6077         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
6078         current UI culture.
6080 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
6082         * threads.h threads.c appdomain.c: Clear the culture_info field of
6083         all threads during unloading if they point to an object in the dying
6084         appdomain.
6086 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
6088         * culture-info.h (TextInfoEntry): New struct
6089         * object-internals.h: sync with managed
6090         * locales.c: fill the `text_info_data' field
6091         * culture-info-tables.h: update
6093 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
6095         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
6096         collector.
6098 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
6100         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
6101         (ves_icall_ModuleBuilder_getMethodToken): Ditto
6103 2004-12-12  Martin Baulig  <martin@ximian.com>
6105         * mono-debug-debugger.c (write_type): If we're an enum and the
6106         builtin types have already been initialized, call mono_class_init().
6108 2004-12-11  Martin Baulig  <martin@ximian.com>
6110         * metadata.c (mono_metadata_load_generic_params): Added
6111         `MonoGenericContainer *parent_container' argument; automatically
6112         compute `container->is_method'; pass the correct owner to
6113         get_constraints().      
6115         * reflection.c (compare_genericparam): Sort the GenericParam table
6116         according to increasing owners. 
6118 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
6120         * profiler.c: allow disabling the default profiler.
6122 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
6124         * decimal.c, icall.c: allow disabling System.Decimal support.
6126 2004-12-09  Marek Safar <marek.safar@seznam.cz>
6128         * reflection.c: Add support for null attribute arguments.
6130 2004-12-09  Martin Baulig  <martin@ximian.com>
6132         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
6133         names to get rid of compiler warnings.
6135 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
6137         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
6138         mono_marshal_load_type_info (). Fixes #69625.
6139         (mono_marshal_get_ptr_to_struct): Likewise.
6141 2004-12-08  Martin Baulig  <martin@ximian.com>
6143         * mono-debug.h: Bumped version number to 47.
6145         * mono-debug-debugger.c
6146         (mono_debugger_event_handler, mono_debugger_event): Take two
6147         guint64 arguments insteed of a gpointer and a guint32.  
6149 2004-12-08  Martin Baulig  <martin@ximian.com>
6151         * debug-mono-symfile.h
6152         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
6153         `address' to `native_offset'.
6155 2004-12-08  Martin Baulig  <martin@ximian.com>
6157         * class.c (mono_class_create_from_typespec): Only inflate if we
6158         either have `context->gclass' or `context->gmethod'.
6160 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
6162         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
6164         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
6166         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
6168         * reflection.c (mono_assembly_get_object): Remove the workaround put
6169         in for the release.
6170         
6171         * appdomain.c: Use the corlib_internal field from MonoAssembly.
6173         * appdomain.c: Bump corlib version.
6175         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
6176         be visible in other appdomains.
6178 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
6180         * threads.c: Interlocked inc and dec for longs were messed up,
6181         use a KISS based impl for this. Fixes 70234
6183 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
6185         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
6187 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
6189         * icall.c: fix to follow policy not to allow struct
6190         arguments in icalls.
6192 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6194         * process.c: make the patch that handles spaces in file paths work
6195         on mono/windows too.
6197 2004-12-06  Martin Baulig  <martin@ximian.com>
6199         * class.c (mono_class_create_generic): Call
6200         mono_class_setup_supertypes() if we're dynamic.
6201         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
6203 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
6205         * object-internals.h: Add new fields to MonoThread.
6207         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6209         * icall.c threads-types.h threads.c: Add new icalls.
6211         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
6213         * object-internals.h (MonoReflectionAssembly): Sync object layout with
6214         managed side.
6216         * appdomain.c: Bump corlib version.
6218         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
6219         internal assemblies. Fixes #69181.
6221 2004-12-05  Martin Baulig  <martin@ximian.com>
6223         * class.c (mono_class_inflate_generic_signature): Make this a
6224         no-op if `context' is NULL or we don't have any type parameters;
6225         also copy `sentinelpos'.        
6227 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
6229         * image.c: Add unbox_wrapper_cache.
6231         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
6233         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
6234         function generator.
6235         
6236         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
6237         Fixes #70173.
6239         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
6240         
6241 2004-12-04  Martin Baulig  <martin@ximian.com>
6243         * loader.c (mono_method_get_signature_full): New public function;
6244         like mono_method_get_signature(), but with an additional
6245         `MonoGenericContext *' argument.
6247         * class.c (mono_class_inflate_generic_signature): Formerly known
6248         as inflate_generic_signature(); make this public.
6250 2004-12-04  Martin Baulig  <martin@ximian.com>
6252         * metadata.c
6253         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
6254         instead of a `MonoGenericContainer *'.  
6255         (mono_metadata_parse_array_full): Likewise.
6256         (mono_metadata_parse_signature_full): Likewise.
6257         (mono_metadata_parse_method_signature_full): Likewise.
6258         (mono_metadata_parse_generic_inst): Likewise.
6259         (mono_metadata_parse_generic_param): Likewise.
6260         (mono_metadata_parse_mh_full): Likewise.
6261         (mono_type_create_from_typespec_full): Likewise.
6263 2004-12-03  Martin Baulig  <martin@ximian.com>
6265         * class-internals.h (MonoGenericContainer): Replaced the
6266         `MonoGenericContext * pointer with a `MonoGenericContext'
6267         structure and made it the first element.
6269 2004-12-03  Martin Baulig  <martin@ximian.com>
6271         * class.c
6272         (inflate_generic_type): Set the `context->container' when creating
6273         a new MonoGenericContext.
6274         (mono_class_inflate_generic_method): Likewise.
6275         (mono_class_create_from_typespec): Just use `context->container'
6276         to get the container.
6278         * loader.c (method_from_methodspec): Set `context->parent' from
6279         `context->container' - and if that's a method container, use its
6280         parent.  Also set the `context->container' when creating a new
6281         MonoGenericContext.
6282         (mono_get_method_from_token): Use just `context->container' to get
6283         the container.
6285         * metadata.c (do_mono_metadata_parse_generic_class): Also set
6286         `gclass->context->container'.
6288         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
6289         the `context->container' when creating a new MonoGenericContext.
6291 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
6293         * reflection.c (compare_genericparam): Sort params with identical
6294         owner by their number. Fixes gen-111 on sparc.
6296 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
6298         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
6299         around the domain changes.
6301         * appdomain.c (mono_domain_unload): Handle the case when the thread
6302         calling Unload is itself being aborted during unloading. Fixes #70022.
6304         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
6306         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
6307         checkpoint_func as an icall so it gets a wrapper.
6308         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
6309         in the cross-appdomain wrappers too.
6311         * threads.c (mono_thread_has_appdomain_ref): Make this public.
6313         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
6315         * reflection.c: Fix some memory leaks.
6316         
6317 2004-12-02  Martin Baulig  <martin@ximian.com>
6319         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
6321         * metadata.c (generic_class_cache): New static hashtable.
6322         (mono_metadata_lookup_generic_class): New public method.
6324 2004-12-02  Martin Baulig  <martin@ximian.com>
6326         * class.c (mono_class_create_from_typedef): Call
6327         mono_class_setup_parent() and mono_class_create_mono_type() before
6328         parsing the interfaces.
6330 2004-12-02  Martin Baulig  <martin@ximian.com>
6332         * metadata.c (generic_inst_cache): New static hashtable.
6333         (mono_metadata_lookup_generic_inst): New public function.
6334         (mono_metadata_inflate_generic_inst): New public function.
6335         (mono_metadata_parse_generic_inst): New public function.
6336         (do_mono_metadata_parse_generic_class): Use the new
6337         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
6338         since this'll also use the cache.
6340         * reflection.c (mono_reflection_bind_generic_method_parameters):
6341         Use mono_metadata_lookup_generic_inst() to use the new cache.
6343         * class.c (inflate_mono_type): Use
6344         mono_metadata_inflate_generic_inst() to inflate a generic
6345         instance; this'll also use the new cache.
6347         * loader.c (method_from_methodspec): Use
6348         mono_metadata_parse_generic_inst() and
6349         mono_metadata_inflate_generic_inst() rather than parsing it
6350         manually, so we can use the new cache.
6352 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
6354         * threads.c (wait_for_tids): Do not incorrectly free threads when 
6355         the wait times out.
6357 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
6359         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
6360         iter->args based on whether parameters are passed in registers (i.e.
6361         MONO_ARCH_REGPARMS is defined)
6363 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
6365         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
6366         the exception message. Fixes #70070.
6367         (method_from_methodspec): Fix warnings.
6369 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6371         * process.c: (complete_path) return the path quoted
6373 2004-12-01  Martin Baulig  <martin@ximian.com>
6375         * class-internals.h (MonoGenericInst): New structure.
6376         (MonoGenericClass): Replaced `type_argc', `type_argv' and
6377         `is_open' with `MonoGenericInst *inst'.
6378         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
6379         `is_open' with `MonoGenericInst *inst'.
6381 2004-11-30  Martin Baulig  <martin@ximian.com>
6383         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
6385         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
6386         to `generic_class_cache'.
6388         * metadata.c
6389         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
6390         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
6391         (mono_generic_inst_is_valuetype): Renamed to
6392         mono_generic_class_is_valuetype().
6394         * class-internals.h
6395         (MonoGenericInst): Renamed to MonoGenericClass.
6396         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
6397         (MonoClass): Renamed `generic_inst' to `generic_class'.
6398         (MonoGenericContext): Renamed `ginst' to `gclass'.
6400         * object-internals.h
6401         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
6403         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
6404         mono_reflection_generic_class_initialize().
6406         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
6407         now known as "System.Reflection.MonoGenericClass".
6408         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
6410 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
6412         * class-internals.h: Added a flag field to MonoClass to cache the
6413         declarative security attributes actions associated with the class.
6414         * domain-internals.h: Added booleans to MonoJitInfo to cache the
6415         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
6416         applicable to the JITted method.
6417         * reflection.c|h: Added functions to extract (as flags) which security
6418         actions are available (declaratively) for a method, class or assembly.
6419         * metadata.c|h: Added functions to search the declarative security
6420         table in the metadata.
6421         
6422 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
6424         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
6425         EXPORTEDTYPES are already in the class name cache, so there is no
6426         need to add extra code here to look at them. Just removes a bit of
6427         cruft.
6429         (ves_icall_System_Environment_get_TickCount): No need for #if
6430         WINDOWS. We already have the code in io-layer.
6432 2004-11-28  Martin Baulig  <martin@ximian.com>
6434         * loader.c
6435         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
6436         Fixes gen-112.cs.
6438 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
6440         * assembly.c (do_mono_assembly_open): Instead of having a
6441         conditional WITH_BUNDLE, incorporate support for bundles here, by
6442         having a global `bundles' variable holding a pointer to the actual
6443         bundles. 
6445         (mono_register_bundled_assemblies): New API call used by the
6446         bundle code. 
6448         See mkbundle.1 for details.
6449         
6450 2004-11-27  Martin Baulig  <martin@ximian.com>
6452         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
6453         the vtable for generic methods.
6455 2004-11-26  Martin Baulig  <martin@ximian.com>
6457         * metadata.c
6458         (mono_metadata_generic_method_hash): New public function.
6459         (mono_metadata_generic_method_equal): Likewise.
6461         * class-internals.h
6462         (MonoGenericContainer): Added `GHashTable *method_hash'.
6464         * reflection.c (ReflectionMethodBuilder): Added
6465         `MonoGenericContainer *generic_container'.
6466         (reflection_methodbuilder_to_mono_method): Don't create a new
6467         MonoGenericContainer each time we're called.
6468         (mono_reflection_bind_generic_method_parameters): Use
6469         `container->method_hash' to cache the results so we don't create a
6470         different method if we're called several times with the same
6471         arguments.
6473         * loader.c (method_from_methodspec): Use the new
6474         `container->method_hash' here, too.
6476 2004-11-26  Martin Baulig  <martin@ximian.com>
6478         * class.c (inflate_generic_signature): Correctly compute
6479         `res->has_type_parameters'.
6480         (mono_class_vtable): Use the `has_type_parameters' flag to
6481         determine whether we're a generic method.
6483         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
6485 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
6487         * object.c (mono_runtime_run_main): Fix a small memory leak.
6489 2004-11-25  Martin Baulig  <martin@ximian.com>
6491         * class.c (set_generic_param_owner): Fixed the loop.
6493 2004-11-25  Martin Baulig  <martin@ximian.com>
6495         * object.c (mono_class_vtable): Don't create any JIT wrappers for
6496         generic methods.
6498 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
6500         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
6501         names. Fixes #69787.
6503 2004-11-24  Martin Baulig  <martin@ximian.com>
6505         * class.c (mono_class_create_generic_2): If we don't have a
6506         `ginst->parent', inflate `gklass->parent' to get our parent.
6508 2004-11-24  Martin Baulig  <martin@ximian.com>
6510         * reflection.c (compare_genericparam): Correctly sort the
6511         GenericParam table; fixes #69779.
6513 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
6515         * reflection.c: When writing a PE file, don't create a huge
6516         buffer in memory. Just write the arrays we have to the file.
6517         This reduces memory usage.
6519         * metadata-internals.h: MonoDynamicStream pefile is no longer used
6520         globally.
6522 2004-11-17  Martin Baulig  <martin@ximian.com>
6524         * class.c (mono_class_init): Don't setup `class->parent' for
6525         dynamic instances; moved this to mono_class_generic_2().
6526         (mono_class_create_generic): Also set `klass->inited' for dynamic
6527         generic instances.
6528         (mono_class_create_generic_2): Don't do anything for dynamic
6529         generic instances.  Set `klass->parent' here and also call
6530         mono_class_setup_parent() here. 
6532         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
6533         `MonoType *parent' argument; set `ginst->parent' before calling
6534         mono_class_create_generic_2(), so we set the correct parent.
6536 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
6538         * reflection.c: allow getting attributes from ModuleBuilder
6539         (used by ikvm).
6541 2004-11-17  Martin Baulig  <martin@ximian.com>
6543         * class.c (mono_class_create_from_typedef): If a type parameter is
6544         inherited from an outer class, set its owner to that class.
6546 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
6548         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
6549           for (int*) written size. This fixes bug #69592.
6551 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
6553         * icall.c: Added IsAuthenticodePresnet internal call.
6554         * image.c|h: New function that check a MonoImage for an Authenticode
6555         signature in the certificate PE data directory.
6556         * security.c|h: New internal call to ask the runtime if an 
6557         Authenticode signature seems referenced in the PE header.
6559 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
6561         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
6563         * reflection.c (mono_image_create_pefile): Free the assembly streams
6564         after writing out the assembly file.
6566         * object.c (mono_runtime_run_main): Fix small memory leak.
6568         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
6569         property access modifiers. Fixes #69389.
6571 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
6573         * domain.c, object.c, object-internals.h, domain-internals.h,
6574         object.h, marshal.c: keep dynamic code info per domain.
6576 2004-11-15  Martin Baulig  <martin@ximian.com>
6578         * class.c (mono_type_get_name_recurse): Put type arguments in
6579         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
6580         see bug #68387.
6582 2004-11-15  Martin Baulig  <martin@ximian.com>
6584         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
6585         (mono_class_setup_vtable): When computing `the_cname' for a
6586         generic instance, don't include the namespace since we'd otherwise
6587         add it twice.
6589 2004-11-15  Martin Baulig  <martin@ximian.com>
6591         * class.c (mono_class_create_generic): Changed return type to void.
6592         (mono_class_create_generic_2): New public function; setup
6593         `class->method', `class->field' and `class->interfaces' here
6594         instead of in mono_class_init().
6596         * class.h (mono_class_create_generic): Moved to class-internals.h.
6598 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
6600         * reflection.c (mono_image_create_pefile): take a file HANDLE.
6601         rather than writing to memory, write to this file. Right now,
6602         we are just writting into a buffer, and copying that. However
6603         we can avoid the buffer later.
6605         (mono_dynamic_stream_reset): new function
6607         * icall.c, object-internals.h: update for the above.
6609 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
6611         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
6612         have been using gc'd memory. First it is slower, unlikely
6613         the comment in the source code said, secondly, it increases
6614         our footprint to do it in the gc.
6616         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
6617         the method so that it does not have to copy to managed code.
6619 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
6621         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
6623 2004-11-12  Martin Baulig  <martin@localhost>
6625         * reflection.c (mono_image_create_token): Allow generic method
6626         definitions here, since they may appear in an `.override'; see
6627         gen-98/gen-99 for an example.
6629 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
6631         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
6632         #69365.
6634         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
6635         descriptive.
6637 2004-11-11  Martin Baulig  <martin@ximian.com>
6639         * class.c (mono_class_setup_vtable): In an explicit interface
6640         implementation, the method name now includes the arity.
6642 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
6644         * object.c (mono_array_full_copy): Fix warning.
6646 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
6648         * appdomain.c: Removed look_for_method_by_name(). Use the new method
6649         mono_class_get_method_from_name() instead.
6650         
6651         * class-internals.h: Added two new types of wrappers. 
6652         Added MonoRemotingTarget enum. Added new trampoline function type, which
6653         takes an additional MonoRemotingTarget value as parameter, so it is
6654         possible to request a trampoline for a specific target.
6655         
6656         * class.c: Added new mono_class_get_method_from_name() method.
6657         
6658         * class.h: In MonoRemoteClass, we can have now to vtables, one for
6659         general remoting sinks and one specific for cross domain calls.
6660         
6661         * debug-helpers.c: Added new wrapper names.
6662         
6663         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
6664         of a remote class.
6665         
6666         * image.c: Porperly delete value objects form the remoting invoke hashtable.
6667         
6668         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
6669         with several other methods (mono_marshal_get_xappdomain_dispatch,
6670         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
6671         and others) can generate a fast remoting wrapper for cross domain calls.
6672         More information can be found in docs/remoting.
6673         Other changes: Removed mono_find_method_by_name, and used
6674         mono_class_get_method_from_name instead.
6675         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
6676         is stored in the remoting invoke hashtable.
6677         
6678         * marshal.h: published the new method for getting the xdomain wrapper,
6679         and also added a method for getting the adequate wrapper for a given
6680         method and target.
6681         
6682         * object-internals.h, object.c: Added a couple of methods for capying and
6683         cloning arrays.
6684         Modified mono_install_remoting_trampoline, which takes the new remoting
6685         trampoline that has a remoting target as parameter.
6686         mono_class_proxy_vtable now also takes a remoting target as parameter, and
6687         will return the most suitable vtable for the target.
6688         Added mono_remote_class_vtable, which returns the vtable of a remote class
6689         (which can be the normal remoting vtable or the xdomain vtable).
6690         
6691         * threads.c: the xdomain invoke and dispatch wrappers must also be
6692         protected against interruptions.
6694 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6696         * icall.c: use memmove in BlockCopyInternal when the source and
6697         destination arrays are the same.
6699 2004-11-09  Martin Baulig  <martin@ximian.com>
6701         * class-internals.h (MonoGenericContainer): Removed `method' and
6702         `signature', replaced them with `is_method' and `is_signature'
6703         flags.  Added `context'.
6705         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
6706         instead of a `MonoGenericContainer *'.
6708         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
6709         for dynamic type parameters.
6710         (mono_metadata_load_generic_params): Setup `container->context'.
6712         * reflection.c (mono_reflection_setup_generic_class): Setup
6713         `tb->generic_container->context'.
6714         (do_mono_reflection_bind_generic_parameters): Use
6715         mono_class_inflate_generic_type() to correctly inflate types,
6716         rather than using our own hack just for MONO_TYPE_VAR.
6718 2004-11-09  Martin Baulig  <martin@ximian.com>
6720         * class.c (mono_class_inflate_generic_method): Small fix; don't
6721         crash here.
6723         * icall.c
6724         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
6725         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
6726         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
6727         (ves_icall_Type_BindGenericParameters): Likewise.
6728         (ves_icall_Type_get_IsGenericInstance): Likewise.
6729         (ves_icall_Type_GetGenericParameterPosition): Likewise.
6730         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
6731         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
6732         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
6734 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
6736         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
6737         assembly versions and public key tokens. Fixes #69113.
6739 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
6741         * metadata.c: fix bug introduced with the type cache changes
6742         on 2004-11-06.
6744 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
6746         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
6747         the MonoClass pointer instead of the token in exception clauses.
6748         * reflection.c: updates for the above and make the code not depend
6749         on the structure of MonoExceptionClause.
6751 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
6753         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
6754         Add support for dynamic assemblies. Fixes #69114.
6756         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
6758 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
6760         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
6761         since most only those methods use it. the code member of
6762         MonoMethodPInvoke was dead, so that can be removed too. Also,
6763         remove inline_count (again, not used), and move slot so that it
6764         can share bits with some other flags. This saves 8 bytes in the
6765         structure and gives us about 50 kb back for mcs helloworld.cs
6767         * *.[ch]: Do naming changes for the above.
6769         * loader.c (mono_method_get_header): Lazily init the header
6770         on first access.
6771         (mono_get_method_from_token): don't init the header here
6772         (mono_free_method): the header may never be allocated
6774         Overall, this saves 150 kb of unmanaged allocations
6775         for mcs helloworld.cs. That accounts for 10% of the unmanaged
6776         memory at runtime.
6777         
6778         * loader.c, loader.h (mono_method_get_header): new accessor.
6780         * *.[ch]: use the above method. Prepares us to lazily load
6781         the header.
6783         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
6784         three warnings, which are actual bugs (see 69206).
6786         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
6787         unused. Saves a cool 4 bytes / method.
6789 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
6791         * metadata.c (builtin_types): Add types for System.Object here.
6792         (mono_metadata_parse_type_full): Cache MonoType*'s that are
6793         for a class or valuetype from klass->this_arg or klass->byval_arg.
6795         On mcs for a hello world, this gets us down from 21836 MonoType's
6796         to 14560.
6798         (mono_metadata_free_type): Account for the above change.
6800 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
6802         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
6803         exception instead of asserting if name is null.
6804         (ves_icall_System_AppDomain_GetData): Ditto.
6806 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
6808         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
6809         EnumBuilder.
6811         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
6812         Return NULL when the domain does not have entry_assembly set.
6814         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
6815         Add a 'resource_modules' argument.
6816         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
6818         * reflection.c (mono_reflection_create_runtime_class): Move setting
6819         of wastypebuilder here, so mono_get_type_object () returns a MonoType
6820         for enums too.
6822         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
6823         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
6824         Throw an ArgumentNullException if 'ptr' is null.
6826         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
6827         assemblies here. Fixes #69020.
6829 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
6831         * reflection.c (build_compressed_metadata): Fix the previous patch for
6832         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
6833         the stack.
6835 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
6837         * assembly.c (mono_assembly_names_equal): Allow a match if one of
6838         the cultures is false. Fixes #69090.
6840         * reflection.c (build_compressed_metadata): Fix invalid memory read 
6841         detected by valgrind.
6842         
6843         * reflection.c (mono_reflection_get_type): Avoid triggering a 
6844         TypeResolve multiple times for the same type. Fixes #65577.
6846 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
6848         * marshal.c: Avoid using ldftn to call managed functions. It is
6849         much slower than just a call.
6851         * reflection.c (mono_module_get_object): free the basename we
6852         allocate here from glib.
6853         
6854         * reflection.c (ensure_runtime_vtable): make sure to free
6855         overrides.  Also, we were allocating an array of MonoMethod not an
6856         array of MonoMethod*.
6858         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
6860         * image.c (mono_image_close): free image->guid here.
6862 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
6864         * reflection.c: Fix some spec conformance issues with the PE file
6865         structures so mcs compiled apps run on the Net 2.0 beta.
6867 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
6869         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
6870         Implement this. Fixes #67264.
6872         * debug-helpers.h debug-helpers.c marshal.c: Move 
6873         mono_find_method_by_name to debug-helpers.c.
6875 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
6877         * object.c (mono_release_type_locks): type_initialization_hash is
6878         a GHashTable.
6880         * reflection.c object.c object-internals.h: Fix warnings.
6882         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
6883         without accessors. Fixes #61561.
6885         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
6886         application base from the root domain if not set. Fixes #65641.
6887         (mono_runtime_init): Fix warning.
6889 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6891         * appdomain.c: call mono_thread_pool_init.
6892         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
6893         of worker threads based on the number of CPUs and the environment
6894         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
6895         for non-windows (windows) systems.
6897 2004-10-27  Chris Toshok  <toshok@ximian.com>
6899         * mono-debug-debugger.c (write_class): don't call mono_class_init
6900         here, as even with the check for (!klass->init_pending), we get
6901         into a situation where we're hitting cycles in class
6902         initialization.  Fixes #68816.
6904 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
6906         * image.c: Avoid overwriting values in the loaded_images_hash when an
6907         assembly is loaded multiple times. Fixes #61152.
6909         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
6910         so multiple satellite assemblies for the same name can be loaded.
6911         Fixes #68259.
6913         * mono_domain_assembly_preload: Actually return the loaded assembly, 
6914         not NULL.
6916         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
6917         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
6919         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
6920         pending finalizers are not invoked after the appdomain has been 
6921         unloaded. Fixes #67862.
6923 2004-10-22  Martin Baulig  <martin@ximian.com>
6925         * mono-debug-debugger.c
6926         (mono_debugger_runtime_invoke): Don't box valuetypes.
6928 2004-10-22  Chris Toshok  <toshok@ximian.com>
6930         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
6931         don't hide private methods.
6933 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
6935         * icall.c: Allows the runtime to "share" (when known) the public key
6936         token of an assembly. This avoid the need to recalculate the token 
6937         (from the public key) in managed code.
6939 2004-10-21  Chris Toshok  <toshok@ximian.com>
6941         * debug-helpers.c (append_class_name): argh, revert last patch.
6942         
6943 2004-10-21  Chris Toshok  <toshok@ximian.com>
6945         * debug-helpers.c (append_class_name): use '+' as the delimiter,
6946         not '/', so that it matches what the debugger uses to look up
6947         methods.
6949 2004-10-21  Martin Baulig  <martin@ximian.com>
6951         * mono-debug-debugger.c (mono_debugger_throw_exception): New
6952         public method; this is called each time an exception is thrown and
6953         allows the debugger to use exception catch points.
6955 2004-10-21  Martin Baulig  <martin@ximian.com>
6957         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
6958         the stack pointer and the exception object in some struct and pass
6959         that to the debugger.
6961 2004-10-21  Chris Toshok  <toshok@ximian.com>
6963         * mono-debug-debugger.c (do_write_class): add instance/static
6964         event support.  We don't expose "raise" or "other" yet.
6965         (event_is_static): new method.
6967 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
6969         * mono-debug-debugger.c
6970         (mono_debugger_handle_exception): Remove
6971         bogus return value for fussy compilers.
6973 2004-10-20  Martin Baulig  <martin@ximian.com>
6975         * mono-debug-debugger.c
6976         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
6977         (mono_debugger_handled_exception): Likewise.
6979 2004-10-20  Martin Baulig  <martin@ximian.com>
6981         * mono-debug-debugger.h (MonoDebuggerEvent): Added
6982         MONO_DEBUGGER_EVENT_EXCEPTION.
6984         * mono-debug-debugger.c (mono_debugger_handle_exception): New
6985         public function to send the debugger a notification for an
6986         exception and inform it about a catch/finally clause.
6988 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
6990         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
6991         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
6992         fix 2.95 build. 
6994         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
6996 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
6998         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
6999         marshalled as [In,Out]. Fixes #58325.
7001 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
7003         * reflection.c (mono_method_body_get_object): Implement some fields.
7005 2004-10-12  Martin Baulig  <martin@ximian.com>
7007         * reflection.c (mono_reflection_bind_generic_parameters): Small
7008         fix, correctly retrieve our parent from a generic instance.
7010 2004-10-12  Martin Baulig  <martin@ximian.com>
7012         * metadata.c (mono_metadata_generic_param_equal): We always have
7013         an owner.
7015         * class.c
7016         (mono_class_from_generic_parameter): We need to have an owner.
7017         (my_mono_class_from_generic_parameter): Likewise.
7019         * reflection.c (mono_reflection_setup_generic_class): Renamed to
7020         mono_reflection_create_generic_class() and added a new
7021         mono_reflection_setup_generic_class().  
7022         (mono_reflection_initialize_generic_param): If we're a nested
7023         generic type and inherited from the containing class, set our
7024         owner to the outer class.
7026 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
7028         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
7030         * reflection.c (mono_method_body_get_object): New function to create
7031         a MethodBody object.
7033         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
7035 2004-10-11  Martin Baulig  <martin@ximian.com>
7037         * metadata.c (_mono_metadata_type_equal): Renamed to
7038         do_mono_metadata_type_equal() and made static.
7040 2004-10-11  Martin Baulig  <martin@ximian.com>
7042         * appdomain.c: Bump corlib version number to 28.
7044 2004-10-10  Martin Baulig  <martin@ximian.com>
7046         * class-internals.h
7047         (MonoGenericInst): Added `MonoGenericContainer *container'.
7048         (MonoGenericMethod): Likewise.
7049         (MonoGenericContext): Likewise.
7050         (MonoGenericParam): Added `MonoGenericContainer *owner'.
7052         * metadata.c
7053         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
7054         (do_mono_metadata_parse_generic_inst): Likewise.
7055         (mono_metadata_parse_type_full): New public method.  This is the actual
7056         mono_metadata_parse_type() implementation - with an additional
7057         `MonoGenericContainer *' argument.
7058         (mono_metadata_parse_array_full): Likewise.
7059         (mono_metadata_parse_signature_full): Likewise.
7060         (mono_metadata_parse_method_signature_full): Likewise.
7061         (mono_metadata_parse_mh_full): Likewise.
7062         (mono_type_create_from_typespec): Likewise.
7063         (mono_metadata_interfaces_from_typedef_full): New public method;
7064         this is similar to the other _full() methods, but we take a
7065         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
7066         (mono_metadata_parse_generic_param): Take an additional
7067         `MonoGenericContainer *' argument and lookup the MonoGenericParam
7068         from that container.
7069         (mono_metadata_generic_param_equal): New static method to compare
7070         two type parameters.
7071         (_mono_metadata_type_equal): New static method; takes an
7072         additional `gboolean signature_only' argument - if true, we don't
7073         compare the owners of generic parameters.
7074         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
7075         with a TRUE argument - do a signature-only comparision.
7077         * loader.c: Use the new _full() methods and pass the
7078         MonoGenericContainer to them.
7080         * object-internals.h (MonoReflectionTypeBuilder): Added
7081         `MonoGenericContainer *generic_container' field.
7082         (MonoReflectionMethodBuilder): Likewise.
7084 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
7086         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
7087         case initial images of dynamic assemblies.
7089         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
7091         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
7093         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
7094         length of event->other array.
7095         (typebuilder_setup_events): Ditto.
7097         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
7098         'assembly_by_name' and add an 'assemblies' list.
7100         * assembly.h assembly.c: Add a new search hook for determining whenever
7101         an assembly is already loaded. Use this instead of searching in the
7102         loaded_assemblies list.
7104         * domain.c appdomain.c: Implement the new search hook so loaded 
7105         assemblies are now scoped by appdomain. Fixes #67727.
7107 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
7109         * threads.c (mono_thread_attach): Initialize synch_lock field so
7110         mono_thread_detach works again.
7112         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
7113         'lib' too. Fixes #63130.
7115 2004-10-06  Jackson Harper  <jackson@ximian.com>
7117         * culture-info-tables.h: regenerated.
7119 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
7121         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
7122         implemented by other interfaces in the result. Fixes #65764.
7123         
7124         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
7125         Handle unloadable modules without crashing.
7127         * image.c (load_modules): Revert the previous patch since modules must
7128         have a fixed index inside the array.
7129         
7130         * image.c (load_modules): Don't include native modules in the modules
7131         array.
7133 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
7135         * reflection.h: Add param_defaults field.
7137         * reflection.c: Add support for parameter defaults in dynamic methods.
7138         Fixes #64595.
7140         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
7141         an empty string when a type has no namespace. Fixes #64230.
7143 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
7145         * tabledefs.h: Added "internal" security actions to support non-CAS
7146         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
7147         Note: they do not seems to be used anymore in 2.0 (new metadata format)
7149 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
7151         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
7152         constructor of abstract class. Fixes #61689.
7154 2004-10-04  Martin Baulig  <martin@ximian.com>
7156         * class-internals.h (MonoGenericContainer): New type.
7157         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
7158         `MonoGenericContainer *generic_container'.
7159         (MonoClass): Replaced `gen_params' and `num_gen_params' with
7160         `MonoGenericContainer *generic_container'.
7162         * metadata.c (mono_metadata_load_generic_params): Return a
7163         `MonoGenericContainer *' instead of a `MonoGenericParam *';
7164         removed the `num' argument.
7166 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
7168         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
7169         for dynamic images.
7171         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
7172         machine fields.
7174         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
7176         * reflection.c: Save pe_kind and machine values into the generated
7177         image file.
7179         * appdomain.c: Bump corlib version number.
7181         * object-internals.h: Reorganize layout of LocalBuilder.
7183         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
7184         New helper function.
7186         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
7187         created MonoType for dynamic types. Fixes #66180.
7189 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
7191         * threadpool.c: the ares hashtable needs a critical section around it.
7192         this prevents some nasty segfaults
7194 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
7196         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
7197         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
7198         bug 67324).
7199         
7200 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
7202         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
7203         
7204 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
7206         * image.c: Always canonicalize image file names, to avoid loading
7207         the same assembly twice when referenced using a relative path.
7209 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
7211         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
7213         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
7215         * marshal.c: Fix warnings.
7217 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
7219         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
7220         attempting to marshal the delegate_trampoline as the method_addr.
7221         This patch has a static hashtable of marshalled delegates so that 
7222         we can map delegate_trampoline addresses back to delegates.  This
7223         allows a delegate passed to managed code to be passed back into native
7224         code.  Fixes #67039
7226 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
7228         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
7230         * reflection.c (method_encode_code): Align method headers properly.
7231         Fixes #66025.
7233 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
7235         * marshal.c: In the runtime invoke wrapper, reset the abort
7236         exception if it is cached. This avoids the automatic rethrowal of 
7237         the exception after the catch of the wrapper. Also check for pending
7238         interruptions before calling the managed method. This is done using
7239         the new method emit_thread_force_interrupt_checkpoint, since the
7240         normal checkpoint method is ignored when running the invoke wrapper.
7241         * object.c: If the abort exception is rethrown, set the abort_exc
7242         field of the thread, so it will be rethrown aftere every catch.
7243         * threadpool.c: Only run an interruption checkpoint if what has been
7244         requested is a stop of the thread (aborts will be ignored).
7245         * threads.c: By default, a thread will now never be interrumped while
7246         running the runtime invoke wrapper (this ensures that runtime_invoke
7247         will always return to the caller if an exception pointer is provided).
7248         There is a new special method mono_thread_force_interruption_checkpoint()
7249         to force an interruption checkpoint even if running a protected
7250         wrapper, which is used by the same runtime invoke wrapper to do a check
7251         at a safe point.
7253 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
7255         * object.c, object-internals.h: Implemented mono_release_type_locks,
7256         which releases the cctor locks held by a thread.
7257         * threads.c, threads.h: In thread_cleanup, release cctor locks held
7258         by a thread. Added mono_thread_exit() method to be used to safely stop
7259         a thread.
7261 2004-09-28  Raja R Harinath  <rharinath@novell.com>
7263         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
7264         Move null check before dereference.  Avoid indexing beyond the end
7265         of the 'modules' array.
7267 2004-09-28  Raja R Harinath  <rharinath@novell.com>
7269         * metadata-internals.h (MonoImage): Add module_count field.
7270         * image.c (load_modules): Set image->module_count.
7271         (mono_image_load_file_for_image): Use image->module_count.
7272         * reflection.c (mono_image_load_module): Append to image->modules array 
7273         of dynamic assembly.
7274         (mono_module_get_object): Fix loop to actually increment index.
7275         Use image->module_count.
7276         * assembly.c (mono_assembly_load_references): Use image->module_count.
7277         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
7278         Likewise.
7280 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
7282         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
7283         Avoid assert on generic types.
7285 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
7287         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
7289         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
7291         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
7292         function to convert a MarshalSpec structure to its managed counterpart.
7294         * reflection.c: Fix warnings.
7295         
7296         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
7297         field.
7299         * icall.c (mono_create_icall_signature): Fix build.
7301 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
7303         * icall.c: Add MakePointType icall.
7305         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
7306         warnings.
7308 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7310         * threadpool.c: reuse allocated slots in the queue.
7312 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
7314         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
7316         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
7318         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
7319         previous change.
7321         * tabledefs.h: Add constants for pinvoke attributes BestFit and
7322         ThrowOnUnmappableChar.
7324         * icall.c (ves_icall_Type_GetPacking): New icall.
7326 2004-09-24  Martin Baulig  <martin@ximian.com>
7328         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
7330 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7332         * appdomain.c:
7333         (mono_domain_set): allow setting a domain that is being unloaded.
7334         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
7335         being unloaded.
7337 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
7339         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
7340         the GetCustomAttributes icall.
7342 2004-09-23  Martin Baulig  <martin@ximian.com>
7344         * object-internals.h (MonoReflectionGenericParam): Replaced
7345         'has_ctor_constraint', `has_reference_type' and `has_value_type'
7346         with `guint32 attrs'.
7348 2004-09-23  Martin Baulig  <martin@ximian.com>
7350         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
7352 2004-09-23  Martin Baulig  <martin@ximian.com>
7354         * object-internals.h (GenericParameterAttributes): New enum.
7356 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
7358         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
7359         
7360         * class.c (init_events): Fill out event->other field.
7362         * class.c: Fix warnings.
7364         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
7366 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
7368         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
7369         walk which doesn't supply the IL offset.
7371 2004-09-22  Martin Baulig  <martin@ximian.com>
7373         * reflection.c (mono_reflection_setup_internal_class): If we're
7374         System.ValueType, System.Object or System.Enum, set
7375         `klass->instance_size' and create the vtable.
7376         (mono_reflection_create_internal_class): If we're an enum type,
7377         get the base class from our current corlib.
7379 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
7381         * reflection.h (MonoResolveTokenError): New type.
7383         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
7384         icall.
7386         * icall.c: Add an 'error' argument to the ResolveToken icalls.
7388 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
7390         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
7391         Support also calling constructors, but only for already allocated objects.
7393 2004-09-17  Geoff Norton <gnorton@customerdna.com>
7395         * reflection.c (type_get_qualified_name): If the klass is null
7396         return the typename to avoid a NullRefEx.
7397         (encode_cattr_value): Get the qualified name of the boxed type,
7398         not the underlying enumtype.  Fixes #62984.
7400 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
7402         * marshal.c: Fix problems with previous checkin.
7404 2004-09-21    <vargaz@freemail.hu>
7406         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
7407         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
7409         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
7411 2004-09-21  Geoff Norton <gnorton@customerdna.com>
7413         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
7414         should only return a type for pointers, arrays, and passbyref types.
7415         Fixes bug #63841.
7417 2004-09-21  Martin Baulig  <martin@ximian.com>
7419         * domain.c (mono_debugger_check_runtime_version): New public
7420         function.
7422         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
7424 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
7426         * reflection.c: Added missing sort to the declarative security 
7427         attributes table. MS implementation stops seeing the attributes if the
7428         token number regress in the table (as shown by ildasm and permview).
7430 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
7432         * object-internals.h (MonoReflectionModule): Add 'token' field.
7433         
7434         * reflection.c (mono_reflection_get_token): Add support for Module
7435         and Assembly.
7436         (mono_module_get_object): Set 'token' field.
7437         (mono_module_file_get_object): Set 'token' field.
7439         * icall.c: Add new Assembly and Module icalls.
7441         * appdomain.c: Bump corlib version.
7443 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
7445         * loader.h loader.c class.h class.c: Add helper functions for obtaining
7446         tokens of metadata objects.
7448         * reflection.h reflection.c (mono_reflection_get_token): New function
7449         to obtain the token of a metadata object.
7451         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
7453 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
7455         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
7456         
7457         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
7459 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
7461         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
7462         * object-internals.h: Added 3 MonoArray* members to MonoReflection
7463         AssemblyBuilder to access the permissions set in the class lib.
7464         * reflection.c: Added security attributes encoding step in 
7465         mono_image_build_metadata.
7466         * tabledefs.h: Added new security actions defined in 2.0:
7467         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
7469 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
7471         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
7472         macro parameter.
7474 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
7476         * locales.c: nullify the ICU_collator member of CompareInfo when it is
7477           finalized. There where random SIGSEVs at program termination, when
7478           an object being finalized was trying to do a string comparison and
7479           the current culture was already finalized.
7481 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7483         * threads.c: call thread_cleanup before finishing the thread if we get
7484         there.
7486 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
7488         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
7489         assemblies from the parent. Fixes #65665.
7491 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
7493         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
7494         modifiers.
7496 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
7498         * reflection.h: add prototype for mono_get_dbnull_object
7499         * reflection.c: add prototypes for get_default_param_value_blobs 
7500         and mono_get_object_from_blob for fussier compilers
7502 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
7504         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
7505         false deadlock checks in class initialization.
7507 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
7509         * image.c (mono_image_addref): Fix comment.
7511         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
7512         possible.
7514 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
7516         * reflection.c (mono_param_get_objects): Modified to return
7517         ParameterInfo.DefaultValue object.
7519         (get_default_param_value_blobs):
7520         (mono_get_object_from_blob):
7521         (mono_get_dbnull_object): New helper routines. 
7523         * object.c (mono_get_constant_value_from_blob): New helper routine
7524         carved out from get_default_field_value ()
7526         * object-internals.h (mono_get_constant_value_from_blob): Added
7527         function declaration.
7529 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
7531         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
7532         referenced assemblies. Fixes #62135.
7534         * exception.h exception.c (mono_get_exception_file_not_found2): New
7535         helper function.
7537 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
7539         * class.h class.c: Add mono_type_get_underlying_type ().
7541 2004-09-09  Geoff Norton <gnorton@customerndna.com>
7543         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
7544         Fix GetTypes() to support dynamically created assemblies.
7546 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
7548         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
7549         
7550         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
7551         previous patch.
7553         * reflection.h reflection.c loader.c: Allow dynamic construction of
7554         pinvoke methods. Fixes #65571.
7555         
7556         * reflection.c (mono_reflection_get_type): Revert previous change since
7557         it causes regressions.
7559 2004-09-08  Martin Baulig  <martin@ximian.com>
7561         * class.c (class_compute_field_layout): Don't call
7562         mono_class_layout_fields() for open generic instances.
7564 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
7565         * threads.c appdomain.c: fix typo in GC macro
7567 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7569         * threads.c: don't call mono_thread_detach() in start_wrapper(),
7570         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
7572 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
7574         * image.c (mono_image_close): Applied patch from 
7575         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
7576         assembly is loaded multiple times from data.
7577         
7578         * image.c (mono_image_open): Fix warning.
7580 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
7582         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
7583         once. Fixes #58334.
7584         
7585         * reflection.c (mono_reflection_create_runtime_class): Initialize
7586         klass->nested_classes. Fixes #61224.
7588 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
7590         * threads.c: sched_yield() on exit, to allow threads to quit.
7592 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
7594         * object.c (mono_unhandled_exception): Remove leftover debug code.
7596 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
7598         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
7600 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
7602         * marshal.c (emit_marshal_array): Really null terminate string arrays.
7603         
7604         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
7606 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
7608         * marshal.c (emit_marshal_array): Null terminate string arrays.
7609         
7610         * marshal.c (raise_auto_layout_exception): Fix warning.
7612         * reflection.c (mono_param_get_objects): Initialize the default value
7613         with DBNull.Value, not null. Fixes #62123.
7615 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
7617         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
7618         throw an exception with a cute explanation.
7620 2004-09-06  Dick Porter  <dick@ximian.com>
7622         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
7623         Close the new process's thread handle, as we don't use it.  The
7624         handle stays around forever otherwise.
7626 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
7628         * object.c (arith_overflow): Fix warning.
7630         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
7631         calling conventions in method refs. Fixes #65352.
7633         * reflection.c: Fix warnings.
7635 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
7637         * icall.c: Add a new icall for Array.Clear
7639 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
7641         * object.c: When allocating an array, we have to throw
7642         an overflow exception if any of the lengths are < 0.
7644 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
7646         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
7647         properly. Also move implementation of string array marshalling to 
7648         managed code. Fixes #42316.
7650 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7652         * assembly.c: provide more information when loading an assembly fails.
7654 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7656         * filewatcher.c: don't expect the development fam package to be
7657         installed.
7659 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
7661         * marshal.c: Make a copy of the signature cookie since it will be
7662         freed by the caller.
7663         
7664         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
7666         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
7668         * metadata.c (mono_metadata_free_marshal_spec): New function to free
7669         marshal specs.
7671         * marshal.c: More refactoring.
7672         
7673         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
7674         smaller functions.
7676 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
7678         * object.c: In mono_message_invoke, fill the output parameter array after
7679           calling the managed method (it was done before the call). This fixes
7680           bug #59299.
7682 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
7684         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
7685         as well.
7687 2004-09-02  Martin Baulig  <martin@ximian.com>
7689         * class.c (mono_class_instance_size): Don't allow generic type
7690         definitions or open generic instances.
7691         (mono_class_array_element_size): If we're a value type, call
7692         mono_class_instance_size() on the original class.
7694         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
7695         handle generic instances.
7697         * mono-debug-debugger.c (write_type): Handle generic instances
7698         like classes.
7700 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
7702         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
7703         the allocation request fails. Fixes #65089.
7705         * object.c (mono_runtime_free_method): Do not call mono_free_method.
7706         
7707         * object.c (mono_runtime_free_method): New function to free a dynamic
7708         method.
7710         * marshal.c (mono_delegate_free_ftnptr): New function to free the
7711         delegate trampoline.
7713         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
7714         with hasthis as dynamic,
7716         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
7718         * domain.c (mono_jit_info_table_remove): New function to remove an
7719         entry from the jit info table.
7721         * class-internals.h (MonoMethod): Add 'dynamic' field.
7723         * loader.c: Fix warnings.
7725 2004-09-01  Martin Baulig  <martin@ximian.com>
7727         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
7728         instead of mono_debugger_lock() because the latter one is a no-op
7729         unless running in the debugger.
7731 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
7733         * class.c (class_compute_field_layout): Classes with auto-layout or
7734         reference fields are not blittable.
7735         
7736 2004-09-01  Dick Porter  <dick@ximian.com>
7738         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
7739         mono_image_get_filename() to get the assembly location.
7741         * icall.c:
7742         * metadata.h: Fix compile warnings
7744 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
7746         * class.c (class_compute_field_layout): System.Object is blittable.
7748         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
7749         as in/out. Fixes #59909.
7751 2004-09-01  Martin Baulig  <martin@ximian.com>
7753         * metadata.h (MONO_TYPE_ISREFERENCE): Call
7754         mono_metadata_generic_inst_is_valuetype() if we're a generic
7755         instance to check whether our underlying type is a reference type.
7757 2004-09-01  Martin Baulig  <martin@ximian.com>
7759         * metadata.c (mono_type_size): If we're a generic instance, call
7760         mono_class_value_size() for value types.
7762 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
7764         * marshal.c: Implement more custom marshalling functionality. Fixes
7765         #64915.
7767 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
7769         * mono-debug.c, debug-mono-symfile.c: add some locking love.
7771 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
7773         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
7775         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
7777         * icall.c: Fix some warnings.
7779         * threads.c (abort_appdomain_thread): Fix unref errors.
7780         (mono_thread_current): Fix THREAD_DEBUG define.
7782 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
7784         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
7786         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
7788 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
7790         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
7791         string arrays.
7793 2004-08-28  Martin Baulig  <martin@ximian.com>
7795         * metadata.c
7796         (mono_metadata_generic_inst_is_valuetype): New public function.
7798         * metadata.h (MONO_TYPE_ISSTRUCT): Call
7799         mono_metadata_generic_inst_is_valuetype() if we're a generic
7800         instance to check whether our underlying type is a valuetype.
7802 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
7804         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
7805         #63768.
7807 2004-08-25  Martin Baulig  <martin@ximian.com>
7809         * loader.c (mono_get_method_from_token): Abstract methods can also
7810         be generic and thus have type parameters.
7812         * metadata-internals.h
7813         (MonoDynamicImage): Added `GPtrArray *gen_params'.
7815         * reflection.c (mono_image_get_generic_param_info): Don't create a
7816         metadata row, just add an entry to the `gen_params' array.
7817         (build_compressed_metadata): Sort the `gen_params' array and then
7818         actually create the metadata.
7820 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7822         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
7824 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
7826         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
7828 2004-08-24  Martin Baulig  <martin@ximian.com>
7830         * class.cs (mono_class_is_subclass_of): Like an interface, a
7831         generic instance also derives from System.Object.
7833 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
7835         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
7836         custom modifiers to be in any order. Fixes #61990.
7838 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
7840         * object.c: Register mono_object_new_fast icall.
7841         
7842         * object.c (mono_class_get_allocation_ftn): Return to calling
7843         mono_object_new_fast, since it seems faster to compute the object 
7844         size in unmanaged code than passing it as a parameter.
7846         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
7848         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
7849         this function with Boehm as the oom handler, so we don't have to check
7850         the result of GC_malloc.
7852         * object.c: Remove checks for oom.
7854         * object.h object.c (mono_class_get_allocation_ftn): New function to
7855         return the icall which can be used to allocate an instance of a given
7856         class. 
7858         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
7860         * class-internals.h: Add 'enabled' field.
7862 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
7864         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
7866 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
7867         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
7868         value 0x0010.
7870 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
7872         * appdomain.c: use the Tls function for appdomain too,
7873         at Zoltan's request. Actually return in mono_context_get
7875         * appdomain.c, profiler.c, threads.c: use __thread
7877 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
7879         * appdomain.c threads.c: Call GC_CreateThread on windows.
7881         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
7882         multiple libraries since this don't work on windows.
7884 2004-08-18  Martin Baulig  <martin@ximian.com>
7886         * class-internals.h
7887         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
7888         MonoMethodHeader.
7890         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
7891         MonoMethodNormal since we also need it for abstract and interface
7892         methods.
7894         * reflection.c
7895         (build_compressed_metadata): Sort the GenericParam table.
7896         (mono_image_create_token): Added `gboolean create_methodspec'
7897         argument; this is false when generating a MethodImpl token.
7898         (reflection_methodbuilder_to_mono_method): Abstract and interface
7899         methods may also have generic parameters.
7901 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
7903         * appdomain.c: thread local alloc
7905 2004-08-17  Martin Baulig  <martin@ximian.com>
7907         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
7909         * icall.c
7910         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
7911         argument.
7913         * class.c (mono_type_get_full_name): New public function.
7914         (mono_type_get_name): Don't include the type arguments.
7916 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
7918         * Makefile.am: Build static versions of libmetadata and libmonoruntime
7919         for inclusion into the mono executable.
7921 2004-08-16  Martin Baulig  <martin@ximian.com>
7923         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
7924         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
7926 2004-08-14  Martin Baulig  <martin@ximian.com>
7928         * class.c (dup_type): Also copy the `byref' field.
7930 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
7932         * reflection.c (create_dynamic_mono_image): Revert the last change 
7933         since it breaks bootstrap.
7935 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
7937         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
7939         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
7940         not free them with g_free.
7942 2004-08-11  Martin Baulig  <martin@ximian.com>
7944         * reflection.c (mono_reflection_setup_internal_class): Also call
7945         mono_class_setup_mono_type() if we already have a `tb->type.type'.
7947 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
7949         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
7950         called during default (first) AppDomain creation. Keep track of
7951         Evidence when loading assemblies.
7953 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
7955         * opcodes.c, opcodes.h: reduce runtime relocations.
7957 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
7959         * culture-info.h, locales.c: fixes and chages to sue the new
7960         optimized format of the locale data.
7961         * culture-info-tables.h: regenerated.
7963 2004-08-06  Geoff Norton <gnorton@customerdna.com>
7964         
7965         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
7967 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
7969         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
7970         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
7971         * domain-internals.h: icall declaration.
7972         * icall.c: icall registration.
7973         * object-internals.h: New fields in MonoAssembly for CAS.
7975 2004-08-05  Duncan Mak  <duncan@ximian.com>
7977         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
7978         CEE_LDELEM_ANY.
7980 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
7982         * reflection.c: fix to deal with object[] arrays in custom ctors
7983         (bug #62550).
7985 2004-08-05  Martin Baulig  <martin@ximian.com>
7987         * class.c (mono_class_array_element_size): Added support for
7988         generic instances and correctly handle "recursive" types.
7990 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
7992         * assembly.c: Fix warnings.
7994 2004-08-04  Martin Baulig  <martin@ximian.com>
7996         * class.c
7997         (mono_type_get_name_recurse): Added `gboolean include_arity'
7998         argument specifying whether or not we should include the generic
7999         arity in the type name.
8000         (_mono_type_get_name): New static function.
8001         (mono_class_setup_vtable): If we're a generic instance, don't
8002         include the generic arity in the names of explicit method
8003         implementations.        
8005 2004-08-03  Martin Baulig  <martin@ximian.com>
8007         * class.c (mono_type_get_name_recurse): Enclose the generic type
8008         arguments in `<', '>'.
8010 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
8012         * gc.c: make GC warning messages use the trace API, they are just
8013         noise to most of the users.
8015 2004-08-03  Martin Baulig  <martin@ximian.com>
8017         * debug-mono-symfile.c (read_string): Correctly read the string.
8019 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
8021         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
8022         
8023         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
8024         icalls.
8025         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
8027 2004-07-30  Martin Baulig  <martin@ximian.com>
8029         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
8030         Reflect latest symbol writer changes.   
8032 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
8034         * object.c: always create an object if null is passed
8035         to Invoke() where a valuetype is expected.
8037 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
8039         * marshal.c (mono_marshal_init): make managed
8040         signatures match native ones better for 64bits.
8042 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8044         * appdomain.c: hack to build correctly the private bin path on windows.
8045         Fixes bug #61991.
8047 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
8049         * assembly.c: Load mscorlib from the correct framework directory
8050           (mono/<version>/mscorlib.dll).
8051         * appdomain.h: Added prototypes for new functions.
8052         * internals.h: Added some prototypes.
8053         * domain.c: When initializing the runtime, get from the executable and
8054           the configuration files the runtime version that the app supports.
8055           Added support methods for reading app.exe.config. Added list of versions
8056           supported by the JIT. Added two new methods: mono_init_from_assembly,
8057           which initializes the runtime and determines the required version from
8058           the provided exe file, and mono_init_version, which initializes
8059           the runtime using the provided version.
8060         * icall.c: Get machine.config from version-specific directory.
8061         * reflection.c: When generating an image, embed the version number
8062           of the current runtime.
8064 2004-07-28  Dick Porter  <dick@ximian.com>
8066         * socket-io.c
8067         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
8068         returned sockaddr size before creating the remote address object.
8069         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
8070         61608.
8072 2004-07-28  Dick Porter  <dick@ximian.com>
8074         * locales.c (string_invariant_compare_char): Fix invariant char
8075         compares between upper and lower cases.  Fixes bug 61458.
8077 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
8078         
8079         * marshal.c: actually cache stelem.ref wrappers.
8080         
8081 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
8083         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
8084         sections and remove the mono_cli_rva_map () function.
8086 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
8088         * debug-mono-symfile.c: fix one more endianess issue, from a patch
8089         by Geoff Norton (<gnorton@customerdna.com>).
8091 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
8093         * class.c: fix class loads for pointer types (typeof(int) !=
8094         typeof(int*)).
8096 2004-07-27  Martin Baulig  <martin@ximian.com>
8098         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
8099         reading the debugging information from an external ".mdb" file.
8101 2004-07-24  Martin Baulig  <martin@ximian.com>
8103         * reflection.c (mono_image_get_type_info): Only write a class
8104         layout entry if we actually have a size or a packing size.
8106 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
8108         * reflection.c (type_get_fully_qualified_name): 
8109         insert cast to get type checking of ?: with non-gcc compilers
8111 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
8113         * rand.c: use g_getenv for both lookups of
8114         MONO_EGD_SOCKET
8116 2004-07-17  Martin Baulig  <martin@ximian.com>
8118         * reflection.c (mono_reflection_bind_generic_method_parameters):
8119         Set `gmethod->reflection_info'.
8121 2004-07-17  Martin Baulig  <martin@ximian.com>
8123         * class.c (mono_class_create_from_typedef): Insert the newly
8124         created class into the hash table before computing the interfaces
8125         since we could be called recursively.
8127 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
8129         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
8130         function to implement stelem.ref in managed code
8131         * class-internals.h, debug-helpers.c: a new wrapper type
8132         for the above.
8134 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
8136         * gc.c: allow GC handles to work even when no GC is compiled in.
8137         Fix part of bug #61134 (GetAddrOfPinnedObject).
8139 2004-07-13  Peter Williams  <peter@newton.cx>
8141         * process.c (complete_path): Make sure we don't attempt to execute
8142         directories.
8144 2004-07-12  Geoff Norton <gnorton@customerdna.com>
8146         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
8147           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
8148           and will add/subtract the hour if needed
8150 2004-07-12  Martin Baulig  <martin@ximian.com>
8152         * reflection.c (mono_field_get_object): If we have
8153         `field->generic_info', take the attributes from
8154         `field->generic_info->generic_type'.    
8156 2004-07-12  Martin Baulig  <martin@ximian.com>
8158         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
8159         This function must be called before initializing the runtime.
8160         (mono_debug_init_1): New function; call this after initializing
8161         the runtime, but before loading the assembly.  It tells the
8162         debugger to load corlib and the builtin types.
8164         * mono-debug-debugger.c: Did some larger changes in the debugging
8165         code; support recursive class declarations, make sure we actually
8166         add all classes.
8168 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8170         * debug-helpers.c: undo my previous patch and fixed the real issue in
8171         ../mini/exceptions-x86.c
8173 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8175         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
8176         when no HOME env. variable was set and a NullRef was thrown in a .cctor
8177         called from other .cctors.
8179 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
8181         * loader.c: Removed the mono_loader_wine_init hack now that we are
8182         doing a managed version of Windows.Forms.
8184 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
8186         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
8187         threadpool.c, threads.c: remove static data from rootset.
8189 2004-07-09  Dick Porter  <dick@ximian.com>
8191         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
8192         Don't do any more processing if the matched length was 0.  It was
8193         increasing the size of the string before.  Fixes bug 61167.
8195 2004-07-09  Dick Porter  <dick@ximian.com>
8197         * socket-io.h:
8198         * socket-io.c
8199         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
8200         Add support for SO_PEERCRED if its available.
8202 2004-07-09  Peter Bartok <pbartok@novell.com>
8203         * loader.c: winelib.exe.so error message is now only displayed if
8204         MONO_DEBUG is set. To help us avoid questions when people are trying
8205         out the new Managed.Windows.Forms.
8207 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
8209         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
8210         for isinst and castclass wrappers.
8212         * class-internals.h icall.c: Move registration and lookup of JIT icalls
8213         to libmetadata from the JIT, so they could be used by the marshalling
8214         code and the interpreter.
8216         * marshal.c: Register marshalling related JIT icalls here instead of
8217         in mini.c. Use CEE_MONO_ICALL instead of the family of 
8218         CEE_MONO_PROC<x> opcodes to call marshalling functions.
8220         * metadata.h: Remove unneeded marshalling conversions.
8222         * opcodes.c: Update for new opcodes.
8223         
8224 2004-07-08  Martin Baulig  <martin@ximian.com>
8226         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
8227         (mono_debug_get_domain_data): Make this function static.
8229 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
8231         * gc.c, object.h: add nice GC handle API for embedders.
8233 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
8235         * reflection.c: more changes for the new api
8237         * object.c: When we reflect on a field w/ a constant value, it
8238         will not have a memory location, so we must access metadata. Also,
8239         allow easier reading of strings so that we can read them from
8240         the constant data.
8242         * class.c (mono_class_layout_fields): no need for literal fields here.
8244         * class-internals.h: api changes for const fields
8246         * icall.c (ves_icall_get_enum_info): use new apis for const fields
8248 2004-07-06  Martin Baulig  <martin@ximian.com>
8250         * mono-debug.h: Increment version number to 44.
8252         * mono-debug.c (mono_debug_add_wrapper): The second argument is
8253         now a gpointer, rewrote this whole method.
8255         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
8256         function.  Add information about the wrapper in a new "misc table".
8258         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
8259         for the new misc table.
8261 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
8263         * metadata-internals.h image.c: Add a cache for helper signatures.
8265         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
8267 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
8269         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
8270         delegates from a delegate. Fixes #61033.
8271         
8272         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
8273         marshalling of stringbuilder arrays. Fixes #59900.
8275 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
8277         * icall.c: Add EnumBuilder:setup_enum_type icall.
8279 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
8281         * icall.c: Added a new icall for the property version of
8282         OffsetOfStringData.
8284 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
8286         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
8287         it has a constant size across platforms.
8289         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
8290         stack trace.
8292 2004-06-29  Martin Baulig  <martin@ximian.com>
8294         * mono-debug.c (mono_debug_add_method): Protect the whole function
8295         in mono_debugger_lock(), not just parts of it.
8297 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
8299         * reflection.c: make sure padding bytes in heaps are zeroed.
8301 2004-06-24  David Waite  <mass@akuma.org>
8303         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
8304         image.c, loader.c, locales.c, marshal.c, metadata.c,
8305         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
8306         string-icalls.c, threads.c: change to C90-style comments from C99 /
8307         C++ -style
8309 2004-06-24  Dick Porter  <dick@ximian.com>
8311         * threads.c
8312         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
8313         return createdNew.  Fixes bug 60412.
8315         * threads-types.h: 
8316         * icall.c: Add createdNew parameter to CreateMutex icall
8318 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
8320         * reflection.c, object-internals.h: save default value in params.
8322 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8324         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
8325         no need to build a new path combining that with the application base.
8326         Fixes bug #60442.
8328 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
8330         * reflection.c: fixed minor standard compliance issues.
8332 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
8334         * reflection.c: fixed issue with encoding some custom attributes
8335         (arrays in properties and fields, bug #60411).
8337 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8339         * reflection.c: fix start address when copying the public key token.
8341 2004-06-23  Martin Baulig  <martin@ximian.com>
8343         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
8344         the `exc' object in a static object to put it into the GC's root set.
8346 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
8348         * reflection.c: make mono_reflection_setup_internal_class ()
8349         callable a second time to setup a new parent class.
8351 2004-06-23  Dick Porter  <dick@ximian.com>
8353         * threads.c: Check for WAIT_IO_COMPLETION return values.
8355 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
8357         * appdomain.c: Removed the g_free on the public key token. Now copy 
8358         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
8359         * assembly.c: Added public key token string value when loading 
8360         assemblies. Fix bug #60439.
8361         * icall.c: Added missing informations (like public key) in 
8362         GetReferencedAssemblies. Fix #60519.
8363         * image.h: Changed definition for public key token from const char*
8364         public_tok_value to guchar public_key_token [17];
8365         * reflection.c: Updated for changes to public key token.
8367 2004-06-22  Lluis Sanchez Gual
8369         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
8370         for the field in base classes.
8372 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
8374         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
8375         mark headers as not supported, they are installed only for use by the
8376         debugger.
8378 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
8380         * *.c, *.h: avoid namespace pollution in public headers.
8382 2004-06-21  Martin Baulig  <martin@ximian.com>
8384         * exception.c (mono_get_exception_security): It's in
8385         "System.Security", not in "System".
8387         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
8388         the exception classes.
8390 2004-06-21  Martin Baulig  <martin@ximian.com>
8392         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
8393         Protect the exception object from being finalized.
8395 2004-06-21  Martin Baulig  <martin@ximian.com>
8397         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
8398         public function.
8400 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
8402         * reflection.c: Load the assembly in mono_reflection_type_from_name,
8403         if it was not loaded before. Fix parts of #60439.
8405 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
8407         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
8408         code that was broken since Ben's change: wrappers are now
8409         dependent on the method signature only again.
8411 2004-06-21  Martin Baulig  <martin@ximian.com>
8413         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
8414         added interface support.
8416 2004-06-21  Martin Baulig  <martin@ximian.com>
8418         * class.c (mono_vtable_get_static_field_data): New public method.
8420 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
8422         * filewatcher.c : Windows build fix to be compliant with API changes.
8424 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
8426         * class.h, class.c: more accessors.
8427         * metadata.h, metadata.c: prepare for hiding MonoType and
8428         MonoMethodSignature: people should use the accessors from now on
8429         outside of the tree.
8431 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
8433         * *.c, *.h: more API cleanups.
8435 2004-06-18  Jackson Harper  <jackson@ximian.com>
8437         * assembly.c: Trace loading assemblies.
8438         * loader.c: Trace loading native libraries.
8439         * mono-config.c: Trace loading config files.
8440         
8441 2004-06-18  Dick Porter  <dick@ximian.com>
8443         * locales.c: Tell ICU the lengths of strings, it can cope with
8444         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
8446 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
8448         * image.c: swapped name/filename;
8450 2004-06-18  Martin Baulig  <martin@ximian.com>
8452         * mono-debug-debugger.c (write_class): Write the parent class at
8453         the end of the header.
8455 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
8457         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
8459 2004-06-17  Raja R Harinath  <rharinath@novell.com>
8461         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
8462         (bundle_obj): New conditional define.
8463         (BUILT_SOURCES): Remove.
8464         ($(bundle_srcs)): Make parallel-make safe.
8465         (libmonoruntime_la_LIBADD): Make unconditional.
8466         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
8467         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
8469 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
8471         * culture-info-tables.h: It was inconsistent with the latest
8472           supp info files.
8474 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
8476         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
8477         be loaded.
8479         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
8480         with gcc 2.95.
8482 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
8484         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
8485         cleaned up public header threads.h.
8487 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
8489         * Makefile.am, *.c, *.h: more API cleanups.
8491 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
8493         * Makefile.am: removed monosn from compilation.
8494         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
8495         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
8496         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
8497         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
8498         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
8499         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
8501 2004-06-15  Jackson Harper  <jackson@ximian.com>
8503         * assembly.c: Make locales lower case when searching the GAC for
8504         assemblies. gacutil will always make locales lowercase when
8505         installing so this effectively makes them case insensitive.
8506         
8507 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
8509         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
8510         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
8511           parameter which allows to choose whether the wait can be interrupted or 
8512           not. Also added the method mono_monitor_enter(), which locks the monitor
8513           using an infinite wait and without allowing interruption.
8514           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
8515           interrupted.
8516         * object.h: Added new fields in MonoThread. suspend_event holds the event
8517           used to susped/resume the thread. synch_lock is the lock object to use for
8518           modifying the thread state.
8519         * threads.c: Use the new synch_lock object for locking, instead of "this",
8520           which can generate deadlocks.
8521           Moved thread state change in Thread.Sleep and Thread.Join from managed
8522           to unmanaged code. This avoids a deadlock when the thread was suspended
8523           just after acquiring the thread lock.
8524           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
8525           Implemented Thread.Suspend using an event instead of ThreadSuspend,
8526           which is not fully implemented in the io-layer.
8527         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
8529 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
8531         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
8532         threads-types.h: more API cleanups.
8534 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
8536         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
8537         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
8538         threadpool.c, threads.c: first pass at the exported API cleanup.
8540 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
8542         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
8544 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8546         * icall.c: added internalGetHome.
8548 2004-06-14  Dick Porter  <dick@ximian.com>
8550         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
8551         possible to return successfully when '.' or '..' were the only
8552         entries in a directory, but were skipped.  The MonoIOStat was not
8553         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
8554         Fixes bug 59574.
8556 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
8558         * reflection.c: make binaries run on .Net 1.1 by default.
8560 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
8562         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
8564 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
8566         * marshal.c: keep track of struct size with explicit layout
8567         (bug #59979).
8569 2004-06-12  Martin Baulig  <martin@ximian.com>
8571         * mono-debug-debugger.c: Comment out a debugging g_message().
8573 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
8575         * reflection.c, reflection.h: do not free custom attrs that are cached.
8576         * icall.c: use braces to make code clearer.
8578 2004-06-11  Martin Baulig  <martin@ximian.com>
8580         * class.h (MonoInflatedField): New type.
8581         (MonoClassField): Replaced `MonoType *generic_type' with
8582         `MonoInflatedField *generic_info'.
8584         * icall.c
8585         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
8587 2004-06-11  Martin Baulig  <martin@ximian.com>
8589         * reflection.c (mono_image_create_method_token): Correctly encode
8590         varargs methods.
8592 2004-06-11  Martin Baulig  <martin@ximian.com>
8594         * metadata.c (mono_metadata_parse_method_signature): When parsing
8595         a MethodDef which has VarArgs, also set sentinelpos if we don't
8596         have any parameters.
8598 2004-06-11  Martin Baulig  <martin@ximian.com>
8600         * verify.c (mono_method_verify): In CEE_CALL, use
8601         mono_method_get_signature() to get the method's signature, unless
8602         we're a PInvoke method.
8604 2004-06-10  Jackson Harper  <jackson@ximian.com>
8606         * assembly.c: Use <path>/lib/mono/gac for the extra paths
8607         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
8608         logical name as the supplied path is just a prefix to the gac not
8609         the direct path to it.
8610         
8611 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
8613         * reflection.c: make the token for a created method match
8614         the token of the MethodBuilder it was created from
8615         (IKVM requires this behaviour now).
8617 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
8619         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
8620         reflection.c, socket-io.c: leak fixes.
8622 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
8624         * icall.c: handle sentinel pos in vararg methods in position different
8625         from 0.
8627 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8629         * culture-info-tables.h: freshly generated.
8631 2004-06-09  Martin Baulig  <martin@ximian.com>
8633         * loader.c (mono_get_method_constrained): Call `mono_class_init
8634         (constrained_class)'.   
8636 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
8638         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
8639         any methods. Fixes #59629.
8641 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
8643         * culture-info-tables.h: reflecting locale-builder updates.
8645 2004-06-08  Dick Porter  <dick@ximian.com>
8647         * object.h:
8648         * locales.c: Fixed compile warnings, including a real bug in
8649         CompareInfo_internal_compare.
8650         
8651 2004-06-08  Dick Porter  <dick@ximian.com>
8653         * locales.c
8654         (ves_icall_System_Globalization_CompareInfo_internal_index):
8655         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
8656         Double-check the resuls of usearches, because ICU currently
8657         ignores most of the collator settings here.  Fixes bug 59720.
8658         
8659 2004-06-08  Dick Porter  <dick@ximian.com>
8661         * locales.c
8662         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
8663         Fix memory leak and segfault-causing typo.  No idea how this one
8664         lasted so long without being noticed.
8666 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
8668         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
8669         any methods. Fixes #59629.
8671 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8673         * assembly.c:
8674         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
8675         own the critical section before). Removed dead code (that's done
8676         in the preload hook).
8678         (mono_assembly_load_with_partial_name): call the preload hook.
8680 2004-06-08  Martin Baulig  <martin@ximian.com>
8682         * metadata.c (mono_metadata_signature_alloc): Default
8683         `sentinelpos' to -1.
8685         * reflection.c (mono_image_get_array_token): Likewise.
8687 2004-06-08  Martin Baulig  <martin@ximian.com>
8689         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
8691         * metadata.c (mono_metadata_parse_method_signature): When parsing
8692         a MethodDef which has VarArgs, set sentinelpos.
8694         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
8695         `gint16' since we're using -1 for non-varargs methods.
8697         * reflection.c
8698         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
8699         (method_encode_signature): Added varargs support.
8700         (method_builder_encode_signature): Likewise.
8701         (mono_image_get_varargs_method_token): New static method.
8702         (mono_image_create_method_token): New public method; this is
8703         called via an icall instead of mono_image_create_token() when
8704         calling a varargs method.       
8706 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
8708         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
8710 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
8712         * culture-info-tables.h : Reflecting the latest locale-builder that
8713           fixed empty array representation ({} to {0}).
8715 2004-06-07  Jackson Harper  <jackson@ximian.com>
8717         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
8718         looking up extra gac paths. This allows MONO_GAC_PATH to act
8719         exactly like a prefix.
8720         
8721 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
8723         * reflection.c (mono_reflection_type_from_name): Make a copy of the
8724         type name before modifying it. Fixes #59405.
8726 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
8728         * culture-info.h: added fields for "all datetime patterns".
8729         * locales.c: (  ves_icall_System_Globalization_CultureInfo
8730           _construct_datetime_format ()): fill xxx_patterns fields.
8731         * object.h: added fields for "all datetime patterns" to
8732           MonoDateTimeFormatInfo.
8733         * culture-info-tables.h: reflecting locale-builder updates.
8735 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
8737         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
8738         the event has no add and remove methods. Fixes #59629.
8740 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
8742         * object.c: Fixed possible integer overflow when allocating large
8743         strings.
8745 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
8747         * culture-info-tables.h: reflecting locale-builder updates.
8749 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
8751         * culture-info-tables.h: reflecting locale-builder updates.
8753 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
8755         * culture-info-tables.h: reflecting locale-builder updates.
8757 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
8759         * threads.c: Made Thread.Sleep abortable.
8761 2004-06-02  Martin Baulig  <martin@ximian.com>
8763         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
8765         * debug-mono-symfile.h: Bumped symbol file version number to 37.
8767 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
8769         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
8771 2004-05-30  Jackson Harper  <jackson@ximian.com>
8773         * reflection.c: Do not hardcode assembly versions or public key
8774         tokens anymore. All of this except the corlib section was dead
8775         code anyways.
8776         
8777 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
8779         * object.c (mono_runtime_invoke_array): Automatically create boxed
8780         objects for byref valuetypes if needed. Fixes #59300.
8781         
8782         * object.c (mono_method_return_message_restore): Handle 
8783         MONO_TYPE_OBJECT as well.
8785 2004-05-28  Jackson Harper  <jackson@ximian.com>
8787         * reflection.c: The modified type encoding was causing build
8788         problems. Reverted for now.
8789         
8790 2004-05-28  Jackson Harper  <jackson@ximian.com>
8792         * reflection.c/h: Take an assembly ref so that we dont create
8793         fully qualified names when encoding types in the same assembly as
8794         the custom attribute being emitted.
8795         * appdomain.c: Increment version number.
8796         
8797 2004-05-26  Duncan Mak  <duncan@ximian.com>
8799         * icall.c
8800         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
8801         Set the full version number (major, minor, build, revision).
8803 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
8805         * marshal.c (emit_struct_conv): increment src/dst after blit
8806         (mono_marshal_get_managed_wrapper,
8807         mono_marshal_get_native_wrapper): make sure we have marshalling
8808         info before marshalling params (info computation affects
8809         blittable)
8811         * class.c (class_compute_field_layout): correctly deal with
8812         blittable
8813         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
8814         value types (as per what windows dows by default)
8815         (mono_class_setup_mono_type): System.ValueType is blittable
8816         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
8817         blittable
8819         * marshal.c (mono_marshal_load_type_info): flag types  as
8820         non-blittable if the native layout doesn't match the managed
8821         layout
8823 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8825         * appdomain.c: don't add stuff in the private search path that is
8826         above the application base. If application base is not set, there's
8827         no private search path.
8829 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
8831         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
8832         byref struct arguments in native->managed marshalling.
8834 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
8836         * marshal.c (mono_marshal_get_runtime_invoke): correctly
8837         cache methods using signature (special case for methods
8838         that are value type or string class)
8839         
8840         * image.c (mono_image_close): clean up allocated GSList's
8841         in runtime_invoke_cache.
8843 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8845         * mono-config.c: set the correct path for mono_cfg_dir on windows when
8846         there's no MONO_CFG_DIR environment variable defined.
8848 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8850         * threads.c: windows version must be >= 0x0500 to include OpenThread.
8852 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
8854         * threadpool.c: Really wait for 500ms after the async call, even if the wait
8855           is interrumped.
8856         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
8857           before waiting for it, and call CloseHandle after the wait to unref it.
8858           This will make sure that handles are not disposed too early.
8860 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8862         * appdomain.c:
8863         * appdomain.h:
8864         * icall.c: removed
8865         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
8866         needed now.
8868         * object.c: se the application_base only for the domain that runs
8869         Main. Fixes bug #59216,
8871 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8873         * appdomain.c:
8874         * object.c: only the domain in which Main is run have
8875         SetupInformation.ConfigurationFile set, so moved a few lines from
8876         appdomain.c to object.c.
8878 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8880         * appdomain.c: we tried to load [name].(dll|exe), but according
8881         to bug #57710, we must also try [culture]/[name].(dll|exe) and
8882         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
8883         There's a test case attached to bug #58922.
8885 2004-05-27  Dick Porter  <dick@ximian.com>
8887         * icall.c:
8888         * file-io.c: Implemented icalls for locking and unlocking regions
8889         in a file.
8890         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
8891         FALSE on error (fixes both compiler warning and real bug.)
8893 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
8895         * culture-info-tables.h: reflecting locale-builder updates.
8897           (Added missing ChangeLog entry for 05/26)
8899 2004-05-27  Jackson Harper  <jackson@ximian.com>
8901         * locales.c: Fix some cut and paste errors.
8902         
8903 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8905         * mono-config.c: set the correct path for config. directory on windows.
8907 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
8909         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
8910           on win32.
8912 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
8914         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
8915         from pinvoke functions.
8916         
8917         * marshal.c (mono_ftnptr_to_delegate): Implement this.
8919 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
8921         * culture-info-tables.h: reflecting locale-builder updates.
8923 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
8925         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
8926         #59086.
8928 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
8930         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
8931         * icall.c: Modified icalls for RNG.
8932         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
8933         Windows (CryptoAPI).
8935 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
8937         * locales.c: Fix build.
8939 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
8941         * culture-info-tables.h: reflecting locale-builder updates.
8943 2004-05-25  Jackson Harper  <jackson@ximian.com>
8945         * locales.c: When creating the current culture use the $LANGs
8946         specific culture. So DateTimeFormat and NumberFormat entries are created.
8947         
8948 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
8950         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
8951         a char array as parameter.
8953 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
8955         * image.c: In mono_image_open(), always use an absolute path name to
8956           look for already loaded images.
8958 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
8960         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
8961         missing in the windows build (like older cygwin include files).
8963 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
8965         * icall.c: Fixed check for possible integer overflow in Buffer_
8966         BlockCopy icall. Replaced comments style // by /* */.
8968 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
8970         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
8971         
8972         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
8973         check after MONO_VTADDR. Fixes pinvoke2.exe.
8975         * marshal.h marshal.c metadata.h: Add beginnings of support for
8976         ftnptr -> delegate marshalling.
8978 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
8980         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
8981         * threads.c: Fix warnings.
8983 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
8985         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
8986         * icall.c: Registered icalls for Suspend and Resume.
8987         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
8988           Thread.Abort.
8989         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
8990         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
8991         * process.c: Use WaitForSingleObjectEx.
8992         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
8993           checkpoints.
8994         * threads.c, threads.h: Make use of new Ex wait methods. Improved
8995           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
8996           for Suspend and Resume. Added new mono_thread_stop, used for stoping
8997           background threads. Added basic support for Abort in Windows.
8998           Start new threads using a managed delegate invoke wrapper. This wrapper
8999           has an interruption checkpoint that is needed since an interruption
9000           can be requested before the thread leaves the unmanaged code that starts 
9001           the thread.
9002         * marshal.c: Added interruption checkpoint after every native call, and
9003           also before managed calls for wrappers called from unmanaged code to
9004           go into managed code.
9005         * object.h: Added new field in MonoThread to keep track of interruption
9006           requests.
9008 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
9010         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
9011         calls.
9013 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9015         * appdomain.c:
9016         * assembly.c:
9017         * gc.c:
9018         * locales.c:
9019         * mono-config.c:
9020         * rand.c: getenv -> g_getenv (windows!)
9022         * process.c: complete_path is also used on non-windows platforms.
9024 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9026         * icall.c: new signature for Process_Start.
9028         * process.[ch]: new signature for Process_Start. If we're on windows
9029         and UseShellExecute is false, we have to search for the program by
9030         ourselves if we don't get a full path.
9032 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
9034         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
9035         marshalling and call CleanUpNativeData if needed. Fixes #58646.
9037 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9039         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
9040         Fixes bug #58373.
9042 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9044         * process.c: use double quotes to quote program name and arguments on
9045         windows. Fixes bug #58575.
9047 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9049         * file-io.c: don't return "." and ".." when using windows Find*File.
9051 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
9053         * marshal.c: Don't pass wrappers to message init because method 
9054         addressed used to lookup metadata. part of remoting[2|3] fix.
9056 2004-05-15  Jackson Harper  <jackson@ximian.com>
9058         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
9059         path is essentially the same as MONO_PATH except that it points to
9060         GACs instead of lib directories.
9061         * loader.h: The user gac is gone so we dont need function to
9062         enable/disable it.
9063         * mono-config.c: user gac option is now gone.
9064         
9065 2004-05-15  Jackson Harper  <jackson@ximian.com>
9067         * culture-info.h: Make defines more consistent, add calendar data
9068         to the culture info table.
9069         * culture-info-tables.h: Add basic calendar data. Basically
9070         everyone gets default gregorian until all the data is
9071         updated.
9072         * locales.c: Use the new consistent defines. Set calendar data for
9073         culture info objects.
9074         * object.h: add a field for calendar data to CultureInfo
9075         
9076 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
9078         * image.c: image->runtime_invoke_cache is keyed on signatures now.
9079         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
9080         a signature.
9081         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
9082         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
9083         an extra param that is the pointer of the method to invoke. The IL for
9084         the invoke method is no longer specific to the method, but to the
9085         signature of the method. Thus, we can share the same code for multiple
9086         methods. This reduces the number of methods that have to be compiled.
9088 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
9090         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
9092         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9094         * icall.c: Optimize Buffer.BlockCopy.
9096 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9098         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
9099         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
9100         quote). Changed them to "MMMM yyyy".
9102 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
9104         * rand.c
9105         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
9107 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
9109         * reflection.h: Updated after changes to managed structures.
9111         * appdomain.c: Bump corlib version.
9113 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9115         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
9116         windows.
9118 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9120         * Makefile.am: link to ../os/libmonoos.la on windows.
9122         * assembly.c:
9123                 -If MONO_DEBUG, warn about non-existing directories in
9124                 MONO_PATH.
9125                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
9126                 compile time variable.
9127                 -Removed init_default_path and call mono_set_rootdir from
9128                 libmonoos.a instead (windows only).
9130         * assembly.h: declare mono_assembly_getrootdir().
9132         * domain.c:
9133         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
9135         * loader.c: s/getenv/g_getenv/
9137 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
9139         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
9141         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
9143         * metadata.h: Add new marshalling conversions.
9145         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
9146         function.
9148         * reflection.c (mono_reflection_get_type): Lookup the type in all
9149         modules of a multi-module assembly. Fixes #58291.
9151 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
9153         * threads.c: Before aborting a background, set the StopRequested
9154         state.  This avoids throwing the Abort exception.
9155         In mono_thread_manage, don't continue with the shutdown until all
9156         aborted threads have actually stopped.
9158 2004-05-10  Jackson Harper  <jackson@ximian.com>
9160         * locales.c: Remove the modifier from culture names.
9161         
9162 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9164         * Makefile.am: monosn is not installed any more. It has been deprecated
9165         in favor of sn.
9167 2004-05-07  Jackson Harper  <jackson@ximian.com>
9169         * locales.c
9170         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
9171         Fix array construction, add bailout if the length is 0.
9173 2004-05-07  Dick Porter  <dick@ximian.com>
9175         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
9176         machine doesn't have a DNS entry.  Patch by Urs Muff
9177         (umuff@quark.com), fixes bug 57928.
9179 2004-05-06  Jackson Harper  <jackson@ximian.com>
9181         * reflection.c: Handle null PublicTokens properly. alloc mem for
9182         assembly names culture so we dont crash when freeing it.
9183         
9184 2004-05-06  Jackson Harper  <jackson@ximian.com>
9186         * assembly.c: Check the usergac when loading with partial names.
9187         
9188 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
9190         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
9191         does nothing for now (not required for Linux/Windows) but the class
9192         library can call it (and a newer or modified runtime could need it).
9193         * icall.c: Registred icall.
9195 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9197         * loader.c: prints a message on module loading error we set MONO_DEBUG
9198         environment variable.
9200 2004-05-05  Jackson Harper  <jackson@ximian.com>
9202         * appdomain.c: Handle PublicKeyToken=null properly.
9203         
9204 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
9206         * environment.c|h: Added icall ves_icall_System_Environment_
9207         GetOSVersionString to get the current OS version as a string.
9208         * icall.c: Registred icall.
9210 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
9212         * object.c: in mono_object_get_virtual_method(), take into account that
9213         non-virtual methods don't have a slot in the vtable. Check needed when
9214         the object is a proxy.
9216 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
9218         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
9219         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
9221         * object.c (mono_class_compute_gc_descriptor): Fix warning.
9223         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
9224         passed when a valuetype is expected.
9226         * object.c (mono_unhandled_exception): Only set the exit code if the
9227         exception happens in the main thread. Fixes thread5.exe.
9229         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
9230         invalid names. Fixes #58047.
9232 2004-05-03  Jackson Harper  <jackson@ximian.com>
9234         * assembly.c: This line was committed accidently and is unneeded.
9235         
9236 2004-05-03  Jackson Harper  <jackson@ximian.com>
9238         * icall.c: Add new icall for Assembly::LoadWithPartialName
9239         * assembly.c/.h: new function that probes the GAC to load partial
9240         assembly names by Paolo Molaro.
9241         
9242 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9244         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
9245         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
9246         (type_get_fully_qualified_name): Added PublicKeyToken when building a
9247         full type name.
9249 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9251         * appdomain.c: fixed check for 'neutral' culture and removed warning.
9252         * reflection.c: fix bug when parsing a full type name and Version is not
9253         the last thing in the string.
9255 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
9257         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
9258         crashes when it is freed.
9260 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9262         * assembly.c: print the compat warning to stderr.
9264 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
9266         * assembly.c (mono_assembly_load_references): Add a compatibility
9267         hack to run old applications that might be still referencing the
9268         3300-based assemblies, only do this for System.xxx.
9270 2004-05-01  Jackson Harper  <jackson@ximian.com>
9272         * appdomain.c: If the culture is neutral we set it to "".
9273         
9274 2004-04-29  Jackson Harper  <jackson@ximian.com>
9276         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
9278 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
9280         * string-icalls.c: added low overhead function for copying chars
9281         * icall.c: added needed icall for the above function
9283 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9285         * icall.c: fix return value of get_global_assembly_cache.  Implemented
9286         Environment.GetLogicalDrives.
9288 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
9290         * rand.c: try and talk to egd or prngd
9291         for random bytes if opening devices fail.
9293 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
9295         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
9296         alignment for the type using the native alignment of its members 
9297         instead of using klass->min_align.
9299         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
9301 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9303         * file-io.c:
9304         * socket-io.c: added check for sys/aio.h.
9306 2004-04-28  Dick Porter  <dick@ximian.com>
9308         * threads.c: Don't abort a thread thats already aborting, when
9309         terminating everything.
9311 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9313         * icall.c: added 2 new async calls for Socket.
9315         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
9316         IO on *nix systems.
9318         * threadpool.c: removed unused variable.
9320 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
9322         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
9324 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
9326         * locales.c: put back string_invariant_tolower () and
9327         string_invariant_toupper ().
9329 2004-04-26 David Waite <mass@akuma.org>
9331         * file-io.h:
9332         * socket-io.h:
9333         * threads.h:
9334         * unicode.h: remove comma from end of enumeration declarations
9336 2004-04-26 David Waite <mass@akuma.org>
9338         * debug-mono-symfile.h:
9339         * decimal.c:
9340         * mono_debug.h:
9341         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
9344 2004-04-26  Jackson Harper  <jackson@ximian.com>
9346         * appdomain.c: Increment version number.
9347         
9348 2004-04-26  Jackson Harper  <jackson@ximian.com>
9350         * appdomain.c: Set assembly references public token value when
9351         PublicKeyToken is specified, not the hash_value. Free public token
9352         values when free assembly name data. Previously the public key
9353         token was hex decoded, however we are using hex encoded public key
9354         tokens, so this is not neccasary.
9355         * assembly.c: Lookup assemblies in the gac if their public token
9356         value is set. Add function to allow enabling user gac
9357         lookups. Specify whether or not the assembly was loaded from the
9358         GAC. Compare full assembly names when checking the cache for
9359         assemblies (Temporarily disabled see comment in code). Remove
9360         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
9361         specifies trace-loader they get extra info to stdout on the
9362         loading of assemblies.
9363         * image.h: Add a field for an assembly references public token
9364         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
9365         whether an assembly has been loaded from the GAC.
9366         * image.c: Remove a corlib -> mscorlib name mapping.
9367         * loader.h: Add function to enable/disable the user gac.
9368         * mono-config.c: Check if the usergac is enabled in the config
9369         file.
9370         * icall.c: New icall to determine whether or not an assembly has
9371         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
9372         * tabldefs.h: Add constant for assemblyref flag that specifies a
9373         full public key is used instead of a public token.
9374         * reflection.c: Remove mscorlib -> corlib mappings. Set
9375         PublicTokenValue instead of hash value. This value is a hex
9376         string so it does not need to be expanded.
9378 2004-04-26  Martin Baulig  <martin@ximian.com>
9380         * mono-debug-debugger.c (mono_debugger_initialize): Set
9381         `mono_debugger_initialized' before calling mono_debug_lock().
9383 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
9385         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
9386           InternalToUpper/InternalToLower.
9387         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
9388           removed invariant culture shortcut.  This is now done in managed code.
9389         * locales.c: (string_invariant_toupper/tolower) removed.
9391 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9393         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
9394         Added Poll internal call.
9396         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
9397         call for Poll. Select was too heavy for polling a single socket.
9399         * threadpool.[ch]: added mono_threadpool_cleanup.
9400         * threads.c: use it. Don't use Thread_Abort on windows.
9402 2004-04-23  Martin Baulig  <martin@ximian.com>
9404         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
9406 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
9408         * icall.c: Registred new icalls for key pair protection and added an
9409         icall for Environment.GetFolderPath on Windows.
9410         * security.c|h: Added new icalls for key pair protection.
9412 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9414         * socket-io.c: don't display the non-supported family warning for known
9415         families. Now this is not displayed on windows when checking support
9416         for IPv4/IPv6.
9418 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9420         * class.c: don't display the layout warning for static fields.
9422 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
9424         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
9425         * locales.c, locales.h: Added new icalls for culture-specific
9426         Char.ToLower and Char.ToUpper.
9428 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9430         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
9431         by David Waite.
9433 2004-04-20  Martin Baulig  <martin@ximian.com>
9435         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
9436         of the type name before passing it to mono_reflection_type_from_name().
9438 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
9440         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
9441         encodings here. Fixes #56965.
9443 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
9445         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
9446         fix test on strstr result not that I can see anything that
9447         relies on the result.
9449 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
9451         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
9452         Fixes #57081.
9454         * marshal.c (mono_marshal_get_string_encoding): New helper function.
9456         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
9457         function to determine which marshalling to use for strings. Fixes
9458         #56965.
9460         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
9462         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
9464 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
9466         * icall.c: #include mono-config.h
9468 2004-04-15  Jackson Harper  <jackson@ximian.com>
9470         * culture-info-tables.h: Fix date formats for en-US culture.
9471         
9472 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
9474         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
9475         ThreadPool.SetMinThreads.
9476         * threadpool.c: Implemented ThreadPool.GetMinThreads and
9477         ThreadPool.SetMinThreads.
9479 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
9481         * mono-config.c: also load the .config file in the directory
9482         where the assembly was found.
9484 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
9486         * assembly.c: load per-assembly config files.
9487         * icall.c: decrapified code to get the config dir and moved to
9488         mono-config.c.
9489         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
9490         per-assembly config files. When doing a dll map lookup give precedence
9491         to the per-assembly data.
9493 2004-04-14  Martin Baulig  <martin@ximian.com>
9495         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
9496         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
9497         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
9499         * mono-debugger-debugger.c: While the debugger is locked, remember
9500         whether the symbol tables have changes and send one single
9501         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
9503 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
9505         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
9507         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
9508         function.
9510         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
9511         account when marshalling string arrays. Fixes #56965.
9513 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
9515         * icall.c: Add new icalls mapping for security.
9516         * security.c|h: Add internal calls for WindowsIdentity,
9517         WindowsImpersonationContext and WindowsPrincipal.
9519 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
9521         * class.c: Added comment to ensure the System.MonoDummy class
9522         is removed when no longer necessary
9524 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
9526         * appdomain.c: Pass arguments to the bootstraping exceptions to
9527         minimize JITed methods at boot
9529         * metadata.c (mono_exception_from_name_two_strings): Allow for the
9530         second string to be null.
9532         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
9533         Change the protocol to minimize the JIT methods at startup.  Now
9534         it Returns the internal codepage, if the value of "int_code_page"
9535         is 1 at entry, and we can not compute a suitable code page
9536         number, returns the code page as a string.
9538 2004-04-13  Jackson Harper  <jackson@ximian.com>
9540         * culture-info-tables.h: Fix number of decimal digits for all
9541         english locales.
9543 2004-04-13  Jackson Harper  <jackson@ximian.com>
9545         * icall.c: Clairfy out of sync error message. It is not always
9546         your corlib that is out of sync.
9548 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
9550         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
9551         properties when only the set accessor is overriden. Fixes #55874.
9553 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
9555         * assembly.c (mono_assembly_load_references): Make this thread safe.
9556         Fixes #56327.
9558 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
9560         * monosn.c: Add missing initialization calls.
9562 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
9564         * locales.c:
9565         ves_icall_System_Globalization_CultureInfo_construct_number_format
9566         Fix g_assert so it compiles on fussier compilers re int/ptr
9567         mismatch
9569 2004-04-08  Dick Porter  <dick@ximian.com>
9571         * socket-io.h:
9572         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
9573         53992.  Also rearrange the code so that the internal calls return
9574         an error value and exceptions are thrown from managed code.
9576         * icall.c: Add type info to the socket icalls.
9578 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9580         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
9581         owes me a beer.
9583 2004-04-07  Martin Baulig  <martin@ximian.com>
9585         * class.c (mono_class_from_generic_parameter): Don't default
9586         `klass->parent' to `mono_defaults.object_type'.
9588 2004-04-07  Martin Baulig  <martin@ximian.com>
9590         * reflection.c (mono_reflection_initialize_generic_parameter): Set
9591         `param->pklass->reflection_info'.       
9593 2004-04-07  Jackson Harper  <jackson@ximian.com>
9595         * culture-info-tables.h: Fix date separator symbol.
9596         
9597 2004-04-07  Martin Baulig  <martin@ximian.com>
9599         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
9600         from System.Type to System.MonoType.
9602 2004-04-07  Martin Baulig  <martin@ximian.com>
9604         * reflection.h
9605         (MonoReflectionGenericParam): Added `has_reference_type' and
9606         `has_value_type' fields.
9608         * reflection.c (mono_image_get_generic_param_info): Encode the
9609         correct flags if we have the `class' or `struct' constraint.
9611 2004-04-07  Martin Baulig  <martin@ximian.com>
9613         * reflection.h
9614         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
9616 2004-04-07  Jackson Harper  <jackson@ximian.com>
9618         * appdomain.c: Revert extra patches, just wanted to bump the
9619         version number.
9620         
9621 2004-04-07  Jackson Harper  <jackson@ximian.com>
9623         * Makefile.am: Add culture-info private headers.
9624         * icall.c: Add new icalls for contructing locales.
9625         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
9626         * locales.h: Declare new culture info construction methods.
9627         * object.h: Add new fields used to avoid the CultureMap to
9628         MonoCultureInfo.
9629         * culture-info.h: Definition of structs used in the culture info
9630         tables.
9631         * culture-info-tables.h: Autogenerated tables that contain culture
9632         info data. This file was generated with the locale-builder tool.
9633         * appdomain.c: Incement corlib version number.
9634         
9635 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
9637         * appdomain.c: (mono_runtime_init) move mono_thread_init
9638         to before mono_object_new calls so critical sections
9639         are initialized before use.
9641 2004-04-07  Martin Baulig  <martin@ximian.com>
9643         * icall.c
9644         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
9645         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
9646         (ves_icall_MonoGenericParam_initialize): Removed.
9647         (monogenericparam_icalls): Removed.
9648         (generictypeparambuilder_icalls): Added new table for
9649         System.Reflection.Emit.GenericTypeParameterBuilder.
9651         * reflection.c
9652         (mono_reflection_define_generic_parameter): Removed.
9653         (mono_reflection_initialize_generic_parameter): This is now called
9654         from GenericTypeParameterBuilder's .ctor.
9656 2004-04-06  Martin Baulig  <martin@ximian.com>
9658         * class.c (mono_class_init): Don't inflate nested classes in a
9659         generic instance.
9660         (mono_type_get_name_recurse): Include the generic arguments for
9661         generic instances and generic type declarations.
9662         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
9663         (_mono_class_get_instantiation_name): Removed.
9664         (mono_class_create_generic): Always use `gklass->name' as our name.
9666         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
9668         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
9669         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
9670         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
9671         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
9672         closed generic methods here.
9674         * reflection.c
9675         (mono_reflection_generic_inst_get_nested_types): Removed.
9676         (inflate_mono_method): Copy the generic parameters from the
9677         MonoMethodHeader into out MonoGenericMethod.
9679 2004-04-06  Martin Baulig  <martin@ximian.com>
9681         * row-indexes.h
9682         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
9684         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
9686         * reflection.c (build_compressed_metadata): If we have any entries
9687         in the GenericParam, MethodSpec or GenericParamConstraint tables,
9688         set the header version to 1.1.
9690 2004-04-06  Martin Baulig  <martin@ximian.com>
9692         * class.c (mono_class_init): If we're a generic instance,
9693         initialize our nested classes, too.
9694         (_mono_class_get_instantiation_name): Deal with the new `!%d'
9695         suffix. 
9697 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9699         * process.c: quote the argument passed to the shell on windows.
9701 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
9703         * threads.c (mono_alloc_special_static_data): Allow this to be
9704         called during startup.
9706 2004-04-02  Martin Baulig  <martin@ximian.com>
9708         * icall.c
9709         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
9711 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
9713         * icall.c: Fix build.
9715 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
9717         * Makefile.am: Added security.c|h.
9718         * icall.c: Added icall for get_UserName;
9719         * security.c: New file for security related icalls. Added function
9720         get_UserName for System.Environment (fix #56144).
9721         * security.h: New. Header file for security.c
9723 2004-04-02  Dick Porter  <dick@ximian.com>
9725         * icall.c: Deleted the icalls that were obsoleted some time ago
9726         by the ICU string code, and which were mixed into the icall
9727         rearranging.  Fixes bug 55969.
9729         * string-icalls.h: 
9730         * string-icalls.c: Deleted the code that those icalls reference.
9732 2004-04-01  Martin Baulig  <martin@ximian.com>
9734         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
9736         * class.c (mono_class_from_generic_parameter): Don't set 
9737         TYPE_ATTRIBUTE_INTERFACE.
9738         (my_mono_class_from_generic_parameter): Likewise.
9740 2004-04-01  Martin Baulig  <martin@ximian.com>
9742         * loader.c (find_method): Added an optional `MonoClass *ic'
9743         argument to search in a specific interface.
9744         (mono_get_method_constrained): New public function.
9746 2004-04-01  Martin Baulig  <martin@ximian.com>
9748         * reflection.c (mono_image_get_generic_field_token): Use the
9749         `handleref' cache here.
9751 2004-04-01  Martin Baulig  <martin@ximian.com>
9753         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
9755         * reflection.c (create_generic_typespec): Use the `typespec' hash
9756         here, not the `typeref' one.    
9758 2004-04-01  Martin Baulig  <martin@ximian.com>
9760         * class.c (mono_class_inflate_generic_type): Moved the
9761         functionality into a new static inflate_generic_type() which
9762         returns NULL if it didn't do anything.  Only increment the
9763         `mono_stats.inflated_type_count' if we actually inflated
9764         something.
9765         (mono_class_get_full): Check the classes type to see whether we
9766         need to inflate it; also inflate MONO_TYPE_(M)VAR.
9768 2004-04-01  Jackson Harper  <jackson@ximian.com>
9770         * reflection.c: Set culture for assembly references.
9771         
9772 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
9774         * reflection.[ch], icall.[ch], Fix support for pinning variables.
9776 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9778         * assembly.c:
9779         (do_mono_assembly_open): the critical section also covers
9780         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
9782 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9784         * threads.c:
9785         (mono_manage_threads): abort the background threads when finishing.
9786         Fixes bug #47232.
9788 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9790         * gc.c: only close the done_event handle if there was no timeout.
9791         C-ified comments.
9793 2004-03-30  Martin Baulig  <martin@ximian.com>
9795         * icall.c (icall_entries): It's called "System.Activator", not
9796         "System.Activation".    
9798 2004-03-30  Martin Baulig  <martin@ximian.com>
9800         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
9801         (mono_class_create_from_typespec): Likewise.
9803 2004-03-30  Martin Baulig  <martin@ximian.com>
9805         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
9806         `has_ctor_constraint' and `initialized'.
9808 2004-03-30  Martin Baulig  <martin@ximian.com>
9810         * reflection.c (encode_new_constraint): New static function to add
9811         the constructor constraint attribute to a type parameter.
9812         (encode_constraints): Call encode_new_constraint() if necessary.
9814         * reflection.h
9815         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
9817         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
9818         
9819 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
9821         * reflection.c, icall.c: add support for pinning variables. 
9823 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
9825         * marshal.c (mono_marshal_get_managed_wrapper):
9826         init bool local with zero rather than null.
9828 2004-03-29  Martin Baulig  <martin@ximian.com>
9830         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
9831         the "official" behavior here.
9832         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
9834 2004-03-29  Martin Baulig  <martin@ximian.com>
9836         * icall.c: Reflect latest API changes.
9838 2004-03-29  Martin Baulig  <martin@ximian.com>
9840         * loader.c (mono_get_method_from_token): Also call
9841         mono_metadata_load_generic_params () for abstract and interface
9842         methods; replace the type arguments in the method signature with
9843         the ones which are loaded from the metadata.
9845 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
9847         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
9848         of the lock is not the current thread. MS.NET don't do it, in spite of
9849         what the documentation says. See bug #56157.
9851 2004-03-28  Martin Baulig  <martin@ximian.com>
9853         * class.c (mono_class_init): Don't call init_properties() and
9854         init_events() for generic instances; set `prop->parent' when
9855         inflating properties.
9857         * reflection.c (mono_generic_inst_get_object): Call
9858         `mono_class_init (ginst->klass)'.
9859         (mono_type_get_object): Only create a MonoGenericInst if your
9860         generic type is a TypeBuilder.
9861         (do_mono_reflection_bind_generic_parameters): Only set
9862         `ginst->is_dynamic' if our generic type is a TypeBuilder.
9864 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
9866         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
9867         Fixes #56091.
9869 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9871         * icall.c: added Kill_internal icall.
9872         * process.[ch]: added Kill_internal icall.
9874 2004-03-25  Martin Baulig  <martin@ximian.com>
9876         * class.h (MonoStats): Added `generic_instance_count',
9877         `inflated_method_count', `inflated_type_count' and
9878         `generics_metadata_size'.       
9880 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9882         * reflection.c: no warnings now.
9884 2004-03-25  Martin Baulig  <martin@ximian.com>
9886         * class.c (mono_class_get_full): New public function; does a
9887         mono_class_get(), but also takes a `MonoGenericContext *'.
9889         * loader.c (mono_field_from_memberref): Renamed to
9890         `field_from_memberref', made static and added `MonoGenericContext *'
9891         argument.
9892         (mono_field_from_token): Added `MonoGenericInst *' argument.
9893         (method_from_memberef): Likewise.
9894         (mono_get_method_from_token): Likewise.
9895         (mono_get_method_full): New public function; does a
9896         mono_get_method(), but also takes a `MonoGenericContext *'.
9898         * verify.c (mono_method_verify): Get the method's generic context
9899         and pass it to mono_field_from_token(), mono_get_method_full() and
9900         mono_class_get_full().
9902 2004-03-25  Martin Baulig  <martin@ximian.com>
9904         * class.c (mono_class_inflate_generic_type): Take a
9905         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
9906         `MonoGenericMethod *'.
9908 2004-03-25  Martin Baulig  <martin@ximian.com>
9910         * loader.h (MonoMethodInflated): Store the MonoGenericContext
9911         instead of the MonoGenericMethod here.
9913 2004-03-25  Martin Baulig  <martin@ximian.com>
9915         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
9916         each time we create a new MonoGenericInst, we also create a new
9917         context which points back to us.
9919         * class.c (inflate_method): Use `ginst->context' instead of
9920         creating a new context.
9922         * loader.c (method_from_memberref): Use
9923         `klass->generic_inst->context' instead of creating a new context.
9925 2004-03-25  Martin Baulig  <martin@ximian.com>
9927         * class.h (MonoGenericContext): New struct.
9928         (MonoGenericMethod): Removed `generic_inst'.
9930         * class.c (mono_class_inflate_generic_method): Take a
9931         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
9933 2004-03-25  Martin Baulig  <martin@ximian.com>
9935         * loader.h (MonoMethodInflated): New typedef.
9937         * metadata.h (MonoMethodSignature): Removed `gen_method', make
9938         `generic_param_count' consume just 30 bits, added `is_inflated'
9939         and `has_type_parameters' flags (one bit each).
9941         * class.c (mono_class_inflate_generic_method): Create a
9942         MonoMethodInflated instead of a MonoMethodNormal and set
9943         `is_inflated' in the method signature.
9945         * class.h (MonoGenericMethod): Removed `generic_method'.
9947 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
9949         * image.c: Make sure the name of a MonoImage is always an absolute path.
9950           This fixes bug #54415.
9952 2004-03-24  Martin Baulig  <martin@ximian.com>
9954         * class.c (mono_class_setup_vtable): If we're a generic instance,
9955         use our generic type's vtable size.
9957 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
9959         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
9960         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
9961         problems.
9963 2004-03-23  Martin Baulig  <martin@ximian.com>
9965         * class.h (MonoDynamicGenericInst): Added `int count_events' and
9966         `MonoEvent *events'.
9968         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
9969         (typebuilder_icalls): Added "get_event_info"; calls
9970         mono_reflection_event_builder_get_event_info(). 
9972         * reflection.c (mono_reflection_generic_inst_initialize): Added
9973         `MonoArray *events'.
9974         (mono_reflection_event_builder_get_event_info): New function.
9976 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
9978         * object.h: add mono_type_initialization_init
9980         * object.c (mono_runtime_class_init): 
9981         implement class constructor synchronization rules
9982         to cope with threading issues.  
9983         add mono_type_initialization_init
9985         * appdomain.c (mono_runtime_init): call 
9986         mono_type_initialization_init
9988         * class.h: removing initializing field from MonoVTable
9990 2004-03-23  Martin Baulig  <martin@ximian.com>
9992         * class.c (my_mono_class_from_generic_parameter): Use
9993         `param->name' if it's not NULL. 
9995 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
9997         * class.c: do not insert non-virtual methods in the vtable.
9998         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
9999         that means the method is non-virtual. This never would have
10000         happened before.
10002 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
10004         * profiler.c: Added lock for accessing coverage_hash.
10006 2004-03-22  Martin Baulig  <martin@ximian.com>
10008         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
10009         `method->method->signature->generic_param_count != 0' to make it
10010         work for interface methods.
10012 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10014         * process.c: quote the string passed to the shell using g_shell_quote.
10016 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10018         * threads.c:
10019         (mono_threads_manage): don't remove the finalizer thread and self
10020         from the threads hash table so that mono_thread_manage can be called
10021         more than once.
10023 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10025         * process.c: quote the arguments when UseShellExecute is true. Fixes
10026         bug #55790.
10028 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10030         * threads.c: set mono_thread_detach as a cleanup routine for every
10031         thread. This way it's always executed upon thread termination, either
10032         aborted or finished normally. No more xsp hangs!
10034 2004-03-17  Martin Baulig  <martin@ximian.com>
10036         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
10037         `int count_nested' and a `MonoType **nested'.
10039         * reflection.c (mono_reflection_bind_generic_parameters): Moved
10040         most of the functionality into a new static
10041         do_mono_reflection_bind_generic_parameters() and don't take a
10042         `MonoType *nested_in' argument any more.  Don't compute nested
10043         types here.
10044         (mono_reflection_generic_inst_get_nested_types): New public method
10045         to get nested types.
10047         * class.c (mono_class_create_generic): Set `klass->nested_in' if
10048         we're a nested class.
10050         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
10051         mono_reflection_generic_inst_get_nested_types() to compute the
10052         nested types.
10054 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
10056         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
10057         descriptive error message under windows.
10058         
10059 2004-03-17  Martin Baulig  <martin@ximian.com>
10061         * class.c (dup_type): Added `const MonoType *original' argument;
10062         copy the attrs from the original type.
10064 2004-03-17  Martin Baulig  <martin@ximian.com>
10066         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
10067         `m->generic_inst_cache' here.
10069 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
10071         * exception.h exception.c: Add stack_overflow_exception.
10073 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10075         * threadpool.c:
10076         (overlapped_callback): call SetEvent *after* invoking the callback.
10077         No need to call CloseHandle.
10079 2004-03-16  Martin Baulig  <martin@ximian.com>
10081         * reflection.c (mono_image_get_fieldref_token): Take a
10082         `MonoReflectionField *' instead of a `MonoClassField *' and a
10083         `MonoClass *'; store the `MonoReflectionField *' in the hash.
10085 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10087         * appdomain.c: don't add the culture to the filename we're looking for
10088         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
10090 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10092         * locales.c: don't ignore symbols when doing case insensitive compares.
10093         Thanks Dick! Fixes bug #54046.
10095         * threads.c: surround 'threads' usage with enter/leave in
10096         mono_thread_manage.
10098 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
10100         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
10101         implicitly marshalled as [Out]. Fixes #55450.
10103         (mono_marshal_get_runtime_invoke): Zero out the result if there is
10104         an exception.
10106 2004-03-16  Martin Baulig  <martin@ximian.com>
10108         * class.c (mono_class_from_generic_parameter): Use the actual
10109         parameter name. 
10111 2004-03-16  Martin Baulig  <martin@ximian.com>
10113         * reflection.c (type_get_signature_size): New static function.
10114         Compues the size of the type in a method signature.
10115         (method_get_signature_size): New static function; calls
10116         type_get_signature_size() to compute the actual size of the
10117         method's signature.
10118         (method_encode_signature): Use method_get_signature_size() to get
10119         the signature's size rather than using `nparams * 10'.
10121 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10123         * file-io.h: define here WapiOverlapped on windows. I don't want the
10124         regular OVERLAPPED one.
10126         * file-io.c:
10127         * threadpool.c: somehow, BindIoCompletionCallback is not found.
10128         Disabling AIO on windows.
10130 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10132         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
10133         bug #55385.
10135 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10137         * appdomain.c: upgraded corlib version.
10139         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
10140         and BeginWrite. Allow opening files for asynchrnous operations.
10142         * file-io.h: new struct that maps FileStreamAsyncResult.
10143         * icall.c: added new icalls.
10144         * process.[ch]: support setting child process environment variables
10145         and use the SHELL or COMSPEC when UseShellExecute is true.
10147         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
10148         callback for async. IO is here and also BindHandle.
10150         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
10151         from here.
10153 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
10155         * reflection.c (create_custom_attr): Allow len == 0.
10157         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
10158         computation on big-endian machines.
10160 2004-03-13  Martin Baulig  <martin@ximian.com>
10162         * class.h (MonoGenericInst): Added `int count_ifaces'.
10164         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
10165         `ginst->count_ifaces' instead `klass->interface_count' since we
10166         may get called before the vtable is created.
10168         * loader.c (mono_method_get_param_names): If we're a generic
10169         instance, return and don't initialize the class.
10171         * reflection.c (mono_reflection_setup_generic_class): Don't call
10172         ensure_runtime_vtable().
10173         (mono_reflection_bind_generic_parameters): Set
10174         `ginst->count_ifaces'.
10176 2004-03-11  Jackson Harper <jackson@ximian.com>
10178         * icall.c:
10179         * unicode.c:
10180         * unicode.h: Remove unused System.Char icalls.
10181         
10182 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
10184         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
10185         code when we P/Invoke the first library in Windows.Forms, instead
10186         of when we first open the assembly.
10188         * assembly.c: Drop the lookup from here.
10190 2004-03-10  Martin Baulig  <martin@ximian.com>
10192         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
10193         class for properties, fields and events.  Finally fixes #54945.
10195 2004-03-10  Martin Baulig  <martin@ximian.com>
10197         * metadata.c (mono_metadata_class_equal): New static function;
10198         checks whether two generic instances or two generic parameters are
10199         equal.
10200         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
10201         compare classes.        
10203 2004-03-10  Martin Baulig  <martin@ximian.com>
10205         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
10207         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
10208         argument and write it into the `reflection_info' field.
10210         * icall.c
10211         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
10212         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
10214 2004-03-09  Jackson Harper  <jackson@ximian.com>
10216         * char-conversions.h: use 8 bits for numeric data its all we need
10217         * icall.c: numeric data is only 8 bits now.
10219 2004-03-09  Martin Baulig  <martin@ximian.com>
10221         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
10223         * class.c (init_properties, init_events): Initialize the new
10224         `parent' field.
10226         * reflection.c (typebuilder_setup_properties): Likewise.
10227         (typebuilder_setup_events): Likewise.
10229         * reflection.h (MonoEventInfo): Replaced `parent with
10230         `declaring_type' and `reflected_type'.
10232         * icall.c (ves_icall_get_property_info): Distinguish between
10233         declaring and reflected type.
10234         (ves_icall_get_event_info): Likewise.
10236 2004-03-09  Martin Baulig  <martin@ximian.com>
10238         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
10239         (ves_icall_Type_GetField): Correctly set field->klass.
10241 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
10243         * loader.h: Fix warning.
10245 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
10247         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
10248         library routine if present.  Notice that it will still continue
10249         executing even if its missing, for those working on the Gtk#
10250         edition of Windows.Forms.
10252         * assembly.c (do_mono_assembly_open): If loading the
10253         System.Windows.Forms call mono_loader_wini_init.
10255 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
10257         * class.h: Added MonoRemoteClass struct.
10258         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
10259         function for MonoStrings.
10260         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
10261         Added internal call for getting the proxy type.
10262         * marshal.c: Get the type of transparent proxies from its remote_class.
10263         Added methods that generate the IL for type checks and casts:
10264         mono_marshal_get_isinst, mono_marshal_get_castclass, 
10265         mono_marshal_get_proxy_cancast.
10266         * marshal.h: Declaration of the previous new methods.
10267         * object.c: Added new moethods for creating and updating MonoRemoteClass
10268         instances: mono_remote_class, mono_upgrade_remote_class, 
10269         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
10270         * verify.c: FIx transparent_proxy_fields layout.
10271         * appdomain.c: Bump corlib version.
10273 2004-03-04  Jackson Harper  <jackson@ximian.com>
10275         * icall.c: Add icall to access char conversion tables.
10276         * char-conversions.h: Character conversion tables.
10277         * Makefile.am: Add char-conversions.h private header file.
10278         
10279 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
10281         * appdomain.c (unload_thread_main): Increase unloading timeout to
10282         10 sec as a temporary workaround for Nant problems.
10284 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
10286         * gc.c: Add checks for GC_enable and GC_disable.
10288         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
10289         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
10290         (bug #54988).
10291         
10292 2004-02-27  Martin Baulig  <martin@ximian.com>
10294         * reflection.c (mono_reflection_bind_generic_parameters): Take a
10295         `MonoReflectionType *' instead of a `MonoType *'.
10297 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
10299         * gc.c (run_finalize): Avoid finalizing the object representing the
10300         finalizer thread.
10301         (finalizer_thread): Fix warning.
10303 2004-02-25  Martin Baulig  <martin@ximian.com>
10305         * class.c (_mono_class_get_instantiation_name): Added `int offset'
10306         argument for nested types.
10307         (mono_class_create_generic): Added support for nested generictypes.
10309         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
10310         `GList *nested'.
10312         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
10314         * reflection.c (method_encode_signature): Increase the minimum
10315         value of `size' from 10 to 11.
10316         (mono_reflection_bind_generic_parameters): Take `int type_argc'
10317         and `MonoType **types' arguments instead of the `MonoArray
10318         *types'; added `MonoType *nested_in'.  Recursively instantiate
10319         nested classes. 
10321 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
10323         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
10324         stack_overflow_ex members which are used by exception handling.
10326         * appdomain.c (mono_runtime_init): Initialize the new members.
10328         * gc.c (mono_gc_enable): New helper function.
10329         * gc.c (mono_gc_disable): New helper function.
10331 2004-02-23  Martin Baulig  <martin@ximian.com>
10333         * icall.c: I must have been really stupid - make it actually work
10334         this time ;-)
10336 2004-02-23  Martin Baulig  <martin@ximian.com>
10338         * loader.c (method_from_memberref): Only inflate the method if
10339         it's in another klass.
10341 2004-02-23  Martin Baulig  <martin@ximian.com>
10343         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
10344         (mono_class_init): If we're a generic instance and an interface,
10345         compute `class->interface_id'; also create `class->interfaces'
10346         here and inflate them.
10348         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
10349         `ginst->is_open'.
10350         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
10352         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
10354 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
10356         * reflection.c (method_encode_code): Improved the error message
10357         generated by the exception.
10359 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10361         * icall.c: Martin did not do what he said in the ChangeLog for
10362         2004-02-18, but put back the changes for properties and events.
10363         Commenting those changes out again and adding comment to bug #54518.
10364         
10365         * process.c: removed warning.
10367 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
10369         * marshal.c (emit_struct_conv): Print an error message instead of
10370         asserting when a type does not have the StructLayout attribute.
10372 2004-02-20  Martin Baulig  <martin@ximian.com>
10374         * reflection.c (mono_type_get_object): Also use the cache for
10375         generic instances.
10376         (mono_reflection_bind_generic_parameters): Always compute
10377         `ginst->ifaces'.        
10379 2004-02-20  Martin Baulig  <martin@ximian.com>
10381         * class.h (MonoGenericMethod): Removed `klass'.
10383         * class.c (mono_class_inflate_generic_method): Added `MonoClass
10384         *klass' argument.
10386 2004-02-20  Martin Baulig  <martin@ximian.com>
10388         * reflection.c (method_encode_methodspec): Actually use the
10389         uninflated signature for the memberref.
10391 2004-02-20  Martin Baulig  <martin@ximian.com>
10393         * class.h (MonoGenericMethod): Removed `declaring'.
10395         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
10396         is NULL, compute it here.
10398 2004-02-20  Martin Baulig  <martin@ximian.com>
10400         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
10402         * metadata.c (mono_metadata_generic_inst_hash): New method.
10403         (mono_metadata_generic_inst_equal): New method.
10405         * reflection.c (mono_reflection_bind_generic_parameters): Use the
10406         `klass->image->generic_inst_cache' cache to avoid creating
10407         duplicate MonoGenericInst's.
10409         * class.c (mono_class_inflate_generic_type): Use the cache.
10411 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
10413         * object.c: fixed gc descriptor calculation for embedded valuetypes.
10415 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10417         * icall.c: added Socket.WSAIoctl icall.
10419         * socket-io.[ch]: implemented
10420         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
10422 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
10424         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
10426 2004-02-18  Urs C Muff  <umuff@quark.com>
10428         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
10429         this work on PPC and other big-endian architectures.
10431         * debug-mono-symfile.h: Prepended the names of all the `guint32'
10432         fields with an underscore to make sure they're only accessed by
10433         the read32() macro.
10435 2004-02-18  Martin Baulig  <martin@ximian.com>
10437         * icall.c: Put the klass->refclass changes back for methods and
10438         fields, but not for properties and events.  We're currently not
10439         distinguishing between DeclaringType and ReflectedType for
10440         properties and events, that's what caused the regressions.
10442 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10444         * object.c:
10445         (mono_async_result_new): the handle can be NULL.
10447         * threadpool.c: Use an event instead of a semaphore, don't initialize
10448         it until needed. This saves quite a few semaphores from being created
10449         when using the threadpool.
10451 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
10453         * object.c (mono_string_is_interned_lookup): Fix interning of long
10454         strings. Fixes #54473.
10456         * domain.c (ldstr_equal): Optimize if the two strings are equal.
10458         * icall.c: Revert the klass->refclass changes since they introduce
10459         regressions (bug #54518).
10461 2004-02-18  Martin Baulig  <martin@ximian.com>
10463         * class.c (mono_class_init): If we're a generic instance and don't
10464         come from a TypeBuilder, inflate our members here.
10465         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
10466         (mono_class_create_generic): New public method.
10467         (mono_class_initialize_generic): Removed.
10468         (get_instantiation_name): Renamed to
10469         _mono_class_get_instantiation_name() and made it public.
10471 2004-02-18  Martin Baulig  <martin@ximian.com>
10473         * class.c (mono_class_inflate_generic_type): Clear the new
10474         instance's `nginst->klass' when inflating a generic instance.
10475         (mono_class_is_subclass_of): Added (basic) support for generic
10476         instances.
10478 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
10480         * appdomain.h, domain.c: use a MonoCodeManager instead of a
10481         MonoMempool to hold compiled native code.
10483 2004-02-17  Martin Baulig  <martin@ximian.com>
10485         * class.h (MonoDynamicGenericInst): Added `count_properties' and
10486         `properties'.
10488         * reflection.c (mono_reflection_generic_inst_initialize): Added
10489         `MonoArray *properties' argument.
10491         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
10493 2004-02-17  Martin Baulig  <martin@ximian.com>
10495         * icall.c (ves_icall_Type_GetFields): Renamed to
10496         ves_icall_Type_GetFields_internal() and added a
10497         `MonoReflectionType *rtype' argument; pass it to
10498         mono_field_get_object() to set the field's "reflected" type.
10499         (ves_icall_Type_GetConstructors): Likewise.
10500         (ves_icall_Type_GetEvents): Likewise.
10501         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
10502         argument; pass it to mono_method_get_object() to set the method's
10503         "reflected" type.       
10505 2004-02-17  Martin Baulig  <martin@ximian.com>
10507         * class.h (MonoDynamicGenericInst): New type.
10508         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
10510         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
10511         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
10512         (ves_icall_MonoGenericInst_GetFields): New interncall.
10514         * class.c (mono_class_from_generic): Don't call
10515         mono_class_initialize_generic() if this is a dynamic instance;
10516         ie. it's being created from a TypeBuilder.
10517         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
10518         `class->byval_arg.type'.
10520         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
10521         to `inflate_method' and made static.
10522         (mono_reflection_inflate_field): Removed.
10523         (mono_reflection_generic_inst_initialize): New public method.
10525         * reflection.h (MonoReflectionGenericInst): Removed `methods',
10526         `ctors' and `fields'; added `initialized'.
10528 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
10530         * debug-helpers.c (mono_method_full_name): Fix output for empty
10531         namespaces.
10533 2004-02-12  Martin Baulig  <martin@ximian.com>
10535         * class.h (MonoClassField): Added `MonoType *generic_type'.
10537         * reflection.c (mono_image_get_fieldref_token): Added support for
10538         instantiated generic types.
10539         (field_encode_inflated_field): Removed.
10540         (mono_image_get_inflated_field_token): Removed.
10541         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
10543         * reflection.h (MonoReflectionInflatedField): Removed.
10545 2004-02-12  Martin Baulig  <martin@ximian.com>
10547         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
10548         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
10550         * reflection.c (mono_image_get_methodspec_token): Take a
10551         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
10552         (mono_image_create_token): Check whether we have a
10553         `method->signature->gen_method' and call
10554         mono_image_get_methodspec_token() if appropriate.
10555         (inflated_method_get_object): Removed.
10556         (mono_reflection_bind_generic_method_parameters): Return a
10557         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
10558         (mono_reflection_inflate_method_or_ctor): Likewise.
10560         * reflection.h (MonoReflectionInflatedMethod): Removed.
10562 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
10564         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
10565         for custom valuetype marshalling.
10567         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
10569 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10571         * icall.c: fixed WSAGetLastError_internal name.
10573 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
10575         * threads.c (mono_thread_attach): Allow this to be called multiple
10576         times for a thread.
10577         
10578         * threads.c (build_wait_tids): Do not wait for ourselves.
10580         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
10581         appdomain list is empty.
10583         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
10584         memory returned by mono_string_builder_to_utf16, since it points into
10585         managed memory. Thanks to Bernie Solomon for noticing this.
10587         * icall.c: Add AppDomainSetup icalls.
10589         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
10591         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
10592         types.
10594         * reflection.c (reflection_methodbuilder_to_mono_method): Save
10595         custom attributes to the method_aux struct. Also fix array indexes etc.
10597         * loader.c (mono_method_get_param_names): Make dynamic case work again.
10598         
10599 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
10601         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
10602         (both static and runtime) and reduce startup time.
10604 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
10606         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
10607         AsAny marshalling conversion instead of crashing.
10609         * marshal.c: Fix warnings.
10611 2004-02-09  Martin Baulig  <martin@ximian.com>
10613         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
10615         * reflection.h (MonoReflectionInflatedMethod): Removed the
10616         `declaring' field, it's now in the unmanaged MonoGenericMethod.
10618         * reflection.c (method_encode_methodspec): Removed the `method'
10619         argument; we get it from `gmethod->declaring'.
10620         (inflated_method_get_object): Removed the `declaring' argument.
10622 2004-02-09  Martin Baulig  <martin@ximian.com>
10624         * class.h (MonoGenericMethod): New type.
10625         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
10626         `generic_method'.
10628         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
10629         a `MonoGenericMethod *gen_method' one.
10631         * class.c (mono_class_inflate_generic_type): Take an additional
10632         `MonoGenericMethod * argument.  This is only non-NULL if we're
10633         inflating types for a generic method.   
10634         (mono_class_inflate_generic_signature): Renamed to
10635         inflate_generic_signature() and made static; take a
10636         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
10637         (inflate_generic_header): Take a `MonoGenericMethod *' argument
10638         instead of a `MonoGenericInst *' one.
10639         (mono_class_inflate_generic_method): Likewise.
10641         * reflection.c (encode_generic_method_sig): Take a
10642         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
10643         (method_encode_methodspec): Likewise.
10644         (inflated_method_get_object): Likewise. 
10646         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
10647         field with a `MonoGenericMethod *gmethod' one.  
10649 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
10651         * class.h (mono_class_has_parent): add parens to expansion
10652         so you can ! this.
10654 2004-02-08  Martin Baulig  <martin@ximian.com>
10656         * image.h (MonoImage): Removed `generics_cache'.
10658         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
10659         instead of a `MonoType *' argument; removed the `inflate_methods'
10660         argument.  Don't inflate methods here.
10662         * loader.c (find_method): If it's a generic instance, call
10663         mono_class_init() on the `sclass->generic_inst->generic_type'.
10665         * metadata.c (mono_type_size): Make this work on uninitialized
10666         generic instances; call it on the `ginst->generic_type's class.
10668         * reflection.c (mono_reflection_bind_generic_parameters): Call
10669         mono_class_from_generic() to create the `ginst->klass'.
10671 2004-02-08  Martin Baulig  <martin@ximian.com>
10673         * class.h (MonoClass): Changed type of `generic_inst' from
10674         `MonoType *' to `MonoGenericInst *'.
10676 2004-02-08  Martin Baulig  <martin@ximian.com>
10678         * icall.c (ves_icall_Type_BindGenericParameters): Just call
10679         mono_type_get_object(), this is now creating a `MonoGenericInst'
10680         for MONO_TYPE_GENERICINST.
10681         (ves_icall_MonoGenericInst_GetParentType): Likewise.
10682         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
10684         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
10685         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
10686         (inflated_method_get_object): Added `MonoClass *refclass' argument.
10687         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
10688         and reflected type.
10690         * reflection.h (MonoReflectionInflatedMethod): Removed
10691         `declaring_type' and `reflected_type'.
10693 2004-02-08  Martin Baulig  <martin@ximian.com>
10695         * class.h (MonoGenericInst): Added `MonoType *parent' and
10696         `MonoType **ifaces'.
10698         * reflection.h (MonoReflectionGenericInst): Removed `klass',
10699         `parent' and `interfaces'.
10701         * reflection.c (mono_reflection_bind_generic_parameters): Take a
10702         `MonoType *' argument and return a `MonoType *'.
10704         * icall.c
10705         (ves_icall_MonoGenericInst_GetParentType): New interncall.
10706         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
10708 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
10710         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
10711         valuetype marshalling.
10713 2004-02-06  Martin Baulig  <martin@ximian.com>
10715         * class.c
10716         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
10717         (my_mono_class_from_generic_parameter): Likewise.
10719 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
10721         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
10722         contents of the symbol files lazily.
10724         * object.h (MonoThread): Add 'name' and 'name_len' fields.
10726         * threads.h threads.c icall.c: New icalls for getting and setting the
10727         threads name.
10729 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
10731         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
10732         Raise an exception when the domain is not found.
10734 2004-02-03  Martin Baulig  <martin@ximian.com>
10736         * reflection.c (mono_image_get_methodspec_token): Use the
10737         uninflated signature; fixes gen-33.
10739 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
10741         * gc.c threads.c: Make the finalizer thread a normal managed thread so
10742         the finalizer code can use thread functionality.
10744         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
10745         the finalizer thread.
10747         * threads.c: Make some functions more robust.
10749         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
10751         * metadata.h: Add new marshalling conventions.
10753         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
10754         stringbuilder marshalling. Fixes #53700.
10756         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
10758         * reflection.c (mono_image_get_type_info): Save declarative security
10759         info.
10761         * reflection.c (mono_image_get_field_info): Handle uninitialized 
10762         unmanaged fields as well.
10764         * appdomain.c: Bump corlib version.
10766 2004-02-01  Martin Baulig  <martin@ximian.com>
10768         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
10769         method type arguments.  
10771 2004-01-30  Duncan Mak  <duncan@ximian.com>
10773         * marshal.h: Add prototype for
10774         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
10775         and
10776         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
10777         fix the build.
10779 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
10781         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
10782         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
10784 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
10786         * marshal.c (mono_marshal_get_native_wrapper): Add support for
10787         custom marshalling of valuetypes.
10789         * marshal.c: Fix some warnings.
10791 2004-01-29  Martin Baulig  <martin@ximian.com>
10793         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
10794         for generic method parameters.
10796         * reflection.c (method_encode_methodspec): Write the uninflated
10797         signature into the methodspec table.
10798         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
10799         is always the uninflated method.
10800         (reflection_methodbuilder_to_mono_method): Copy the generic
10801         parameters from the MethodBuilder into `header->gen_params'.
10803 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
10805         * class.c (mono_class_from_generic_parameter): Fix warning.
10807 2004-01-27  Martin Baulig  <martin@ximian.com>
10809         * class.c (mono_class_from_generic_parameter): Don't create
10810         `klass->methods' here.  
10812 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
10814         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
10815         extension since it does not work with libraries named lib<FOO>.dll.so.
10817 2004-01-25  Martin Baulig  <martin@ximian.com>
10819         * class.c (mono_class_inflate_generic_type): Added support for
10820         MONO_TYPE_GENERICINST.
10822         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
10823         inflate methods on open constructed types.      
10825 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10827         * object.c: fire ProcessExit event in the root AppDomain after running
10828         Main. Fixes bug #53299.
10830 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
10832         * socket-io.c: include the new socket-wrappers.h header.
10833         Use the wrappers instead of the unix socket functions to make the code
10834         more clear.
10836 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
10838         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
10840         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
10841         Fixes #22532.
10843 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
10845         * reflection.c (mono_image_create_pefile): Handle the case when the
10846         entry point is not a MethodBuilder.
10848         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
10849         field to ReflectionMethod since it is not allways a builder.
10851         * reflection.c (type_get_fully_qualified_name): New helper function to
10852         return the fully qualified name of a type.
10854         * reflection.c (encode_marshal_blob): Always emit the fully qualified
10855         type name for custom marshallers.
10857         * reflection.c (mono_marshal_spec_from_builder): Ditto.
10859         * class.c (mono_class_setup_vtable): If a parent class already 
10860         implements an interface, use the implementing methods from that class.
10861         Fixes #53148.
10863 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10865         * threadpool.c: just return instead of ExitThread to allow for thread
10866         clean up earlier.
10868 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
10870         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
10871         when closing resource modules.
10873         * reflection.c (mono_image_create_pefile): Handle the case when the
10874         entry point is not a MethodBuilder.
10876         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
10877         field to ReflectionMethod since it is not allways a builder.
10879 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
10881         * marshal.c (mono_marshal_get_managed_wrapper): 
10882         mono_marshal_alloc takes native int so CONV_I
10883         the arg for 64bits.
10885 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
10887         * reflection.c (fixup_cattrs): New function to fixup the methoddef
10888         tokens in the cattr table. Fixes #53108.
10890 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10892         * loader.c: don't trim ".dll" before looking up in the config file.
10893         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
10895 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
10897         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
10898         Return the module which contains the resource as well.
10899         (ves_icall_System_Reflection_Module_Close): New icall.
10901         * appdomain.c: Bump corlib version number.
10903         * image.c (mono_image_addref): New public function.
10905         * assembly.c: Call mono_image_addref.
10907         * reflection.c (mono_module_get_object): Increase reference count of 
10908         the image.
10910         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
10911         Fixes #22532.
10913         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
10914         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
10915         proper exceptions on DllImport problems.
10917 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
10919         * class.c, metadata.c: eliminate CSIZE macro.
10921 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
10923         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
10924         * object.h: Added async_callback field in MonoAsyncResult.
10925         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
10926         * verify.c: Added async_callback in MonoAsyncResult layout.
10928 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
10930         * reflection.c (mono_reflection_get_custom_attrs): Add support
10931         for Modules.
10933 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
10935         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
10936         marshalling.
10937         (mono_marshal_method_from_wrapper): Add null pointer check.
10939 2004-01-16  Martin Baulig  <martin@ximian.com>
10941         * debug-mono-symfile.h: Set version number to 36 and reflect
10942         latest symbol writer changes.
10944 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
10946         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
10947         multi-dimensional arrays.
10948         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
10949         (mono_class_from_mono_type): Use bounded_array_class_get.
10950         
10951         * class.c (mono_bounded_array_class_get): New function which takes
10952         a 'bounded' bool argument to distinguish vectors from one dimensional
10953         arrays.
10955         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
10956         bounded_array_class_get if the array has bounds.
10958         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
10959         Search modules loaded using AssemblyBuilder:AddModule as well.
10961 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10963         * appdomain.c: increased corlib version.
10964         * filewatcher.c: removed g_print.
10965         * icall.c:
10966         (get_property_info): only allocate what is actually requested.
10967         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
10969 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10971         * Makefile.am: added filewatcher.[ch]
10972         * filewatcher.[ch]: FileSystemWatcher runtime support.
10973         * icall.c: added new FSW icalls.
10975 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
10977         * string-icalls.c: fix stringbuilder regression as suggested by
10978         Iain McCoy <iain@mccoy.id.au>.
10980 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
10982         * process.c (process_read_stringtable_block): Recognize '007f' as
10983         a language neutral stringtable block.
10985 2004-01-12  Patrik Torstensson
10987         * object.h (MonoStringBuilder) : Changed layout to support our
10988         new stringbuilder class.
10989         * marshal.c: Change marshalling to support the new layout of 
10990         string builder.
10991         * appdomain.c: increased version number because new layout of
10992         string builder.
10994 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
10996         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
10997         assembly name as an string instead of an AssemblyName, since it is
10998         easier to extract info from it.
11000         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
11001         the culture subdirectories too. Fixes #52231.
11003 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11005         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
11006         It takes 2 new parameters with an optional name for the method to look
11007         for and case ignoring info.
11009         * threadpool.c: removed unused variable.
11011 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11013         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
11014         It takes 2 new parameters with an optional name for the property to look
11015         for and case ignoring info.
11016         Fixes bug #52753.
11018 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
11020         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
11021         Fix #52451.
11023 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11025         * appdomain.c:
11026         * assembly.c: escape the uri before passing it to g_filename_from_uri.
11027         Fixes bug #52630.
11029 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
11031         * reflection.c: Add support for more than one unmanaged resource.
11033         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
11034         in field->def_value, as done in all other cases.
11036         * reflection.c (mono_reflection_get_custom_attrs): Add support for
11037         TypeBuilders.
11039         * reflection.c (mono_reflection_create_runtime_class): Remove 
11040         errorneous assignment to klass->element_class, since it is already
11041         done in mono_reflection_setup_internal_class.
11043 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11045         * gc.c: added missing LeaveCriticalSection.
11046         * icall.c: indented a couple of lines.
11047         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
11048         if we call EndInvoke inside a callback. Fixes bug #52601.
11050 2004-01-07  Martin Baulig  <martin@ximian.com>
11052         * mono-debug-debugger.h
11053         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
11055 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
11057         * appdomain.c: Use messages in NotImplementedException.
11059         * exception.c (mono_get_exception_not_implemented): Now this takes
11060         a message argument.
11062         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
11063         exception instead of g_asserting an aborting when something is not
11064         implemented.
11066         Add some inline docs.
11068 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
11070         * reflection.h: Update after changes to object layout.
11072         * reflection.c: Implement saving of unmanaged aka win32 resources.
11074         * appdomain.c: Bump version number.
11076         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
11077         Handle missing domains gracefully.
11079 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
11081         * file-io.c : On Windows, there are much more invalid_path_chars.
11083 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
11085         * class.h, object.c: prepare for GetType () speedup.
11087 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
11089         * profiler.c: workaround for --profile null reference exception on
11090           cygwin. Patch by Patrik Torstensson.
11092 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
11094         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
11095         make work for unaligned access.
11097 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
11099         * class.c: small cleanup (class->fields [i] -> field).
11100         * image.c: check address of metadata is valid.
11102 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
11104         * assembly.h assembly.c (mono_assembly_loaded): New public function to
11105         search the list of loaded assemblies.
11107         * reflection.c (mono_reflection_type_from_name): Use 
11108         mono_assembly_loaded instead of mono_image_loaded.
11110         * reflection.c: Fix warnings.
11112 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
11114         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
11115         is dynamic. This is needed since an assembly can contain both dynamic and
11116         non-dynamic images.
11118         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
11119         assembly->dynamic.
11121         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
11123         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
11124         to store modules loaded using AddModule.
11126         * reflection.c (mono_image_fill_file_table): Generalize this so it works
11127         on Modules.
11129         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
11131         * reflection.c (mono_image_fill_export_table_from_module): New function to
11132         fill out the EXPORTEDTYPES table from a module.
11134         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
11135         into a separate function. Also handle loaded non-dynamic modules.
11137         * reflection.c (mono_image_basic_init): Fix memory allocation.
11139         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11141         * assembly.c (mono_assembly_load_references): Make this public.
11143 2003-12-19  Martin Baulig  <martin@ximian.com>
11145         * class.c (mono_class_initialize_generic): Made this static, take
11146         a `MonoGenericInst *' instead of a `MonoClass *'.
11147         (mono_class_from_generic): Call mono_class_initialize_generic()
11148         unless we're already initialized or being called from
11149         do_mono_metadata_parse_generic_inst().
11151         * class.h (MonoGenericInst): Added `initialized' and
11152         `init_pending' flags.
11154         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
11155         `mono_class_init (gklass)' or mono_class_initialize_generic()
11156         here; set `generic_inst->init_pending' while parsing the
11157         `type_argv'.
11159 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
11161         * locales.c: include string.h for memxxx prototypes
11163 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
11165         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
11166         constructor when accessing literal fields.
11168 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
11170         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11172         * reflection.c (assembly_add_resource_manifest): New function to fill
11173         the MANIFESTRESOURCE table.
11175         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
11177         * reflection.h: Update to changes in class layout.
11179         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
11180         Reenable call to mono_runtime_is_shutting_down ().
11182         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
11183         determine if the runtime is shutting down.
11185 2003-12-16  Jackson Harper <jackson@ximian.com>
11187         * icall.c: comment out call to mono_runtime_is_shutting_down to
11188         fix build.
11189         
11190 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
11192         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
11193         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
11195 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
11197         * reflection.c: move definition of swap_with_size
11198         to before its first call
11200 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
11202         * appdomain.c (mono_runtime_is_shutting_down): New public function.
11204         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
11205         icall.
11207         * object.c: Fix warnings.
11209         * icall.c (ves_icall_Type_Get...): Only consider inherited static
11210         members if FlattenHierarchy is set.
11212         * reflection.c (mono_image_add_decl_security): New function to emit
11213         declarative security.
11215         * reflection.h reflection.c: Add support for declarative security.
11217         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
11218         
11219 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
11221         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
11222         
11223         * appdomain.c verify.c: Moved corlib version checking into its own
11224         function in appdomain.c since it needs to create vtables etc.
11226 2003-12-13  Patrik Torstensson <p@rxc.se>
11228         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
11229         instead of unwrapped server.
11231 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
11233         * verify.c (check_corlib): Fix field index.
11235 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
11237         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
11238         GetGacPath icall.
11240 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
11242         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
11243         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
11244         cope with sizeof(size_t) != sizeof(guint32).
11246 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11248         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
11249         in case of failure.
11251 2003-12-10  Mark Crichton <crichton@gimp.org>
11253         * icall.c: removed the GetNonZeroBytes.  We now handle this case
11254         in managed code.
11256         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
11258 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
11260         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
11261         marked as deleted.
11263 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
11265         * verify.c (check_corlib): Handle the case when the version field is 
11266         initialized by a static constructor.
11268 2003-12-08  Patrik Torstensson  <p@rxc.se>
11270     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
11272 2003-12-08  Martin Baulig  <martin@ximian.com>
11274         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
11275         a MonoReflectionGenericParameter, also take the parameter index
11276         and name as arguments.
11277         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
11278         (ves_icall_MonoGenericParam_initialize): New interncall.
11279         (ves_icall_Type_make_byref_type): New interncall.
11281         * reflection.h (MonoReflectionGenericParam): Derive from
11282         MonoReflectionType, not just from MonoObject.  Added `refobj' and
11283         `index' fields.
11285         * reflection.c (mono_reflection_define_generic_parameter): Create
11286         and return a new MonoReflectionGenericParam; don't initialize the
11287         constraints here.
11288         (mono_reflection_initialize_generic_parameter): New public method;
11289         initializes the constraints and creates the `param->pklass'.
11291 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
11293         * reflection.h reflection.c: Use the new fields 'num_types', 
11294         'num_fields' and 'num_methods' to track the number of types etc.
11296         * verify.c (check_corlib): Check corlib version number.
11298 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
11300         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
11301         function works on all methods.
11303 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
11305         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
11306         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
11307         the custom_type_info flag of the transparent proxy.
11308         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
11309         objects that supports IRemotingTypeInfo.
11310         * object.h: Added custom_type_info field in transparent proxy.
11312 2003-12-06  Martin Baulig  <martin@ximian.com>
11314         * class.c (mono_class_create_from_generic): Removed.
11315         (mono_class_from_generic): Check `ginst->klass' before doing
11316         anything else.  This is important to fully support "recursive"
11317         generic types.
11319         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
11320         empty `generic_inst->klass' before doing anything else.
11322 2003-12-06  Dick Porter  <dick@ximian.com>
11324         * verify.c: 
11325         * object.h:
11326         * icall.c:
11327         * locales.c: Use C structs to access class fields.  Don't do a
11328         conversion between MonoString and UChar because both are
11329         platform-endian UTF-16.  Compare now takes startindex and count
11330         parameters.  Add a char overload for IndexOf.  Speed up the
11331         invariant string IndexOf.
11333 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
11335         * Makefile.am (monosn_LDADD): Fix parallel build.
11337 2003-12-04  Martin Baulig  <martin@ximian.com>
11339         * icall.c
11340         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
11341         (ves_icall_Type_make_array_type): New interncall.       
11343 2003-12-04  Martin Baulig  <martin@ximian.com>
11345         * locales.c: also change it in the !HAVE_ICU case.
11347 2003-12-04  Dick Porter  <dick@ximian.com>
11349         * icall.c:
11350         * locales.c: construct_compareinfo is now in CompareInfo, not
11351         CultureInfo.
11353 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
11355         * image.c (mono_image_load_file_for_image): Cache loaded images in the
11356         image->files array.
11358         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
11359         table as well.
11361         * assembly.c (mono_assembly_load_references): Only load references
11362         once.
11364         * class.c (mono_class_from_name): Avoid linear search of the 
11365         EXPORTEDTYPE table.
11367         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
11369 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
11371         * image.h (MonoImage): Add 'field_cache' field.
11373         * loader.c (mono_field_from_token): Cache field lookups.
11374         
11375         * reflection.c (mono_module_get_object): Fix name property.
11377         * icall.c (ves_icall_get_enum_info): Update after changes to 
11378         mono_metadata_get_constant_index ().
11380         * icall.c: Get rid of get_type_info icall, use a separate icall for
11381         each type property to avoid needless memory allocations. Fixes #51514.
11383         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
11384         to avoid needless binary searches.
11386         * class.c (class_compute_field_layout): Move the initialization of
11387         field->def_value to mono_class_vtable ().
11389         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
11390         non-corlib types.
11392         * object.c (mono_object_allocate): Make it inline.
11394         * object.c (mono_object_allocate_spec): Make it inline.
11395         
11396 2003-12-02  Dick Porter  <dick@ximian.com>
11398         * locales.c (create_NumberFormat): NumberFormatInfo construction.
11399         Patch by Mohammad DAMT (mdamt@cdl2000.com).
11401 2003-12-01  Dick Porter  <dick@ximian.com>
11403         * threads.c: Fix signature and call in CreateMutex and
11404         CreateEvent.
11406 2003-12-01  Dick Porter  <dick@ximian.com>
11408         * icall.c: 
11409         * locales.c: Implement string compares and searching
11411         * object.h: Add extra Thread field
11413 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
11415         * reflection.c (fixup_method): Add support for MonoCMethod.
11417 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
11419         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
11421         * reflection.c (assembly_name_to_aname): Allow extra characters in
11422         assembly names. Fixes #51468.
11424 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
11426         * exception.c (mono_exception_from_name_domain): New helper function.
11428         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
11429         exception object in the correct domain.
11431         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
11432         formatting + make a copy a the input data.
11434         * loader.c (mono_get_method_from_token): Methods which contain
11435         native code do not have entries in the ImplMap.
11437         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
11438         Thanks to Gonzalo for spotting this.
11439         
11440         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
11441         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
11443         * assembly.h (mono_assembly_load_from): Split the second part of 
11444         assembly loading into a new public function.
11446         * exception.h (mono_get_exception_bad_image_format): New function.
11448 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
11450         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
11451         Enumerate all modules inside a dynamic assembly. Fixes #51293.
11452         
11453         * icall.c: Add new icall for creating dynamic methods.
11455         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
11457         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
11459         * reflection.c (mono_reflection_create_dynamic_method): New icall to
11460         create a dynamic method.
11462         * reflection.c (resolve_object): New helper function.
11464         * reflection.c: Generalize ReflectionMethodBuilder and the functions
11465         which manipulate it so they can also work on dynamic methods.
11467         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
11468         creating the MonoReflectionMethodAux structure if it is not needed.
11469         
11470         * reflection.h verify.c: Update after changes to object layout.
11472         * reflection.c (method_builder_encode_signature): Fix compilation on
11473         gcc 2.95.x.
11475 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
11477         * appdomain.h: Added support for context static fields. Added static_data
11478           field to MonoAppContext and renamed thread_static_fields to a more
11479           generic special_static_fields in MonoAppDomain, since it can now contain
11480           context static fields.
11481         * domain.c: Updated hashtable name.
11482         * object.c: Replaced field_is_thread_static() for a more generic
11483           field_is_special_static() which also checks for context static attribute.
11484           In mono_class_vtable(), added support for static context fields.
11485         * threads.c: Changed methods that manage thread static fields to more
11486           generic methods so they can be reused both for thread and context static
11487           data.
11488         * threads.h: Declared some new methods.
11490 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
11492         * reflection.h: Update after changes to the managed types.
11494         * reflection.c (encode_custom_modifiers): New helper function.
11496         * reflection.c (method_encode_signature): Emit custom modifiers.
11498         * reflection.c (field_encode_signature): Emit custom modifiers.
11500 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
11502         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
11504         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
11505         implementation.
11507         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
11508         icall.
11510         * object.c (mono_field_get_value_object): New function.
11512         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
11513         specific.
11515 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
11517         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
11518         return a preallocated out-of-memory exception instance.
11520         * object.c (out_of_memory): Use the new function.
11522         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
11523         flag is before the custom modifiers. Fixes #49802.
11525 2003-11-16  Martin Baulig  <martin@ximian.com>
11527         * class.c (mono_class_is_open_constructed_type): Implemented the
11528         MONO_TYPE_GENERICINST case.
11530 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
11532         * assembly.c (mono_assembly_fill_assembly_name): New function to
11533         fill out the MonoAssemblyName structure.
11534         (mono_assembly_open): Use the new function.
11536         * icall.c (fill_reflection_assembly_name): New helper function.
11538         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
11539         new function.
11541         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
11543 2003-11-15  Martin Baulig  <martin@ximian.com>
11545         * class.c (mono_class_is_open_constructed_type): New public
11546         function; checks whether a type is an open constructed type,
11547         ie. whether it still contains type parameters.
11548         (mono_class_inflate_generic_type): If we're a type parameter and
11549         the inflated type is also a MONO_TYPE_(M)VAR, return the original
11550         type.
11552         * class.h (MonoGenericInst): Added `guint32 is_open'.
11554         * loader.c (method_from_methodspec): Check whether we're an open
11555         or closed constructed type and set `ginst->is_open'.
11557         * reflection.c (mono_reflection_bind_generic_parameters): Check
11558         whether we're an open or closed constructed type and set
11559         `ginst->is_open'.
11560         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
11561         from open constructed types.
11563 2003-11-15  Martin Baulig  <martin@ximian.com>
11565         * reflection.c (mono_reflection_bind_generic_parameters): If we're
11566         a generic instance (instead of a generic type declaration) with
11567         unbound generic parameters, bind them to our actual types.
11569 2003-11-14  Martin Baulig  <martin@ximian.com>
11571         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
11573         * reflection.c (mono_reflection_bind_generic_parameters): If we're
11574         an interface type, populate `res->interfaces' with instantiated
11575         versions of all the interfaces we inherit.
11577 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
11579         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
11580         when MONO_PATH is set but doesn't contain the install dir.
11582 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11584         * icall.c:
11585         (ves_icall_Type_GetInterfaces): don't return an interface twice when
11586         it's also implemented in base classes. Fixes bug #50927.
11588 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
11590         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
11591         if this method is called from a finalizer. Fixes #50913.
11593 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
11595         * threads.c: Implement VolatileRead/VolatileWrite
11597         * icall.c: Add new icalls for VolatileRead/VolatileWrite
11599 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
11601         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
11602         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
11603         2.95.3.
11605         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
11606         from Peter Ross (pro@missioncriticalit.com).
11607         
11608 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
11610         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
11612 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
11614         * assembly.c (mono_assembly_load_references): Disable check because it
11615         triggers on older corlibs which lots of people have.
11617 2003-11-12  Jackson Harper  <jackson@ximian.com>
11619         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
11620         load corlib.dll if mscorlib.dll is not found.
11621         * assembly.h: Remove corlib name define.
11622         * class.c:
11623         * domain.c:
11624         * image.c: Change corlib name to mscorlib.
11625         
11626 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
11628         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
11630 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
11632         * appdomain.h: Added loader_optimization here to sync with the C#
11633         code, and add disallow_binding_redirects field.
11635 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
11637         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
11639         * reflection.c (mono_image_build_metadata): Fix crash on modules
11640         with no types.
11642         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
11644         * icall.c (ves_icall_get_method_info): Return callingConvention as
11645         well.
11647         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
11648         namespaces from the EXPORTEDTYPE table as well.
11650         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
11651         from all modules inside the assembly.
11652         
11653 2003-11-11  Martin Baulig  <martin@ximian.com>
11655         * reflection.c (mono_reflection_bind_generic_parameters): Make
11656         this work for interfaces.
11658 2003-11-11  Martin Baulig  <martin@ximian.com>
11660         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
11662 2003-11-11  Martin Baulig  <martin@ximian.com>
11664         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
11665         "MonoInflatedMethod" and "MonoInflatedCtor".
11667 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
11669         * reflection.c (resolution_scope_from_image): Use the assembly table
11670         from the manifest module, since other modules don't have it.
11672         * debug-helpers.c (mono_type_full_name): New helper function.
11674         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
11676         * image.c (mono_image_load_file_for_image): New public function which
11677         is a replacement for the load_file_for_image in class.c.
11679         * assembly.c (mono_assembly_load_module): A wrapper for the function
11680         above which does assembly association and reference loading too.
11682         * class.c (mono_class_from_name): Call mono_assembly_load_module.
11684 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11686         * appdomain.c: not all of the attributes for the full assembly name
11687         are required and the order doesn't matter. Fixes bug #50787.
11689 2003-11-10  Dick Porter  <dick@ximian.com>
11691         * locales.c: Use platform-endian UTF16
11693 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
11695         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
11696         
11697 2003-11-10  Martin Baulig  <martin@ximian.com>
11699         * metadata.c
11700         (mono_metadata_load_generic_params): Make this actually work.
11702         * reflection.c (mono_reflection_bind_generic_parameters): If our
11703         parent is a generic instance, pass all the `types' to it, no
11704         matter whether it has the same number of type parameters or not.
11706 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
11708         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
11710         * assembly.c (mono_assembly_load_references): Move the image<->assembly
11711         assignment code to this function so it gets called recursively for all
11712         modules.
11714         * image.c (load_modules): Remove the assembly assignment since it is
11715         now done by mono_assembly_load_references.
11716         
11717         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
11718         Add 'module' argument.
11719         (mono_module_get_types): New helper function.
11720         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
11722 2003-11-08  Martin Baulig  <martin@ximian.com>
11724         * class.c (mono_class_inflate_generic_method): Interface method
11725         don't have a header.
11727         * reflection.c (mono_image_get_methodspec_token): Take an
11728         additional `MonoGenericInst *' argument instead of reading it from
11729         the header; this is necessary to support interfaces.
11730         (mono_image_create_token): Pass the `MonoGenericInst *' from the
11731         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
11732         (inflated_method_get_object): Take an additional `MonoGenericInst *'
11733         argument.
11735         * reflection.h (MonoReflectionInflatedMethod): Added
11736         `MonoGenericInst *ginst'.
11738 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
11740         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
11742 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
11744         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
11746 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
11748         * reflection.c 
11749         (reflection_methodbuilder_from_method_builder):
11750         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
11751         initialize a ReflectionMethodBuilder structure.
11752         (mono_image_get_methodbuilder_token):
11753         (mono_image_get_ctorbuilder_token): New functions to emit memberref
11754         tokens which point to types in another module inside the same assembly.
11756         * reflection.c: Use the new helper functions.
11757         
11758         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
11760         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
11761         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
11763         * reflection.c (resolution_scope_from_image): Emit a moduleref if
11764         neccesary.
11766         * reflection.c (mono_image_build_metadata): Emit metadata only for the
11767         current module. Emit the manifest only for the main module.
11769         * reflection.c (mono_image_create_token): Add assertion when a 
11770         memberref needs to be created.
11772         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
11774         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
11775         larger buffer for the custom attribute blob. Fixes #50637.
11776         
11777 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11779         * threadpool.c: notify listener on async processing handles after
11780         invoking the async callback. Thanks to Zoltan.
11782 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
11784         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
11785         avoid code duplication.
11787         * reflection.h (MonoDynamicImage): New type which is currently unused,
11788         but will be used through the ref.emit code in place of 
11789         MonoDynamicAssembly.
11791         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
11792         object layout.
11794         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
11795         a MonoDynamicImage instead of just a MonoImage.
11796         
11797         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
11798         icalls to ModuleBuilder but keep their semantics, so they will work
11799         with moduleb->assemblyb. This will change later.
11800         
11801 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
11803         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
11804         object layout.
11806         * reflection.c (mono_image_build_metadata): Avoid creation of a default
11807         main module, since it is now done by the managed code.
11809 2003-11-03  Martin Baulig  <martin@ximian.com>
11811         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
11812         `ginst->klass' here.
11813         (method_encode_methodspec): Don't use the `ginst->generic_method's
11814         klass if it's a generic instance, use `ginst->klass' in this case.
11816 2003-11-03  Martin Baulig  <martin@ximian.com>
11818         * reflection.c (mono_image_get_generic_method_param_info):
11819         Removed, use mono_image_get_generic_param_info() instead.
11820         (mono_image_get_type_info): Write the GenericParam table before
11821         the Method table.  This is neccessary because in the GenericParam
11822         table, type parameters of the class (ie. '!0' etc.) must come
11823         before the ones from its generic methods (ie. '!!0' etc).
11825 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
11827         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
11829 2003-11-02  Martin Baulig  <martin@ximian.com>
11831         * reflection.c (create_generic_typespec): Take a
11832         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
11833         the generic parameters from it.
11835 2003-11-02  Martin Baulig  <martin@ximian.com>
11837         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
11838         instead of a `MonoClassField *' since we just need the type.
11839         (create_generic_typespec): New static function.  Creates a
11840         TypeSpec token for a generic type declaration.
11841         (mono_image_get_generic_field_token): New static function.
11842         (mono_image_create_token): If we're a FieldBuilder in a generic
11843         type declaration, call mono_image_get_generic_field_token() to get
11844         the token.
11846 2003-11-02  Martin Baulig  <martin@ximian.com>
11848         * reflection.h
11849         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
11850         `MonoReflectionGenericInst *declaring_type' and
11851         `MonoReflectionGenericInst *reflected_type' fields.
11853         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
11854         `MonoReflectionGenericInst *declaring_type' and a
11855         `MonoReflectionGenericInst *reflected_type' argument instead of a
11856         single `MonoReflectionGenericInst *type' one.  Set
11857         `res->declaring_type' and `res->reflected_type' from them.
11858         (mono_reflection_inflate_field): Likewise.      
11860 2003-11-02  Martin Baulig  <martin@ximian.com>
11862         * class.c (mono_class_setup_vtable): Don't store generic methods
11863         in the vtable.  
11865 2003-11-02  Martin Baulig  <martin@ximian.com>
11867         * reflection.h (MonoReflectionGenericInst): Added
11868         `MonoReflectionType *declaring_type'.
11870         * reflection.c (mono_reflection_bind_generic_parameters): Use
11871         `if (tb->parent)' instead of `klass->parent'.
11873 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
11875         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
11876         with an empty ASSEMBLY table.
11878         * reflection.c (mono_image_build_metadata): Avoid using the same loop
11879         variable in the inner and outer loops.
11881 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
11883         * metadata.h (mono_metadata_make_token): Put parentheses around macro
11884         argument.
11886         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
11887         
11888         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
11889         icalls. Instead, do everything in managed code. This is needed since
11890         it is hard to restore the original domain etc. in unmanaged code in the
11891         presence of undeniable exceptions.
11893         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
11894         New icalls to push and pop appdomain refs.
11896 2003-10-31  Martin Baulig  <martin@ximian.com>
11898         * class.c (inflate_generic_type): Renamed to
11899         mono_class_inflate_generic_type() and made it public.
11901         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
11902         New interncall.
11904         * loader.c (mono_field_from_memberref): Also set the retklass for
11905         typespecs.
11907         * fielder.c (mono_image_get_inflated_field_token): New static
11908         method; creates a metadata token for an inflated field.
11909         (mono_image_create_token, fixup_method): Added support for
11910         "MonoInflatedField".
11911         (fieldbuilder_to_mono_class_field): New static function.
11912         (mono_reflection_inflate_field): New public function.
11914         * reflection.h
11915         (MonoReflectionGenericInst): Added `MonoArray *fields'.
11916         (MonoReflectionInflatedField): New typedef.     
11918 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
11920         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
11921         for Solaris and other platforms without s6_addr16
11923 2003-10-30  Martin Baulig  <martin@ximian.com>
11925         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
11926         argument instead of two.
11927         (mono_class_inflate_generic_signature): Likewise.
11928         (inflate_generic_header): Likewise.
11929         (mono_class_inflate_generic_method): Likewise.  In addition, if
11930         `ginst->klass' is set, it becomes the new `method->klass'.
11932         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
11933         field.
11935         * reflection.c (encode_generic_method_sig): Write a 0xa as the
11936         first byte. [FIXME]
11937         (method_encode_methodspec): If we have generic parameters, create
11938         a MethodSpec instead of a MethodRef.
11939         (fixup_method): Added support for "MonoInflatedMethod" and
11940         "MonoInflatedCtor".
11941         (mono_image_create_token): Added support for "MonoInflatedMethod"
11942         and "MonoInflatedCtor".
11943         (inflated_method_get_object): New static function; returns a
11944         managed "System.Reflection.MonoInflatedMethod" object.
11945         (mono_reflection_bind_generic_method_parameters): Return a
11946         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
11947         (mono_reflection_inflate_method_or_ctor): Likewise.
11948         (mono_image_get_generic_method_param_info): Initialize unused
11949         fields to zero.
11950         (mono_image_get_generic_param_info): Likewise.
11952         * reflection.h (MonoReflectionInflatedMethod): New public
11953         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
11954         "S.R.MonoInflatedCtor" classes.
11956         * loader.c (method_from_memberref): If we're a TypeSpec and it
11957         resolves to a generic instance, inflate the method.
11959 2003-10-28  Dick Porter  <dick@ximian.com>
11961         * object.c (mono_runtime_run_main): Convert command-line arguments
11962         into utf8, falling back to the user's locale encoding to do so.
11964 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
11966         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
11967         at this time.
11969         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
11971         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
11972         up icalls at method definition time. Partially fixes #33569.
11974 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
11976         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
11977         marshalling of arrays. Fixes #50116.
11979         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
11981         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
11982         points to a vtable in the dying appdomain.
11984         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
11985         listeners into unmanaged code inside the lock.
11987         * object.c (mono_class_vtable): Turn off typed allocation in non-root
11988         domains and add some comments.
11990 2003-10-25  Martin Baulig  <martin@ximian.com>
11992         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
11994         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
11996         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
11997         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
11998         currently parsing.  Create the generic class and store it in
11999         `generic_inst->klass' before parsing the type arguments.  This is
12000         required to support "recursive" definitions; see mcs/tests/gen-23.cs
12001         for an example.
12002         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
12003         to support recursive typespec entries.
12005         * class.c (mono_class_setup_parent): If our parent is a generic
12006         instance, we may get called before it has its name set.
12007         (mono_class_from_generic): Splitted into
12008         mono_class_create_from_generic() and mono_class_initialize_generic().
12010 2003-10-25  Martin Baulig  <martin@ximian.com>
12012         * icall.c (ves_icall_Type_BindGenericParameters): Return a
12013         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
12014         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
12015         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
12017         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
12018         (create_typespec): Likewise.
12019         (mono_reflection_bind_generic_parameters): Return a
12020         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
12021         (mono_reflection_inflate_method_or_ctor): New public function.
12023         * reflection.h (MonoReflectionGenericInst): New typedef.        
12025 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
12027         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
12028         inside the domain lock. Fixes #49993.
12029         
12030         * object.c (mono_class_vtable): When typed allocation is used, 
12031         allocate vtables in the GC heap instead of in the mempool, since the
12032         vtables contain GC descriptors which are used by the collector even
12033         after the domain owning the mempool is unloaded.
12035         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
12037         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
12038         reflect what it does. Also invalidate mempools instead of freeing
12039         them if a define is set.
12041         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
12042         of the appdomain.
12043         
12044         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
12045         hold the finalizable objects in this domain.
12047         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
12048         appdomain.
12050         * appdomain.c (mono_domain_set): New function to set the current
12051         appdomain, but only if it is not being unloaded.
12053         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
12054         appdomain which is being unloaded.
12055         
12056         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
12057         unloading of the root appdomain.
12059         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
12060         icall to execute a method in another appdomain. Intended as a 
12061         replacement for InternalSetDomain, which can confuse the code 
12062         generation in the JIT.
12064         * appdomain.c (mono_domain_is_unloading): New function to determine
12065         whenever an appdomain is unloading.
12067         * appdomain.c (mono_domain_unload): New function to correctly unload
12068         an appdomain.
12070         * assembly.c (mono_assembly_load_references): Check that an assembly
12071         does not references itself.
12073         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
12074         domain manually, it asks the finalizer thread to do it, then waits for
12075         the result. Also added a timeout.
12077         * icall.c: Register the new icalls.
12079         * threads.h threads.c: Export the mono_gc_stop_world and 
12080         mono_gc_start_world functions.
12081         
12082         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
12083         function to fill out the mempool with 0x2a.
12085 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
12087         * reflection.h (MonoReflectionMethodAux): New structure to store
12088         information which is rarely used, thus is not in the MonoMethod
12089         structure.
12091         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
12092         store the aux info.
12094         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
12095         and marshalling info into the aux structure.
12097         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
12098         from the aux structure.
12100         * loader.c (mono_method_get_param_names): Retrieve the param names from
12101         the aux structure.
12102         
12103 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
12105         * exception.h exception.c: Add AppDomainUnloadedException && fix 
12106         warning.
12108 2003-10-21  Dick Porter  <dick@ximian.com>
12110         * socket-io.c
12111         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
12112         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
12114 2003-10-21  Martin Baulig  <martin@ximian.com>
12116         * reflection.c (mono_reflection_bind_generic_parameters):
12117         `klass->parent' is NULL for interfaces.
12119 2003-10-21  Martin Baulig  <martin@ximian.com>
12121         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
12123 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
12125         * exception.c (mono_exception_from_name_msg): New helper function for
12126         creating exceptions and initializing their message field.
12128         * exception.c: Simplify functions using the new helper.
12130         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
12131         New function.
12133         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
12134         mono_raise_exception, since otherwise gcc doesn't generate the function
12135         epilog for raise_exception, confusing the stack unwinding in the JIT.
12136         Fixes #45043.
12138         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
12139         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
12140         Fixes #49499.
12142 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12144         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
12145         utf8.
12147 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
12149         * icall.c: Removed GetUninitializedObject method because
12150           AllocateUninitializedClassInstance does the same.
12152 2003-10-18  Martin Baulig  <martin@ximian.com>
12154         * class.c (inflate_generic_signature): Renamed to
12155         mono_class_inflate_generic_signature() and made it public.
12156         (my_mono_class_from_generic_parameter): New static function; if we
12157         don't already have the generic parameter's MonoClass, create a
12158         very simple one which is just used internally in the runtime and
12159         not passed back to managed code.
12161         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
12163         * metadata.h (MonoMethodSignature): Moved the
12164         `MonoGenericParam *gen_params' to the MonoMethodHeader.
12165         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
12167         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
12168         ves_icall_MonoMethod_GetGenericArguments(); this is now an
12169         interncall on the MonoMethod class, not on MethodInfo.
12170         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
12171         calling mono_reflection_bind_generic_method_parameters() directly.
12173         * loader.c (mono_method_get_signature): If this is a MethodSpec;
12174         return the already computed `method->signature'.
12175         (method_from_methodspec): New static function to load a method
12176         from a MethodSpec entry.
12177         (mono_get_method_from_token): Call the new method_from_methodspec()
12178         for MethodSpec tokens.  
12179         (mono_get_method_from_token): If we're a generic method, load the
12180         type parameters.
12182         * reflection.c (mono_image_get_memberref_token): Allow
12183         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
12184         table.
12185         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
12186         (mono_image_create_token): First check whether it's a generic
12187         method (so we'd need to create a MethodSpec), then do the other
12188         two alternatives.
12189         (mono_reflection_bind_generic_method_parameters): Return a
12190         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
12191         called directly from the interncall.
12193 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
12195         * reflection.c (load_public_key): Move loading of the public key
12196         into managed code.
12198         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
12200         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
12201         fields.
12203         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
12204         culture, hash_alg and public_key. Fixes #49555.
12206 2003-10-17  Martin Baulig  <martin@ximian.com>
12208         * class.h (MonoGenericInst): Moved this declaration here and added
12209         `MonoMethod *generic_method'.
12211         * icall.c
12212         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
12213         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
12215         * metadata.c (mono_metadata_type_equal): Two types of
12216         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
12217         index; ie. don't compare the address of the `MonoGenericParam'
12218         structure.
12219         (mono_metadata_load_generic_params): Removed the `MonoMethod
12220         *method' argument.
12222         * metadata.h (MonoGenericInst): Moved declaration to class.h.
12223         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
12225         * reflection.c (method_encode_signature): Encode the number of
12226         generic parameters.
12227         (encode_generic_method_sig): New static function.
12228         (method_encode_methodspec): New static function; creates an entry
12229         in the MethodSpec table for a generic method.
12230         (mono_image_get_methodspec_token): New static function.
12231         (mono_image_create_token): Call mono_image_get_methodspec_token()
12232         for generic methods.
12233         (mono_reflection_bind_generic_method_parameters): New public
12234         function.  Instantiates a generic method.
12236 2003-10-16  Martin Baulig  <martin@ximian.com>
12238         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
12239         *gen_params' here from MonoMethodHeader.
12241         * metadata.c (mono_metadata_parse_method_signature): If we have
12242         generic parameters, initialize `method->gen_params' and then set
12243         the correct `type->data.generic_param' in all the parameters.
12245 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
12247         * threads.c (mono_threads_get_default_stacksize): New function to 
12248         return the default stacksize.
12250         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
12251         termination of the finalizer thread, since the previous method had
12252         race conditions. Fixes #49628.
12254         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
12255         as for the other managed threads.
12257 2003-10-16  Martin Baulig  <martin@ximian.com>
12259         * class.c (inflate_generic_signature): Copy `generic_param_count'
12260         and `gen_params'.
12262         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
12263         New interncall.
12265         * metadata.c (mono_metadata_parse_method_signature): Actually set
12266         the `method->generic_param_count' here.
12267         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
12269 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
12271         * object.h: Add a new field to TypedRef to simplify the implementation
12272         of the REFANY opcodes in the JIT.
12274         * icall.c: Make use of the new field.
12276         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
12277         dynamically.
12279 2003-10-15  Martin Baulig  <martin@ximian.com>
12281         * class.c (mono_class_from_gen_param): Renamed to
12282         mono_class_from_generic_parameter() and moved most of the
12283         functionality from mono_reflection_define_generic_parameter()
12284         here; ie. we create a "real" class here.
12285         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
12286         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
12287         previously been called.
12289         * class.h (MonoGenericParam): Moved the declaration of this struct
12290         here from metadata.h and added `MonoMethod *method'.
12292         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
12293         interncall.
12295         * loader.c (mono_get_method_from_token): If we have any generic
12296         parameters, call mono_metadata_load_generic_params() to read them
12297         from the MONO_TABLE_GENERICPAR.
12299         * metadata.c (mono_metadata_load_generic_params): Added
12300         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
12302         * metadata.h (MonoMethodSignature): Replaced
12303         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
12304         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
12306         * reflection.c (mono_reflection_define_generic_parameter): Moved
12307         most of the functionality into the new
12308         mono_class_from_generic_parameter(); set the `method' field if
12309         we're a method parameter.       
12311 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
12313         * marshal.c (emit_struct_conv): if native size is 0
12314         emit no code.
12316 2003-10-14  Martin Baulig  <martin@ximian.com>
12318         * icall.c: The generics API has changed in the spec since it was
12319         added to System.Type; these modifications make it match the spec
12320         again.
12321         (ves_icall_Type_GetGenericParameters): Renamed to
12322         `ves_icall_Type_GetGenericArguments'.
12323         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
12324         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
12325         `ves_icall_MonoType_get_HasGenericArguments'.
12326         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
12327         `ves_icall_MonoType_get_IsGenericParameter'.
12328         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
12329         this is no interncall anymore.
12330         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
12331         `ves_icall_TypeBuilder_get_IsGenericParameter'.
12333 2003-10-14  Martin Baulig  <martin@ximian.com>
12335         * reflection.c (mono_reflection_bind_generic_parameters): Also
12336         inflate generic methods if we're reading the class from IL.
12338 2003-10-13  Martin Baulig  <martin@ximian.com>
12340         * reflection.c (mono_reflection_define_generic_parameter): This
12341         method isn't called directly from the icall anymore; take a
12342         `MonoReflectionAssemblyBuilder *' so we can use this for type and
12343         method generic parameters.
12344         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
12345         (method_builder_encode_signature): Encode generic parameters.
12346         (mono_image_get_method_info): Write generic params to the
12347         MONO_TABLE_GENERICPARAM table.
12349         * reflection.h (MonoReflectionMethodBuilder): Added
12350         `MonoArray *generic_params'.
12352         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
12354         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
12355         wrapper for mono_reflection_define_generic_parameter().
12356         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
12358 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
12360         * marshal.h: Add missing function to fix build.
12362         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
12363         the SetLastError pinvoke attribute.
12365         * marshal.c (mono_marshal_set_last_error): New helper function called
12366         by the generated code.
12367         
12368         * marshal.c (mono_mb_emit_branch): New helper function.
12370         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
12372         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
12373         classes as parameters and return values of delegates. Fixes #29256. 
12375 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
12377         * locales.c: use gint32 in non HAVE_ICU case
12379 2003-10-11  Martin Baulig  <martin@ximian.com>
12381         * mono-debug.c (mono_debug_add_method): Added a workaround for
12382         bug #48591.
12384 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
12386         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
12387         delegates passed to native code must use the STDCALL calling 
12388         convention. Fixes #35987.
12390 2003-10-10  Martin Baulig  <martin@ximian.com>
12392         * class.c (inflate_generic_type): If we're inflating for a generic
12393         type instance (and not for a generic method), return
12394         MONO_TYPE_MVAR unchanged.
12396 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12398         * string-icalls.c: Join ignores null strings in the source array.
12399         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
12400         * threads.c: GetAvailableTheads is slightly more accurate.
12402 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
12404         * threads.h threads.c : add mono_threads_set_default_stacksize
12405         and pass default to CreateThread calls.
12407 2003-10-09  Dick Porter  <dick@ximian.com>
12409         * icall.c:
12410         * locales.h:
12411         * locales.c: Internal calls for constructing CultureInfo and
12412         related objects from libicu (if its available.)
12414 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
12416         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
12418 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12420         * threadpool.c: added an argument to async_invoke_thread that is the
12421         item to process, pass the MonoAsyncResult to the thread start function
12422         when creating a new thread. This way we don't need to acquire any lock
12423         when we're creating a new thread. Readded a semaphore for faster
12424         response times (instead of that Sleep i added).
12426 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
12428         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
12429         get daylight change dates better on Windows, fix handling
12430         of platforms without tm_gmtoff.
12432 2003-10-06  Martin Baulig  <martin@ximian.com>
12434         * class.c (inflate_generic_method): Renamed to
12435         mono_class_inflate_generic_method() and made public.
12436         (mono_class_init): Don't inflate the generic methods here.
12437         (mono_class_from_generic): Added `gboolean inflate_methods'
12438         argument.  Inflate the methods here.
12440         * loader.c (mono_method_get_param_names): Ignore instances of
12441         generic types for the moment.
12443         * reflection.c (fixup_method): Added support for inflated methods.
12444         (mono_image_create_token): Use mono_image_get_methodref_token()
12445         for inflated methods.
12446         (mono_custom_attrs_from_param): Ignore instances of generic types
12447         for the moment.
12448         (mono_reflection_bind_generic_parameters): New public function.
12449         Moved all the functionality from
12450         ves_icall_Type_BindGenericParameters() here and added support for
12451         dynamic types.
12452         (mono_reflection_define_generic_parameter): Initialize
12453         `klass->methods' here.
12455         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
12456         functionality into mono_reflection_define_generic_parameter().
12457         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
12458         TypeBuilder, return that TypeBuilder.
12460 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12462         * appdomain.c: removed mono_delegate_semaphore.
12464         * threadpool.c:
12465         (mono_thread_pool_add): moved hash table creation inside and the thread 
12466         creation outside of the critical region.
12467         (mono_thread_pool_finish): removed obsolete code.
12468         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
12469         continue or exit the thread depending on the queue.
12471 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
12473         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
12474         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
12475         handle more bool marshalling options
12477 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
12479         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
12480         arrays of structs. Also add a more descriptive error message when
12481         a structure member is marshalled as LPArray.
12483 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
12485         * marshal.c (mono_marshal_get_native_wrapper): Add support for
12486         marshalling arrays of complex types. Fixes #29098. Also remove an
12487         usused and incomplete function.
12489 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
12491         * gc.c: report heap_size - free_bytes as total memory allocated
12492         (bug#49362).
12494 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
12496         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
12497         fix timezone handling problems on Windows.
12498         
12499         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
12500         asserts when the year is outside the range handled by ms the functions.
12502         * class.c (setup_interface_offsets): If the class is an interface,
12503         fill out its interface_offsets slot.
12505 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12507         * threadpool.c: mark threadpool threads as background.
12509 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
12511         * decimal.c - define DECINLINE to nothing if not using GCC
12513 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
12515         * assembly.c: More refcount fixes.
12517 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12519         * string-icalls.c: if we're not trimming, return the same string.
12520         When not splitting, don't create a new string.
12522 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12524         * image.c:
12525         (mono_image_open): increment the ref_count inside the critical section.
12527 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
12529         * image.c (mono_image_open): Fix reference counting bug.
12531 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
12533         * marshal.c (mono_marshal_type_size) struct alignment changed for 
12534         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
12535         64bits. Avoid leak in mono_marshal_get_native_wrapper when
12536         mono_lookup_pinvoke_call throws.        
12538 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
12540         * reflection.c (mono_reflection_parse_type): Fix #49114.
12542         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
12543         temporary workaround for cygwin header problem.
12545         * object.c (mono_object_isinst): Synchronize this with the code
12546         generated by the JIT for casts.
12548 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
12550         * reflection.c (encode_type): Fix #38332.
12552 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
12554         * marshal.c (mono_marshal_method_from_wrapper): New function to return
12555         the original method from the wrapper method.
12557 2003-09-25  Martin Baulig  <martin@ximian.com>
12559         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
12560         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
12561         (ves_icall_Type_get_IsGenericInstance): New interncall.
12563 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
12565         * object.c: fix cast warning in big endian code.
12567 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
12569         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
12570         
12571 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12573         * assembly.c: don't call check_env from mono_assembly_load. It's
12574         already done once in mono_assemblies_init and may cause headaches when
12575         multiple threads are loading assemblies.
12577 2003-09-19  Martin Baulig  <martin@ximian.com>
12579         * reflection.c (mono_reflection_define_generic_parameter): Don't
12580         allocate `klass->methods', set `klass->flags' to
12581         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
12583 2003-09-18  Martin Baulig  <martin@ximian.com>
12585         * class.c (mono_class_init): Don't create `class->methods' if it's
12586         already initialized.
12588         * metadata.c (mono_metadata_load_generic_params): Make this
12589         actually work.
12591         * reflection.c (mono_reflection_define_generic_parameter): Set
12592         parent class and interfaces from the constraints.
12594         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
12595         to keep this struct in sync with the declaration in TypeBuilder.cs.
12597 2003-09-17  Martin Baulig  <martin@ximian.com>
12599         * metadata.h (MonoType): Replaced the data's `int type_param'
12600         field with `MonoGenericParam *generic_param'.
12601         (MonoGenericParam): Added `MonoClass *klass'.
12603         * class.c (mono_class_from_gen_param): Removed the
12604         `MonoImage *image' and `int type_num' arguments.
12606         * metadata.c (mono_metadata_parse_generic_param): New static
12607         method; creates a MonoGenericParam which just contains the index.
12608         (do_mono_metadata_parse_type): Call
12609         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
12610         MONO_TYPE_MVAR.
12612         * reflection.c (mono_image_typedef_or_ref): Generic type
12613         parameters may be in the same assembly, but never use a typedef
12614         for them.
12615         (mono_reflection_define_generic_parameter): We're now creating a
12616         "real" class for the type parameter; it's now safe to call
12617         mono_class_from_mono_type() on the class'es type, it'll do the
12618         right thing.
12620 2003-09-16  Martin Baulig  <martin@ximian.com>
12622         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
12623         `symfile->range_entry_size' and `symfile->class_entry_size' here;
12624         the `symfile' data structure must be fully initialized before it
12625         gets added to the table.
12627 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
12629         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
12631         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
12632         class init trampolines.
12634 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
12636         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
12637         to the built-in profiler to turn off time and allocation profiling
12638         respectively.
12640 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
12642         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
12643         g_direct_equal.
12645         * debug-helpers.c (mono_method_full_name): Print the wrapper type
12646         in human readable form.
12648 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
12650         * reflection.c icall.c: Fixed warnings.
12652         * image.c (load_class_names): Use a temporary hash table to hold the
12653         namespaces in order to avoid doing many string comparisons.
12655         * image.h: Fix typo.
12657         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
12658         Pass NULL instead of g_direct_equal to the GHashTable constructor 
12659         since the NULL case is short-circuited inside g_hash_table_lookup, 
12660         leading to better performance.  
12662         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
12663         obtain the first custom attribute for a given index. Depends on the
12664         CustomAttribute table being sorted by the parent field.
12666         * reflection.c (mono_custom_attrs_from_index): Use the new function 
12667         for better performance.
12669 2003-09-07  Martin Baulig  <martin@ximian.com>
12671         * class.c (mono_class_init): If we're a generic instance, inflate
12672         all our methods instead of loading them from the image.
12673         (mono_class_from_generic): Set `class->methods = gklass->methods'.
12675 2003-09-07  Martin Baulig  <martin@ximian.com>
12677         * mono-debug-debugger.c: Added support for constructors.
12679 2003-09-06  Martin Baulig  <martin@ximian.com>
12681         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
12682         New interncall.
12684         * reflection.c (mono_reflection_setup_generic_class): Call
12685         ensure_runtime_vtable() to create the vtable.
12687 2003-09-05  Martin Baulig  <martin@ximian.com>
12689         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
12690         MONO_TYPE_MVAR.
12692 2003-09-04  Martin Baulig  <martin@ximian.com>
12694         * reflection.c (mono_reflection_define_generic_parameter): Generic
12695         parameters start with zero.
12697 2003-09-04  Martin Baulig  <martin@ximian.com>
12699         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
12701         * reflection.h (MonoReflectionGenericParam): New typedef.
12702         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
12703         the generic parameters from the managed TypeBuilder.
12705         * reflection.c (mono_reflection_define_generic_parameter): New function.
12706         (mono_reflection_create_runtime_class): Encode generic parameters.
12707         (mono_reflection_setup_generic_class): New function; this is
12708         called after adding adding all generic params to the TypeBuilder.
12709         (encode_type): Added MONO_TYPE_VAR.
12711 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
12713         * class.h class.c (mono_class_needs_cctor_run): Moved this method
12714         here from the JIT.
12716         * assembly.h assembly.c: Moved the AOT loading code into an assembly
12717         load hook.
12719 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
12721         * reflection.h reflection.c class.h class.c: Delete duplicate 
12722         definition of mono_type_get_name () from reflection.c and export the
12723         one in class.c.
12725         * class.c: Class loading fixes from Bernie Solomon 
12726         (bernard@ugsolutions.com).
12728         * reflection.c: Endianness fixes from Bernie Solomon 
12729         (bernard@ugsolutions.com).
12730         
12731 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
12733         * assembly.h assembly.c: Define a file format version for AOT
12734         libraries.
12735         
12736         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
12738         * appdomain.h (MonoJitInfo): New field to determine whenever the
12739         code is domain neutral.
12740         
12741 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
12743         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
12745 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
12747         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
12748         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
12749         Avoid caching the result since strings must be domain specific. Fixes
12750         #48050.
12752 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
12754         * marshal.c (mono_marshal_init): Make this callable multiple times
12755         since it is hard to find a correct place to call it.
12757         * object.c (mono_runtime_class_init): Execute static constructors in
12758         the correct appdomain.
12760         * image.c (build_guid_table): Handle the case when multiple images have
12761         the same GUID.
12763 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12765         * icall.c: added a couple of icalls for System.Web.
12767 2003-08-28  Martin Baulig  <martin@ximian.com>
12769         * icall.c (ves_icall_Type_BindGenericParameters): Use
12770         `klass->generic_inst' instead of `&klass->byval_arg' in the
12771         mono_type_get_object() call.  The returned type must be
12772         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
12774 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
12776         * NOTES: New file.
12778         * object.c (mono_class_proxy_vtable): Make it thread safe.
12780         * pedump.c: Fix warning.
12782         * object.c appdomain.h: Get rid of metadata_section. 
12783         It is no longer needed and it was causing deadlocks with domain->lock.
12785         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
12787 2003-08-26  Martin Baulig  <martin@ximian.com>
12789         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
12791 2003-08-26  Martin Baulig  <martin@ximian.com>
12793         * pedump.c (main): Call mono_metadata_init(),
12794         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
12795         and mono_loader_init().
12797 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
12799         * loader.h: Add missing include to fix build.
12801         * image.h: mono_image_load_references is no more.
12803         * assembly.c: Reworked assembly loading to make it really thread safe.
12804         After these changes, the assembly returned by mono_assembly_open is
12805         fully initialized, i.e. all its references assemblies are loaded.
12807         * assembly.c (mono_image_load_references): Renamed to 
12808         mono_assembly_load_references, and made private, since clients no
12809         longer need to call it.
12811         * class.c: Removed calls to mono_assembly_load_references, since it was
12812         a source of deadlocks.
12814         * loader.h loader.c class.h class.c: Protect data structures using a 
12815         new lock, the loader lock.
12817         * class.c (mono_class_setup_vtable): Create temporary hash tables and
12818         GPtrArrays only when needed.
12820         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
12821         into empty structures by mcs. Fixes pinvoke7.cs.
12822         
12823         * domain.c (mono_init): Call a new initialization function.
12825         * appdomain.c (mono_runtime_init): Call the new initializer function
12826         of the marshal module.
12828         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
12829         inserted into empty structures by mcs. Fixes pinvoke7.cs.
12831         * marshal.h marshal.c: Added locks around the wrapper caches to make
12832         this module thread safe.
12834         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
12835         this argument. Fixes pinvoke1.exe.
12837 2003-08-25  Lluis Sanchez <lluis@ximian.com>
12839         * object.h: Added call_type field to MonoMethodMessage and the corresponding
12840         enumeration of values. Removed fields to store remote call output values in
12841         MonoAsyncResult. Not needed any more.
12842         * object.c: Initialize call_type and async_result fields in mono_message_init.
12843         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
12844         dispatching the message.
12845         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
12846         async call to finish. To do it use a message with EndInvoke call type.
12848 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
12850         * loader.h loader.c (mono_method_hash_marhal_info): New function which
12851         determines whenever a method has marshalling info.
12853 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12855         * assembly.c: fix the build on windows.
12857 2003-08-22 Lluis Sanchez <lluis@ximian.com>
12859         * object.cs: Fixed bug #47785.
12861 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
12863         * string-icalls.c (StringReplace): If their are no occurances of
12864         the old string found return a reference to the supplied
12865         string. This saves some memory and matches MS behavoir.
12866         
12867 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12869         * socket-io.c: fixed compilation for systems that define AF_INET6
12870         and don't define SOL_IP/SOL_IPV6.
12872 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
12874         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
12875         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
12877         * rawbuffer.c rawbuffer.h: Make this module thread safe.
12879         * domain.c: Make this module thread safe.
12881         * domain.c (mono_init): Call new initialization function.
12883         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
12884         reference types too. Fixes #38812.
12886         * image.c (mono_image_init): Fixed warnings.
12888         * class.c (mono_class_from_typeref): Handle assembly load failure
12889         correctly.
12891         * appdomain.c (add_assemblies_to_domain): Handle the case when
12892         the references of an assembly are not yet loaded.
12894         * metadata.c image.c assembly.c: Moved initialization of global
12895         variables to a separate function called at startup since lazy 
12896         initialization of these variables is not thread safe.
12897         
12898         * image.c assembly.c: Made this module thread safe by adding locks in 
12899         the appropriate places.
12901         * domain.c (mono_init): Call the new initialization functions of the
12902         three modules.
12904 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
12906         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
12907           make a direct call. It is proxy's work to make the call asynchronous.
12908           mono_delegate_end_invoke(): If the targe is a proxy, just collect
12909           the return values.
12910         * object.cs: mono_method_call_message_new(): read AsyncResult and
12911           state object from parameters list, if this info is requested.
12912         * object.h: Added fields to store remote call output values in
12913           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
12915 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
12917         * object.h: add needed fields to MonoThread.
12918         * threads.c, threads.h: allow registering a function to cleanup data
12919         allocated per thread by the JIT.
12921 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
12923         * loader.h: portability fix by Bernie Solomon
12924         * <bernard@ugsolutions.com>.
12926 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
12928         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
12929         return a MonoArray. This simplifies the code and also ensures that
12930         the cache allways contains an object reference as a value.
12932         * icall.c (ves_icall_get_parameter_info): Simplified using the new
12933         function.
12935 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12937         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
12938         fixes a problem with byte ordering when getting the address family for
12939         a socket.
12941 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
12943         * .cvsignore: Added monosn.
12945         * reflection.h reflection.c loader.c: Added support for parameter
12946         marshalling to dynamically created types. Fixes #47295.
12948 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
12950         * rand.c: remove useless warnings.
12952 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
12954         * class.c: implemented ldtoken for methods and fieldrefs.
12956 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12958         * threadpool.c: when mono_async_invoke was called, no one took care of
12959         monitoring the queue. So if the method invoked took some time and we
12960         got new async invoke requests after 500 ms (the thread created waited
12961         that long in WaitForSingleObject), the new async invoke was not called
12962         until the previous one finished.
12964         This is fixed now. Thanks to Totte for helping with it.
12966 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12968         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
12970 2003-08-11  Martin Baulig  <martin@ximian.com>
12972         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
12974 2003-08-06  Martin Baulig  <martin@ximian.com>
12976         * mono-debug-debugger.c: Added support for static fields,
12977         properties and methods.
12979 2003-08-06  Martin Baulig  <martin@ximian.com>
12981         * mono-debug-debugger.c: Don't store the MonoString's vtable to
12982         make this work for applications with multiple application domains.
12984 2003-08-04  Martin Baulig  <martin@ximian.com>
12986         * mono-debug-debugger.c: Completely reworked the type support; the
12987         most important thing is that we're now just using one single
12988         `MonoType' instance per type.
12990 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
12992         * mono-endian.h, mono-endian.c, icall.c: Added icall
12993         ves_icall_System_Double_AssertEndianity to assert double word endianity
12994         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
12996 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
12998         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
12999         support, icalls and fixes.
13001 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
13003         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
13004         classes that are a punctuation character in .NET is not the same a
13005         g_unichar_ispunct.
13007 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
13009         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
13011 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
13013         * icall.c: Add new MemCopy internalcall.
13014         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
13015         Simplified code; It is not necessary to handle all the cases here,
13016         as the C# code takes care of it.  Only handle the case of the name
13017         resource embedded into the assembly.
13019         Changed signature to return the data pointer and the size of the
13020         data. 
13022 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
13024         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
13025         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
13027 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
13029         * socket-io.c: ignore EINTR error in select.
13031 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
13033         * class.h, class.c: removed unused subclasses field in MonoClass.
13035 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
13037         * icall.c: improve fix of get_base_definition(). If the parent class
13038           doesn't have the mehod, look at the parent of the parent.
13039         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
13040           to check if a parameter is an in or out parameter
13041           (PARAM_ATTRIBUTE_IN is not set by default).
13042           mono_method_return_message_restore(): Use mono_class_value_size to
13043           get the size of a value type. mono_type_stack_size (parameterType)
13044           does not return the correct value if parameterType is byRef.
13045           mono_load_remote_field(), mono_load_remote_field_new(),
13046           mono_store_remote_field(), mono_store_remote_field_new():
13047           raise exception if the remote call returns an exception.
13049 2003-07-28  Martin Baulig  <martin@ximian.com>
13051         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
13052         method.  This is a wrapper around mono_runtime_invoke() which
13053         boxes the instance object if neccessary.
13055 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
13057         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
13058         metadata.h, row-indexes.h, verify.c: first cut of generics support.
13060 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
13062         * icall.c: disable mcs bug workaround.
13064 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
13066         * object.c (mono_runtime_class_init): Take the metadata_section
13067         mutex before obtaining the domain mutex.
13069         * appdomain.h: Added definition of metadata_section mutex here. 
13071         * object.c: define metadata_mutex here.
13073 2003-07-24  Ravi Pratap  <ravi@ximian.com>
13075         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
13076         fixed.
13078 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
13080         * reflection.c: Fix bug #46669
13082 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13084         * exception.c:
13085         * exception.h:
13086         * icall.c:
13087         * object.h: fill in the type name for TypeLoadException.
13089 2003-07-23  Ravi Pratap  <ravi@ximian.com>
13091         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
13092         relationship between TypeBuilders while compiling corlib) and bug
13093         45993 (Array types returned from the runtime while compiling
13094         corlib were from the loaded corlib).
13096 2003-07-22  Martin Baulig  <martin@ximian.com>
13098         * mono-debug-debugger.c: Reworked the type support a bit more;
13099         distinguish between types and classes.
13101 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
13103         * icall.c: add IsArrayImpl icall.
13105 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
13107         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
13108         initializing real_size only once. Also fix bug #46602.
13110 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
13112         * object.c: Renamed mono_metadata_section to metadata_section.
13114 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
13116         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
13117           empty array if the type is an array. Fixed.
13118           ves_icall_MonoMethod_get_base_definition: if the base method
13119           is abstract, get the MethodInfo from the list of methods of
13120           the class.
13121         * reflection.c: ParameterInfo.PositionImpl should be zero-based
13122           and it was 1-based. Fixed in mono_param_get_objects.
13124 2003-07-20  Martin Baulig  <martin@ximian.com>
13126         * mono-debug.h: Set version number to 31.
13127         (mono_debug_init): Added `MonoDomain *' argument.
13129         * mono-debug-debugger.c: Reworked the type support; explicitly
13130         tell the debugger about builtin types; pass the `klass' address to
13131         the debugger.
13133 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
13135         * image.c: Allow new metadata tables to be loaded without a
13136         warning. Also update the warning message to give the new constant value.
13137                 
13138 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
13140         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
13141         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
13142         array type representation changes.
13144 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
13146         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
13147         on Environment.Exit () call.
13149 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
13151         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
13152         requires a matching corlib.
13154 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
13156         * Changelog: My editor decided to add a CR to each line. Sorry about that.
13157           Committed again without the CRs.
13158         
13159 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
13161         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
13162           getting it from the "this" socket instance. Did not work
13163           if the socket is a subclass of Socket.
13164           Also fixed bug #35371.
13166 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
13168         * metadata.c: fixed size for TypedByRef.
13169         * loader.c: when searching for a method, consider the vararg amrker.
13170         * unicode.c, decimal.c: constify some arrays.
13172 2003-07-15  Dick Porter  <dick@ximian.com>
13174         * socket-io.c: Fixed compilation for gcc < 3.2.
13176         Fixed compilation for machines that don't have AF_INET6 (thanks to
13177         Bernie Solomon <bernard@ugsolutions.com> for that part.)
13179         Fixed compile warnings.
13180         
13181         Fixed formatting and line endings.
13183 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
13185         * socket-io.h:
13186         * socket-io.c: Added IPv6 support.
13188 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
13190         * class.c (mono_class_is_assignable_from): New function to implement
13191         the is_assignable_from logic. Used by mono_object_isinst, 
13192         Type::IsAssignableFrom () and the interpreter.
13194         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
13195         Object, even interfaces.
13196         
13197         * object.c (mono_object_isinst): Implement in terms of 
13198         is_assignable_from.
13200         * icall.c (ves_icall_type_is_assignable_from): New icall.
13202 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
13204         * domain.c (foreach_domain): fix compiler warning.
13206 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
13208         * image.c (load_metadata_ptrs): use g_strndup because strndup is
13209         not available on all plattforms
13211 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
13213         * image.h image.c: Store the metadata version string in MonoImage.
13214         * icall.c: New icall to retrieve the image version.
13215         * reflection.c (create_dynamic_image): Fill in the image version field
13216         * reflection.c (build_compressed_metadata): Use the image version
13217         from the image structure.
13219 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13221         * appdomain.c: modified comment.
13222         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
13223         That will be its last iteration when mono_gc_cleanup is called from
13224         mono_runtime_cleanup and before the domain is unloaded.
13226         Fixes bug #45962.
13228 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
13230         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
13231         attributes.
13233 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
13235         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
13236         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
13237         Bernie Solomon <bernard@ugsolutions.com>.
13239 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
13241         * object.c, object.h: provide mono_object_new_fast() for faster
13242         allocation in some special cases.
13244 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
13246         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
13247         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
13249 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
13251         * threadpool.c: fix leaks.
13253 2003-07-01  Dick Porter  <dick@ximian.com>
13255         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
13256         using MonoGHashTables.  Fixes threadpool bug posted to list.
13258 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
13260         * image.h, image.c: added support to load an assembly from a byte array.
13261         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
13262         assembly bundle support.
13264 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
13266         * threadpool.c (mono_thread_pool_add): keep a reference to the
13267         AsyncResult to prevent GC
13269 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
13271         * class.c: leak fix.
13273 2003-06-25  Dick Porter  <dick@ximian.com>
13275         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
13276         for the async object, the WaitHandle object will close the handle.
13277         Fixes bug 45321.
13279 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
13281         * class.c: in mono_array_class_get (), lookup from the hash with the
13282         same type we insert: this works around a bug in
13283         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
13284         lluis. The real fix will have to wait for after the release.
13286 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
13288         * icall.c: fix memory leak when getting type members.
13290 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
13292         * reflection.c: added more pubtoken special cases.
13294 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
13296         * class.c: handle field offset correctly when class size
13297         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
13299 2003-06-20  Martin Baulig  <martin@ximian.com>
13301         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
13302         *image' field.
13304 2003-06-20  Martin Baulig  <martin@ximian.com>
13306         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
13308 2003-06-20  Martin Baulig  <martin@ximian.com>
13310         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
13311         just distinguish between variables in registers and variables at
13312         an offset relative to a register.
13314 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13316         * icall.c: #ifdef out latest changes until mcs is fixed.
13318 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
13320         * icall.c: return members in metadata order.
13322 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
13324         * icall.c: avoid infinite loop in GetTimeZoneData.
13326 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
13328         * icall.c: added Marshal.Prelink/All icalls.
13330 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
13332         * object.c, object.h: fix warnings and do some overflow checking
13333         when creating arrays.
13335 2003-06-17  Dick Porter  <dick@ximian.com>
13337         * file-io.h:
13338         * file-io.c: File attributes need to be tweaked slightly when
13339         passed from the managed to the w32 world.
13341 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
13342         * profiler.h profiler-private.h profiler.c: Rework last patch
13343         based on suggestion by Paolo.
13344         
13345 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
13347         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
13348         instruction level coverage data collection.
13349         * profiler.h profiler.c (: Added new callback function which can be
13350         used by the profiler to limit which functions should have coverage
13351         instrumentation.
13352         * profiler.c (mono_profiler_load): Call g_module_build_path to
13353         generate the file name of the profiler library.
13355 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
13357         * profiler.c, profiler.h, profiler-private.h: added basic block 
13358         coverage profiling API.
13360 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
13362         * reflection.c (mono_reflection_create_runtime_class): Add support
13363         for events in dynamically generated code.
13365         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
13366         not allocated.
13368 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
13370         * icall.c: when getting timezone info, return reasonable values if we
13371         can't get the actual data.
13373 2003-06-14  Dick Porter  <dick@ximian.com>
13375         * threads.c (start_wrapper): Remove the reference to the thread
13376         object in the TLS data, so the thread object can be finalized.
13377         This won't be reached if the thread threw an uncaught exception,
13378         so those thread handles will stay referenced :-( (This is due to
13379         missing support for scanning thread-specific data in the Boehm GC
13380         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
13382 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
13384         * reflection.c: ensure streams and tables are first allocated with
13385         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
13387 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
13389         * icall.c: fixed GetElementType for byrefs (bug# 44792).
13391 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
13393         * reflection.c (mono_reflection_create_runtime_class): Add support for
13394         properties to dynamically created classes.
13395         * reflection.c: Fix a few places where non-MonoObjects were inserted
13396         into the tokens hashtable.
13398 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
13400         * object.c: some support to handle out of memory exceptions.
13402 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
13404         * marshal.c (mono_marshal_get_native_wrapper): support reference
13405         return types
13407 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
13409         * object.h, object.c: more portability stuff from Bernie Solomon.
13410         Unexport mono_object_allocate(). Added mono_object_unbox ().
13411         Set exitcode when an unhandled exception is thrown.
13413 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
13415         * marshal.c (mono_marshal_get_native_wrapper): use custom
13416         marshaler for return types.
13418 2003-06-10  Dick Porter  <dick@ximian.com>
13420         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
13421         ip_mreq is available
13423 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
13425         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
13426         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
13427         by Bernie Solomon <bernard@ugsolutions.com>.
13429 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
13431         * gc.c (mono_gc_init): Avoid error message on shutdown when
13432         GC_DONT_GC=1 is used.
13434         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
13435         New icall to return the GUID of a module.
13437 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
13439         * class.c: ensure instance size always includes the parent's size
13440         even whem class size is set explicitly (fixes bug#44294).
13442 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
13444         * profiler.h, profiler.c: made the simple profiler thread-safe,
13445         get more accurate timing info. Allow the loading of an
13446         externally-developed profiler module.
13448 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
13450         * marshal.c (mono_marshal_get_native_wrapper): improved
13451         class/byref arguments.
13452         (mono_marshal_get_native_wrapper): better string marshaling support.
13454 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
13456         * class.c: ensure .pack and .size are handled correctly and
13457         simplified layout of static fields.
13459 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
13461         * appdomain.c
13462         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
13464         * loader.c (mono_lookup_pinvoke_call): look for modules in the
13465         current directory (fix bug 44008)
13467 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
13469         * marshal.c (mono_marshal_get_native_wrapper): started support for
13470         custom marshalers.
13471         (mono_delegate_to_ftnptr): consider marshalling specifications
13473 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
13475         * reflection.c, reflection.h: emit custom marshal info.
13477 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13479         * object.c: free the GError.
13480         * icall.c: added CloseEvent_internal.
13481         * threads.[ch]:
13482         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
13483         call.
13485 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
13487         * loader.c (mono_method_get_signature): Add support for dynamic
13488         assemblies.
13490 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
13492         * reflection.c: fixed bug #43905.
13494 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
13496         * class.c, domain.c, icall.c, metadata.h, object.h: support for
13497         handling TypedReference and ArgIterator.
13498         * loader.c, loader.h: added function to get signature at call site.
13500 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
13502         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
13503         data readonly. Buglets and warning fixes. Some MethodSpec support.
13505 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
13507         * class.h, class.c, object.c: remove relative numbering support.
13509 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
13511         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
13512         free the string, until we get a chance to fix Gtk#
13514 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13516         * marshal.c: revert last patch.
13518 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
13520         * icall.c: updates for new mono_class_vtable() not calling
13521         the type constructor anymore.
13523 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
13525         * object.h, object.c: separate vtable creation from type
13526         initialization. Make running the .cctor thread safe.
13528 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
13530         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
13532 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
13534         * loader.c (mono_get_method): consider calling convention
13536 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
13538         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
13539         to return the invisible global type for a module.
13541         * reflection.c (mono_image_build_metadata): Emit global fields too.
13543 2003-05-20  Peter Williams  <peterw@ximian.com>
13545         * loader.c (mono_lookup_internal_call): Add a few newlines.
13547 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
13549         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
13550         literal strings.
13552         * appdomain.c (set_domain_search_path): Recalculate search path when
13553         AppDomainSetup.PrivateBinPath changes.
13555         * object.c (mono_class_compute_gc_descriptor): It turns out some
13556         parts of the class libs (like System.Thread) holds pointers to
13557         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
13558         to treat native int a pointer type here.
13559         
13560 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
13562         * appdomain.h, domain.c: add hashtable for jump target resolution.
13564 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
13566         * reflection.h reflection.c icall.c: Added new icalls 
13567         GetManifestResourceInfoInternal, GetModulesInternal and support
13568         infrastructure.
13570 2003-05-16  Dick Porter  <dick@ximian.com>
13572         * icall.c:
13573         * file-io.h:
13574         * file-io.c: Implement System.IO.MonoIO::GetTempPath
13576 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
13578         * object.c: mono_store_remote_field: little fix to previous patch.
13580 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
13582         * class.c: add constructors to array classes.
13583         * icall.c: special case array construction for InternalInvoke (),
13585 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
13587         * class.h class.c reflection.c object.c: Added support for field
13588         defaults in dynamically generated classes.
13590 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
13592         * reflection.c: properly encode charset for ddlimport.
13594 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
13596         * threads.c: allow compiling without GC.
13598 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
13600         * appdomain.h, object.c, object.h, threads.c, threads.h: added
13601         handling of thread static data.
13603 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
13605         * reflection.h, reflection.c: added mono_custom_attrs_free ().
13607 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
13609         * class.c (mono_array_class_get): always set the serializable flags
13610         (mono_array_class_get): always set the SEALED attribute for array types
13612 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
13614         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
13615         attributes (fix for bug 42021).
13617 2003-05-12  Dick Porter  <dick@ximian.com>
13619         * gc.c: Don't run finalizers when the finalizer thread is
13620         finishing up, because the default domain has already been
13621         destroyed.
13623 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
13625         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
13626         value is null, we should throw an exception.   This is slightly
13627         different than the other conventions used for the constructor.
13629 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13631         * socket-io.c: fixed windows build.
13633 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13635         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
13637 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
13639         * object.c (mono_string_new_wrapper): Compatibility fix for MS
13640         compilers.
13642 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
13644         * class.c (mono_class_layout_fields): Add experimental GC aware
13645         auto layout facility. Requires class library changes to work correctly.
13647         (mono_class_setup_vtable): Avoid overriding explicit interface
13648         method implementations. Fixes iface3.exe test.
13650         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
13651         object reference.
13652         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
13653         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
13655         * metadata.h: Add new type classification macro which determines
13656         whenever the type holds an object reference.
13658 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
13660         * marshal.c (mono_marshal_get_native_wrapper): cleanups
13662 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
13664         * gc.c (finalizer_thread): Work around a GC bug.
13666 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
13668         * marshal.c (emit_struct_conv): allow unions
13670         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
13672 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
13674         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
13676 2003-05-06  Martin Baulig  <martin@ximian.com>
13678         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
13680 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13682         * socket-io.c:
13683         (Select_internal): allow NULLs, don't create arrays if not needed.
13684         Coupled with Socket.cs changes.
13686         * threadpool.c:
13687         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
13688         register a finalizer for it that will close the semaphore handle. This
13689         fixes the leak and make Lupus' test run with > 4080 loops.
13691 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
13693         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
13694         Jerome Laban (bug #42287)
13696 2003-05-02  Martin Baulig  <martin@ximian.com>
13698         * debug-mono-symfile.h
13699         (MonoSymbolFile): Moved declaration into mono-debug.h.
13700         (MonoDebugMethodJitInfo): Likewise.
13701         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
13702         argument.
13703         (_mono_debug_address_from_il_offset): Take a
13704         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
13706         * mono-debug.h
13707         (MonoDebugDomainData): New struct.
13708         (mono_debug_get_domain_data): New function.
13709         (mono_debug_add_method): Take an additional `MonoDomain *'
13710         argument.
13711         (mono_debug_source_location_from_address): Likewise.
13712         (mono_debug_il_offset_from_address): Likewise.
13713         (mono_debug_address_from_il_offset): Likewise.
13715 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
13717         * reflection.c: one more check for null type in custom attrs.
13719 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13721         * reflection.c: avoid warning (comparison is always false due to limited
13722         range of data type).
13724 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13726         * icall.c: throw an exception in Type.GetField if the argument 'name'
13727         is NULL.
13729 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
13731         * reflection.c: fixed handling of enums in named arguments to custom
13732         attributes (bug #42123).
13734 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
13736         * reflection.c: use the right array element type and handle
13737         a null for a Type argument, too.
13739 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
13741         * reflection.c: handle arrays as arguments to custom attributes.
13743 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
13745         * reflection.c: handle a string value in a custom attr
13746         ctor that takes an object.
13748 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
13750         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
13751         (fix bug #42063)
13753 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
13755         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
13757 2003-04-27  Martin Baulig  <martin@ximian.com>
13759         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
13760         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
13761         MONO_DEBUGGER_EVENT_BREAKPOINT.
13762         (mono_breakpoint_trampoline_code): Removed.
13763         (mono_debugger_event_handler): The last argument is now a
13764         `guint32'.
13765         (mono_debugger_insert_breakpoint_full): Removed the
13766         `use_trampoline' argument.
13767         (mono_debugger_method_has_breakpoint): Likewise.
13768         (mono_debugger_trampoline_breakpoint_callback): Renamed to
13769         mono_debugger_breakpoint_callback(); take the method and
13770         breakpoint number as arguments.
13772 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
13774         * metadata.c: fix off by one when loading parameters attributes.
13776 2003-04-24  Martin Baulig  <martin@ximian.com>
13778         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
13780 2003-04-24  Martin Baulig  <martin@ximian.com>
13782         * mono-debug-debugger.c: Moved all code which interacts with the
13783         Mono Debugger here.
13785         * debug-mono-symfile.c: This code now just deals with the symbol
13786         file itself, the debugger code is now in mono-debug-debugger.c.
13788 2003-04-23  Martin Baulig  <martin@ximian.com>
13790         * mono-debug.c (mono_debug_source_location_from_il_offset):
13791         New method; like mono_debug_source_location_from_address(), but
13792         takes an IL offset instead of a machine address.
13794 2003-04-23  Martin Baulig  <martin@ximian.com>
13796         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
13797         `line' field; this is now computed by the debugger.
13799 2003-04-23  Martin Baulig  <martin@ximian.com>
13801         * mono-debug.[ch]: New files.  This is the new debugging interface.
13803         * mono-debug-debugger.[ch]: New files.  Moved all code which
13804         interacts with the Mono Debugger here.
13806 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
13808         * domain.c (mono_init): initialize mono_defaults.monitor_class
13810 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
13812         * reflection.c (method_encode_code): Add a spicy exception to help
13813         future compiler authors.
13815 2003-04-21  Martin Baulig  <martin@ximian.com>
13817         * icall.c
13818         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
13819         Make this work with relative pathnames; g_filename_to_uri() needs
13820         an absolute filename.
13822 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
13824         * icall.c: Track name changes in Object and ValueType.
13826 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
13828         * metadata.c (mono_type_stack_size): size should be a multiple of
13829         sizeof (gpointer)
13831 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13833         * gc.c:
13834         (internal_domain_finalize): moved into mono_domain_finalize. No need
13835         to create another thread because the finalizers will be run in the
13836         finalizer thread.
13837         
13838         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
13839         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
13840         to be run (MS does this too).
13842 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
13844         * object.c (mono_class_compute_gc_descriptor): Update comment.
13846         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
13848         * image.h: Add synchronized wrapper cache.
13850         * image.c (do_mono_image_open): Initialize cache.
13852         * reflection.c (create_dynamic_mono_image): Initialize cache.
13854 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13856         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
13857         ves_icall_System_Buffer_ByteLengthInternal.
13859 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
13861         * reflection.c: setup klass->nested_in earlier. Allow
13862         a dash in the assembly name.
13864 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
13866         * metadata.c (mono_type_to_unmanaged): dont access
13867         type->data.klass for MONO_TYPE_OBJECT
13868         (mono_type_to_unmanaged): consider System.Delegate class
13870 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
13872         * class.c: just setup supertypes in the proper place instead of
13873         initializing the full element class for arrays.
13875 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
13877         * class.c: ensure the element class of arrays is initialized.
13878         Setup the supertype info for array classes, too.
13880 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
13882         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
13884 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13886         * Makefile.am: re-added -m option when running cygpath. This way,
13887         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
13888         separator.
13889         * mono-config.c: same codepath for locating mono config file for WIN32
13890         and the rest.
13891         * assembly.c: if mono_assembly_setrootdir is called, don't override
13892         the value set.
13894 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13896         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
13897         MONO_ASSEMBLIES variable.
13899 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
13901         * icall.c: added Assembly::GetNamespaces() icall.
13903 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13905         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
13907 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
13909         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
13910         * object.c: fixed bug in the construction of vtable for proxies
13912 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
13914         * object.c (mono_array_new): Mark mono_array_new as an icall.
13916 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13918         * class.c: fixed test for public method when overriding interfaces.
13919         Closes bug #40970.
13921 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
13923         * appdomain.h, domain.c: added mono_domain_foreach() to
13924         be able to access the currently loaded appdomains.
13925         * object.c: make string interning work across sppdomains.
13926         Mark some functions for use as icalls.
13928 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
13930         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
13932         * reflection.h reflection.c: Allocate long living data using 
13933         GC_MALLOC_ATOMIC so the collector does not need to scan it.
13935         * reflection.c: Double the allocation size in streams instead of
13936         increasing it, to prevent unneccesary copying on large assemblies.
13937         
13938         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
13939         creation if the assembly does not have the Run flag set.
13941 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
13943         * class.h: avoid the C++ keywords in header files (Jerome Laban
13944         spotted and fixed this).
13946 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13948         * object.c:
13949         (mono_unhandled_exception): fill in the arguments for the
13950         UnhandledException event. Only trigger that event for the default
13951         domain (as MS does).
13953 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
13955         * object.c: Improve typed allocation stuff based on suggestions from
13956         Paolo. Also turn it on if the GC library supports it.
13958 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
13960         * object.c object.h class.h: Added experimental typed allocation
13961         facility using the interfaces in gc_gcj.h.
13963         * os/gc_wrapper.h: Added new include files.
13964         
13965 2003-04-03  Martin Baulig  <martin@ximian.com>
13967         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
13968         which is not yet enabled by default.
13970         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
13971         functions.
13972         (mono_gc_lock, mono_gc_unlock): New static functions.
13974         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
13975         functions; stop/start the world for the garbage collector.  This
13976         is using the windows API; we need to complete the SuspendThread()/
13977         ResumeThread() implementation in the io-layer to make this work on Unix.
13978         (mono_gc_push_all_stacks): New public function; tells the garbage
13979         collector about the stack pointers from all managed threads.
13981 2003-04-03  Martin Baulig  <martin@ximian.com>
13983         * object.h (MonoThread): Added `gpointer stack_ptr'.
13985         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
13987 2003-04-03  Martin Baulig  <martin@ximian.com>
13989         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
13991 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
13993         * reflection.c (typebuilder_setup_fields): Initialize field.first and
13994         field.last.
13996 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
13998         * loader.c (mono_lookup_internal_call): Report the corlib that is
13999         out of sync.
14001 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
14003         * icall.c (ves_icall_type_GetTypeCode): fixed check for
14004         System.DBNull (it's class not valuetype).
14006 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
14008         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
14009         if the array method was already assigned a token (fixes bug#40646).
14011 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
14013         * reflection.c (mono_reflection_get_type): Attempt type resolve even
14014         if no assembly is given.
14016 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
14018         * metadata.h: Added the new tables.
14020         * row-indexes.h: Added definitions for new tables.
14022         * metadata.c: Add schemas for new tables, and add support for
14023         computing the sizes of them.
14025         * class.c: Update for handling the new type cases.
14027 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
14029         * metadata.h (MONO_TYPE_IS_VOID): new macro
14031 2003-03-31  Martin Baulig  <martin@ximian.com>
14033         * threads.h (MonoThreadCallbacks): Added `thread_created'.
14035         * threads.c (mono_thread_new_init): Call `thread_created' in the
14036         mono_thread_callbacks.
14038 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
14040         * loader.h: added marshalbyrefobject_class to mono_defaults
14041         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
14042         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
14043           generation of output parameters.
14044           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
14045         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
14046           contextbound and the target object belongs to the context of the caller.
14047         * object.h: added context and unwrapped_server variables in MonoRealProxy.
14048         * object.c: Implemented support for interfaces and abstract classes
14049           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
14050           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
14052 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
14054         * class.h class.c (mono_class_is_subclass_of): New function.
14055         
14056         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
14057         routines for most common case (calls from ArrayList::ToArray).
14059         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
14060         routine so programs which call Environment::Exit() can be profiled.
14062         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
14063         Added MONO_ARCH_SAVE_REGS.
14065         * icall.c (ves_icall_type_is_subtype_of): Use new function.
14067 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
14069         * blob.h: Add a couple of new MonoType types definitions.
14071         * tabledefs.h: Add a couple of new call convs.
14073 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
14075         * reflection.h (MonoReflectionDynamicAssembly): track changes in
14076         the layout of the class.
14078         * reflection.c (alloc_table): double the size on overflow to avoid
14079         unnecessary copying.
14081         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
14082         avoid filling out metadata tables and blobs. Also set mb->ilgen to
14083         null so it can be garbage collected.
14084         
14085 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
14087         * reflection.c (mono_reflection_get_type): Return the resolved type
14088         only if it is in the assembly we searched.
14090         * reflection.c (ensure_runtime_vtable): Initialize method slots.
14092         * class.c (mono_class_setup_vtable): Set the slot of the overriding
14093         method.
14095 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14097         * appdomain.c:
14098         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
14099         the right one is 'file:///blah', but MS allows it.
14100         * assembly.c:
14101         (mono_assembly_open): allow 'file://blah'
14103         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
14105 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
14107         * socket-io.c: fixes bug #40310.
14109 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
14111         * reflection.c (mono_reflection_parse_type): handle deeply nested
14112         types correctly.
14114         * reflection.c (mono_image_create_token): Use unique token values
14115         since they will be put into a hash table.
14117         * class.c (mono_class_setup_vtable): If a method occurs in more than
14118         one place in the vtable, and it gets overriden, then change the
14119         other occurances too.
14121         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
14122         object as return type.
14124 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
14126         * icall.c: Deleted "ToString" implementation for double and float
14127         because they are full implemented in managed code.
14129 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
14131         * reflection.c, reflection.h: implemented and exported functions
14132         to retrieve info about custom attributes.
14134 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14136         * appdomain.c: moved Uri handling to assembly.c
14137         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
14138         work when using a file Uri in *nix and windows.
14140         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
14141         GetReferencedAssemblies.
14143 2003-03-18  Dick Porter  <dick@ximian.com>
14145         * icall.c: Rename a couple of internal calls
14147         * threads.c: Set the thread state to Stopped when a thread exits.
14148         Fixes bug 39377.
14150 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
14152         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
14153         New icall.
14155         * object.c (mono_class_vtable): fix warning.
14157 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
14159         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
14161         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
14162         memory.
14163         (method_encode_clauses): Create exception info structures in the right
14164         order.
14165         (mono_reflection_setup_internal_class): Initialize supertypes field.
14167         * class.c object.c: Handle interfaces which implement other interfaces 
14168         correctly.
14170         * class.h class.c: Move the supertypes array initialization code into 
14171         a separate function so it can be used for dynamic types too. Also call
14172         it earlier, in mono_class_init(), since it can be used before the
14173         type is initialized.
14175 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14177         * Makefile.am:
14178         * assembly.c:
14179         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
14181         * appdomain.c:
14182         * appdomain.h:
14183         * marshal.c:
14184         * object.c: remove warnings.
14186 2003-03-13  Martin Baulig  <martin@ximian.com>
14188         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
14189         (MonoDebugLexicalBlockEntry): New types.
14191         * debug-mono-symfile.c
14192         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
14194 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14196         * process.c: ret can be any non-zero value accroding to MS doc.
14198 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
14200         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
14201         fixing a warning for a miss-used prototype, would have cause
14202         random memory corruption.
14204 2003-03-07  Martin Baulig  <martin@ximian.com>
14206         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
14207         getting really annoying ....
14209 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
14211         * reflection.c (fixup_method): added support for array methods.
14213 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
14215         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
14216         (pointed out by Michael Adams).
14218 2003-03-04  Dick Porter  <dick@ximian.com>
14220         * icall.c: Temporarily reverted the Double and Single ToString()
14221         change, because it broke nunit.
14223 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
14225         * object.h, threads.h: make include files compatible with C++
14226         (patch by Jerome Laban <jlaban@wanadoo.fr>).
14228 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
14230         * icall.c: Erased ToString helper functions for Double and Single.
14231         Now, that implementations ar all in managed code (Double and Single
14232         Formatters).
14234 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
14236         * appdomain.c: Added method for initializing the default context of
14237         a domain. Added internal call for getting the default context.
14238         * appdomain.h: Added context variable in MonoDomain struct.
14239         * domain.c: mono_domain_set also sets the default context of the domain
14240         * icall.c: Mapped internal method InternalGetDefaultContext.
14241         * object.c: mono_object_get_virtual_method returns always a remoting
14242         wrapper if the object is a transparent proxy.
14243         mono_runtime_invoke_array: when creating an object by calling the
14244         constructor, if the created object is a proxy, then the constructor should
14245         be called using the a remoting wrapper.
14247 2003-03-03  Dick Porter  <dick@ximian.com>
14249         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
14250         variable so it compiles on solaris.  Problem spotted by
14251         Christopher Taylor <ct@cs.clemson.edu>
14253 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14255         * appdomain.c:
14256         (get_info_from_assembly_name): don't leak value.
14258         * icall.c:
14259         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
14260         result.
14262 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
14264         * assembly.c: export mono_image_load_references ().
14265         * class.c: handle function pointers. mono_class_from_name() now
14266         supports nested type names directly.
14268 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
14270         * reflection.h reflection.c: Encode already created dynamic methods 
14271         and fields correctly as a DEF instead of a REF.
14273         * reflection.c: Get rid of the force_ref argument to 
14274         mono_image_typedef_or_ref since it was wrong in the first place.
14276         * string-icalls.c: add error checking to string constructors according
14277         to the MSDN docs.
14279         * reflection.c: Emit types in the order their TypeBuilders were 
14280         created. Previously, a new table index was assigned to each type before
14281         the tables were emitted. This was wrong because the signature blob
14282         might already refer to a type by its original table index.
14284 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
14286         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
14287         change.
14288         
14289 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14291         * Makefile.am: make assemblies dir have \ instead of / on windows.
14293 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
14295         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
14296         iterate over the NESTEDCLASS table using a linear search since the
14297         table is not guaranteed to be sorted by the secondary key.
14299         * class.c (mono_class_create_from_typedef): fixed up call to
14300         mono_metadata_nesting_typedef.
14301         
14302 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
14304         * marshal.c (mono_string_to_byvalstr): clear the memory as
14305         suggested by Jerome Laban <jlaban@wanadoo.fr>
14307 2003-02-26  Dick Porter  <dick@ximian.com>
14309         * process.c: Cope with padding in .rsrc blocks
14311 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
14313         * metadata.h: reverted the filter_len change, it breaks reflection
14314         
14315 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
14317         * metadata.h: added a new field to store the filter_len
14318         
14320 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
14322         * reflection.c: handle custom attributes for types and members
14323         created with Reflection.Emit (bug#38422).
14325 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
14327         * reflection.c: define RTSpecialName automatically for constructors for
14328         compatibility with MS.NET.
14330         * reflection.c (mono_reflection_create_runtime_class): initialize
14331         nested_in field of dynamically created classes.
14333 2003-02-22  Martin Baulig  <martin@ximian.com>
14335         * debug-mono-symfile.h: Incremented version number.
14337 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
14339         * object.h icall.c process.c: fix warnings.
14341 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
14343         * appdomain.h appdomain.c:
14344         (mono_domain_try_type_resolve): split the 
14345         name_or_tb argument into a name and a tb argument.
14346         (mono_domain_has_type_resolve): new function to check whenever the
14347         application has registered a TypeResolve event handler.
14348         
14349         * icall.c reflection.h reflection.c: move the type resolve logic into
14350         mono_reflection_get_type () so it will be invoked when 
14351         Assembly::GetType () is called.
14353         * reflection.c:
14354         (mono_reflection_get_type): renamed to get_type_internal.
14355         (mono_reflection_get_type): fixed type name generation so it works 
14356         for nested types too.
14357         (mono_reflection_get_type): call has_type_resolve () to avoid the 
14358         costly type name generation if there is no resolve event handler.
14360 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
14362         * class.c, image.c: load exported types from file references.
14364 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
14366         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
14367           used to cache the managed methods used to create proxies and make 
14368           remote invocation of methods.
14369         * class.h: Added in MonoVTable a flag to indicate that a class needs 
14370           to be remotely created.
14371         * object.c: Modified the method mono_class_vtable(). It now initializes 
14372           the remote flag of the vtable. Modified mono_object_new_specific(), 
14373           so now it checks the remote flag.
14374         * icall.c: Added a couple of internal methods, one for enabling instance 
14375           creation interception for a type, and one for creating objects bypassing
14376           the remote check.
14378 2003-02-18  Martin Baulig  <martin@ximian.com>
14380         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
14381         New interncall to get a method's metadata token.
14383         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
14384         New interncall for the debugger.
14386 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
14388         * class.c (mono_class_setup_vtable): allocate supertype array
14390 2003-02-18  Martin Baulig  <martin@ximian.com>
14392         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
14394 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14396         * reflection.c:
14397         (assembly_name_to_aname): jump over unknown properties (i've found
14398         something like: 'type, assembly, version=xxx, custom=null, public...',
14399         so now will ignore custom=null and still get the rest of the values).
14401 2003-02-17  Dick Porter  <dick@ximian.com>
14403         * threads.c: Have Thread.Start() wait for a semaphore to signal
14404         that the thread has set up all its local data.  This fixes bug
14405         34323, where Abort() raced the new thread's TLS data.
14407         Also removes the handle_store() call from start_wrapper, because
14408         threads are now always created suspended and there is no longer a
14409         race between the parent and child threads to store the info.
14411 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
14413         * image.c: explain the #- heap issue in a message, hopefully
14414         avoiding FAQs on mono-list.
14416 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14418         * icall.c:
14419         (GetEntryAssembly): if the domain has not invoked
14420         AppDomain.ExecuteAssembly yet, return the assembly of the default
14421         AppDomain.
14423 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
14425         * class.c (mono_ldtoken): make it work in dynamic assemblies.
14427 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
14429         * metadata.c, reflection.c: simple speedup to type hash
14430         and equals code.
14432 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
14434         * image.c, image.h, class.c, assembly.c: move module loading
14435         to MonoImage. When loading metadata, consider alignemnet from
14436         the start of metadata, not from the metadata address in memory.
14438 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
14440         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
14441         AssemblyBuilder objects. Factored out custom attribute creation into
14442         a separate function.
14443         (create_custom_attr): new function to create custom attributes.
14445 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
14447         * Makefile.am: Got tired of typing the full pathname to pedump.
14448         Until there is another option, am installing this.
14450 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
14452         * class.c (class_compute_field_layout): always set field->parent 
14453         (mono_ldtoken): use mono_defaults.fieldhandle_class;
14455 2003-02-11  Dick Porter  <dick@ximian.com>
14457         * threads-types.h:
14458         * monitor.c: Rewrote Monitor, making lock much faster and
14459         Pulse/Wait work as specified.  Also uses much fewer handles, and only
14460         creates them as needed.
14462         * exception.c: Added SynchronizationLockException
14464         * threads.c: Deleted old Monitor implementation.  The new one is
14465         in a new file.
14467 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
14469         * class.c: handled TypedReference type code. Set the correct size for
14470         class data. Setup interface_offsets for interface classes, too.
14472 2003-02-09  Martin Baulig  <martin@ximian.com>
14474         * debug-mono-symfile.h: Reflect latest symbol writer changes.
14476 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
14478         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
14479         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
14480         * object.c: fixed mono_object_get_virtual_method () for interfaces.
14481         * verify.c: check for code that runs after the end of the method.
14483 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
14485         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
14486         "System.Math::Round2".
14487         * sysmath.h: Added Floor, Round and Round2 definitions.
14488         * sysmath.c: Modified certain functions that were not 100% compliant
14489         with MS.NET (math precision) and added the implementation of Floor,
14490         Round and Round2.
14492 2003-02-07  Martin Baulig  <martin@ximian.com>
14494         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
14496 2003-02-07  Martin Baulig  <martin@ximian.com>
14498         * debug-mono-symfile.c: Reflected latest symwriter changes.
14499         (mono_debug_create_mono_symbol_file): Removed.
14500         (mono_debug_open_mono_symbol_file): Take an argument which
14501         specifies whether to create a dynamic symbol file.
14503 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
14505         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
14507 2003-02-05  Martin Baulig  <martin@ximian.com>
14509         * reflection.c (mono_image_build_metadata): Make this public,
14510         protect it against being called multiple times, don't create
14511         resources and don't build the compressed metadata here.
14512         (mono_image_create_pefile): Do this here.
14514         * icall.c
14515         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
14517 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14519         * socket-io.c: fixed bug #36322.
14521 2003-02-06  Piers Haken <piersh@friskit.com>
14523         * appdomain.[ch]:
14524         * class.h:
14525         * debug-mono-symfile.c:
14526         * icall.c:
14527         * loader.c:
14528         * mono-config.c:
14529         * monosn.c:
14530         * reflection.c:
14531         * socket-io.c: warning cleanups
14533 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
14535         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
14536         function. works like remoting invoke, but does a check for the Proxy first.
14538 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
14540         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
14542 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
14544         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
14545         array of pointers.
14546         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
14547         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
14549         * object.c (mono_store_remote_field_new): used by the new jit
14550         instead of mono_store_remote_field
14551         (mono_load_remote_field_new): used by the new jit
14552         instead of mono_load_remote_field
14554 2003-02-05  Patrik Torstensson
14556         * appdomain.c: changed unload to take the domain id instead
14557         of domain
14558         
14559         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
14562 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14564         * appdomain.c: don't look for assemblies in ApplicationBase if
14565         PrivateBinPathProbe is set.
14567 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14569         * object.c: make the first argument in main_args contain the absolute
14570         path to the assembly. Fixes bug #37511.
14572 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14574         * icall.c: get correct UTC offset for countries not using daylight
14575         time saving. Fixes bug #30030.
14577 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14579         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
14580         and 1 are the family).
14582 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
14584         * icall.c (ves_icall_InternalExecute): removed wrong assertion
14586         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
14588 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
14590         * reflection.c: added support for SignatureHelper tokens, which is
14591         needed by the Calli opcode.
14593         * reflection.h: track changes to SignatureHelper class.
14595         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
14597 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14599         * appdomain.c: fixed loading assemblies from PrivateBinPath.
14601 2003-02-03  Patrik Torstensson
14602         * appdomain.[c|h], domain.c : 
14603          - Added support for getting a domain via domain id
14604          - Support for setting and getting domain from System.AppDomain 
14605            (used in cross appdomain channel)
14606          - Added support for get/set for a MonoAppContext on a thread 
14607            (Context class in System.Runtime.Remoting.Contexts),
14608          - Removed hack in Get/SetData and ExecuteAssembly.
14609         
14610         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
14611         the managed world to get control when a proxy is created.
14613         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
14614         
14615 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
14617         * icall.c
14618         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
14619         Populate the codebase field as well.
14621 2003-02-02  Martin Baulig  <martin@ximian.com>
14623         * debug-mono-symfile.c
14624         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
14625         (mono_debug_symfile_add_method): Allow interncalls.
14627 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14629         * icall.c: throw parse exception if strtod fails or the string is empty.
14631 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
14633         * marshal.c: handle object type separately from defined
14634         class types.
14636 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
14638         * marshal.c: handle NATIVE_LPSTR for strings when it's
14639         explicitly specified.
14641 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
14643         * reflection.c, reflection.h, icall.c: setup the reflection
14644         handle cache for ModuleBuilders and AssemblyBuilders.
14646 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
14648         * reflection.c (reflection_methodbuilder_to_mono_method): set
14649         pinvoke flag
14651 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14653         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
14655 2003-01-29  Dick Porter  <dick@ximian.com>
14657         * threads.c: No need for the fake_thread kludge now that Thread
14658         doesn't run a class constructor
14659         
14660 2003-01-29  Dick Porter  <dick@ximian.com>
14662         * threads.c: Use g_direct_hash instead of the rather bogus
14663         g_int_hash
14665 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
14667         * marshal.c (mono_marshal_get_native_wrapper): add check for null
14668         (fix pinvoke12.exe)
14669         (mono_marshal_get_struct_to_ptr): generate valid IL code
14670         (mono_marshal_get_ptr_to_struct): generate valid IL code
14671         (*): correctly set sig->pinvoke, we need to memdup the signature
14672         to do that
14674 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
14676         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
14677         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
14679 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
14681         * profiler.c: provide more callers information.
14683 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
14685         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
14687         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
14689         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
14691 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
14693         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
14694         exception instead of going into an infinite loop on dates which it 
14695         can't yet handle.
14697         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
14698         out-of-range exception if needed.
14700         * class.c (mono_class_setup_vtable): allow a virtual method to provide
14701         an implementation for an interface method and to override an inherited
14702         method at the same time. 
14703         Imagine a scenario when a virtual method is used to override a
14704         virtual abstract method in a parent class, and this same method 
14705         provides an implementation for an method inherited from an interface. 
14706         In this case, the interface resolution code will set im->slot, which 
14707         means that the virtual method override pass will skip this method 
14708         which means a pointer to the abstract method inherited from the parent
14709         will remain in the vtable of this non-abstract class.
14711         * class.c: (mono_class_setup_vtable): continue search for a real 
14712         method if only an abstract method is found.     
14714 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
14716         * reflection.c: add size to encoding for ByValStr and ByValArray
14717         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
14719 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
14721         * class.c (mono_class_setup_vtable): pass the override info as an
14722         argument.
14724         * class.c (mono_class_setup_vtable): set the slot of overriding methods
14725         correctly.
14726         
14727         * reflection.c (ensure_runtime_vtable); add support for method 
14728         overrides.
14729         
14730 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
14732         * reflection.c (resolution_scope_from_image): Hack to work to work with
14733         dynamic assemblies.
14735         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
14736         added a 'force_ref' argument to force this function to allways return 
14737         a TypeRef. This is needed by mono_image_get_memberref_token ().
14738         
14739 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
14741         * reflection.c (mono_image_get_type_info): interfaces really don't have
14742         a parent.
14744         * reflection.c (mono_image_basic_init): fill out missing fields of
14745         image structure.
14747         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
14748         dynamic assemblies. This is required so dynamic assemblies show up in
14749         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
14750         Type::GetType() etc. This is consistent with MS behaviour.
14752         * image.c image.h reflection.c: add newly created classes to the name 
14753         cache so mono_class_get () will find them.      
14755 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
14757         First part of changes to get IKVM.NET running under mono.
14758         
14759         * appdomain.h, appdomain.c: added new function 
14760         mono_domain_try_type_resolve() which will emit TypeResolve events. 
14761         This function will call AppDomain::DoTypeResolve to do the actual work.
14763         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
14764         moved existing code dealing with dynamic tokens to a new function 
14765         called mono_reflection_lookup_dynamic_token (). This function will 
14766         raise TypeResolve events when appropriate. Since reflection.c is not 
14767         part of libmetadata, a new hook function called 
14768         mono_lookup_dynamic_token() is added to class.c which will call this.
14770         * assembly.h assembly.c: make the invoke_load_hook function public,
14771         so it can be called for dynamic assemblies.
14773         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
14775         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
14776         type isn't found.
14778         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
14779         MonoGHashTable, since it contains pointers to objects which the GC 
14780         needs to track.
14782         * assembly.c (search_loaded): remove unused variable.
14783         
14784 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
14786         * object.c: fixed issue exposed by gcc-generated IL programs
14787         that use RVA data for pointers.
14789 2003-01-25  Martin Baulig  <martin@ximian.com>
14791         * threads.c (start_wrapper): Moved the initialization of
14792         `start_func' above the mono_new_thread_init() call to which we
14793         pass it as argument.
14795 2003-01-24  Martin Baulig  <martin@ximian.com>
14797         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
14798         the MonoThread pointer.
14800 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
14802         * icall.c: Rename `PowImpl' to Pow.
14804 2003-01-23  Dick Porter  <dick@ximian.com>
14806         * threads.c (start_wrapper): Create a Thread object if needed, so
14807         the Main() thread can do the class initialisation in a subthread
14808         that has been set up to allow managed code execution.
14810         Pass the thread ID instead of the MonoThread pointer to the thread
14811         start and attach callbacks.  This change is required, because the
14812         jit thread start callback must be called _before_ the Thread
14813         object can be created.
14814         
14815         (mono_thread_init): Removed much object creation code that is no
14816         longer needed.  No managed code is called from here now.
14818         * object.c (mono_runtime_exec_managed_code): Create a subthread
14819         for Main, and call back to the runtime to use it.
14820         Set the exit code when Main exits.
14822         * gc.c: Make sure domain finalisation happens in a subthread.
14823         Re-enable threaded GC, fixing bug 31333 (again).
14825         * environment.c: System.Environment internall calls (so far just
14826         ExitCode is here, the others are still in icall.c)
14828         * appdomain.c (mono_runtime_cleanup): All threads running managed
14829         code should have finished before mono_runtime_cleanup() is
14830         reached, so no need to clean up threads.
14832 2003-01-22  Martin Baulig  <martin@ximian.com>
14834         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
14835         `gpointer func' arguments.      
14836         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
14837         but added `MonoThread *thread' argument.
14838         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
14840         * threads.c (mono_new_thread_init): Added `gpointer func' argument
14841         and pass it to the mono_thread_start_cb callback.
14842         (mono_install_thread_callbacks): New public function to install a
14843         set of callbacks which are set by the debugger.
14844         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
14846 2003-01-22  Martin Baulig  <martin@ximian.com>
14848         * Makefile.am: Install debug-mono-symfile.h.
14850 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
14852         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
14854 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
14856         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
14857         * class.c (mono_ptr_class_get): correctly set access levels of pointers
14858         (mono_array_class_get): correctly set access levels of arrays
14860 2003-01-20      Patrik Torstensson
14861         * image.h (MonoAssemblyName): changed major, minor, build, revision
14862         from signed to unsigned.
14864 2003-01-20  sean kasun <skasun@azstarnet.com>
14866         * reflection.c (load_cattr_value): Now this handles
14867         MONO_TYPE_SZARRAY.  Fixes bug #35629
14869 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
14871         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
14872         integer value
14874 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14876         * decimal.c: fixed bug #26056.
14878 2003-01-17  Martin Baulig  <martin@ximian.com>
14880         * gc.c: Raise an ExecutionEngineException instead of using g_error().
14882 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14884         * exception.[ch]:
14885         (mono_get_exception_type_initialization): new function.
14887         * object.c: throw a TypeInitializationException when an exception is
14888         thrown invoking the class constructor.
14890 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14892         * reflection.c: fixed attribute reading.
14894 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14896         * icall.c:
14897         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
14898         provided, look for the type in the calling assembly and then in
14899         mscorlib; if the assembly name is provided, only try that one.
14901 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
14903         * object.c: register the vtable before there is a chance it's
14904         queried again recursively.
14906 2003-01-13  Duncan Mak  <duncan@ximian.com>
14908         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
14909         gc-internal.h. 
14910         
14911 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
14913         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
14915 2003-01-11  Martin Baulig  <martin@ximian.com>
14917         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
14918         this to 20 for the release.
14920 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
14922         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
14924         * loader.c (mono_method_get_marshal_info): bug fix
14926         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
14927         structures with explicit layout
14929 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
14931         * profiler.c: made the output more readable (and sorted). 
14932         Added caller information for the allocation profiler.
14934 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
14936         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
14938 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14940         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
14941         to get value types.
14942         
14943 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
14945         * object.c, profiler.h, profiler.c, profiler-private.h:
14946         Added object allocation profiler.
14948 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
14950         * reflection.h, reflection.c: handle global methods.
14951         Compress blob entries.
14953 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
14955         * marshal.c: fix compilation.
14957 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
14959         * loader.c (mono_method_get_marshal_info): impl.
14961         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
14963 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14965         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
14966         for reference types.
14968 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
14970         * loader.c: fixed off by one error in loaded parameter names.
14972 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
14974         * marshal.c (mono_marshal_get_icall_wrapper): like
14975         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
14976         instead of a MonoMethod.
14978 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14980         * decimal.c: fixed bug #36537.
14982 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
14984         * marshal.c: throw a missing method exception if a
14985         P/Invoke method is not found.
14987 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
14989         * icall.c: allow a null this for constructors.
14991 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
14993         * icall.c: raise the proper exceptions if the arguments to the
14994         internal Invoke are incorrect.
14996 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
14998         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
15000 2003-01-03  Martin Baulig  <martin@ximian.com>
15002         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
15004 2002-12-31  Martin Baulig  <martin@ximian.com>
15006         * debug-mono-symfile.c: Completely rewrote the type section.
15007         Instead of using individual malloc()ed fields, we use one big
15008         continuous memory area and offsets into this area.
15009         See the comments in the source code for details.
15011 2002-12-30  Martin Baulig  <martin@ximian.com>
15013         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
15015 2002-12-30  Martin Baulig  <martin@ximian.com>
15017         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
15018         line number table in this data blob instead of using an external
15019         pointer.
15021 2002-12-28  Martin Baulig  <martin@ximian.com>
15023         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
15025 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
15027         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
15028         as a boxed return type.
15030 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
15032         * appdomain.c
15033         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
15034         g_build_filename to properly get separators on the filename created.
15036         * object.h: Small change, introduce MonoMarshalByRefObject to
15037         track the layout of that structure in the C# universe as we make
15038         changes there.
15040 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
15042         * object.c: removed assert to allow static fields on interfaces.
15043         * loader.c: a TypeSpec may be used for any type, not just arrays.
15045 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
15047         * class.c, class.h: added mono_class_array_element_size ().
15048         Ignore static methods in interfaces.
15050 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15052         * threads.c: fixed the build under cygwin.
15054 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
15056         * reflection.c: handle nullref constants. Allocate keys for
15057         reflection handles with the GC.
15059 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
15061         * threads.c, threads.h: added mono_thread_get_abort_signal()
15062         to get a suitable signal for thread abort.
15064 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
15066         * metadata.c: fix handling of ExportedType table.
15068 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15070         * icall.c: added WriteWindowsDebugString internal call.
15072 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15074         * reflection.h: added fields to match C# implementation.
15076 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15078         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
15080 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
15082         * gc.h, gc-internal.h: Rename header for GC internal calls to
15083         gc-internal.h from gc.h as to not clash with Boehm GC having its
15084         header installed as <gc.h> in outside include paths.
15085         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
15086         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
15088 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15090         * icall.c: assign minor, build and revision in FillName.
15092 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
15094         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
15095         Added support for running code generated by Reflection.Emit.
15097 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15099         * appdomain.c: check for NULL argument in LoadFrom.
15101 2002-12-10  Dick Porter  <dick@ximian.com>
15103         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
15105 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15107         * appdomain.c: fix buglet when building exe file name.  Handle full
15108         assembly name (needed after latest changes to AssemblyName).
15109         * image.c:
15110         (mono_image_close): free some hashtables.
15112 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
15114         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
15115         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
15116         on some systems (redhat 7.3) 
15118 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
15120         * threads.c: delete the critical section of a sync block,
15121         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
15123 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
15125         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
15127 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15129         * appdomain.[ch]: handle the assembly preload event to try loading the
15130         assemblies using the paths we have in the current domain.
15132         * assembly.[ch]: created an assembly preload hook that is called to try
15133         loading the assembly by other means that the ones provided here.
15135         * domain.c: initialize the domain search path.
15137         From now on, assemblies (TODO: except corlib and System) are loaded
15138         according to these rules when using mono_assembly_load ():
15140                 1. It tries to load the assembly from the ApplicationBase
15141                 of the current domain appending .dll and .exe (TODO: have to
15142                 try loading from name/name.dll and name/name.exe).
15144                 2. It tries the search path specified in PrivateBinPath for the
15145                 current domain (if any).
15147                 3. Previous behavior.
15149 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
15151         * icall.c: implemented GetInterfaceMap() related icall.
15152         * domain.c, loader.h: load MethodInfo in mono_defaults.
15154 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
15156         * gc.c: disable the finalizer thread for now, untill all the issues
15157         with it are resolved.
15159 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
15161         * string-icalls.c: handle embedded nulls in string ctor when the
15162         length is specified.
15164 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
15166         * class.c: look for explicit interface implementation in parent
15167         classes, too.
15169 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
15171         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
15173 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
15175         * gc.c: protect handles with a critical section.
15177 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15179         * icall.c:
15180         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
15181         parameters. If no assembly specified, try getting the type from all
15182         the assemblies in the current domain, else, load the assembly and get
15183         the type from it.
15185 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15187         * marshal.c: applied patch from Aleksey Demakov that fixes
15188         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
15190 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15192         * icall.c: fixed get_location.
15194 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
15196         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
15197         declarations to make it work with older gcc. 
15199         * loader.c (mono_get_method): set signature->pinvoke for native calls
15201 2002-11-20  Dick Porter  <dick@ximian.com>
15203         * threads.c (mono_thread_init): Set the main thread's handle
15205 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
15207         * gc.c: allow compilation without GC support. Changed to match the
15208         mono coding style.
15210 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
15212         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
15214 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
15216         * reflection.c: set a public key token on the core assemblies.
15218 2002-11-18  Dick Porter  <dick@ximian.com>
15220         * threads.c: Split out some thread initialisation so that other
15221         files can set the start callback function.
15223         * gc.c: Run finalisers in a separate thread, to avoid stack
15224         overflow.  Fixes bug 31333.
15226         * appdomain.c: Set up GC finalisation thread.
15228         * reflection.c: 
15229         * object.c: 
15230         * domain.c: Use gc.h macros for GC_malloc
15231         
15232 2002-11-15  Dick Porter  <dick@ximian.com>
15234         * threadpool.c: 
15235         * threads.c:
15236         * appdomain.c: Removed mono_runtime_init_with_attach(),
15237         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
15238         merging the extra parameter with the existing function.  Removed
15239         unneeded code in mono_thread_attach().
15241 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
15243         * image.c (mono_image_loaded_by_guid): a method to get loaded
15244         images by guid. 
15245         (load_metadata_ptrs): we store the guid as string.
15247 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
15249         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
15251         * metadata.c (mono_guid_to_string): imported method form Zoltan
15252         Varga (slightly modified)
15254         * assembly.c (mono_assembly_open): load precompiled code
15256         * loader.h (MonoMethod): we store the method token for use in the
15257         aot compiler. 
15259 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15261         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
15262         the hook function called when an assembly is loaded.
15263         
15264         * domain.c: Modified file.
15265         (mono_domain_assembly_load): removed hash table insertion of assemblies.
15267         Fixes bug #33196.
15269 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
15271         * reflection.c: Map PEFileKind to the value expected by the WinNT
15272         image loader. 
15274 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15276         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
15277         Read until the buffer is filled completely.
15279 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15281         * icall.c: implemented MonoType.InternalGetEvent ().
15283 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15285         * appdomain.c: implemented InitAppDomainSetup. Delayed
15286         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
15287         the entry_assembly.
15289         * assembly.c: base_dir is now an absolute path ending with
15290         G_DIR_SEPARATOR.
15292         * icall.c: modified get_location according to the above changes.
15294         * object.c: init AppDomain.SetupInformation for the default domain after
15295         we have the entry assembly.
15297         * domain.c: when unloading a domain, setup = NULL.
15299 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
15301         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
15303 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
15305         * object.h, object.c: introduced mono_object_get_virtual_method ()
15306         to lookup the method invoked on an object when a callvirt is done on
15307         a method.
15308         * icall.c: make MethodInfo::Invoke() always do a virtual call.
15310 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15312         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
15313         current domain when loaded an assembly and failed to load it.
15315         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
15317 2002-10-31  Dick Porter  <dick@ximian.com>
15319         * icall.c: 
15320         * file-io.h: 
15321         * file-io.c: Return the error status in a parameter, as the
15322         GetLastError() value has long since been blown away if we try and
15323         look it up in a subsequent internal call invocation.  Delete the
15324         GetLastError() internal call, because it's useless.
15326 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
15328         * class.[ch]: added cast_class to fix bug 29517
15330 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
15332         * marshal.c: create valid IL code in the filter clause:
15333         the new JIT is less forgiving:-)
15335 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15337         * icall.c: removed get_property internal call.
15339 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
15341         * appdomain.h domain.c: Added an ID to appdomains.
15342         
15343         * threads.c threads.h icall.c: Implement icall
15344         Thread:GetDomainID(), and remove unused icall 
15345         CurrentThreadDomain_internal.
15347 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15349         * icall.c: Don't recurse through the base types in GetConstructor.
15350         Fixes bug #32063. 
15352 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
15354         * mempool.h, mempool.c: added mono_mempool_empty() and
15355         mono_mempool_stats().
15357 2002-10-23  Dick Porter  <dick@ximian.com>
15359         * file-io.c: 
15360         * file-io.h: 
15361         * icall.c: Added MonoIO.GetFileType internal call
15363 2002-10-17  Dick Porter  <dick@ximian.com>
15365         * appdomain.c (mono_runtime_cleanup): Don't signal the async
15366         delegate semaphore before waiting for all threads to finish,
15367         because new threads can also call async delegates.  Fixes bug
15368         32004.
15370         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
15371         of 3 seconds, in case another async job is queued.  (This part is
15372         needed because the bug fix reintroduced the 3s exit lag.)  This
15373         makes the mono_runtime_shutdown flag superfluous.
15375 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
15377         * reflection.c: include ehader size in method section headers.
15378         Really check for suplicated modules entries.
15380 2002-10-17  Martin Baulig  <martin@gnome.org>
15382         * debug-mono-symfile.c: Added back support for locals.
15384 2002-10-14  Martin Baulig  <martin@gnome.org>
15386         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
15387         MONO_TYPE_VOID.
15389 2002-10-14  Martin Baulig  <martin@gnome.org>
15391         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
15392         mono_class_get() instead of looking in the class cache. 
15394 2002-10-13  Martin Baulig  <martin@gnome.org>
15396         * debug-mono-symfile.c: Set version number to 28, include the
15397         signature in method names.
15399 2002-10-13  Martin Baulig  <martin@gnome.org>
15401         * debug-mono-symfile.h: Set version number to 27.
15403 2002-10-11  Martin Baulig  <martin@gnome.org>
15405         * gc.c: Don't register/unregister NULL pointers as disappearing links.
15407 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
15409         * metadata.c, metadata.h: added helper function to allocate signatures.
15411 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15413         * icall.c: added internal call to get the location of machine.config.
15415 2002-10-08  Martin Baulig  <martin@gnome.org>
15417         * debug-mono-symfile.c: Ignore classes with a pending init for the
15418         moment.
15420 2002-10-03  Dick Porter  <dick@ximian.com>
15422         * threads.c: Freebsd pthread_t is a pointer
15424 2002-10-03  Dick Porter  <dick@ximian.com>
15426         * socket-io.c: Implemented GetHostName_internal
15428 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15430         * mono-config.c:
15431         (mono_config_parse_file): don't leak the text.
15433 2002-10-02  Martin Baulig  <martin@gnome.org>
15435         * debug-mono-symfile.c: Added support for methods.
15437 2002-10-01  Martin Baulig  <martin@gnome.org>
15439         * debug-mono-symfile.c: Don't emit methods and line numbers for
15440         the dynamic symbol file, just write the type table.  We can easily
15441         have an external helper program which creates a symbol file for an
15442         IL file.        
15444 2002-10-01  Dick Porter  <dick@ximian.com>
15446         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
15447         Only add the handle to the cleanup array when we're about to
15448         launch the thread.  Bug 31425 deadlocked when the test was run on
15449         mono under w32.
15451 2002-10-01  Martin Baulig  <martin@gnome.org>
15453         * debug-mono-symfile.c: Added support for properties.
15455 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
15457         * reflection.c: unaligned store fix from Mark Crichton
15458         <crichton@gimp.org>.
15460 2002-09-27  Martin Baulig  <martin@gnome.org>
15462         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
15463         New interncall.
15465 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
15467         * assembly.h, assembly.c: use a sane API to hook into the assembly
15468         loading process instead of a useless special-purpouse hack
15469         (ngen needs a hook, too, for example).
15471 2002-09-27  Dick Porter  <dick@ximian.com>
15473         * threads.c (mono_thread_init): Call GetCurrentProcess() so
15474         io-layer can set up some process handle info.  Not needed on w32,
15475         but doesn't hurt either.
15477         * process.c: Pass the program name in the second parameter to
15478         CreateProcess, so the path is searched.  Include the working
15479         directory. Implemented process name, process enumeration, and some
15480         process detail internal calls.
15481         
15482         * icall.c: Added internal calls for process lookup, and some
15483         process details
15485 2002-09-26  Martin Baulig  <martin@gnome.org>
15487         * assembly.c (mono_install_open_assembly_hook): New global
15488         function to install a function to be invoked each time a new
15489         assembly is loaded.
15490         (mono_assembly_open): Run this callback function if set.
15492         * debug-mono-symfile.c: Put back line numbers for the dynamic
15493         symbol file and also record the .il file as source file.  This
15494         allows us to install the temporary symbol file as `file.dbg' just
15495         like a compiler-generated one.
15497 2002-09-26  Nick Zigarovich <nick@chemlab.org>
15499         * Corrected typo in gc.c (BOHEM vs BOEHM).
15501 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15503         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
15504         GetProperties. Also avoid calling g_slist_length in GetProperties and
15505         GetMethods.
15507 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
15509         * reflection.c: avoid unaligned stores (bug spotted by
15510         Mark Crichton  <crichton@gimp.org>).
15512 2002-09-25  Martin Baulig  <martin@gnome.org>
15514         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
15515         instead of guint64 for addresses and added prologue/epilogue info.
15517 2002-09-25  Martin Baulig  <martin@gnome.org>
15519         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
15520         store line number info.  For the dynamic symbol file, we only need
15521         to provide the JIT generated dynamic line number info for the dynamic
15522         symbol file.
15524 2002-09-25  Martin Baulig  <martin@gnome.org>
15526         * debug-mono-symfile.h: Incremented version number.
15528 2002-09-24  Martin Baulig  <martin@gnome.org>
15530         * class.c (mono_debugger_class_init_func): New global function
15531         pointer variable.
15532         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
15533         call it.
15535         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
15536         function.  This is called via the mono_debugger_class_init_func
15537         hook to add all types to the dynamic type table.
15538         (ves_icall_MonoDebugger_GetType): New interncall to get a class
15539         from its metadata token.
15541         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
15542         New interncall for the debugger.
15544 2002-09-24  Nick Drochak <ndrochak@gol.com>
15546         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
15547         before using it in case it is null.
15548         
15549 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
15551         * metadata.c: allow custom modifiers in local var signatures
15552         (bug spotted by Zoltan Varga).
15554 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
15556         * class.c: deal with the <Module> class that may have a NULL vtable.
15557         Eliminate warnings.
15559 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
15561         * image.c, image.h: more strong name helpers.
15562         * monosn.c: more work: convert pem keys to cryptoapi format.
15564 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
15566         * string-icalls.c: speedup IndexOf.
15568 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
15570         * icall.c: updates from Zoltan.2.Varga@nokia.com.
15572 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
15574         * icall.c: cleanup: use mono_object_domain ().
15576 2002-09-23  Martin Baulig  <martin@gnome.org>
15578         * debug-mono-symfile.c: Improved type support.
15580 2002-09-22  Martin Baulig  <martin@gnome.org>
15582         * debug-mono-symfile.c: Added support for reference types and strings.
15584 2002-09-22  Martin Baulig  <martin@gnome.org>
15586         * debug-mono-symfile.c: Started to work on the type table.
15588 2002-09-21  Martin Baulig  <martin@gnome.org>
15590         * debug-mono-symfile.c: Largely reworked the symbol table format.
15591         The symbol table is now incrementally updated each time a new
15592         method is added.  We're now also using our own magic and version
15593         so that you don't need to recompile all your classes if the
15594         dynamic table changes.
15595         (mono_debug_update_mono_symbol_file): Removed.
15596         (mono_debug_symfile_add_method): New function to add a method.
15598 2002-09-21  Martin Baulig  <martin@gnome.org>
15600         * icall.c
15601         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
15602         New interncall.
15604         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
15605         New interncall to get a method from its metadata token.
15607 2002-09-21  Martin Baulig  <martin@gnome.org>
15609         * debug-mono-symfile.c: Create type table.
15611 2002-09-20  Martin Baulig  <martin@gnome.org>
15613         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
15615 2002-09-20  Martin Baulig  <martin@gnome.org>
15617         * debug-mono-symfile.c: Provide information about params and locals.
15619 2002-09-20  Martin Baulig  <martin@gnome.org>
15621         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
15622         New interncall.
15624         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
15625         interncall to get a method from its metadata token.
15627 2002-09-20  Martin Baulig  <martin@gnome.org>
15629         * debug-mono-symfile.c: Added a few checks for method->header
15630         being non-NULL.  This should never happen, but for the moment
15631         let's use a g_warning() rather than a g_assert().
15633 2002-09-19  Mark Crichton  <crichton@gimp.org>
15635         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
15636         even if support for it isn't present.  Added an #ifdef to fix this.
15638         * socket-io.c: Added checks back for Solaris support.
15640 2002-09-19  Martin Baulig  <martin@gnome.org>
15642         * debug-mono-symfile.c (read_string, write_string): Reflect latest
15643         changes in the symbol file format.
15645 2002-09-18  Martin Baulig  <martin@gnome.org>
15647         * debug-mono-symfile.c: Set version number to 21.
15649 2002-09-18  Dick Porter  <dick@ximian.com>
15651         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
15652         on netbsd.  Fixes bug 30051.
15654 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15656         * reflection.c:
15657         (set_version_from_string): little fix.
15659 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
15661         * monosn.c, Makefile.am: added strong name utility.
15662         * reflection.h, reflection.c: implemented delayed signing,
15663         locale, version and hash id assembly attributes.
15665 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
15667         * loader.c, metadata.c: load param attributes in signatures.
15669 2002-09-16  Martin Baulig  <martin@gnome.org>
15671         * debug-mono-symfile.c: Added string table with all method names.
15673 2002-09-14  Martin Baulig  <martin@gnome.org>
15675         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
15676         fast method lookup.
15678 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
15680         * reflection.c: record the public key token of referenced assemblies.
15682 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
15684         * image.c, image.h: added functions to get the strong name and the
15685         public key of an assembly.
15686         * pedump.c: use them.
15688 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
15690         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
15692 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
15694         * marshal.c (mono_marshal_get_managed_wrapper): Added
15695         MONO_TYPE_BOOLEAN 
15697 2002-09-11  Martin Baulig  <martin@gnome.org>
15699         * gc.c: Call GC_unregister_disappearing_link() on all links when
15700         finalizing them, this is necessary to aviod a crash in boehm's
15701         finalize handler.
15703 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
15705         * gc.c: handle GetTarget for finalized objects spotted and fixed by
15706         nick@chemlab.org.
15708 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
15710         * icall.c: implemented MonoType::Module.
15711         * reflection.c, reflection.h: mono_module_get_object () from
15712         Tomi Pakarinen <tomi.pakarinen@welho.com>.
15714 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
15716         * icall.c: ignore overridden methods in GetMethods ().
15717         Fix for FieldInfo::SetValue().
15718         * object.c: handle float/double in runtime invoke.
15720 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
15722         * object.c: allow a constructor to be called again on an object.
15724 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
15726         * class.h, class.c: move field layout code to it's own function and
15727         export it. Get an interface id earlier. Move fields in MonoClass
15728         so they are more cache friendly and align the bitfields.
15729         * loader.c: temporary handle get_param_names() for a runtime method.
15730         * reflection.c, reflection.h: more code to handle runtime creation of
15731         types.
15733 2002-09-09  Martin Baulig  <martin@gnome.org>
15735         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
15736         signature with the pinvoke field being set for the actual call.
15738 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
15740         * icall.c: removed some unused icalls. Start of map of glib charsets
15741         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
15743 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
15745         * debug-helpers.c: break infinite loop (found and fixed by
15746         Holger Arnold <harnold@gmx.de>).
15748 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
15750         * icall.c: target may be null in create_delegate.
15752 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
15754         * marshal.c: handle a boolean return type.
15756 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
15758         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
15760 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
15762         * gc.c: fix weakreferences.
15764 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
15766         * icall.c: added icall to get default codepage.
15768 2002-09-03  Dick Porter  <dick@ximian.com>
15770         * threads.h: 
15771         * threads.c: Use MonoThread instead of MonoObject where
15772         apropriate.
15774         Store running thread objects in a hash table, so that we have all
15775         the info to hand when waiting for them to finish
15776         (means we don't need OpenThread() any more, so mingw builds should
15777         be fully functional again.)
15779         * verify.c:
15780         * object.h: Added thread ID to MonoThread
15782 2002-09-03  Martin Baulig  <martin@gnome.org>
15784         * icall.c (System.Reflection.Assembly::get_location): New interncall.
15786 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15788         * icall.c: fixed leak in get_temp_path. Thanks lupus.
15790 2002-09-03  Martin Baulig  <martin@gnome.org>
15792         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
15793         argument to store the end address of the disassembled instruction.
15795         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
15796         here from debug-symfile.h.
15797         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
15798         JIT into this struct.
15799         (MonoSymbolFile): Added `char *image_file' field.
15800         (MonoDebugGetMethodFunc): Removed.
15801         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
15802         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
15803         (mono_debug_find_method): New method.
15805         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
15806         create a full symbol file.
15807         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
15808         and static symbol files.
15809         (mono_debug_find_method): The symbol file keeps an internal method hash,
15810         call this to get a MonoDebugMethodInfo from a MonoMethod.
15812         * debug-symfile.[ch]: Removed.
15814 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
15816         * image.c (do_mono_image_open): Remove linker version check.
15818 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
15820         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
15821         wrappers for instance methods.
15822         
15823 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15825         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
15827 2002-08-28  Dick Porter  <dick@ximian.com>
15829         * Makefile.am: Export HOST_CC for w32 builds
15831 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
15833         * file-io.c process.c: MonoString are null terminated, no
15834         need for mono_string_to_utf16() anymore.
15836 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
15838         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
15840 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
15842         * icall.c, reflection.h: speedup System.MonoType.
15844 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
15846         * reflection.c: allow null as the value of a string argument in
15847         custom attributes constructors.
15849 2002-08-27  Martin Baulig  <martin@gnome.org>
15851         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
15852         `trampoline_address' field.
15854 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
15856         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
15857         check (fixes bug #29486) 
15859 2002-08-27  Martin Baulig  <martin@gnome.org>
15861         * debug-mono-symfile.c: Changed the file format in a way that allows us
15862         open it read-only and to use a specially malloced area for all the
15863         dynamic data.  We can now also generate a symbol file on-the-fly if we're
15864         debugging IL code and there is no MCS generated symbol file for it.
15866 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
15868         * object.c: added a define for a good string and array
15869         creation speedup (not enabled by default because we need to deal with
15870         the synch stuff).
15872 2002-08-26  Martin Baulig  <martin@gnome.org>
15874         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
15875         function to create a dynamic symbol file.  This is used by the
15876         debugger to create a symbol file for IL code on-the-fly.
15878 2002-08-26  Martin Baulig  <martin@gnome.org>
15880         * loader.c (mono_lookup_pinvoke_call): Include the error message
15881         from g_module_error() in the error message.
15883 2002-08-24  Martin Baulig  <martin@gnome.org>
15885         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
15886         function to update the symbol file.  The symbol file is mmap()ed
15887         writable, but private.  This allows us to install the symbol file
15888         together with the assembly.
15890 2002-08-24  Martin Baulig  <martin@gnome.org>
15892         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
15893         but they can read the new symbol file format which mcs is now creating.
15895         * debug-symfile.c (mono_debug_find_source_location): Moved to
15896         debug-mono-symfile.c; this is now operating on the new symbol file.
15898 2002-08-23  Martin Baulig  <martin@gnome.org>
15900         * debug-helpers.c (mono_method_desc_from_method): New function to get
15901         a MonoMethodDesc from a MonoMethod.
15903 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
15905         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
15906         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
15908 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
15910         * string-icalls.[ch]: make helper methods static.
15912 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15914         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
15915         types to it and to SetValueInternal.
15917         * object.c: Moved handle_enum label to its proper place. This was the
15918         f... bug! ;-)
15920         This time i compiled mcs and gtk-sharp and they both work.
15922 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15924         * icall.c: reverted partially my previous patch until 
15925         object.c:set_value handles enums correcly.
15927 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15929         * icall.c:
15930         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
15931         (ves_icall_System_Environment_get_MachineName): removed warning when
15932         compiling under cygwin.
15934 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
15936         * object.c: fixed field_get_value() for reference types.
15938 2002-08-22  Dick Porter  <dick@ximian.com>
15940         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
15941         Don't free a buffer while it's still needed.  Patch from Jonathan
15942         Liger <Jonathan.liger@wanadoo.fr>
15944 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
15946         * icall.c (ves_icall_System_Environment_get_Platform): Add new
15947         internal call.
15949 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
15951         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
15952         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
15954         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
15955         we call unmanaged code which throws exceptions.
15957 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
15959         * appdomain.h: added per-domain entry_assembly.
15960         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
15961         arguments.
15962         * icall.c: Assembly::GetEntryAssembly icall.
15963         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
15964         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
15966 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
15968         * appdomain.h, gc.c: added mono_domain_finalize ().
15970 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15972         * object.c:
15973         (mono_print_unhandled_exception): changed g_warning by g_printerr
15974         because g_log has a 1024 characters limit (yeah, i got a big stack
15975         trace). Don't print exception name, that should be in ToString 
15976         returned string.
15978 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15980         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
15981         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
15983 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15985         * object.c:
15986         (mono_print_unhandled_exception): after previous commit, i realized
15987         that MS calls ToString on the exception. I changed this function to
15988         do that. This way we get stack_trace for free.
15990 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15992         * object.c:
15993         (mono_print_unhandled_exception): invoke Message property instead of
15994         getting 'message' field from Exception. Don't allocate memory for
15995         'trace' and 'message' if not needed.
15997 2002-08-18  Dick Porter  <dick@ximian.com>
15999         * unicode.c: Fix asserts to match Encoder.cs checks
16001 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
16003         * marshal.c: fix unaligned store issue and a few wrong
16004         opcode argument types.
16006 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16008         * icall.c: added GetUninitializedObjectInternal internal call.
16010 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
16012         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
16013         to the right domain.
16015 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
16017         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
16019         * class.c (class_compute_field_layout): set blittable to false for Strings
16021         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
16023 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
16025         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
16026         first chunk of code to create types at runtime. Code to
16027         handle ReflectedType/DeclaringType. Make reflection handles
16028         domain specific.
16030 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
16032         * class.c: set correct name in arrays.
16034 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
16036         * appdomain.c (mono_domain_transfer_object): make it work with
16037         valuetypes. bug fixes.
16039 2002-08-12  Dick Porter  <dick@ximian.com>
16041         * object.h: Rename some parameters to avoid c++ keywords (Patch
16042         from Joseph Wenninger <kde@jowenn.at>)
16044 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
16046         * icall.c: added icall to implement Assembly.GetFile*.
16048 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
16050         * reflection.h, reflection.c: code to embed managed resources.
16052 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
16054         * class.c: move all the type size stuff into
16055         class_compute_field_layout().
16057 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
16059         * class.c: ensure enums have always the correct instance size.
16060         * unicode.c: remove wrong assert.
16062 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
16064         * assembly.c: fix mem corruption issue.
16065         * image.h, image.c: added mono_image_get_resource () to access
16066         managed resources.
16067         * icall.c: implemented Assembly.EntryPoint property and some
16068         Managed Resources related internalcalls.
16071 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
16073         * image.c, image.h: impemented mono_image_get_entry_point ().
16074         * appdomain.c: use mono_image_get_entry_point.
16076 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
16078         * reflection.c: support the object type argument when loading
16079         custom attributes.
16081 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
16083         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
16084         String as return type.
16086 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
16088         * reflection.c: fix encoding of named args for custom attrs to match
16089         the ms implementation. Read them back when instantiating custom
16090         attributes.
16092 2002-08-02  Radek Doulik  <rodo@ximian.com>
16094         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
16095         by Dietmar as quick fix
16096         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
16097         16 as stack size, used on more places as quick fix before Dietmar
16098         will fix it properly
16100 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
16102         * object.h, object.c: added accessors for fields and properties.
16104 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
16106         * class.c, class.h: made mono_class_get_field_from_name ()
16107         loop on parent types.
16108         Added mono_class_get_property_from_name ().
16110 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
16112         * class.c, class.h: move the code to setup the type vtable in its own
16113         function so that it can be reused also for types created at runtime.
16114         Eliminate the "class" identifier from the header file.
16115         * reflection.c: setup the vtable for enums so that we can create
16116         objects for use in SetConstant ().
16118 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
16120         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
16121         instead of the delegate itself as this pointer (bug #28383)
16123 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
16125         * marshal.c (mono_marshal_get_managed_wrapper): added return type
16126         conversions.
16128 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
16130         * loader.c: don't set the pinvoke bit on icalls.
16132 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
16134         * debug-helpers.c (mono_method_full_name): only print a number to
16135         indicate wrapper type (so that the output is more readable in traces).
16137 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
16139         * class.c (mono_class_init): include method override patch from Paolo
16141 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
16143         * icall.c: fixed GetTypeCode().
16145 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
16147         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
16148         use real delegate invoke function to make it work with multicast
16149         delegates (fix bug# 28291).
16151 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
16153         * object.c: load constant strings.
16155 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
16157         * reflection.c: no magic numbers.
16158         * tabledefs.h: security action enum.
16160 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
16162         * assembly.c: fix possible memory corruption.
16164 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
16166         * reflection.h, reflection.c: added support for linking resources.
16167         * verify.c: check we have an updated corlib.
16169 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
16171         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
16172         string arrays.
16173         (mono_marshal_string_array): null terminate unmanaged string arrays.
16174         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
16176 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
16178         * icall.c: Type.GetType () can now return also types from the
16179         calling assembly.
16181 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
16183         * loader.h, loader.c: stack walking support.
16184         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
16185         GetCallingAssembly.
16187 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
16189         * marshal.c: added optimisations for blittable types 
16191         * class.c (mono_array_class_get): do not set blittable attribute on arrays
16192         (mono_class_setup_mono_type): set blittable attribute for single
16193         and double.
16195         * marshal.c (mono_string_utf8_to_builder): impl.
16196         (mono_string_builder_to_utf8): impl.
16197         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
16199 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
16201         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
16202         (mono_marshal_get_managed_wrapper): impl. byref types
16204 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16206         * icall.c:
16207         (search_method): don't display debug message. 
16209 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
16211         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
16213 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
16215         * appdomain.c: set the missing filename when throwing exception.
16217 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
16219         * metadata.c (mono_type_size): code cleanup
16220         (mono_type_stack_size): removed some test code
16222 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
16224         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
16225         mono_get_exception_file_not_found now.
16227         * exception.c (mono_exception_from_name_two_strings): New version
16228         that will call a constructor with two string arguments. 
16229         (mono_get_exception_file_not_found): New helper routine, used to
16230         report file-not-found errors.
16232 2002-07-20  Dick Porter  <dick@ximian.com>
16234         * process.h:
16235         * process.c: Pass file handles to CreateProcess
16236         
16237         * icall.c:
16238         * file-io.h:
16239         * file-io.c: Implemented CreatePipe
16241 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
16243         * metadata.c (mono_get_param_info): set alignment for value types
16245 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
16247         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
16248         Constify mono_domain_assembly_open().
16249         * loader.c: handle null namespace in icalls.
16251 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
16253         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
16254         (emit_str_to_ptr_conv): marshal object as structs
16256         * metadata.c (mono_type_to_unmanaged): marshal object as structs
16258         * marshal.c (mono_marshal_get_runtime_invoke): support value types
16260 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
16262         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
16263         (mono_marshal_get_native_wrapper): we an now return value types
16265 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
16267         * verify.c: more checks implemented.
16269 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
16271         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
16272         (fix bug #27695)
16273         (mono_marshal_get_native_wrapper): allow byref arguments
16274         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
16275         impl. PtrToStringXXX methods
16276         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
16277         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
16278         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
16279         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
16280         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
16282 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
16284         * reflection.c: fix buglet in parsing an assembly name.
16286 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
16288         * marshal.c (emit_ptr_to_str_conv): first impl.
16290 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
16292         * object.c, class.h: cache the vtable in the class as suggested by
16293         vargaz@freemail.hu (Zoltan Varga).
16295 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
16297         * class.h, loader.c: added mono_field_from_token().
16298         * verify.c: first cut of type checking code.
16300 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
16302         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
16304 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
16306         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
16307         (fix bug #27782)
16308         (mono_marshal_get_remoting_invoke): impl.
16309         (mono_delegate_begin_invoke): impl.
16310         (mono_mb_emit_save_args): impl.
16311         (mono_delegate_end_invoke): impl.
16312         (mono_marshal_get_delegate_begin_invoke):
16313         (mono_marshal_get_delegate_end_invoke):
16314         (mono_marshal_get_delegate_invoke): generate a special name for
16315         those methods (including the signature) and associate them whith
16316         the delegate class. 
16318 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
16320         * reflection.[ch]: 
16321         (mono_reflection_type_from_name): now it has a MonoImage parameter
16322         which is used as the default image to search the type in. If the image
16323         is NULL or getting the type from it fails, it defaults to corlib.
16325         * icall.c: changed 1 call to mono_reflection_type_from_name to match
16326         new parameter.
16328 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
16330         * reflection.c: update the parameter table index.
16332 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
16334         * domain.c: don't include the mark byte in the string hash.
16336 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
16338         * icall.cs: icall for Type.GetTypeCode ().
16339         * verify: a couple of fixes and disabled local initialization checks.
16341 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
16343         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
16345         * debug-helpers.c (mono_method_full_name): print the type of the
16346         runtime wrapper
16348         * metadata.c (mono_signature_hash): a hash function for signatures
16349         (mono_signature_hash): better hash algorithm
16351         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
16353         * debug-helpers.c (mono_method_full_name): this can now generate
16354         method names with signatures
16356         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
16357         method dont have this pointers.
16359 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
16361         * reflection.c: fixup typebuilder tokens.
16362         * image.c: fix buglet.
16363         * marshal.h: remove whitespace.
16364         * metadata.h, metadata.c: reinstate code that was removed.
16365         * verify.c: handle catch directives and fix another couple of bugs.
16367 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
16369         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
16370         (mono_marshal_get_native_wrapper): make it comp. with the old code
16371         (mono_marshal_get_native_wrapper): support boolean
16372         (mono_marshal_get_managed_wrapper): support more types
16374 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
16376         * class.c (class_compute_field_layout): compute class->blittable attribute.
16378 2002-07-09  Dick Porter  <dick@ximian.com>
16380         * threads.c: Make the thread cleaning up cope with threads that
16381         call ExitThread()
16383 2002-07-08  Radek Doulik  <rodo@ximian.com>
16385         * reflection.c (method_encode_code): use non-translated values to
16386         compute finally_start, this fixes exception handling on ppc, yay!
16388         * decimal.h (struct signscale): fix endianess
16390 2002-07-07  Radek Doulik  <rodo@ximian.com>
16392         * reflection.c: swap box_val and not val
16394 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
16396         * reflection.c, reflection.h: handle full assembly info in type name.
16397         Handle Type arguments when loading custom attributes.
16398         * icall.c: updated to use new mono_reflection_type_from_name () method.
16400 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16402         * loader.c:
16403         (method_from_memberref): also print assembly name when method not found.
16405 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16407         * icall.c:
16408         (ves_icall_TypeGetProperties): fixed bug #27473. 
16410 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16412         * reflection.c: display image name and token when cannot find the
16413         .ctor for an attribute.
16415 2002-07-05  Martin Baulig  <martin@gnome.org>
16417         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
16419 2002-07-04  Dick Porter  <dick@ximian.com>
16421         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
16422         compile on mingw.  This will cause mingw builds to not wait for
16423         subthreads to terminate after the main thread does.  I've lodged a
16424         bug with the mingw developers for them to wrap OpenThread().
16426 2002-07-03  Dick Porter  <dick@ximian.com>
16428         * threads.c: Store thread IDs instead of handles, because
16429         GetCurrentThread() returns a pseudohandle and therefore stores
16430         useless values.  mono_thread_cleanup() continues checking the
16431         array of threads until it is empty, to cope with subthreads
16432         spawning new threads after the main thread has finished.
16434         * profiler.h:
16435         * profiler.c:
16436         * profiler-private.h: Pass the thread ID to thread profiler
16437         functions, instead of a handle
16439 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
16441         * verify.c: fixes to make it more usable.
16442         * pedump.c: added --verify code to verify IL code in an assembly.
16444 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
16446         * reflection.c: turn errors into warnings to allow compiling corlib.
16448 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
16450         * reflection.c: add special cases to compile corlib.
16452 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
16454         * reflection.c: handle properties with only a set method.
16456 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
16458         * opcodes.h: add enum with opcodes in opval order.
16460 2002-07-01  Dick Porter  <dick@ximian.com>
16461         
16462         * object.h:
16463         * object.c (mono_runtime_run_main): Removed unneeded argument
16465 2002-06-28  Martin Baulig  <martin@gnome.org>
16467         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
16469 2002-06-27  Dick Porter  <dick@ximian.com>
16471         * threads.c: Store the handle in both the parent thread and in the
16472         subthread, to minimise the time between starting a new thread and
16473         storing its ID.
16475 2002-06-26  Dick Porter  <dick@ximian.com>
16477         * appdomain.c (mono_runtime_cleanup): Close the socket library
16478         after all the threads have finished, not before
16480 2002-06-26  Martin Baulig  <martin@gnome.org>
16482         * debug-symfile.c (mono_debug_find_source_location): Added
16483         `guint32 *line_number' argument.  If it's not NULL, store the line number
16484         there and return the file name without the line number.
16486 2002-06-25  Dick Porter  <dick@ximian.com>
16488         * icall.c:
16489         * process.h:
16490         * process.c: Process forking and other support functions
16492 2002-06-25  Dick Porter  <dick@ximian.com>
16494         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
16495         things dont happen when the image is closed.
16496         (mono_image_lookup_resource): Walk the resource section looking
16497         for a particular entry
16499         * cil-coff.h: PE resource section decoding
16501 2002-06-25  Dick Porter  <dick@ximian.com>
16502         
16503         * assembly.h:
16504         * assembly.c: 
16505         (mono_assembly_foreach): Accessor functions to walk the list of
16506         loaded assemblies
16507         (mono_assembly_set_main):
16508         (mono_assembly_get_main): Process methods need to know which
16509         assembly is the "main" one
16511         * object.c (mono_runtime_run_main): Record the main assembly
16513         * debug-helpers.c: Fix typo
16515 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
16517         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
16518         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
16520 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
16522         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
16524 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
16526         * image.c (do_mono_image_open): Initialize reference count,
16527         otherwise we leak the MonoImage.
16529 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
16531         * reflection.c: small tweak to handle self-hosting.
16533 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
16535         * reflection.c: fix type name parse code.
16537 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
16539         * reflection.c: break out of the loop.
16540         * image.c: special case corlib.
16542 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
16544         * reflection.c: add all the custom attrs at the end to ensure the
16545         ctors have been properly initialized when the attributes are defined
16546         in the current assembly.
16548 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
16550         * reflection.c: handle correctly multiple-nested types.
16552 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
16554         * row-indexes.h: fix typos.
16555         * reflection.c: adjust for typos and fix method_def_or_ref
16556         encoding in MethodImpl table.
16558 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
16560         * reflection.c: fix entry point patching (thanks Serge!).
16562 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
16564         * verify.c: add check for System.Exception
16566 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
16568         * image.c, class.c: minifix for code just c&p'ed.
16569         * reflection.c: warning fix.
16570         * object.h, loader.h, domain.c: load also StringBuilder.
16572 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
16574         * marshal.h, marshal.c: some support code to handle complex marshaling.
16576 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
16578         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
16579         Better signatures with vtable error dump.
16581 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
16583         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
16585 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
16587         * icall.c (ves_icall_Type_GetField): impl.
16589 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
16591         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
16592         to retrieve a marshal description blob for a field or param.
16594 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
16596         * reflection.h, reflection.c: change order of nested type emission
16597         to avoid table corruption. The NestedTypes table is sorted.
16598         * icall.c: change order of GetConstructor results to workaround mcs bug.
16600 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
16602         * reflection.h, reflection.c: handle field and param marshal
16603         information.
16605 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
16607         * icall.c, marshal.c marshal.h: more Marshal class implementation.
16609 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
16611         * reflection.c: fix call convention.
16613 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
16615         * reflection.h, reflection.c: mono_image_get_memberref_token()
16616         takes a type instead of a class, now. Added
16617         mono_image_get_array_token() to create tokens for the special
16618         multi-dim array methods.
16620 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
16622         * assembly.c: handle modules (no assembly table). Split
16623         loading references in its own function.
16624         * class.c: handle moduleref resolution scope.
16625         * image.c, image.h: cache module name in image.
16627 2002-06-07  Martin Baulig  <martin@gnome.org>
16629         * reflection.c (mono_image_get_type_info): Only add a class layout entry
16630         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
16632 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
16634         * icall.c: more signature fixes that used uint instead of int.
16636 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
16638         * reflection.c: fixed signature of field refs.
16640 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
16642         * class.c, reflection.c: handle typerefs of nested types
16643         (both on read and when writing files).
16645 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
16647         * icall.c: fix method signatures that tried to workaround the previous
16648         typo, d'oh!
16650 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
16652         * debug-helpers.c: fix typo.
16654 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
16656         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
16657         rewrote the PE/COFF writing code (our programs are understood by the
16658         ms runtime, now).
16660 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
16662         * gc.c, gc.h, icall.c: weakreference support.
16664 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
16666         * Makefile.am, mono-config.c: use $(sysconfdir).
16668 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
16670         * icall.c: changed default precision of Double.ToString() to 15.
16671         Fixed memory leak. Unified with Single.ToString.
16673 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
16675         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
16677 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
16679         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
16680         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
16681         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
16682         and myself.
16684 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
16686         * debug-symfile.c, sysmath.c: yet more compilation fixes.
16688 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
16690         * reflection.c, socket-io.c: more compilation fixes.
16692 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
16694         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
16695         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
16696         unicode.c: warning and compiler compatibility fixes.
16698 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
16700         * class.h, metadata.c: fixed warnings/compilation errors.
16702 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
16704         * Makefile.am, mono-config.c, mono-config.h: configuration file
16705         support routines.
16706         * loader.c, loader.h: make Dll mapping configurable at runtime in the
16707         config file. Export methods to insert and lookup mappings.
16709 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
16711         * reflection.c: handle types and boxed objects in custom attr
16712         constructors.
16714 2002-05-30  Martin Baulig  <martin@gnome.org>
16716         * debug-symfile.c
16717         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
16719 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
16721         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
16722         to lookup the implmap row for a P/Invoke method.
16723         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
16724         P/Invoke method from the runtime on an as needed basis.
16726 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
16728         * metadata.c (mono_metadata_parse_signature): impl.
16730 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
16732         * class.c: handle .pack directive.
16734 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
16736         * object.c: initialize static fields with RVA data.
16738 2002-05-25  Martin Baulig  <martin@gnome.org>
16740         * debug-symfile.c
16741         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
16743 2002-05-24  Martin Baulig  <martin@gnome.org>
16745         * debug-symfile.c
16746         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
16747         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
16748         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
16750 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
16752         * object.c: special case string ctros in invoke.
16753         * gc.c: silly whitespace changes.
16755 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
16757         * threadpool.[ch]: impl. a threadpool that can
16758         be used by mint and mono.
16760 2002-05-22  Martin Baulig  <martin@gnome.org>
16762         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
16763         The first argument is now a `MonoReflectionModuleBuilder *', the return
16764         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
16765         `methods' field to get the method builder.  The `token' argument is the
16766         unfixed token.
16768         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
16769         invalid characters instead of g_assert_not_reached()ing.  This seems
16770         to be the behaviour of mscorlib.
16772 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
16774         * object.c (mono_runtime_invoke_array): applied patch from Rachel
16775         Hestilow to fix bug #25104
16777 2002-05-21  Martin Baulig  <martin@gnome.org>
16779         * debug-symfile.c (mono_debug_find_source_location): New function.
16780         Looks up an IL offset in the line number table and returns the source
16781         location as a string.
16783 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16785         * icall.c:
16786         (mono_double_ToStringImpl): changed %f by %g until we have something
16787         better.
16789 2002-05-21  Nick Drochak  <ndrochak@gol.com>
16791         * icall.c : Use different name for Math.Pow's icall.  Needed to check
16792         parameters first in C#.
16794 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
16796         * icall.c, reflection.h: added icall to get info about an event.
16798 2002-05-20  Radek Doulik  <rodo@ximian.com>
16800         * object.c (mono_value_box): don't use memcpy for boxing on BIG
16801         endian
16802         (mono_value_box): don't use memcpy for small sizes on
16803         architectures with unaligned access
16805 2002-05-20  Martin Baulig  <martin@gnome.org>
16807         * reflection.c (mono_reflection_setup_internal_class): Don't crash
16808         if `tb->parent == NULL'.
16809         (mono_reflection_create_internal_class): New function.  This is
16810         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
16811         for enum types.
16813         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
16814         New interncall.
16816 2002-05-19  Martin Baulig  <martin@gnome.org>
16818         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
16819         argument to get the length, don't default to the array length.
16821 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
16823         * assembly.c (mono_assembly_setrootdir): New function used to
16824         override the MONO_ASSEMBLIES directory.
16826 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
16828         * icall.c: ValueType_GetHashCode() initialize local var.
16830 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
16832         * reflection.c: sort custom attributes table.
16834 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
16836         * reflection.c: support named args in custom attributes (write support).
16838 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
16840         * reflection.c: fix finally position calculation.
16842 2002-05-15  Radek Doulik  <rodo@ximian.com>
16844         * reflection.c: fixed endianess at many places
16846         * icall.c (ves_icall_InitializeArray): comment out debug msg
16848 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
16850         * object.c (mono_unhandled_exception): new function to handle
16851         unhandled exceptions.
16852         (mono_unhandled_exception): call the UnhandledException event.
16853         (mono_runtime_delegate_invoke): impl.
16855 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
16857         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
16858         returns the RVA, not the direct pointer to the data. Handle the case
16859         when the class size is fixed.
16861 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
16863         * reflection.c: fix some endianess issues.
16865 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
16867         * object.c (mono_runtime_invoke): is now able to catch exceptions.
16869         * threads.c (mono_thread_init): added a callback which is invoked
16870         at thread start.
16872 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
16873         
16874         * icall.c: make GetHashCode return non-negative values.
16876 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
16878         * object.c, icall.c, gc.c: revert to address-based hashcode.
16880 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
16882         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
16884 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
16886         * icall.c, class.c: special case <Module>.
16888 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
16890         * icall.c: fix bug in GetNow().
16892 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
16894         * object.c (mono_runtime_class_init): make sure that we call all
16895         static class constructors.
16897 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
16899         * reflection.c: sort methodsemantics table.
16901 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
16903         * reflection.h, reflection.c: honour init locals setting.
16905 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
16907         * icall.c: copied Double ToStringImpl for Single ToStringImpl
16909 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
16911         * reflection.c: support ContructorBuilders in attribute blob creation.
16913 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
16915         * reflection.c: some changes to build a binary that can be run
16916         directly in windows.
16918 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
16920         * loader.c: print a big message when an icall can't be found.
16922 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16924         * string-icalls.c: fix bug 24248.
16926 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
16928         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
16929         icall.c, reflection.h: separate assembly loading by pathname and by
16930         assembly name. Use the MONO_PATH env var to search for assemblies.
16932 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
16934         * assembly.c, image.h: add some support for assemblies
16935         with multiple modules.
16936         * class.c, class.h: export mono_class_from_typeref().
16937         * loader.c: remove duplicated code and use mono_class_from_typeref(),
16938         instead.
16940 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
16942         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
16943         documentation says (the ECMA one is correct).
16945 2002-05-02  Dick Porter  <dick@ximian.com>
16947         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
16948         Don't name the synchronisation mutex.
16950 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
16952         * rand.c
16953         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
16954         Make the prototypes match.
16955         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
16956         Same.
16958         * icall.c
16959         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
16960         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
16961         all systems have tm.tm_zone, so use strftime() with %Z to print
16962         the timezone abreviation into a temp string.
16964         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
16965         rather than mono_array_addr() on a MonoString on Big Endian
16966         machines.
16968 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
16970         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
16971         fix bug 24041
16973 2002-04-30  Dick Porter  <dick@ximian.com>
16975         * socket-io.c: Cope with SOCKET being an integer rather than a
16976         pointer now.
16978         * threads.c: Added Thread_free_internal, to deal with thread
16979         handle cleanup.  Moved calls to handle_store() and handle_remove()
16980         to start_wrapper(), so each can only be called once.  Allocate
16981         synchronisation blocks with GC_malloc(), and use GC finalisation
16982         to close the handles.
16984         * icall.c: added System.Threading.Thread::Thread_free_internal
16986 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
16988         * icall.c: support Environment.Exit, CommandLineArgs().
16990 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
16992         * object.c, object.h: added mono_runtime_run_main () and
16993         mono_runtime_get_main_args () for use in System.Environment.
16995 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
16997         * gc.c: fix thinko, enable actual finalization since the jit is now
16998         fixed.
17000 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
17002         * gc.c, object.c: take into account that an object may be offset wrt the address
17003         returned by GC_malloc().
17005 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
17007         * image.c: handle files without entries in the assembly table (modules).
17009 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
17011         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
17012         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
17013         allowed to be null when it's System.Object class setup.
17015 2002-04-27  Martin Baulig  <martin@gnome.org>
17017         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
17018         if `tb->parent == NULL' rather than crashing.
17020 2002-04-28  Nick Drochak  <ndrochak@gol.com>
17022         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
17023         calling acos() where asin() should have been called.
17025 2002-04-26  Martin Baulig  <martin@gnome.org>
17027         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
17028         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
17029         there's a subdirectory called `System', but we don't want to read that
17030         subdirectory as an assembly.
17032 2002-04-25  Martin Baulig  <martin@gnome.org>
17034         * debug-symfile.c: Reflect latest MonoString changes.
17036 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
17038         * rand.c, rand.h: instance method icalls need to have an explicit
17039         this pointer as first argument in the C implementation.
17041 2002-04-25  Nick Drochak <ndrochak@gol.com>
17043         * icall.c: Fix typo in map for GetNonZeroBytes
17045 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
17047         * string-icalls.c : String does now passes unit tests without any 
17048         errors, the following changes has been made:
17049         
17050         Implemented replace methods.
17051         Renaming of methods to (try) follow the standard.
17052         Fixed compare ordinal
17053         Made all memory allocated directly to function instead of via icall function.
17054         Small performance fix in is_in_array function
17055                         
17056  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
17058         c (mono_string_Internal_ctor_charp_int_int):
17059         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
17060         sindex < 0, throw ArgumentOutOfRangeException instead of
17061         ArgumentNullException.
17063         Added new check for length == 0, however
17064         I need to make it return String.Empty from the C code.
17065         
17066         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
17067         that calculate the length for us here.
17068         
17069         (mono_string_Internal_ctor_sbytep_int_int): Replaced
17070         mono_string_new_utf16 with mono_string_new, since value is utf8.
17072 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17074         * object.c: register the object for finalization if needed.
17075         Allocate one more char in the string for the terminating 0 char.
17077 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
17079         * class.c, class.h, image.c: check if a type implemenst a destructor.
17080         Use the proper key for array class lookups.
17081         * icall.c: register the icalls in the System.GC class.
17082         * gc.c, gc.h: GC-related functions and icalls.
17084 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17086         * icall.c:
17087         * socket-io.c:
17088         * unicode.c: free some strings gotten from mono_string_to_utf8 and
17089         changed a couple of free () by g_free ().
17091         * decimal.c: one-liner in the comments for decimal2string ().
17093 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
17095         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
17097 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
17099         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
17100         * object.c (mono_runtime_invoke_array) : handle null in params
17102 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
17104         * string-icalls.c: fixed bug in split (one off bug)
17106 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
17108         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
17109         * icalls.c: added String::Equals as internal method
17111 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
17113         * threads.c: fixed bug in the double interlocked functions
17115 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
17117         * threads.c: implemented all of the new interlocked icalls.
17118         * string-icalls.c: fix a bug in insert.
17119         * icalls.c: added the icalls for interlocked, removed old string functions.
17120         
17121 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
17123         * loader.c: fix off-by-one error when reading argument names.
17125 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
17127         * profiler.c: win32 counter implementation (untested).
17128         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
17129         (the latter needs testing and more complete impl. from win32 folks).
17131 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
17133         * object.c: mono_array_new_full workaround mono_array_class_get
17134         problem.
17136 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
17138         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
17139         * object.h (mono_string_chars): Changed casting type.
17141 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
17143         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
17144                            method signatures to use gunichar2 instead of gint16.
17146 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
17148         * object.h, object.c: domain-specific versions of mono_object_new and
17149         mono_array_new.
17151 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
17153         * object.c: changed String layout
17155         * string-icalls.c (mono_string_Internal_ctor_chara): added
17156         internal string constructors.
17158 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
17160         * threads.c: pass 'this' to the thread start routine.
17162 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17164         * string-icalls.c: fix IndexOf and LastIndexOf. Now
17165         InternalCompareStr don't call twice mono_string_cmp_char for the last
17166         character. Improved performance in mono_string_cmp_char.
17168 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
17170         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
17171         code into its own library: libmonoruntime.
17173 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
17175         * object.h, object.c: changed array format so that szarrays do not
17176         require a bounds structure.
17177         * icall.c, appdomain.c: support for new szarray format.
17179 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
17181         * metadata.c: compare also the retuns type when comparing signatures:
17182         we didn't do this as an optimization since really overloaded methods
17183         must differ also in the arguments, but this doesn't work with
17184         low-level IL code (or when using explicit conversion operators: see
17185         bug#23498 for an example).
17187 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
17189         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
17191 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
17193         * icall.c: make MonoType::GetElementType its own icall.
17195 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
17197         * icall.c: remove MonoMethod_get_Name().
17198         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
17199         object.
17201 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
17203         * string-icalls.c: optimized a few methods.
17205 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
17207         * icall.c: added all new string internal calls
17208         * string-icalls.c: added, new string internal call implementation.
17209         * object.c: added mono_string_new_size for allocating a string a size
17211 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
17213         * object.c (mono_object_isinst): use the same code as in the
17214         optimized x86 version.
17216 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
17218         * profiler.c: TSC-based timer code (faster and more accurate).
17219         Not hooked up in configure, yet (set USE_X86TSC to 1).
17221 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
17223         * profiler.c, profiler.h: track time spent compiling methods.
17224         * threads.c: track thread creation/destruction.
17226 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
17228         * profiler.c, profiler.h, profiler-private.h: profiling interface
17229         and sample implementation. Moved here so that it can be used also by
17230         the jit.
17232 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
17234         * reflection.c, reflection.h: keep types and other handles separate in
17235         the hash tables for referred tokens. Add guid for modules.
17237 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
17239         * assembly.c: fix bugs found with valgrind.
17240         * metadata.h, metadata.c: added mono_metadata_guid_heap().
17242 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
17244         * threads: added icall support for getting current domain for
17245                    the thread.
17247 2002-04-13  Martin Baulig  <martin@gnome.org>
17249         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
17250         (MonoDebugVarInfo): Added `index' field for register based addresses.
17251         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
17252         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
17253         `MonoDebugVarInfo *params' and `guint32 this_offset' with
17254         `MonoDebugVarInfo *this_var'.
17256         * debug-symfile.c (relocate_variable): New static function to write
17257         a location description for a local variable or method parameter.
17259 2002-04-12  Martin Baulig  <martin@gnome.org>
17261         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
17262         stack offset and begin/end scope address of a local variable.
17263         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
17264         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
17265         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
17267         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
17268         Added new relocation types for start/end scope of a local variable.
17270 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17272         * object.h: add mono_object_domain() macro.
17273         * reflection.c: handle typespecs.
17274         * icall.c: MonoMethod::get_Name() implementation.
17276 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
17278         * icall.c: String::GetHashCode() icall implementation.
17280 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17282         * icall.c: String::IndexOfAny icall.
17283         * object.c, object.h: make array->max_length more useful.
17284         Intrduced mono_object_class() and mono_string_length() macros.
17286 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17288         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
17289         instead of g_unichar_isdigit.
17291 2002-04-11  Nick Drochak  <ndrochak@gol.com>
17293         * icall.c: Implement a simple Double.ToString().
17295 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
17297         * appdomain.h: only io-layer.h is supposed to be included.
17298         * icall.c: explicitly import environ. Fix warning.
17300 2002-04-10  Nick Drochak  <ndrochak@gol.com>
17302         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
17303                 return true even if it's not Daylight Savings time.
17304                 Only return false for the case where the function isn't
17305                 implemented for a plaform (read Windows).
17307 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17309         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
17310         data with a mutex.
17312 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
17314         * mempool.c (mono_mempool_alloc): only use g_malloc when
17315         absolutely necessary.
17317 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
17319         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
17321         * class.c (mono_class_vtable): use domain mempool to allocate vtable
17322         (mono_class_proxy_vtable): use domain mempool
17324 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
17326         * appdomain.h, appdomain.c: split initialization that requires the
17327         execution engine support into mono_runtime_init().
17329 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
17331         * class.c (mono_class_init): don't include vtable inside MonoClass
17332         to save some memory, gather some statistics.
17333         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
17335 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
17337         * icall.c: internalcall implementation for ValueType.Equals().
17339 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
17341         * object.c (mono_message_init): moved 
17342         (mono_runtime_exec_main): new arch. independent impl.
17343         (mono_runtime_invoke_array): new method - like
17344         mono_runtime_invoke, but you can pass an array of objects.
17345         (mono_remoting_invoke): new arch. independent impl.
17346         (mono_message_invoke): new arch. independent impl.
17347         (mono_runtime_class_init): new arch. independent impl.
17348         (mono_runtime_object_init): new arch. independent impl.
17350 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
17352         * metadata.c, object.c, reflection.c: documented the exported
17353         functions.
17355 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
17357         * icall.c: simpler code to pass the assembly builder data to corlib.
17358         Implement GetNestedTypes() internalcall.
17360 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
17362         * class.c: warn if a type can't be loaded.
17364 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
17366         * image.h: typedef MonoImageOpenStatus
17367         * types.h: removed unused file
17368         
17369 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
17371         * icall.c: Enum_ToObject accepts enum value arguments.
17373 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
17375         * class.c: move initialization of properties, events and nested
17376         classes, so that they happen for interfaces, too.
17378 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
17380         * icall.c: cleanup some ugly casts in Array_SetValue*.
17382 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
17384         * icall.c: the values array fro enums is of the correct type, now.
17385         Implement (correctly) getFullName instead of assQualifiedName for
17386         MonoType.
17387         * reflection.h, reflection.c: added mono_type_get_name ().
17389 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
17391         * assembly.c, image.h: for each MonoImage, record from wich assembly
17392         it was loaded.
17393         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
17394         Make Type.Assembly work.
17396 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
17398         * debug-symfile.h: use char* instead of gpointer to avoid
17399         unnecessary casts.
17401         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
17403         * icall.c (ves_icall_InternalExecute): impl. FielSetter
17404         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
17406 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
17408         * icall.c (mono_message_init): impl. (code cleanup)
17409         (ves_icall_InternalExecute): impl. FieldGetter
17411         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
17412         defined we call all (non-static)methods through the vtable. 
17414 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
17416         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
17417         finalizer even though the memory is still referenced (and the chunk of
17418         memory is not freed).
17420 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
17422         * assembly.c: fix brokeness.
17424 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
17426         * class.c: kill some warnings. Check explicit interface method
17427         implementation also without considering the namespace.
17428         Load also literal strings in static class data.
17430 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
17432         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
17433         (default_assembly_name_resolver): Make the resolver take the
17434         "base" directory where the assembly was originally defined, so we
17435         can load DLLs that are in the same directory as the assembly that
17436         is being referenced.
17438 2002-03-28  Dick Porter  <dick@ximian.com>
17440         * file-io.h: 
17441         * file-io.c:
17442         * socket-io.c: 
17443         * unicode.h: 
17444         * unicode.c: Warning cleanups
17446 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
17448         * object.h, reflection.h: use the correct type instead of MonoObject.
17450 2002-03-28  Martin Baulig  <martin@gnome.org>
17452         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
17453         (mono_debug_update_symbol_file): Initialize classes if necessary.
17455 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
17457         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
17458         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
17460 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
17462         * assembly.h: fix function prototype.
17463         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
17464         * mono-endian.h: use const cast.
17466 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
17468         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
17470 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
17472         * loader.c: don't assert when a typeref can't be loaded, give
17473         a chance to the runtime to trow an exception instead.
17474         * loader.h: fix warning.
17476 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
17478         * class.c (mono_class_proxy_vtable): added proxy support
17480 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
17482         * icall.c: removed last of PAL calls, added System.Environment
17483         * file-io.h, file-io.c: MonoIO implementation
17484         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
17486 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
17488         * appdomain.c: do not use the byte marker in ldstr table lookup.
17489         * debug-helpers.c: allow two ':' to separate class and method name.
17490         * object.c: allocate arrays bounds with the GC, too.
17491         * verify: add a few more checks.
17493 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
17495         * reflection.c: output also literal strings. Allocate parameter data
17496         with GC_malloc() (thanks, Martin, for catching this!).
17498 2002-03-26  Martin Baulig  <martin@gnome.org>
17500         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
17501         include the `this' offset in the `param_offsets'.
17503 2002-03-25  Martin Baulig  <martin@gnome.org>
17505         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
17506         mono_debug_get_class() function to get the classes. Added new
17507         relocation types for arrays and strings.
17508         (mono_debug_get_class): New static function to search in all
17509         referenced assemblies for a metadata token.
17511         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
17513 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
17515         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
17516         hold gc-allocated objects. Make the string heap a stream like the
17517         others. Removed duplicated code when writing stream info.
17518         Added asserts to catch possible buffer overflows. Set the sorted map
17519         for tables that need sorting. Added some documentation.
17521 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
17523         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
17524         for interned strings and vtables.
17526 2002-03-24  Martin Baulig  <martin@gnome.org>
17528         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
17529         it in the array since it was created with g_slist_prepend().
17531 2002-03-24  Martin Baulig  <martin@gnome.org>
17533         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
17534         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
17535         (mono_debug_method_from_token): Renamed to
17536         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
17537         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
17539         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
17540         relocation types.
17542         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
17544 2002-03-24  Martin Baulig  <martin@gnome.org>
17546         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
17547         (mono_debug_method_from_token): New func.
17549         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
17550         New interncall, calls mono_debug_local_type_from_signature().
17551         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
17552         calls mono_debug_method_from_token().
17554 2002-03-23  Martin Baulig  <martin@gnome.org>
17556         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
17557         specifies the number of bytes to be converted, not the array size.
17558         Return the number of chars, not the number of bytes.
17559         (ves_icall_iconv_get_chars): The `byteCount' argument
17560         specifies the number of bytes to be converted, not the array size.
17562 2002-03-23  Martin Baulig  <martin@gnome.org>
17564         * reflection.h (MonoReflectionSigHelper): New type.
17566         * reflection.c (mono_reflection_sighelper_get_signature_local),
17567         (mono_reflection_sighelper_get_signature_local): New functions.
17569         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
17570         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
17571         interncalls.
17573 2002-03-23  Martin Baulig  <martin@gnome.org>
17575         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
17576         is_writeable is set.
17577         (mono_raw_buffer_update): New function to write the modified map
17578         back to disk.
17580         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
17582         * debug-symfile.c (mono_debug_update_symbol_file): Call
17583         mono_raw_buffer_update() when done writing.
17585 2002-03-23  Martin Baulig  <martin@gnome.org>
17587         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
17589         * debug-symfile.c: Added support for arguments and local variables.
17591 2002-03-23  Dick Porter  <dick@ximian.com>
17593         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
17594         protected by ifdefs, hence breaking the w32 build.
17596 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
17598         * object.c: implement is_interned() the right way.
17600 2002-03-21  Martin Baulig  <martin@gnome.org>
17602         * debug-symfile.[ch]: New files to handle debugging information
17603         files. There's also support to dynamically update these symbol
17604         files to include machine dependent information.
17606 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
17608         * threads.c (mono_thread_create): new function to create thread
17609         from C
17611 2002-03-20  Martin Baulig  <martin@gnome.org>
17613         * icall.c (ves_icall_InternalInvoke): Create a new object if the
17614         method is a constructor.
17615         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
17616         points to ves_icall_InternalInvoke().
17618 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
17620         * file-io.c: Flush shouldn't throw exceptions.
17622 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
17624         * file-io.c: FileStream flush support; FileSetLength now
17625         restores file pointer.
17627 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
17629         * class.c: set image for pointer classes.
17631 2002/03/19  Nick Drochak <ndrochak@gol.com>
17633         * sysmath.c: Forgot one.
17635 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
17637         * sysmath.c: Avoid redefining existing names.
17639 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
17641         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
17642         handled by runtime as icall rather than dllimport from libm.so
17643         * file-io.c, file-io.h: fixed handle argument type.
17645 2002-03-18  Dick Porter  <dick@ximian.com>
17647         * reflection.c (mono_image_get_type_info): rename interface to
17648         iface, because of "#define interface struct" on windows.
17650 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
17652         * class.c, class.h: rename and export mono_ptr_class_get().
17653         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
17654         * reflection.c, reflection.h, icall.c: better/saner type name
17655         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
17656         method signatures.
17658 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
17660         * class.c (mono_class_init): removed hardcoded GHC_SLOT
17662         * icall.c (ves_icall_InternalInvoke): impl.
17664 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
17666         * reflection.c: output the interface map table, too.
17668 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
17670         * class.c (class_compute_field_layout): separate computation of 
17671         static field layout
17673 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
17675         * icall.c: added System.Buffer support.
17676         * file-io.c: moved file icalls from PAL to FileStream.
17678 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
17680         * icall.c (ves_icall_System_Object_GetHashCode): impl.
17682 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
17684         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
17686 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
17688         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
17690 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
17692         * debug-helpers.{c,h}: moved here from monograph some useful functions
17693         to locate a method by name/signature in a class or image. Included
17694         also a small and flexible IL disassembler.
17696 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
17698         * reflection.c: fixup tokens in methods with small header size, too.
17700 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
17702         * object.c (mono_string_to_utf8): remove assert(!error), instead
17703         print a warning. 
17705 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
17707         * icall.c: update to the new mono_Array_class_get interface.
17709 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
17711         * appdomain.c, object.c: Boehm-GC enable.
17712         * icall.c: make get_data_chunk() support split data requests.
17713         Ensure a class is initialized in more cases. Return only the first
17714         property found in GetProperties() or the compiler gets confused. 
17715         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
17716         * reflection.h, reflection.c: add fixup mechanism for field and method
17717         tokens. Initialize assembly->typeref in a single place. Output
17718         properties after events. Support custom attributes for events, too.
17719         Typo fix for paramter custom attrs.
17721 2002-03-07  Martin Baulig  <martin@gnome.org>
17723         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
17725 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
17727         * class.c (mono_array_class_get): fix. for multi. dim. arrays
17729 2002-03-06  Martin Baulig  <martin@gnome.org>
17731         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
17732         non-zero lower bounds. See testcases #F10-#F13.
17734 2002-03-05  Martin Baulig  <martin@gnome.org>
17736         * exception.c (mono_get_exception_argument_out_of_range): New exception.
17738         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
17739         ves_icall_System_Array_GetValue(), only calculate the absolute array position
17740         here.
17741         (ves_icall_System_Array_SetValue): Likewise.
17742         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
17743         as argument and does the actual work. This function is used when copying a
17744         multi-dimensional array.
17745         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
17746         now do all the widening conversions of value types.
17747         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
17749 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
17751         * class.c: remove some magic numbers and use the smbolic names,
17752         instead. Added init_events() to load event info at class init time.
17753         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
17754         and mono_metadata_methods_from_event().
17755         * reflection.h, reflection.c: added support for writing out the evnets
17756         related information.
17758 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
17760         * reflection.h, icall.c: use a different method (GetInterfaces)
17761         to gather interface info and add isbyref, isprimitive and
17762         ispointer to the ves_icall_get_type_info() return value.
17764 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
17766         * class.h: stared adding support for events.
17767         * icall.c: split find_members implementation. Added debug icall to get
17768         the address of an object.
17769         * reflection.c: handle TypeBuilders in mono_type_get_object().
17771 2002-03-01  Martin Baulig  <martin@gnome.org>
17773         * icall.c (ves_icall_System_Array_GetLength): This must throw an
17774         ArgumentOutOfRangeException(), not an ArgumentException().
17775         (ves_icall_System_Array_GetLowerBound): Likewise.
17776         (ves_icall_System_Array_GetValue): Improved argument checking.
17777         (ves_icall_System_Array_SetValue): Improved argument checking.
17779 2002-03-01  Martin Baulig  <martin@gnome.org>
17781         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
17782         called with invalid arguments rather than just dying with g_assert().
17783         (ves_icall_System_Array_SetValue): Likewise.
17784         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
17785         raise a NotImplementedException instead.
17786         (ves_icall_System_Array_GetLength): Added argument checking.
17787         (ves_icall_System_Array_GetLowerBound): Added argument checking.
17789 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
17791         * object.h (mono_assert): new macros mono_assert and
17792         mono_assert_not_reached
17794 2002-02-28  Martin Baulig  <martin@gnome.org>
17796         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
17797         and "System::String::IsInterned" to "System::String::_IsInterned".
17799 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
17801         * icall.c: remove hacks for typebuilder. Added icall to create a
17802         modified type from a tybebuilder.
17803         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
17804         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
17805         to create a backing MonoClass for a TypeBuilder.
17807 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
17809         * class.c, class.h: more refactoring of class init.
17810         Export mono_class_setup_mono_type() and mono_class_setup_parent().
17812 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
17814         * marshal.c, marshal.h: start of marshaling interface.
17816 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
17818         * icall.c: fix order in assembly qualified name icall.
17820 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
17822         * class.c: do not free str, since we store it in the hash table.
17823         * reflection.h: add label field to MonoILExceptionInfo.
17824         * reflection.c: handle references to more than one assembly. Handle
17825         case when there isn't a module created in the assembly.
17827 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
17829         * class.c: Fix typo. Start refactoring of class init code.
17831 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
17833         * appdomain.c: exit with 1 on error.
17834         * class.c: we already have the name in MonoClassField.
17835         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
17836         MonoStreamHeader instead of an offset of image->raw_metadata.
17838 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
17840         * appdomain.c (mono_init): Be even more descriptive about the error.
17842 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
17844         * appdomain.c: give the user an informative message when corlib can't
17845         be loaded.
17847 2002-02-26  Martin Baulig  <martin@gnome.org>
17849         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
17850         New icall to get the time zone data.
17852 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
17854         * reflection.c: set virtual and raw size of section correctly.
17855         * threads.c: transfer domain information to newly created threads.
17857 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
17859         * class.c: when instancing a class in a domain, load the default
17860         vaules for static fields from the constant table. Fix System.Enum to
17861         not be an enum.
17862         * icall.c: implement Object::GetType() internalcall. Implemented
17863         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
17864         Fixed checking of binding flags in find_members().
17865         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
17866         * reflection.c: handle enumerations when writing to the constant
17867         table. Use a different object cache for types.
17870 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
17872         * object.c (mono_object_isinst): fix for arrays
17874         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
17876 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
17878         * object.c: don't use mprotect ()  and fix intern pool hash table
17879         lookup for big endian systems.
17881 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
17883         * icall.c: change type_is_subtype_of () signature.
17885 2002-02-21  Mark Crichton  <crichton@gimp.org>
17887         * rand.c, rand.h: Added random number generator for
17888         System.Security.Cryptography classes.
17890         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
17892         * icall.c: Added System.Security.Cryptography calls.
17894 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
17896         * class.c, icall.c, metadata.c: better support for pointer types.
17897         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
17898         * reflection.c: Add support for getting custom attrs for properties
17899         and simplify some code.
17901 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
17903         * icall.c: change getToken () and add custom attribute GetBlob()helper
17904         method.
17905         * reflection.h: add custom attrs array to the reflection builder structures.
17906         * reflection.c: encode and emit custom attributes for all the relevant
17907         reflection objects. Cache fieldref and methodref tokens. Change
17908         mono_image_create_token() interface to take a MonoDynamicAssembly.
17909         More complete custom attributes decoder. Load custom attributes for
17910         Assembly, Field, Method and Constructor objects, too. Make the
17911         returned array an Attribute[] one, not object[]. Added
17912         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
17913         custom attribute constructor.
17915 2002-02-20  Dick Porter  <dick@ximian.com>
17917         * icall.c:
17918         * rawbuffer.c:
17919         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
17920         problem code out for now).
17922 2002-02-19  Radek Doulik  <rodo@ximian.com>
17924         * object.c (mono_ldstr): use hash table to avoid multiple swapping
17926 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
17928         * icall.c: register the GetCustomAttributes method.
17929         * object.c, object.h: add mono_string_new_len ().
17930         * reflection.h, reflection.c: added mono_runtime_invoke(),
17931         mono_install_runtime_invoke(). Added
17932         mono_reflection_get_custom_attrs () to load custom attributes and
17933         create the attribute objects.
17935 2002-02-19  Dick Porter  <dick@ximian.com>
17936         * threads-dummy-types.c:
17937         * threads-dummy-types.h:
17938         * threads-dummy.c:
17939         * threads-dummy.h:
17940         * threads-pthread-types.c:
17941         * threads-pthread-types.h:
17942         * threads-pthread.c:
17943         * threads-pthread.h:  Deleted obsolete files
17945 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
17947         * class.c (mono_class_vtable): runtime init the class when we
17948         allocate static class data.
17950         * icall.c (ves_icall_System_Array_SetValue): check for null values.
17952         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
17953         and String - but we will need generic marshalling support in the
17954         future. 
17955         (mono_init): set the domain name in a ms compatible way
17957         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
17958         String[].
17960 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
17962         * object.c (mono_array_clone): use alloca() instead of g_malloc  
17963         for sizes
17965         * appdomain.c (mono_domain_unload): impl.
17967 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
17969         * appdomain.c, object.c: fix intern pool implementation.
17970         * class.c: fix alignment code.
17972 2002-02-16  Radek Doulik  <rodo@ximian.com>
17974         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
17975         and s2 > s1, just copy lower bytes to be compatible with little
17976         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
17977         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
17979         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
17980         force big_endian to be 1 for big endian machines 
17981         (ves_icall_iconv_new_decoder): ditto
17983 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
17985         * socket-io.c (convert_sockopt_level_and_name): If the system
17986         doesn't define SOL_IP or SOL_TCP, get them by hand using
17987         getprotobyname() and caching the values (because this could be a
17988         slow operation).
17989         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
17990         Use the appropriate struct when the system does support it. Ie,
17991         not all systems have struct ip_mreqn so use struct ip_mreq when
17992         appropriate.
17994 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
17996         * reflection.c: handle finally clauses.
17998 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
18000         * socket-io.c: use g_snprintf() instead of snprintf.
18002 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
18004         * reflection.c (mono_param_get_objects): Cast second argument to
18005         mono_method_get_param_names to a const char** to silence the
18006         compiler warning.
18008         * appdomain.c (mono_domain_assembly_open): Put parens around the
18009         truth statement in the for-loop.
18011         * unicode.c (iconv_convert): Got rid of a compiler warning about
18012         int i being unused when the system has a new iconv.
18013         (iconv_get_length): Same.
18015         * image.c (load_class_names): Cast the second argument to
18016         g_hash_table_insert() to char* to hush compiler warnings about the
18017         arg being a const.
18018         (mono_image_open): Same here.
18020         * socket-io.c: Don't conditionally include sys/filio.h or
18021         sys/sockio.h here anymore since we now get them from
18022         io-layer/io-layer.h
18023         (inet_pton): If the system doesn't support inet_aton, implement
18024         using inet_addr and also #define INADDR_NONE if it isn't defined
18025         by the system.
18027 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
18029         * metadata.c, metadata.h: added function to get packing and size info
18030         of a typedef.
18031         * reflection.h, reflection.c: handle field RVA data. Save info about
18032         the table layout if needed. Assign typedef indexes to all the types
18033         before dumping the info about them to avoid forward reference problems.
18035 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
18037         * socket-io.c (convert_sockopt_level_and_name): ifdef
18038         SO_ACCEPTCONN because it is not defined on my system (old debian)
18040 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
18042         * opcode.c: use stddef.h to get NULL.
18044 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
18046         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
18047         for FIONBIO, FIONREAD and SIOCATMARK.
18048         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
18049         define INADDR_NONE and besides, inet_addr() is deprecated and
18050         should not be used. Use inet_pton() instead - it also has the
18051         added bonus that it can easily handle IPv6 addresses as well.
18052         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
18054 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
18056         * decimal.c: remove _MSC_VER conditional.
18058 2002-02-13  Dick Porter  <dick@ximian.com>
18060         * socket-io.c: 
18061         * icall.c: Internal calls for Blocking, Select, Shutdown,
18062         GetSocketOption and SetSocketOption
18064 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
18066         * assembly.cs: better resolver: use it instead of some kludgy
18067         code.
18069 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
18071         * reflection.c: the best way to speed-up the compiler is to avoid
18072         infinite loops.
18074 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
18076         * class.c (mono_class_vtable): changed the object layout
18077         (obj->vtable->class). 
18078         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
18080 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
18082         * assembly.c: look for assemblies in the assembly dir, too.
18084 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
18086         * class.c: fix thinko in mono_class_from_type().
18088 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
18090         * exception.h, exception.c: added TypeLoadException.
18091         * object.h, object.c: added mono_array_clone ().
18092         * icall.c: handle throwOnError in AssemblyGetType().
18093         Added Array.Clone().
18094         * opcode.h, opcode.c: use a single value for the opcode val.
18095         Compile fix for non-gcc compilers.
18097 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
18099         * opcodes.c, opcodes.h: export interesting info about opcodes.
18101 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
18103         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
18104         icalls. 
18106         * class.c (class_compute_field_layout): set element_class for enums
18107         (mono_class_create_from_typedef): set element_class for normal classes
18109         * icall.c (ves_icall_System_Enum_get_value): impl.
18111         * class.c (mono_class_create_from_typedef): do not set valuetype
18112         flag for System.ValueType and System.Enum
18114 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
18116         * unicode.c (iconv_convert): fix big endian problem.
18118 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
18120         * class.c: add asserts if we are ever going to scribble over memory.
18121         * socket-io.c: not all systems have AF_IRDA defined.
18123 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
18125         * class.c (class_compute_field_layout): do not consider static
18126         fields to compute alignment
18128 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
18130         * appdomain.c (mono_appdomain_get): impl.
18131         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
18133 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
18135         * icall.c: ignore "file://" prefix when loading an assembly.
18137 2002-01-23  Dick Porter  <dick@ximian.com>
18139         * socket-io.c:
18140         * icall.c:
18141         * Makefile.am: Added socket support
18143 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
18145         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
18146         code back.  This should return the assemblies that are loaded by
18147         the runtime on behalf of an application domain. 
18149         The current implementation is still broken, it just returns every
18150         assembly loaded, but until we get real applications domain this
18151         will do.
18153 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
18155         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
18156         AppDomain object.
18158 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
18160         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
18161         the mono_class_from_name lookup.
18162         (ves_icall_get_parameter_info): ditto.
18163         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
18164         method.
18165         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
18167 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
18169         * class.c: load also nested classes on class init.
18170         System.ValueType instance methods gets passed boxed
18171         values, unless methods in derived classed that get a pointer to the
18172         data.
18173         * icall.c: use better name parsing code in GetType().
18174         * image.c, image.h: add mono_image_loaded ().
18175         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
18176         * reflection.c, reflection.h: added mono_reflection_parse_type().
18178 2002-01-22  Veronica De Santis <veron78@interfree.it>
18180         * icall.c : Added mapping of internal calls for Manual and Auto reset events
18181         * threads.c : Added the implementation of internal calls for events
18182         * threads.h : Added prototypes of internal calls for events
18183         
18184 2002-01-21  Radek Doulik  <rodo@ximian.com>
18186         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
18188 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
18190         * class.c (mono_class_init): set min_align to 1 (instead of 0)
18191         (mono_class_value_size): use min_align
18193 2002-01-20  Dick Porter  <dick@ximian.com>
18195         * threads.h:
18196         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
18197         so it compiles on w32.
18199 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
18201         * metadata.c (mono_type_stack_size): impl.
18203         * class.c (mono_class_get_field): impl. memberref token
18205 2002-01-16 Veronica De Santis <veron78@@interfree.it>
18207         * icall.h : Added the internal calls mapping for CreateMutex_internal
18208                     and ReleaseMutex_internal.
18209         * threads.h : Added the prototype of mutexes internal calls.
18210         * threads.c : Added the implementations of mutexes internal calls.
18212 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
18214         * metaparse.h: removed unused file.
18215         * reflection.c, reflection.h: added stream_data_align () function 
18216         to align data in streams and keep stream aligned. Add support for
18217         exception support in method headers.
18219 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
18221         * unicode.c: make iconv_convert () return the number of bytess written
18222         in the output buffer.
18224 2002-01-15  Dick Porter  <dick@ximian.com>
18225         * threads.c: Make the runtime's idea of infinite timeouts coincide
18226         with the class library's
18228         Fix a particularly egregious bug in mono_thread_cleanup(). That
18229         code was so utterly bogus it must have been written on a Monday.
18231 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
18233         * reflection.h: add subtypes field to TypeBuilder.
18234         * reflection.c: encode constants for literal fields.
18235         Handle subtypes. Fix user string token (and add a zero byte)
18236         at the end.
18237         
18238 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
18240         * class.c (mono_class_init): bug fix: assign slot numbers for
18241         abstract methods.
18243 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
18245         * reflection.c: don't try to output a code RVA for abstract methods.
18246         Small fixes for method header format. Output parameter info to the
18247         ParamDef table. Save method overriding info to MethodImpl table.
18248         Fix property support. Allow typedef.extends to be a type in the
18249         building assembly.
18250         * verify.c: fix off-by-one error.
18252 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
18254         * class.c: fix mono_class_from_mono_type () for szarray types.
18255         Remove unused cache check in mono_class_from_type_spec().
18256         * icall.c: *type_from_name () functions handle simple arrays and byref.
18257         * reflection.c: handle byref and szarray types. Handle methods without
18258         body (gets P/Invoke compilation working). Handle types and fields in
18259         get_token ().
18260         * reflection.h: add rank to MonoTypeInfo.
18262 2002-01-10  Dick Porter  <dick@ximian.com>
18264         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
18265         internal calls
18267 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
18269         * icall.c: initialize class in type_from_handle ().
18270         Loop also in parent classes for get_method ().
18271         * reflection.c: properly encode class and valuetype types.
18272         Start on encoding TypeBuilder types. Handle fieldrefs.
18273         Use correct length when registering a user string.
18274         Handle ConstructorBuilder and MonoMethod in get_token ().
18275         Make mono_type_get_object () aware of cached types.
18276         * object.c: back out change to mono_string_new ().
18278 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
18279         * object.c: mono_string_new should return a NULL when the string 
18280         passed in is NULL -- not try to deference it.
18281         
18282 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
18284         * icall.c: hack to make IsSubType work for TypeBuilders.
18285         * reflection.c: emit constructors before methods.
18286         Retrieve param names in mono_param_get_objects().
18288 2002/01/05  Nick Drochak  <ndrochak@gol.com>
18290         * Makefile.am: fix list of headers and sources so automake 1.5
18291         doesn't complain. Removed \# at end of list.
18293 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
18295         * reflection.c: get token for a method ref. Set return type of
18296         constructor to void.
18297         * loader.c: debug message.
18298         * class.c: typo fix.
18300 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
18302         * icall.c: fix array init with rank > 1. FindMembers
18303         loops in parent class as well.
18304         * image.c: do not insert nested types in name cache.
18305         * reflection.c: warning fix.
18306         * reflection.h: add override method (for interface impl).
18308 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
18310         * metadata.c: fix customattr decoding.
18312 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
18314         * rawbuffer.cs: Added native Win32 implementation, avoids using
18315         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
18317 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
18319         * class.c: make the low-level routines handle the cache.
18321 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
18323         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
18325 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
18327         * class.c: fix mono_array_element_size() for objects.
18328         * class.h, class.c: add properties to MonoClass and load them
18329         at init time.
18330         * icall.c: check with isinst() when assigning a value to an array
18331         instead of requiring the classes to match exactly.
18332         Implemented icall for System.Type::GetType().
18333         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
18334         enums. Handle bindingflags when looking for methods and fields.
18335         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
18336         and mono_metadata_methods_from_property().
18337         * reflection.h, reflection.c: added structures for propreties,
18338         parameters and enums. Implemented mono_property_get_object() and
18339         mono_param_get_objects().
18341 2001-12-18  Dick Porter  <dick@ximian.com>
18343         * file-io.c: Use mono_string_to_utf16() instead of
18344         mono_string_chars()
18346         * object.c: Added mono_string_to_utf16(), which copies the non
18347         NULL-terminated MonoString into a new double-null-terminated
18348         buffer.
18350 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
18352         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
18354 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
18356         * file-io.c: raise exceptions if handle is invalid.
18358 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
18360         * assembly.c: yet another check for mscorlib.
18361         * class.c, class.h: load nesting info for classes.
18362         * icall.c: many new functions to support the Reflection classes.
18363         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
18364         * reflection.h, reflection.c: mono_image_create_token(),
18365         mono_assembly_get_object(), mono_type_get_object(),
18366         mono_method_get_object(), mono_field_get_object(): methods to return
18367         objects that parallel the C representation of assemblies, types,
18368         methods, fields.
18370 2001-12-11  Dick Porter  <dick@ximian.com>
18372         * icall.c:
18373         * file-io.c: Internal calls for file IO.
18375 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
18377         * tabledefs.h: missing FileAttributes.
18378         * verify.h, verify.c: use is_valid_string () to simplify and check for
18379         valid strings more correctly. Fix warnings and speeling.
18380         Check more tables: Filed, File, ModuleRef, StandAloneSig.
18381         Check code: branches, maxstack, method calls.
18383 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
18385         * object.c (mono_object_allocate): removed static, so that the jit
18386         can allocate value types.
18388         * icall.c (ves_icall_System_DateTime_GetNow): impl.
18390 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
18392         * class.c: init enum types right away and register the
18393         token->MonoClass map in mono_class_create_from_typedef ().
18394         * verify.h, verify.c: first cut of the verifier.
18395         * pedump.c: add --verify switch to verify metadata tables.
18396         * tabledefs.h: add some missing enums.
18398 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
18400         * class.c (mono_install_runtime_class_init): impl.
18401         (mono_class_init): renamed mono_class_metadata_init to
18402         mono_class_init, also removed the metadata_inited flag
18404         * object.c (mono_object_isinst): use faster algorithm
18406 2001-11-30  Radek Doulik  <rodo@ximian.com>
18408         * mono-endian.h: reverted last change
18409         added function prototypes
18411         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
18412         add mono-endian.c back
18414         * mono-endian.c: returned back, as Paolo pointed out, it's needed
18415         for unaligned access, I've mistaked it with endianess. I am
18416         sorry.
18417         (mono_read16): fix reverted endianess
18418         (mono_read64): ditto
18419         (mono_read32): ditto
18421 2001-11-30  Dick Porter  <dick@ximian.com>
18423         * exception.c: Implement mono_exception_from_name()
18425 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
18427         * metadata.h, metadata.c: remove params_size and locals_size and their
18428         calculation from the metadata code: they are only usefult to the
18429         interp.
18431 2001-11-29  Radek Doulik  <rodo@ximian.com>
18433         * object.c (mono_ldstr): swap bytes here, it's probably not the
18434         best place, but works for me now, I'll redo it once I know mono
18435         better, also note that I add PROT_WRITE and don't reset back, also
18436         note that it's only affects big endians, so x86 should be OK
18438         * mono-endian.h (read16): use just glib macros for both endians
18440         * mono-endian.c: removed as glib macros are used in in
18441         mono-endian.h so we don't need to care about endianess for read
18442         macros as glib does that for us already
18444 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
18446         * class.h, class.h: take minimum alignment into consideration so
18447         that the fields of a class remain aligned also when in an array.
18449 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
18451         * loader.h, loader.c: add mono_method_get_param_names().
18452         * class.c: 0-init class fields.
18454 2001-11-26  Dick Porter  <dick@ximian.com>
18456         * icall.c:
18457         * threads-types.h:
18458         * threads.c: New file that handles System.Threading on all platforms
18460         * object.c: 
18461         * object.h: Remove the synchronisation struct from MonoObject,
18462         replace it with a pointer that gets initialised on demand
18464         * Makefile.am: Replace all the system-specific threading code with
18465         a single file that uses the new wrapper library
18467 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
18469         * class.c, class.h: add mono_install_trampoline() so that the runtime
18470         can register a function to create a trampoline: removes the ugly
18471         requirement that a runtime needed to export arch_create_jit_trampoline.
18472         * object.h, object.c: added mono_install_handler() so that the runtime
18473         can install an handler for exceptions generated in C code (with
18474         mono_raise_exception()). Added C struct for System.Delegate.
18475         * pedump.c: removed arch_create_jit_trampoline.
18476         * reflection.c: some cleanups to allow registering user strings and
18477         later getting a token for methodrefs and fieldrefs before the assembly
18478         is built.
18479         * row-indexes.h: updates and fixes from the new ECMA specs.
18481 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
18483         * class.h, class.c: add enum_basetype field to MonoClass.
18484         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
18485         to get index in the constant table reated to a field, param or
18486         property.
18487         * reflection.h, reflection.c: handle constructors. Set public-key and
18488         version number of the built assembly to 0.
18489         * row-indexes.h: update from new ECMA spec.
18491 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
18493         * class.h, class.c: add a max_interface_id to MonoClass.
18494         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
18495         since it's used to do that. Added mono_type_type_from_obj().
18496         Make GetType() return NULL instead of segfaulting if the type was not
18497         found. Handle simple arrays in assQualifiedName.
18498         * object.h: add a struct to represent an Exception.
18499         * reflection.c: output call convention in method signature.
18500         Add code to support P/Invoke methods and fixed offsets for fields.
18502 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
18504         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
18505         the value.
18506         * icall.c: use mono_array_addr instead of array->vector: fixes the
18507         reflection image writing.
18508         * reflection.c: init call convention byte to 0 in method signature.
18509         Encode the property signature. Don't output property-related methods
18510         twice. Really process the properties for a type (don't cast a field to
18511         a property, my mom always told me that).
18512         Fix 64 bit issues in pointer alignment in a different and more
18513         readable way.
18515 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
18517         * loader.h: Removed type class from MonoDefaults, added monotype
18519         * loader.c: Loaded MonoType, removed loading of Type
18521         * icall.c (my_mono_new_object): Now returns a System.MonoType,
18522         and fills in System.Type._impl with a RuntimeTypeHandle rather
18523         than the actual MonoClass *
18525         (ves_icall_type_from_handle): change from type_class to
18526         monotype_class
18528         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
18529         implemented
18531         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
18532         implemented
18534         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
18536         (ves_icall_System_Reflection_Assembly_GetType): implemented
18538         (ves_icall_System_MonoType_assQualifiedName): implemented
18540         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
18542 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
18544         * assembly.c (mono_assembly_open): Implement a cache for the
18545         assemblies. 
18547         (mono_assembly_close): only destroy the assembly when the last
18548         reference is gone.
18549         
18550 2001-11-09  Dick Porter  <dick@ximian.com>
18552         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
18554 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
18556         * class.c (mono_class_metadata_init): bug fix: compute the right slot
18558 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
18560         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
18561         from Martin Weindel.
18562         * object.h: add mono_string_chars ().
18564 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
18566         * reflection.c (build_compressed_metadata): Eliminates warnings
18567         and uses 64-bit clean code.
18569         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
18570         (mono_type_equal): Change signature to eliminate warnings.
18572 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
18574         * icall.c, loader.c: remove the internalcall array constructors.
18575         Changes to match the new MonoArray structure.
18576         * object.h, object.c: an array object doesn't allocate an extra
18577         vector. Add mono_array_new_full () to create jagged arrays easily.
18579 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
18581         * metadata.h, metadata.c: add mono_metadata_field_info () to
18582         retreive all the info about a field from vairous tables.
18583         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
18584         * class.h, class.c: augment MonoClassField with more info.
18585         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
18586         policy and load a field's RVA if needed.
18588 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
18590         * class.c (mono_class_metadata_init): create a trampoline for all
18591         virtual functions instead of actually compiling them.
18593 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
18595         * class.h, class.c: include name in MonoClassField.
18596         * class.c: fix fundamental type of System.Object and System.String.
18597         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
18598         tokens in ldtoken.
18599         * icall.c: remove internalcalls for the Reflection stuff that is now
18600         done in C# code.
18601         * loader.c: mono_field_from_memberref () implementation.
18602         * mono-endian.c: thinko (s/struct/union/g).
18603         * object.c, object.h: make the mono_string_* prototypes actually use
18604         MonoString instead of MonoObject.
18605         * reflection.c, reflection.h: updates for changes in the reflection
18606         code in corlib: we use C structures that map to the actual C# classes.
18607         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
18608         fat method header if needed and use the info from the ILGenerator for
18609         methods. Handle fields in types. Misc fixes.
18611 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
18613         * class.c (mono_class_metadata_init): bug fix: always allocate
18614         space for static class data
18616 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
18618         * class.c (mono_compute_relative_numbering): use relative
18619         numbering to support fast runtime type checks.
18621 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
18623         * class.c (mono_class_create_from_typeref): added debugging output
18624         to print class name when MonoDummy is returned instead of real class
18626 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
18628         * class.c (mono_class_metadata_init): interface offset table now
18629         contains pointers into the vtable - this is more efficient for the jit
18631 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
18633         * class.c (mono_class_metadata_init): use a temporary vtable (the
18634         old algorithm only worked for the interpreter, but not for the jit)
18636 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
18638         * loader.c (method_from_memberref): use mono_class_get to get the
18639         class of an array instead of using System.Array directly.
18640         (mono_get_method): also add MEMBERREF methods to the method cache
18641         which usefull for arrays.
18643 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
18645         * pedump.c (arch_compile_method): added to compute vtable entry
18647         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
18648         number of interfaces.
18649         
18650         * class.h: merged MonoArrayClass into MonoClass
18652         * class.c (mono_class_create_from_typedef): compute the vtable size and
18653         allocate space to include the vtable inside MonoClass
18654         (mono_class_metadata_init): initialize the vtable
18656 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
18658         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
18659         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
18660         * image.c: endian fixes by Laurent Rioux.
18661         * object.h, object.c: rename MonoStringObject to MonoString and
18662         MonoArrayObject to MonoArray. Change some function names to conform to
18663         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
18664         guint16* as first argument, so don't use char*.
18665         Provide macros to do the interesting things on arrays in a portable way.
18666         * threads-pthread.c: updates for the API changes and #include <sched.h>
18667         (required for sched_yield()).
18668         * icall.c: updates for the API changes above.
18669         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
18670         platforms that need them.
18672 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
18674         * class.c: set the correct type for all the fundamental
18675         type when loading the class.
18677 2001-10-05  Dick Porter  <dick@ximian.com>
18679         * threads-pthread.c (pthread_mutex_timedlock): Simple
18680         compatibility version for C libraries that lack this call.
18682 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
18684         * class.c: MonoTypes stored in MonoClass are stored as
18685         fundamental MonoTypes when the class represents a
18686         fundamental type (System.Int32, ...).
18687         The TypeHandle return by ldtoken is a MonoType*.
18688         * icall.c: ves_icall_get_data_chunk () write out all the
18689         PE/COFF stuff. Implement ves_icall_define_method (),
18690         ves_icall_set_method_body (), ves_icall_type_from_handle ().
18691         * image.c: properly skip unknown streams.
18692         * loader.h, loader.c: add type_class to mono_defaults.
18693         * metadata.c, metadata.h: export compute_size () as
18694         mono_metadata_compute_size () with a better interface.
18695         Typo and C&P fixes.
18696         * pedump.c: don't try to print the entry point RVA if there is no entry point.
18697         * reflection.c, reflection.h: many cleanups, fixes, output method
18698         signatures and headers, typedef and typeref info, compress the metadata
18699         tables, output all the heap streams, cli header etc.
18700         * row-indexes.h: typo fixes.
18702 2001-10-04  Dick Porter  <dick@ximian.com>
18704         * object.h: Add a synchronisation mutex struct to MonoObject
18706         * object.c (mono_new_object): Initialise the object
18707         synchronisation mutexes
18709         * icall.c: System.Threading.Monitor internal calls
18710         
18711         * threads-pthread.h:
18712         * threads-pthread.c: System.Threading.Monitor internal calls
18714         * threads-types.h: New file, includes the system-specific thread
18715         structures
18716         
18717         * threads-pthread-types.h:
18718         * threads-pthread-types.c: New files, handle pthread-specific
18719         synchronisation types
18721         * threads-dummy-types.h: 
18722         * threads-dummy-types.c: New files of dummy support for
18723         thread-specific types
18725         * metadata.c:
18726         * image.c:
18727         * pedump.c: include mono-endian.h not endian.h
18728         
18729         * Makefile.am: More threads files.
18730         Name mono-endian.h not endian.h
18732 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
18734         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
18735         stuff and implement a few more bits.
18736         * icall.c: a field needs to be dereferenced twice. Do not use the same
18737         name for two variables in the same scope.
18738         * image.c, image.h: cleanups.
18740 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
18742         * class.c (mono_class_metadata_init): bug fix: compute the right size
18744 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
18746         * icall.c: implemented some of the Reflection internalcalls.
18747         * image.c, image.h: start writing out the PE/COFF image.
18748         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
18749         that does the reverse than decode_blob_size ().
18750         * object.c: use mono_metadata_encode_value (). Move here
18751         temporary implementation of mono_string_to_utf8 ().
18752         * rawbuffer.c: make malloc_map static.
18754 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
18756         * metadata.c: fix type comparison for arrays.
18757         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
18758         Added a couple of new classes to monodefaults.
18759         * icall.c: added a couple of Reflection-related internalcalls.
18760         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
18761         Added a byval_arg MonoType to MonoClass.
18763 2001-09-28  Dick Porter  <dick@ximian.com>
18765         * icall.c:
18766         * threads-pthread.h: 
18767         * threads-pthread.c: Implemented internal calls for
18768         LocalDataStoreSlot operations.  Applied mutexes around all shared
18769         data.  Reworked the thread creation and Start() operations to
18770         avoid a race condition.
18771         
18772         * threads-dummy.h:
18773         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
18775 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
18777         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
18779 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
18781         * class.c, loader.c: warn and return NULL instead of erroring out.
18782         * icall.c: added System.AppDomain::getCurDomain().
18783         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
18785 2001-09-25  Dick Porter  <dick@ximian.com>
18787         * threads-pthread.h:
18788         * threads-pthread.c: Implemented timed thread joining and added
18789         System.Threading.Thread::Join_internal internal call
18791         * icall.c: Added System.Threading.Thread::Join_internal internal call
18793         * threads-dummy.h:
18794         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
18796 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
18798         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
18799         mono_string_intern () to implement the semantics of the ldstr opcode
18800         and the interning of System.Strings.
18801         * icall.c: provide hooks to make String::IsIntern and String::Intern
18802         internalcalls.
18804 2001-09-23  Dick Porter  <dick@ximian.com>
18806         * threads-dummy.c: 
18807         * threads-dummy.h: New files of dummy threading routines
18809         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
18810         support code based on system specifics
18812         Rename PTHREAD_LIBS to THREAD_LIBS
18813         
18814 2001-09-23  Dick Porter  <dick@ximian.com>
18816         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
18817         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
18818         internal calls.
18819         (mono_thread_init): Set up a Thread object instance to return when
18820         the main thread calls Thread.CurrentThread
18821         (mono_thread_cleanup): Wait for all subthreads to exit
18823         * icall.c: New internal calls for System.Threading.Thread::Sleep
18824         (including Schedule) and CurrentThread
18826         * threads.h: New file, to insulate thread-specific stuff from the
18827         rest of the code
18829 2001-09-21  Dick Porter  <dick@ximian.com>
18831         * threads-pthread.h: 
18832         * threads-pthread.c: New file, for handling pthreads-style
18833         threading support.  Start() now starts a new thread and executes
18834         the ThreadStart delegate instance.
18836         * icall.c: Added the internalcall for
18837         System.Threading.Thread::Start_internal
18839         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
18841 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
18843         * loader.c: work around the different signatures for delegates
18844         constructors csc generates in compiled code vs the ones compiled in mscorlib.
18846 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
18848         * class.h, class.c: add mono_class_get_field_from_name ().
18849         * *: Fix C comments and other ANSI C issues.
18851 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
18853         * endian.h, assembly.c: fix some endianness issues.
18855 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
18857         * loader.h, load.c: add delegate_class to mono_defaults.
18858         Handle runtime provided methods in mono_get_method ().
18860 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
18862         * loader.c (mono_get_method): use pinvoke for internal call
18864         * icall.c: use pinvoke for internal call
18866         * loader.c (method_from_memberref): set the method name
18868 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
18870         * metadata.c: help the compiler generate better code for
18871         mono_class_from_mono_type ().
18873 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
18875         * class.c (mono_class_metadata_init): delayed computing of the
18876         class size to mono_class_metadata_init ()
18878 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
18880         * class.c, class.h: add an interfaces member to MonoClass.
18881         * image.c, image.h: add assembly_name field to MonoImage
18882         from the assembly table.
18883         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
18885 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
18887         * class.c: Handle Array in mono_class_from_mono_type ().
18888         * metadata.c, pedump.c: some endian fixes.
18890 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
18892         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
18893         * metadata.c: fix small problem introduced with the latest commit.
18895 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
18897         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
18898         We don't need a MonoMetadata pointer anymore to compare signatures in
18899         mono_metadata_signature_equal (), update callers.
18900         Reduced memory usage an number of allocations for MonoMethodHeader and
18901         MonoMethodSignature.
18903 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
18905         * metadata.c: added compare for szarray.
18907 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
18909         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
18910         and add a couple more types to it and mono_defaults. Give an hint on
18911         classes that need implementing in our corlib and are referenced
18912         in mscorlib.
18914 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
18916         * class.h, class.c: keep track if a class is also an Enum.
18917         * loader.c: Implement a couple more types for use in libffi
18918         marshalling. Gives better diagnostics when failing to dlopen
18919         a library. Set method->klass for P/Invoke methods, too.
18921 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
18923         * class.c, class.h: add a MonoType this_arg to MonoClass that
18924         represents a pointer to an object of the class' type that
18925         can be used by the interpreter and later the type cache.
18926         Add best guess alignment info for valuetype objects.
18928 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
18930         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
18931         into MonoType: one less level of indirection and allocation and
18932         simplifies quite a bit of code. Added cache for MonoTypes that are
18933         used frequently, so that we don't need to allocate them all the time.
18935 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
18937         * class.c (mono_class_create_from_typedef): System.Enum is also a
18938         value type, although it does not derive from System.ValueType
18939         (maybe a bug in the ms compiler?)
18941         * metadata.c (mono_type_size): return the right size for value types
18943         * loader.c (mono_get_method): only initialize method header if not abstract
18945         * class.c (mono_class_from_mono_type): use mono_default values. 
18947 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
18949         * *: use MonoClass pointers instead of <type_tokens>
18950         
18951         * class.h: new flag: metadata_inited.
18953         * class.c (mono_class_metadata_init): impl.
18954         (mono_class_instance_size): impl.
18955         (mono_class_data_size): impl.
18957 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
18959         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
18960         MonoClass now has the name and name_space fields. 
18961         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
18962         mono_get_method () takes and optional MonoClass as argument.
18963         Removed mono_typedef_from_name() and added mono_class_token_from_name()
18964         instead that takes advantage of a map from class names to typedef
18965         tokens in MonoImage.
18967 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
18969         * metadata.c: zero is not a valid alignment boundary.
18970         Merge MONO_TYPE_VOID in default decoding code.
18972 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
18974         * image.h: merged MonoMetadata into MonoImage
18976         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
18977         identify the type of elements.
18979 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
18981         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
18982         * cil-coff.h: split MonoMSDOSHeader and add size info.
18983         * image.c: add some consistency checks.
18984         * metadata.c: fix row size computation: one programmer
18985         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
18986         add explanation for the locator routine.
18987         Fix decoding of size in method header.
18988         
18989 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
18991         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
18992         (g_concat_dir_and_file): Bring g_concat_dir_and_file
18993         function from gnome-libs.  This uses the right path separator
18994         based on the OS, and also works around a bug in some systems where
18995         a double slash is not allowed. 
18996         (default_assembly_name_resolver): Use g_concat_dir_and_file
18997         (mono_assembly_open): ditto.
18999 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
19001         * metadata.c (mono_metadata_signature_equal): impl.
19003         * *: void is now a realy MonoType (instead of using NULL)
19004         
19005         * metadata.c (do_mono_metadata_parse_type): use
19006         mono_metadata_parse_type to parse void value.
19008 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
19010         * metadata.c, metadata.h: in the signature and method header store
19011         only the space required for holding the loca vars and incoming arguments.
19013 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
19015         * metadata.c (do_mono_metadata_parse_type): treat void like any
19016         other type (instead of assigning NULL);
19018 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
19020         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
19022 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
19024         * image.c (do_mono_image_open): added a cache for arrays.
19026 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
19028         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
19029         decode a single column from a row in a metadata table and changes
19030         to take advantage of it in the typedef locator (gives a nice speed up).
19031         Store offset info for function params.
19033 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
19035         * image.h (MONO_IMAGE_IS_CORLIB): removed 
19037 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
19039         * assembly.c: how could mono_assembly_close () had ever worked?
19040         * metadata.c, metadata.h: provide offset info for local vars.
19041         Implement mono_type_size () to take care of alignment as well
19042         as size (it was mono_field_type_size in cli/class.c before).
19044 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
19046         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
19048         * assembly.h (CORLIB_NAME): set to corlib.dll
19050         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
19052 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
19054         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
19055         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
19056         tokentype.h: massive namespace cleanup.
19058 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
19060         * metadata.h, metadata.c: decode exception clauses when parsing method header.
19062 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
19064         * metadata.c (mono_metadata_free_type): added check for type !=
19065         NULL (void) before calling mono_metadata_free_type()
19067 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
19069         * metadata.h, row_indexes.h: added header with enumerations to use
19070         to index in the columns from tables in metadata and to decode coded
19071         tokens: we should start using this instead of embedding magic numbers
19072         all over the code.
19074 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
19076         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
19077         Move metadata_t info from cli_image_info_t to MonoImage, where
19078         it's easily accessible. Changed all the uses accordingly.
19079         Added the method and class caches to MonoImage.
19080         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
19081         and mono_metadata_decode_value () signature to be more consistent
19082         with the other parse functions (and simplify code). Taken advantage
19083         of zero-length array allocation with GCC. Removed reduntant (and
19084         wrong) MonoFieldType struct and use MonoParam instead. Changed
19085         mono_metadata_parse_field_type () to use common code for parsing.
19086         Added mono_metadata_typedef_from_field () and
19087         mono_metadata_typedef_from_method () to lookup a typedef index from a
19088         field or method token.
19089         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
19091 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
19093         * metadata.c (mono_metadata_parse_field_type): Implement. 
19094         (do_mono_metadata_parse_type): Split engine from
19095         mono_metadata_parse_type, so that we can create smaller structures
19096         for things that just have one pointer to the MonoType (look at
19097         the MonoFieldType)
19099 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
19101         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
19102         as Jan Gray found out, it is incorrect. 
19104 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
19106         * assembly.c: Implement asssembly loading.  This loads an image
19107         and loads all the referenced assemblies.  Come to think of it, we
19108         could always do lazy loading of the assemblies. 
19110         * image.c (mono_image_open): Keep loaded images in a hashtable.
19112         * image.h (MonoImage): Add reference count.
19114 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
19116         * assembly.c (mono_assembly_open): Keep track of the file name in
19117         case the assembly has no ASSEMBLY table.
19119         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
19120         from get.c here.
19122 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
19124         * metadata.c, metadata.h: decode local vars in method header
19125         parse function. Change callers accordingly.
19127 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
19129         * metadata.h, cil-coff.h: protect against multiple inclusion.
19130         Added some new structures to hold information decoded from metadata:
19131         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
19132         and relevant decoding/free functions.
19133         * metadata.c: implement decoding functions. Add warning for out of bounds
19134         index in mono_metadata_locate(). Implement mono_get_method () to retreive
19135         all the info about a method signature and invocation. Remove check on
19136         uninitialized local var in parse_mh() and fix memory leak.
19138 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
19140         * metadata.h: More macros.
19142         * tokentype.h: New file.
19144 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
19146         * assembly.c: added a consistency check and initialize
19147         some structures with g_new0().
19148         * metadata.c: fixed a couple more bugs in table size computation
19149         and add other checks for out-of bound access to metadata.
19151 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
19153         * metatada.c: fix bugs computing table sizes. Spew a
19154         warning when index in string heap is out of bounds.
19156 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
19158         * metadata.h: Add a couple of macros to manipulate tokens. 
19160 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
19162         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
19163         cli_section_tables).
19165 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
19167         * metadata.c (mono_metadata_user_string): New function, provides
19168         access to the UserString heap. 
19170 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
19172         * metadata.c: Add inline documentation.
19174 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
19176         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
19177         files. 
19179 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
19181         * typeattr.h: New file, TypeAttribute flags. 
19183 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
19185         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
19186         mono_assembly_ensure_section): Section loading code.
19187         (load_section_tables): Load the sections.
19189         * mono/metadata/metadata.c (mono_metadata_locate_token,
19190         mono_metadata_locate): Functions to locate the information
19191         definition given a token or a table and an index.
19192         (mono_metadata_compute_table_bases): New.
19193         (compute_size): New function to compute the sizes of the various
19194         tables.
19196         * mono/metadata/metadata.h: Finish listing the different index
19197         types. 
19199         * mono/metadata/pedump.c: Improve to dump new information.
19201 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
19203         * mono/metadata/metadata.c: Entered all the tables matching
19204         Beta2. 
19206         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2