2004-09-06 Ben Maurer <bmaurer@users.sourceforge.net>
[mono-project.git] / mono / metadata / ChangeLog
blob137421eda3ca8ad00b431b55515ebf1d415c06a2
1 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
3         * object.c: When allocating an array, we have to throw
4         an overflow exception if any of the lengths are < 0.
6 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
8         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
9         properly. Also move implementation of string array marshalling to 
10         managed code. Fixes #42316.
12 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14         * assembly.c: provide more information when loading an assembly fails.
16 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18         * filewatcher.c: don't expect the development fam package to be
19         installed.
21 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
23         * marshal.c: Make a copy of the signature cookie since it will be
24         freed by the caller.
25         
26         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
28         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
30         * metadata.c (mono_metadata_free_marshal_spec): New function to free
31         marshal specs.
33         * marshal.c: More refactoring.
34         
35         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
36         smaller functions.
38 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
40         * object.c: In mono_message_invoke, fill the output parameter array after
41           calling the managed method (it was done before the call). This fixes
42           bug #59299.
44 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
46         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
47         as well.
49 2004-09-02  Martin Baulig  <martin@ximian.com>
51         * class.c (mono_class_instance_size): Don't allow generic type
52         definitions or open generic instances.
53         (mono_class_array_element_size): If we're a value type, call
54         mono_class_instance_size() on the original class.
56         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
57         handle generic instances.
59         * mono-debug-debugger.c (write_type): Handle generic instances
60         like classes.
62 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
64         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
65         the allocation request fails. Fixes #65089.
67         * object.c (mono_runtime_free_method): Do not call mono_free_method.
68         
69         * object.c (mono_runtime_free_method): New function to free a dynamic
70         method.
72         * marshal.c (mono_delegate_free_ftnptr): New function to free the
73         delegate trampoline.
75         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
76         with hasthis as dynamic,
78         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
80         * domain.c (mono_jit_info_table_remove): New function to remove an
81         entry from the jit info table.
83         * class-internals.h (MonoMethod): Add 'dynamic' field.
85         * loader.c: Fix warnings.
87 2004-09-01  Martin Baulig  <martin@ximian.com>
89         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
90         instead of mono_debugger_lock() because the latter one is a no-op
91         unless running in the debugger.
93 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
95         * class.c (class_compute_field_layout): Classes with auto-layout or
96         reference fields are not blittable.
97         
98 2004-09-01  Dick Porter  <dick@ximian.com>
100         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
101         mono_image_get_filename() to get the assembly location.
103         * icall.c:
104         * metadata.h: Fix compile warnings
106 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
108         * class.c (class_compute_field_layout): System.Object is blittable.
110         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
111         as in/out. Fixes #59909.
113 2004-09-01  Martin Baulig  <martin@ximian.com>
115         * metadata.h (MONO_TYPE_ISREFERENCE): Call
116         mono_metadata_generic_inst_is_valuetype() if we're a generic
117         instance to check whether our underlying type is a reference type.
119 2004-09-01  Martin Baulig  <martin@ximian.com>
121         * metadata.c (mono_type_size): If we're a generic instance, call
122         mono_class_value_size() for value types.
124 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
126         * marshal.c: Implement more custom marshalling functionality. Fixes
127         #64915.
129 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
131         * mono-debug.c, debug-mono-symfile.c: add some locking love.
133 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
135         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
137         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
139         * icall.c: Fix some warnings.
141         * threads.c (abort_appdomain_thread): Fix unref errors.
142         (mono_thread_current): Fix THREAD_DEBUG define.
144 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
146         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
148         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
150 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
152         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
153         string arrays.
155 2004-08-28  Martin Baulig  <martin@ximian.com>
157         * metadata.c
158         (mono_metadata_generic_inst_is_valuetype): New public function.
160         * metadata.h (MONO_TYPE_ISSTRUCT): Call
161         mono_metadata_generic_inst_is_valuetype() if we're a generic
162         instance to check whether our underlying type is a valuetype.
164 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
166         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
167         #63768.
169 2004-08-25  Martin Baulig  <martin@ximian.com>
171         * loader.c (mono_get_method_from_token): Abstract methods can also
172         be generic and thus have type parameters.
174         * metadata-internals.h
175         (MonoDynamicImage): Added `GPtrArray *gen_params'.
177         * reflection.c (mono_image_get_generic_param_info): Don't create a
178         metadata row, just add an entry to the `gen_params' array.
179         (build_compressed_metadata): Sort the `gen_params' array and then
180         actually create the metadata.
182 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
184         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
186 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
188         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
190 2004-08-24  Martin Baulig  <martin@ximian.com>
192         * class.cs (mono_class_is_subclass_of): Like an interface, a
193         generic instance also derives from System.Object.
195 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
197         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
198         custom modifiers to be in any order. Fixes #61990.
200 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
202         * object.c: Register mono_object_new_fast icall.
203         
204         * object.c (mono_class_get_allocation_ftn): Return to calling
205         mono_object_new_fast, since it seems faster to compute the object 
206         size in unmanaged code than passing it as a parameter.
208         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
210         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
211         this function with Boehm as the oom handler, so we don't have to check
212         the result of GC_malloc.
214         * object.c: Remove checks for oom.
216         * object.h object.c (mono_class_get_allocation_ftn): New function to
217         return the icall which can be used to allocate an instance of a given
218         class. 
220         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
222         * class-internals.h: Add 'enabled' field.
224 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
226         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
228 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
229         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
230         value 0x0010.
232 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
234         * appdomain.c: use the Tls function for appdomain too,
235         at Zoltan's request. Actually return in mono_context_get
237         * appdomain.c, profiler.c, threads.c: use __thread
239 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
241         * appdomain.c threads.c: Call GC_CreateThread on windows.
243         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
244         multiple libraries since this don't work on windows.
246 2004-08-18  Martin Baulig  <martin@ximian.com>
248         * class-internals.h
249         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
250         MonoMethodHeader.
252         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
253         MonoMethodNormal since we also need it for abstract and interface
254         methods.
256         * reflection.c
257         (build_compressed_metadata): Sort the GenericParam table.
258         (mono_image_create_token): Added `gboolean create_methodspec'
259         argument; this is false when generating a MethodImpl token.
260         (reflection_methodbuilder_to_mono_method): Abstract and interface
261         methods may also have generic parameters.
263 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
265         * appdomain.c: thread local alloc
267 2004-08-17  Martin Baulig  <martin@ximian.com>
269         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
271         * icall.c
272         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
273         argument.
275         * class.c (mono_type_get_full_name): New public function.
276         (mono_type_get_name): Don't include the type arguments.
278 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
280         * Makefile.am: Build static versions of libmetadata and libmonoruntime
281         for inclusion into the mono executable.
283 2004-08-16  Martin Baulig  <martin@ximian.com>
285         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
286         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
288 2004-08-14  Martin Baulig  <martin@ximian.com>
290         * class.c (dup_type): Also copy the `byref' field.
292 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
294         * reflection.c (create_dynamic_mono_image): Revert the last change 
295         since it breaks bootstrap.
297 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
299         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
301         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
302         not free them with g_free.
304 2004-08-11  Martin Baulig  <martin@ximian.com>
306         * reflection.c (mono_reflection_setup_internal_class): Also call
307         mono_class_setup_mono_type() if we already have a `tb->type.type'.
309 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
311         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
312         called during default (first) AppDomain creation. Keep track of
313         Evidence when loading assemblies.
315 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
317         * opcodes.c, opcodes.h: reduce runtime relocations.
319 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
321         * culture-info.h, locales.c: fixes and chages to sue the new
322         optimized format of the locale data.
323         * culture-info-tables.h: regenerated.
325 2004-08-06  Geoff Norton <gnorton@customerdna.com>
326         
327         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
329 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
331         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
332         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
333         * domain-internals.h: icall declaration.
334         * icall.c: icall registration.
335         * object-internals.h: New fields in MonoAssembly for CAS.
337 2004-08-05  Duncan Mak  <duncan@ximian.com>
339         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
340         CEE_LDELEM_ANY.
342 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
344         * reflection.c: fix to deal with object[] arrays in custom ctors
345         (bug #62550).
347 2004-08-05  Martin Baulig  <martin@ximian.com>
349         * class.c (mono_class_array_element_size): Added support for
350         generic instances and correctly handle "recursive" types.
352 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
354         * assembly.c: Fix warnings.
356 2004-08-04  Martin Baulig  <martin@ximian.com>
358         * class.c
359         (mono_type_get_name_recurse): Added `gboolean include_arity'
360         argument specifying whether or not we should include the generic
361         arity in the type name.
362         (_mono_type_get_name): New static function.
363         (mono_class_setup_vtable): If we're a generic instance, don't
364         include the generic arity in the names of explicit method
365         implementations.        
367 2004-08-03  Martin Baulig  <martin@ximian.com>
369         * class.c (mono_type_get_name_recurse): Enclose the generic type
370         arguments in `<', '>'.
372 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
374         * gc.c: make GC warning messages use the trace API, they are just
375         noise to most of the users.
377 2004-08-03  Martin Baulig  <martin@ximian.com>
379         * debug-mono-symfile.c (read_string): Correctly read the string.
381 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
383         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
384         
385         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
386         icalls.
387         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
389 2004-07-30  Martin Baulig  <martin@ximian.com>
391         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
392         Reflect latest symbol writer changes.   
394 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
396         * object.c: always create an object if null is passed
397         to Invoke() where a valuetype is expected.
399 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
401         * marshal.c (mono_marshal_init): make managed
402         signatures match native ones better for 64bits.
404 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
406         * appdomain.c: hack to build correctly the private bin path on windows.
407         Fixes bug #61991.
409 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
411         * assembly.c: Load mscorlib from the correct framework directory
412           (mono/<version>/mscorlib.dll).
413         * appdomain.h: Added prototypes for new functions.
414         * internals.h: Added some prototypes.
415         * domain.c: When initializing the runtime, get from the executable and
416           the configuration files the runtime version that the app supports.
417           Added support methods for reading app.exe.config. Added list of versions
418           supported by the JIT. Added two new methods: mono_init_from_assembly,
419           which initializes the runtime and determines the required version from
420           the provided exe file, and mono_init_version, which initializes
421           the runtime using the provided version.
422         * icall.c: Get machine.config from version-specific directory.
423         * reflection.c: When generating an image, embed the version number
424           of the current runtime.
426 2004-07-28  Dick Porter  <dick@ximian.com>
428         * socket-io.c
429         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
430         returned sockaddr size before creating the remote address object.
431         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
432         61608.
434 2004-07-28  Dick Porter  <dick@ximian.com>
436         * locales.c (string_invariant_compare_char): Fix invariant char
437         compares between upper and lower cases.  Fixes bug 61458.
439 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
440         
441         * marshal.c: actually cache stelem.ref wrappers.
442         
443 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
445         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
446         sections and remove the mono_cli_rva_map () function.
448 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
450         * debug-mono-symfile.c: fix one more endianess issue, from a patch
451         by Geoff Norton (<gnorton@customerdna.com>).
453 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
455         * class.c: fix class loads for pointer types (typeof(int) !=
456         typeof(int*)).
458 2004-07-27  Martin Baulig  <martin@ximian.com>
460         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
461         reading the debugging information from an external ".mdb" file.
463 2004-07-24  Martin Baulig  <martin@ximian.com>
465         * reflection.c (mono_image_get_type_info): Only write a class
466         layout entry if we actually have a size or a packing size.
468 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
470         * reflection.c (type_get_fully_qualified_name): 
471         insert cast to get type checking of ?: with non-gcc compilers
473 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
475         * rand.c: use g_getenv for both lookups of
476         MONO_EGD_SOCKET
478 2004-07-17  Martin Baulig  <martin@ximian.com>
480         * reflection.c (mono_reflection_bind_generic_method_parameters):
481         Set `gmethod->reflection_info'.
483 2004-07-17  Martin Baulig  <martin@ximian.com>
485         * class.c (mono_class_create_from_typedef): Insert the newly
486         created class into the hash table before computing the interfaces
487         since we could be called recursively.
489 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
491         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
492         function to implement stelem.ref in managed code
493         * class-internals.h, debug-helpers.c: a new wrapper type
494         for the above.
496 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
498         * gc.c: allow GC handles to work even when no GC is compiled in.
499         Fix part of bug #61134 (GetAddrOfPinnedObject).
501 2004-07-13  Peter Williams  <peter@newton.cx>
503         * process.c (complete_path): Make sure we don't attempt to execute
504         directories.
506 2004-07-12  Geoff Norton <gnorton@customerdna.com>
508         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
509           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
510           and will add/subtract the hour if needed
512 2004-07-12  Martin Baulig  <martin@ximian.com>
514         * reflection.c (mono_field_get_object): If we have
515         `field->generic_info', take the attributes from
516         `field->generic_info->generic_type'.    
518 2004-07-12  Martin Baulig  <martin@ximian.com>
520         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
521         This function must be called before initializing the runtime.
522         (mono_debug_init_1): New function; call this after initializing
523         the runtime, but before loading the assembly.  It tells the
524         debugger to load corlib and the builtin types.
526         * mono-debug-debugger.c: Did some larger changes in the debugging
527         code; support recursive class declarations, make sure we actually
528         add all classes.
530 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
532         * debug-helpers.c: undo my previous patch and fixed the real issue in
533         ../mini/exceptions-x86.c
535 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
537         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
538         when no HOME env. variable was set and a NullRef was thrown in a .cctor
539         called from other .cctors.
541 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
543         * loader.c: Removed the mono_loader_wine_init hack now that we are
544         doing a managed version of Windows.Forms.
546 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
548         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
549         threadpool.c, threads.c: remove static data from rootset.
551 2004-07-09  Dick Porter  <dick@ximian.com>
553         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
554         Don't do any more processing if the matched length was 0.  It was
555         increasing the size of the string before.  Fixes bug 61167.
557 2004-07-09  Dick Porter  <dick@ximian.com>
559         * socket-io.h:
560         * socket-io.c
561         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
562         Add support for SO_PEERCRED if its available.
564 2004-07-09  Peter Bartok <pbartok@novell.com>
565         * loader.c: winelib.exe.so error message is now only displayed if
566         MONO_DEBUG is set. To help us avoid questions when people are trying
567         out the new Managed.Windows.Forms.
569 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
571         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
572         for isinst and castclass wrappers.
574         * class-internals.h icall.c: Move registration and lookup of JIT icalls
575         to libmetadata from the JIT, so they could be used by the marshalling
576         code and the interpreter.
578         * marshal.c: Register marshalling related JIT icalls here instead of
579         in mini.c. Use CEE_MONO_ICALL instead of the family of 
580         CEE_MONO_PROC<x> opcodes to call marshalling functions.
582         * metadata.h: Remove unneeded marshalling conversions.
584         * opcodes.c: Update for new opcodes.
585         
586 2004-07-08  Martin Baulig  <martin@ximian.com>
588         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
589         (mono_debug_get_domain_data): Make this function static.
591 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
593         * gc.c, object.h: add nice GC handle API for embedders.
595 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
597         * reflection.c: more changes for the new api
599         * object.c: When we reflect on a field w/ a constant value, it
600         will not have a memory location, so we must access metadata. Also,
601         allow easier reading of strings so that we can read them from
602         the constant data.
604         * class.c (mono_class_layout_fields): no need for literal fields here.
606         * class-internals.h: api changes for const fields
608         * icall.c (ves_icall_get_enum_info): use new apis for const fields
610 2004-07-06  Martin Baulig  <martin@ximian.com>
612         * mono-debug.h: Increment version number to 44.
614         * mono-debug.c (mono_debug_add_wrapper): The second argument is
615         now a gpointer, rewrote this whole method.
617         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
618         function.  Add information about the wrapper in a new "misc table".
620         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
621         for the new misc table.
623 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
625         * metadata-internals.h image.c: Add a cache for helper signatures.
627         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
629 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
631         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
632         delegates from a delegate. Fixes #61033.
633         
634         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
635         marshalling of stringbuilder arrays. Fixes #59900.
637 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
639         * icall.c: Add EnumBuilder:setup_enum_type icall.
641 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
643         * icall.c: Added a new icall for the property version of
644         OffsetOfStringData.
646 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
648         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
649         it has a constant size across platforms.
651         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
652         stack trace.
654 2004-06-29  Martin Baulig  <martin@ximian.com>
656         * mono-debug.c (mono_debug_add_method): Protect the whole function
657         in mono_debugger_lock(), not just parts of it.
659 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
661         * reflection.c: make sure padding bytes in heaps are zeroed.
663 2004-06-24  David Waite  <mass@akuma.org>
665         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
666         image.c, loader.c, locales.c, marshal.c, metadata.c,
667         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
668         string-icalls.c, threads.c: change to C90-style comments from C99 /
669         C++ -style
671 2004-06-24  Dick Porter  <dick@ximian.com>
673         * threads.c
674         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
675         return createdNew.  Fixes bug 60412.
677         * threads-types.h: 
678         * icall.c: Add createdNew parameter to CreateMutex icall
680 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
682         * reflection.c, object-internals.h: save default value in params.
684 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
686         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
687         no need to build a new path combining that with the application base.
688         Fixes bug #60442.
690 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
692         * reflection.c: fixed minor standard compliance issues.
694 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
696         * reflection.c: fixed issue with encoding some custom attributes
697         (arrays in properties and fields, bug #60411).
699 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
701         * reflection.c: fix start address when copying the public key token.
703 2004-06-23  Martin Baulig  <martin@ximian.com>
705         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
706         the `exc' object in a static object to put it into the GC's root set.
708 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
710         * reflection.c: make mono_reflection_setup_internal_class ()
711         callable a second time to setup a new parent class.
713 2004-06-23  Dick Porter  <dick@ximian.com>
715         * threads.c: Check for WAIT_IO_COMPLETION return values.
717 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
719         * appdomain.c: Removed the g_free on the public key token. Now copy 
720         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
721         * assembly.c: Added public key token string value when loading 
722         assemblies. Fix bug #60439.
723         * icall.c: Added missing informations (like public key) in 
724         GetReferencedAssemblies. Fix #60519.
725         * image.h: Changed definition for public key token from const char*
726         public_tok_value to guchar public_key_token [17];
727         * reflection.c: Updated for changes to public key token.
729 2004-06-22  Lluis Sanchez Gual
731         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
732         for the field in base classes.
734 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
736         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
737         mark headers as not supported, they are installed only for use by the
738         debugger.
740 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
742         * *.c, *.h: avoid namespace pollution in public headers.
744 2004-06-21  Martin Baulig  <martin@ximian.com>
746         * exception.c (mono_get_exception_security): It's in
747         "System.Security", not in "System".
749         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
750         the exception classes.
752 2004-06-21  Martin Baulig  <martin@ximian.com>
754         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
755         Protect the exception object from being finalized.
757 2004-06-21  Martin Baulig  <martin@ximian.com>
759         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
760         public function.
762 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
764         * reflection.c: Load the assembly in mono_reflection_type_from_name,
765         if it was not loaded before. Fix parts of #60439.
767 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
769         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
770         code that was broken since Ben's change: wrappers are now
771         dependent on the method signature only again.
773 2004-06-21  Martin Baulig  <martin@ximian.com>
775         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
776         added interface support.
778 2004-06-21  Martin Baulig  <martin@ximian.com>
780         * class.c (mono_vtable_get_static_field_data): New public method.
782 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
784         * filewatcher.c : Windows build fix to be compliant with API changes.
786 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
788         * class.h, class.c: more accessors.
789         * metadata.h, metadata.c: prepare for hiding MonoType and
790         MonoMethodSignature: people should use the accessors from now on
791         outside of the tree.
793 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
795         * *.c, *.h: more API cleanups.
797 2004-06-18  Jackson Harper  <jackson@ximian.com>
799         * assembly.c: Trace loading assemblies.
800         * loader.c: Trace loading native libraries.
801         * mono-config.c: Trace loading config files.
802         
803 2004-06-18  Dick Porter  <dick@ximian.com>
805         * locales.c: Tell ICU the lengths of strings, it can cope with
806         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
808 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
810         * image.c: swapped name/filename;
812 2004-06-18  Martin Baulig  <martin@ximian.com>
814         * mono-debug-debugger.c (write_class): Write the parent class at
815         the end of the header.
817 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
819         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
821 2004-06-17  Raja R Harinath  <rharinath@novell.com>
823         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
824         (bundle_obj): New conditional define.
825         (BUILT_SOURCES): Remove.
826         ($(bundle_srcs)): Make parallel-make safe.
827         (libmonoruntime_la_LIBADD): Make unconditional.
828         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
829         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
831 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
833         * culture-info-tables.h: It was inconsistent with the latest
834           supp info files.
836 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
838         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
839         be loaded.
841         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
842         with gcc 2.95.
844 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
846         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
847         cleaned up public header threads.h.
849 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
851         * Makefile.am, *.c, *.h: more API cleanups.
853 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
855         * Makefile.am: removed monosn from compilation.
856         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
857         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
858         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
859         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
860         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
861         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
863 2004-06-15  Jackson Harper  <jackson@ximian.com>
865         * assembly.c: Make locales lower case when searching the GAC for
866         assemblies. gacutil will always make locales lowercase when
867         installing so this effectively makes them case insensitive.
868         
869 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
871         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
872         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
873           parameter which allows to choose whether the wait can be interrupted or 
874           not. Also added the method mono_monitor_enter(), which locks the monitor
875           using an infinite wait and without allowing interruption.
876           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
877           interrupted.
878         * object.h: Added new fields in MonoThread. suspend_event holds the event
879           used to susped/resume the thread. synch_lock is the lock object to use for
880           modifying the thread state.
881         * threads.c: Use the new synch_lock object for locking, instead of "this",
882           which can generate deadlocks.
883           Moved thread state change in Thread.Sleep and Thread.Join from managed
884           to unmanaged code. This avoids a deadlock when the thread was suspended
885           just after acquiring the thread lock.
886           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
887           Implemented Thread.Suspend using an event instead of ThreadSuspend,
888           which is not fully implemented in the io-layer.
889         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
891 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
893         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
894         threads-types.h: more API cleanups.
896 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
898         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
899         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
900         threadpool.c, threads.c: first pass at the exported API cleanup.
902 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
904         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
906 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
908         * icall.c: added internalGetHome.
910 2004-06-14  Dick Porter  <dick@ximian.com>
912         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
913         possible to return successfully when '.' or '..' were the only
914         entries in a directory, but were skipped.  The MonoIOStat was not
915         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
916         Fixes bug 59574.
918 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
920         * reflection.c: make binaries run on .Net 1.1 by default.
922 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
924         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
926 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
928         * marshal.c: keep track of struct size with explicit layout
929         (bug #59979).
931 2004-06-12  Martin Baulig  <martin@ximian.com>
933         * mono-debug-debugger.c: Comment out a debugging g_message().
935 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
937         * reflection.c, reflection.h: do not free custom attrs that are cached.
938         * icall.c: use braces to make code clearer.
940 2004-06-11  Martin Baulig  <martin@ximian.com>
942         * class.h (MonoInflatedField): New type.
943         (MonoClassField): Replaced `MonoType *generic_type' with
944         `MonoInflatedField *generic_info'.
946         * icall.c
947         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
949 2004-06-11  Martin Baulig  <martin@ximian.com>
951         * reflection.c (mono_image_create_method_token): Correctly encode
952         varargs methods.
954 2004-06-11  Martin Baulig  <martin@ximian.com>
956         * metadata.c (mono_metadata_parse_method_signature): When parsing
957         a MethodDef which has VarArgs, also set sentinelpos if we don't
958         have any parameters.
960 2004-06-11  Martin Baulig  <martin@ximian.com>
962         * verify.c (mono_method_verify): In CEE_CALL, use
963         mono_method_get_signature() to get the method's signature, unless
964         we're a PInvoke method.
966 2004-06-10  Jackson Harper  <jackson@ximian.com>
968         * assembly.c: Use <path>/lib/mono/gac for the extra paths
969         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
970         logical name as the supplied path is just a prefix to the gac not
971         the direct path to it.
972         
973 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
975         * reflection.c: make the token for a created method match
976         the token of the MethodBuilder it was created from
977         (IKVM requires this behaviour now).
979 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
981         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
982         reflection.c, socket-io.c: leak fixes.
984 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
986         * icall.c: handle sentinel pos in vararg methods in position different
987         from 0.
989 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
991         * culture-info-tables.h: freshly generated.
993 2004-06-09  Martin Baulig  <martin@ximian.com>
995         * loader.c (mono_get_method_constrained): Call `mono_class_init
996         (constrained_class)'.   
998 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
1000         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
1001         any methods. Fixes #59629.
1003 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
1005         * culture-info-tables.h: reflecting locale-builder updates.
1007 2004-06-08  Dick Porter  <dick@ximian.com>
1009         * object.h:
1010         * locales.c: Fixed compile warnings, including a real bug in
1011         CompareInfo_internal_compare.
1012         
1013 2004-06-08  Dick Porter  <dick@ximian.com>
1015         * locales.c
1016         (ves_icall_System_Globalization_CompareInfo_internal_index):
1017         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
1018         Double-check the resuls of usearches, because ICU currently
1019         ignores most of the collator settings here.  Fixes bug 59720.
1020         
1021 2004-06-08  Dick Porter  <dick@ximian.com>
1023         * locales.c
1024         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
1025         Fix memory leak and segfault-causing typo.  No idea how this one
1026         lasted so long without being noticed.
1028 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
1030         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
1031         any methods. Fixes #59629.
1033 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1035         * assembly.c:
1036         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
1037         own the critical section before). Removed dead code (that's done
1038         in the preload hook).
1040         (mono_assembly_load_with_partial_name): call the preload hook.
1042 2004-06-08  Martin Baulig  <martin@ximian.com>
1044         * metadata.c (mono_metadata_signature_alloc): Default
1045         `sentinelpos' to -1.
1047         * reflection.c (mono_image_get_array_token): Likewise.
1049 2004-06-08  Martin Baulig  <martin@ximian.com>
1051         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
1053         * metadata.c (mono_metadata_parse_method_signature): When parsing
1054         a MethodDef which has VarArgs, set sentinelpos.
1056         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
1057         `gint16' since we're using -1 for non-varargs methods.
1059         * reflection.c
1060         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
1061         (method_encode_signature): Added varargs support.
1062         (method_builder_encode_signature): Likewise.
1063         (mono_image_get_varargs_method_token): New static method.
1064         (mono_image_create_method_token): New public method; this is
1065         called via an icall instead of mono_image_create_token() when
1066         calling a varargs method.       
1068 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
1070         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
1072 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
1074         * culture-info-tables.h : Reflecting the latest locale-builder that
1075           fixed empty array representation ({} to {0}).
1077 2004-06-07  Jackson Harper  <jackson@ximian.com>
1079         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
1080         looking up extra gac paths. This allows MONO_GAC_PATH to act
1081         exactly like a prefix.
1082         
1083 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
1085         * reflection.c (mono_reflection_type_from_name): Make a copy of the
1086         type name before modifying it. Fixes #59405.
1088 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
1090         * culture-info.h: added fields for "all datetime patterns".
1091         * locales.c: (  ves_icall_System_Globalization_CultureInfo
1092           _construct_datetime_format ()): fill xxx_patterns fields.
1093         * object.h: added fields for "all datetime patterns" to
1094           MonoDateTimeFormatInfo.
1095         * culture-info-tables.h: reflecting locale-builder updates.
1097 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
1099         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
1100         the event has no add and remove methods. Fixes #59629.
1102 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
1104         * object.c: Fixed possible integer overflow when allocating large
1105         strings.
1107 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
1109         * culture-info-tables.h: reflecting locale-builder updates.
1111 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
1113         * culture-info-tables.h: reflecting locale-builder updates.
1115 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
1117         * culture-info-tables.h: reflecting locale-builder updates.
1119 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
1121         * threads.c: Made Thread.Sleep abortable.
1123 2004-06-02  Martin Baulig  <martin@ximian.com>
1125         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
1127         * debug-mono-symfile.h: Bumped symbol file version number to 37.
1129 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
1131         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
1133 2004-05-30  Jackson Harper  <jackson@ximian.com>
1135         * reflection.c: Do not hardcode assembly versions or public key
1136         tokens anymore. All of this except the corlib section was dead
1137         code anyways.
1138         
1139 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
1141         * object.c (mono_runtime_invoke_array): Automatically create boxed
1142         objects for byref valuetypes if needed. Fixes #59300.
1143         
1144         * object.c (mono_method_return_message_restore): Handle 
1145         MONO_TYPE_OBJECT as well.
1147 2004-05-28  Jackson Harper  <jackson@ximian.com>
1149         * reflection.c: The modified type encoding was causing build
1150         problems. Reverted for now.
1151         
1152 2004-05-28  Jackson Harper  <jackson@ximian.com>
1154         * reflection.c/h: Take an assembly ref so that we dont create
1155         fully qualified names when encoding types in the same assembly as
1156         the custom attribute being emitted.
1157         * appdomain.c: Increment version number.
1158         
1159 2004-05-26  Duncan Mak  <duncan@ximian.com>
1161         * icall.c
1162         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
1163         Set the full version number (major, minor, build, revision).
1165 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
1167         * marshal.c (emit_struct_conv): increment src/dst after blit
1168         (mono_marshal_get_managed_wrapper,
1169         mono_marshal_get_native_wrapper): make sure we have marshalling
1170         info before marshalling params (info computation affects
1171         blittable)
1173         * class.c (class_compute_field_layout): correctly deal with
1174         blittable
1175         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
1176         value types (as per what windows dows by default)
1177         (mono_class_setup_mono_type): System.ValueType is blittable
1178         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
1179         blittable
1181         * marshal.c (mono_marshal_load_type_info): flag types  as
1182         non-blittable if the native layout doesn't match the managed
1183         layout
1185 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1187         * appdomain.c: don't add stuff in the private search path that is
1188         above the application base. If application base is not set, there's
1189         no private search path.
1191 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
1193         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
1194         byref struct arguments in native->managed marshalling.
1196 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
1198         * marshal.c (mono_marshal_get_runtime_invoke): correctly
1199         cache methods using signature (special case for methods
1200         that are value type or string class)
1201         
1202         * image.c (mono_image_close): clean up allocated GSList's
1203         in runtime_invoke_cache.
1205 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1207         * mono-config.c: set the correct path for mono_cfg_dir on windows when
1208         there's no MONO_CFG_DIR environment variable defined.
1210 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1212         * threads.c: windows version must be >= 0x0500 to include OpenThread.
1214 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
1216         * threadpool.c: Really wait for 500ms after the async call, even if the wait
1217           is interrumped.
1218         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
1219           before waiting for it, and call CloseHandle after the wait to unref it.
1220           This will make sure that handles are not disposed too early.
1222 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1224         * appdomain.c:
1225         * appdomain.h:
1226         * icall.c: removed
1227         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
1228         needed now.
1230         * object.c: se the application_base only for the domain that runs
1231         Main. Fixes bug #59216,
1233 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1235         * appdomain.c:
1236         * object.c: only the domain in which Main is run have
1237         SetupInformation.ConfigurationFile set, so moved a few lines from
1238         appdomain.c to object.c.
1240 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1242         * appdomain.c: we tried to load [name].(dll|exe), but according
1243         to bug #57710, we must also try [culture]/[name].(dll|exe) and
1244         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
1245         There's a test case attached to bug #58922.
1247 2004-05-27  Dick Porter  <dick@ximian.com>
1249         * icall.c:
1250         * file-io.c: Implemented icalls for locking and unlocking regions
1251         in a file.
1252         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
1253         FALSE on error (fixes both compiler warning and real bug.)
1255 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
1257         * culture-info-tables.h: reflecting locale-builder updates.
1259           (Added missing ChangeLog entry for 05/26)
1261 2004-05-27  Jackson Harper  <jackson@ximian.com>
1263         * locales.c: Fix some cut and paste errors.
1264         
1265 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1267         * mono-config.c: set the correct path for config. directory on windows.
1269 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
1271         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
1272           on win32.
1274 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
1276         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
1277         from pinvoke functions.
1278         
1279         * marshal.c (mono_ftnptr_to_delegate): Implement this.
1281 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
1283         * culture-info-tables.h: reflecting locale-builder updates.
1285 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
1287         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
1288         #59086.
1290 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
1292         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
1293         * icall.c: Modified icalls for RNG.
1294         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
1295         Windows (CryptoAPI).
1297 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
1299         * locales.c: Fix build.
1301 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
1303         * culture-info-tables.h: reflecting locale-builder updates.
1305 2004-05-25  Jackson Harper  <jackson@ximian.com>
1307         * locales.c: When creating the current culture use the $LANGs
1308         specific culture. So DateTimeFormat and NumberFormat entries are created.
1309         
1310 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
1312         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
1313         a char array as parameter.
1315 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
1317         * image.c: In mono_image_open(), always use an absolute path name to
1318           look for already loaded images.
1320 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
1322         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
1323         missing in the windows build (like older cygwin include files).
1325 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
1327         * icall.c: Fixed check for possible integer overflow in Buffer_
1328         BlockCopy icall. Replaced comments style // by /* */.
1330 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
1332         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
1333         
1334         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
1335         check after MONO_VTADDR. Fixes pinvoke2.exe.
1337         * marshal.h marshal.c metadata.h: Add beginnings of support for
1338         ftnptr -> delegate marshalling.
1340 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
1342         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
1343         * threads.c: Fix warnings.
1345 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
1347         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
1348         * icall.c: Registered icalls for Suspend and Resume.
1349         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
1350           Thread.Abort.
1351         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
1352         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
1353         * process.c: Use WaitForSingleObjectEx.
1354         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
1355           checkpoints.
1356         * threads.c, threads.h: Make use of new Ex wait methods. Improved
1357           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
1358           for Suspend and Resume. Added new mono_thread_stop, used for stoping
1359           background threads. Added basic support for Abort in Windows.
1360           Start new threads using a managed delegate invoke wrapper. This wrapper
1361           has an interruption checkpoint that is needed since an interruption
1362           can be requested before the thread leaves the unmanaged code that starts 
1363           the thread.
1364         * marshal.c: Added interruption checkpoint after every native call, and
1365           also before managed calls for wrappers called from unmanaged code to
1366           go into managed code.
1367         * object.h: Added new field in MonoThread to keep track of interruption
1368           requests.
1370 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
1372         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
1373         calls.
1375 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1377         * appdomain.c:
1378         * assembly.c:
1379         * gc.c:
1380         * locales.c:
1381         * mono-config.c:
1382         * rand.c: getenv -> g_getenv (windows!)
1384         * process.c: complete_path is also used on non-windows platforms.
1386 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1388         * icall.c: new signature for Process_Start.
1390         * process.[ch]: new signature for Process_Start. If we're on windows
1391         and UseShellExecute is false, we have to search for the program by
1392         ourselves if we don't get a full path.
1394 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
1396         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
1397         marshalling and call CleanUpNativeData if needed. Fixes #58646.
1399 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1401         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
1402         Fixes bug #58373.
1404 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1406         * process.c: use double quotes to quote program name and arguments on
1407         windows. Fixes bug #58575.
1409 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1411         * file-io.c: don't return "." and ".." when using windows Find*File.
1413 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
1415         * marshal.c: Don't pass wrappers to message init because method 
1416         addressed used to lookup metadata. part of remoting[2|3] fix.
1418 2004-05-15  Jackson Harper  <jackson@ximian.com>
1420         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
1421         path is essentially the same as MONO_PATH except that it points to
1422         GACs instead of lib directories.
1423         * loader.h: The user gac is gone so we dont need function to
1424         enable/disable it.
1425         * mono-config.c: user gac option is now gone.
1426         
1427 2004-05-15  Jackson Harper  <jackson@ximian.com>
1429         * culture-info.h: Make defines more consistent, add calendar data
1430         to the culture info table.
1431         * culture-info-tables.h: Add basic calendar data. Basically
1432         everyone gets default gregorian until all the data is
1433         updated.
1434         * locales.c: Use the new consistent defines. Set calendar data for
1435         culture info objects.
1436         * object.h: add a field for calendar data to CultureInfo
1437         
1438 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
1440         * image.c: image->runtime_invoke_cache is keyed on signatures now.
1441         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
1442         a signature.
1443         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
1444         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
1445         an extra param that is the pointer of the method to invoke. The IL for
1446         the invoke method is no longer specific to the method, but to the
1447         signature of the method. Thus, we can share the same code for multiple
1448         methods. This reduces the number of methods that have to be compiled.
1450 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
1452         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
1454         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1456         * icall.c: Optimize Buffer.BlockCopy.
1458 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1460         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
1461         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
1462         quote). Changed them to "MMMM yyyy".
1464 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
1466         * rand.c
1467         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
1469 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
1471         * reflection.h: Updated after changes to managed structures.
1473         * appdomain.c: Bump corlib version.
1475 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1477         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
1478         windows.
1480 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1482         * Makefile.am: link to ../os/libmonoos.la on windows.
1484         * assembly.c:
1485                 -If MONO_DEBUG, warn about non-existing directories in
1486                 MONO_PATH.
1487                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
1488                 compile time variable.
1489                 -Removed init_default_path and call mono_set_rootdir from
1490                 libmonoos.a instead (windows only).
1492         * assembly.h: declare mono_assembly_getrootdir().
1494         * domain.c:
1495         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
1497         * loader.c: s/getenv/g_getenv/
1499 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
1501         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
1503         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
1505         * metadata.h: Add new marshalling conversions.
1507         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
1508         function.
1510         * reflection.c (mono_reflection_get_type): Lookup the type in all
1511         modules of a multi-module assembly. Fixes #58291.
1513 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
1515         * threads.c: Before aborting a background, set the StopRequested
1516         state.  This avoids throwing the Abort exception.
1517         In mono_thread_manage, don't continue with the shutdown until all
1518         aborted threads have actually stopped.
1520 2004-05-10  Jackson Harper  <jackson@ximian.com>
1522         * locales.c: Remove the modifier from culture names.
1523         
1524 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1526         * Makefile.am: monosn is not installed any more. It has been deprecated
1527         in favor of sn.
1529 2004-05-07  Jackson Harper  <jackson@ximian.com>
1531         * locales.c
1532         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
1533         Fix array construction, add bailout if the length is 0.
1535 2004-05-07  Dick Porter  <dick@ximian.com>
1537         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
1538         machine doesn't have a DNS entry.  Patch by Urs Muff
1539         (umuff@quark.com), fixes bug 57928.
1541 2004-05-06  Jackson Harper  <jackson@ximian.com>
1543         * reflection.c: Handle null PublicTokens properly. alloc mem for
1544         assembly names culture so we dont crash when freeing it.
1545         
1546 2004-05-06  Jackson Harper  <jackson@ximian.com>
1548         * assembly.c: Check the usergac when loading with partial names.
1549         
1550 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
1552         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
1553         does nothing for now (not required for Linux/Windows) but the class
1554         library can call it (and a newer or modified runtime could need it).
1555         * icall.c: Registred icall.
1557 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1559         * loader.c: prints a message on module loading error we set MONO_DEBUG
1560         environment variable.
1562 2004-05-05  Jackson Harper  <jackson@ximian.com>
1564         * appdomain.c: Handle PublicKeyToken=null properly.
1565         
1566 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
1568         * environment.c|h: Added icall ves_icall_System_Environment_
1569         GetOSVersionString to get the current OS version as a string.
1570         * icall.c: Registred icall.
1572 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
1574         * object.c: in mono_object_get_virtual_method(), take into account that
1575         non-virtual methods don't have a slot in the vtable. Check needed when
1576         the object is a proxy.
1578 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
1580         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
1581         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
1583         * object.c (mono_class_compute_gc_descriptor): Fix warning.
1585         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
1586         passed when a valuetype is expected.
1588         * object.c (mono_unhandled_exception): Only set the exit code if the
1589         exception happens in the main thread. Fixes thread5.exe.
1591         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
1592         invalid names. Fixes #58047.
1594 2004-05-03  Jackson Harper  <jackson@ximian.com>
1596         * assembly.c: This line was committed accidently and is unneeded.
1597         
1598 2004-05-03  Jackson Harper  <jackson@ximian.com>
1600         * icall.c: Add new icall for Assembly::LoadWithPartialName
1601         * assembly.c/.h: new function that probes the GAC to load partial
1602         assembly names by Paolo Molaro.
1603         
1604 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1606         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
1607         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
1608         (type_get_fully_qualified_name): Added PublicKeyToken when building a
1609         full type name.
1611 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1613         * appdomain.c: fixed check for 'neutral' culture and removed warning.
1614         * reflection.c: fix bug when parsing a full type name and Version is not
1615         the last thing in the string.
1617 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
1619         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
1620         crashes when it is freed.
1622 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1624         * assembly.c: print the compat warning to stderr.
1626 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
1628         * assembly.c (mono_assembly_load_references): Add a compatibility
1629         hack to run old applications that might be still referencing the
1630         3300-based assemblies, only do this for System.xxx.
1632 2004-05-01  Jackson Harper  <jackson@ximian.com>
1634         * appdomain.c: If the culture is neutral we set it to "".
1635         
1636 2004-04-29  Jackson Harper  <jackson@ximian.com>
1638         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
1640 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
1642         * string-icalls.c: added low overhead function for copying chars
1643         * icall.c: added needed icall for the above function
1645 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1647         * icall.c: fix return value of get_global_assembly_cache.  Implemented
1648         Environment.GetLogicalDrives.
1650 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
1652         * rand.c: try and talk to egd or prngd
1653         for random bytes if opening devices fail.
1655 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
1657         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
1658         alignment for the type using the native alignment of its members 
1659         instead of using klass->min_align.
1661         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
1663 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1665         * file-io.c:
1666         * socket-io.c: added check for sys/aio.h.
1668 2004-04-28  Dick Porter  <dick@ximian.com>
1670         * threads.c: Don't abort a thread thats already aborting, when
1671         terminating everything.
1673 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1675         * icall.c: added 2 new async calls for Socket.
1677         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
1678         IO on *nix systems.
1680         * threadpool.c: removed unused variable.
1682 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
1684         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
1686 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
1688         * locales.c: put back string_invariant_tolower () and
1689         string_invariant_toupper ().
1691 2004-04-26 David Waite <mass@akuma.org>
1693         * file-io.h:
1694         * socket-io.h:
1695         * threads.h:
1696         * unicode.h: remove comma from end of enumeration declarations
1698 2004-04-26 David Waite <mass@akuma.org>
1700         * debug-mono-symfile.h:
1701         * decimal.c:
1702         * mono_debug.h:
1703         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
1706 2004-04-26  Jackson Harper  <jackson@ximian.com>
1708         * appdomain.c: Increment version number.
1709         
1710 2004-04-26  Jackson Harper  <jackson@ximian.com>
1712         * appdomain.c: Set assembly references public token value when
1713         PublicKeyToken is specified, not the hash_value. Free public token
1714         values when free assembly name data. Previously the public key
1715         token was hex decoded, however we are using hex encoded public key
1716         tokens, so this is not neccasary.
1717         * assembly.c: Lookup assemblies in the gac if their public token
1718         value is set. Add function to allow enabling user gac
1719         lookups. Specify whether or not the assembly was loaded from the
1720         GAC. Compare full assembly names when checking the cache for
1721         assemblies (Temporarily disabled see comment in code). Remove
1722         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
1723         specifies trace-loader they get extra info to stdout on the
1724         loading of assemblies.
1725         * image.h: Add a field for an assembly references public token
1726         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
1727         whether an assembly has been loaded from the GAC.
1728         * image.c: Remove a corlib -> mscorlib name mapping.
1729         * loader.h: Add function to enable/disable the user gac.
1730         * mono-config.c: Check if the usergac is enabled in the config
1731         file.
1732         * icall.c: New icall to determine whether or not an assembly has
1733         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
1734         * tabldefs.h: Add constant for assemblyref flag that specifies a
1735         full public key is used instead of a public token.
1736         * reflection.c: Remove mscorlib -> corlib mappings. Set
1737         PublicTokenValue instead of hash value. This value is a hex
1738         string so it does not need to be expanded.
1740 2004-04-26  Martin Baulig  <martin@ximian.com>
1742         * mono-debug-debugger.c (mono_debugger_initialize): Set
1743         `mono_debugger_initialized' before calling mono_debug_lock().
1745 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
1747         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
1748           InternalToUpper/InternalToLower.
1749         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
1750           removed invariant culture shortcut.  This is now done in managed code.
1751         * locales.c: (string_invariant_toupper/tolower) removed.
1753 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1755         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
1756         Added Poll internal call.
1758         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
1759         call for Poll. Select was too heavy for polling a single socket.
1761         * threadpool.[ch]: added mono_threadpool_cleanup.
1762         * threads.c: use it. Don't use Thread_Abort on windows.
1764 2004-04-23  Martin Baulig  <martin@ximian.com>
1766         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
1768 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
1770         * icall.c: Registred new icalls for key pair protection and added an
1771         icall for Environment.GetFolderPath on Windows.
1772         * security.c|h: Added new icalls for key pair protection.
1774 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1776         * socket-io.c: don't display the non-supported family warning for known
1777         families. Now this is not displayed on windows when checking support
1778         for IPv4/IPv6.
1780 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1782         * class.c: don't display the layout warning for static fields.
1784 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
1786         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
1787         * locales.c, locales.h: Added new icalls for culture-specific
1788         Char.ToLower and Char.ToUpper.
1790 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1792         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
1793         by David Waite.
1795 2004-04-20  Martin Baulig  <martin@ximian.com>
1797         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
1798         of the type name before passing it to mono_reflection_type_from_name().
1800 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
1802         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
1803         encodings here. Fixes #56965.
1805 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
1807         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
1808         fix test on strstr result not that I can see anything that
1809         relies on the result.
1811 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
1813         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
1814         Fixes #57081.
1816         * marshal.c (mono_marshal_get_string_encoding): New helper function.
1818         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
1819         function to determine which marshalling to use for strings. Fixes
1820         #56965.
1822         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
1824         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
1826 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
1828         * icall.c: #include mono-config.h
1830 2004-04-15  Jackson Harper  <jackson@ximian.com>
1832         * culture-info-tables.h: Fix date formats for en-US culture.
1833         
1834 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
1836         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
1837         ThreadPool.SetMinThreads.
1838         * threadpool.c: Implemented ThreadPool.GetMinThreads and
1839         ThreadPool.SetMinThreads.
1841 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
1843         * mono-config.c: also load the .config file in the directory
1844         where the assembly was found.
1846 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
1848         * assembly.c: load per-assembly config files.
1849         * icall.c: decrapified code to get the config dir and moved to
1850         mono-config.c.
1851         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
1852         per-assembly config files. When doing a dll map lookup give precedence
1853         to the per-assembly data.
1855 2004-04-14  Martin Baulig  <martin@ximian.com>
1857         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
1858         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
1859         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
1861         * mono-debugger-debugger.c: While the debugger is locked, remember
1862         whether the symbol tables have changes and send one single
1863         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
1865 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
1867         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
1869         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
1870         function.
1872         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
1873         account when marshalling string arrays. Fixes #56965.
1875 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
1877         * icall.c: Add new icalls mapping for security.
1878         * security.c|h: Add internal calls for WindowsIdentity,
1879         WindowsImpersonationContext and WindowsPrincipal.
1881 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
1883         * class.c: Added comment to ensure the System.MonoDummy class
1884         is removed when no longer necessary
1886 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
1888         * appdomain.c: Pass arguments to the bootstraping exceptions to
1889         minimize JITed methods at boot
1891         * metadata.c (mono_exception_from_name_two_strings): Allow for the
1892         second string to be null.
1894         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
1895         Change the protocol to minimize the JIT methods at startup.  Now
1896         it Returns the internal codepage, if the value of "int_code_page"
1897         is 1 at entry, and we can not compute a suitable code page
1898         number, returns the code page as a string.
1900 2004-04-13  Jackson Harper  <jackson@ximian.com>
1902         * culture-info-tables.h: Fix number of decimal digits for all
1903         english locales.
1905 2004-04-13  Jackson Harper  <jackson@ximian.com>
1907         * icall.c: Clairfy out of sync error message. It is not always
1908         your corlib that is out of sync.
1910 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
1912         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
1913         properties when only the set accessor is overriden. Fixes #55874.
1915 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
1917         * assembly.c (mono_assembly_load_references): Make this thread safe.
1918         Fixes #56327.
1920 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
1922         * monosn.c: Add missing initialization calls.
1924 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
1926         * locales.c:
1927         ves_icall_System_Globalization_CultureInfo_construct_number_format
1928         Fix g_assert so it compiles on fussier compilers re int/ptr
1929         mismatch
1931 2004-04-08  Dick Porter  <dick@ximian.com>
1933         * socket-io.h:
1934         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
1935         53992.  Also rearrange the code so that the internal calls return
1936         an error value and exceptions are thrown from managed code.
1938         * icall.c: Add type info to the socket icalls.
1940 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1942         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
1943         owes me a beer.
1945 2004-04-07  Martin Baulig  <martin@ximian.com>
1947         * class.c (mono_class_from_generic_parameter): Don't default
1948         `klass->parent' to `mono_defaults.object_type'.
1950 2004-04-07  Martin Baulig  <martin@ximian.com>
1952         * reflection.c (mono_reflection_initialize_generic_parameter): Set
1953         `param->pklass->reflection_info'.       
1955 2004-04-07  Jackson Harper  <jackson@ximian.com>
1957         * culture-info-tables.h: Fix date separator symbol.
1958         
1959 2004-04-07  Martin Baulig  <martin@ximian.com>
1961         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
1962         from System.Type to System.MonoType.
1964 2004-04-07  Martin Baulig  <martin@ximian.com>
1966         * reflection.h
1967         (MonoReflectionGenericParam): Added `has_reference_type' and
1968         `has_value_type' fields.
1970         * reflection.c (mono_image_get_generic_param_info): Encode the
1971         correct flags if we have the `class' or `struct' constraint.
1973 2004-04-07  Martin Baulig  <martin@ximian.com>
1975         * reflection.h
1976         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
1978 2004-04-07  Jackson Harper  <jackson@ximian.com>
1980         * appdomain.c: Revert extra patches, just wanted to bump the
1981         version number.
1982         
1983 2004-04-07  Jackson Harper  <jackson@ximian.com>
1985         * Makefile.am: Add culture-info private headers.
1986         * icall.c: Add new icalls for contructing locales.
1987         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
1988         * locales.h: Declare new culture info construction methods.
1989         * object.h: Add new fields used to avoid the CultureMap to
1990         MonoCultureInfo.
1991         * culture-info.h: Definition of structs used in the culture info
1992         tables.
1993         * culture-info-tables.h: Autogenerated tables that contain culture
1994         info data. This file was generated with the locale-builder tool.
1995         * appdomain.c: Incement corlib version number.
1996         
1997 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
1999         * appdomain.c: (mono_runtime_init) move mono_thread_init
2000         to before mono_object_new calls so critical sections
2001         are initialized before use.
2003 2004-04-07  Martin Baulig  <martin@ximian.com>
2005         * icall.c
2006         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
2007         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
2008         (ves_icall_MonoGenericParam_initialize): Removed.
2009         (monogenericparam_icalls): Removed.
2010         (generictypeparambuilder_icalls): Added new table for
2011         System.Reflection.Emit.GenericTypeParameterBuilder.
2013         * reflection.c
2014         (mono_reflection_define_generic_parameter): Removed.
2015         (mono_reflection_initialize_generic_parameter): This is now called
2016         from GenericTypeParameterBuilder's .ctor.
2018 2004-04-06  Martin Baulig  <martin@ximian.com>
2020         * class.c (mono_class_init): Don't inflate nested classes in a
2021         generic instance.
2022         (mono_type_get_name_recurse): Include the generic arguments for
2023         generic instances and generic type declarations.
2024         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
2025         (_mono_class_get_instantiation_name): Removed.
2026         (mono_class_create_generic): Always use `gklass->name' as our name.
2028         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
2030         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
2031         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
2032         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
2033         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
2034         closed generic methods here.
2036         * reflection.c
2037         (mono_reflection_generic_inst_get_nested_types): Removed.
2038         (inflate_mono_method): Copy the generic parameters from the
2039         MonoMethodHeader into out MonoGenericMethod.
2041 2004-04-06  Martin Baulig  <martin@ximian.com>
2043         * row-indexes.h
2044         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
2046         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
2048         * reflection.c (build_compressed_metadata): If we have any entries
2049         in the GenericParam, MethodSpec or GenericParamConstraint tables,
2050         set the header version to 1.1.
2052 2004-04-06  Martin Baulig  <martin@ximian.com>
2054         * class.c (mono_class_init): If we're a generic instance,
2055         initialize our nested classes, too.
2056         (_mono_class_get_instantiation_name): Deal with the new `!%d'
2057         suffix. 
2059 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2061         * process.c: quote the argument passed to the shell on windows.
2063 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
2065         * threads.c (mono_alloc_special_static_data): Allow this to be
2066         called during startup.
2068 2004-04-02  Martin Baulig  <martin@ximian.com>
2070         * icall.c
2071         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
2073 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
2075         * icall.c: Fix build.
2077 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
2079         * Makefile.am: Added security.c|h.
2080         * icall.c: Added icall for get_UserName;
2081         * security.c: New file for security related icalls. Added function
2082         get_UserName for System.Environment (fix #56144).
2083         * security.h: New. Header file for security.c
2085 2004-04-02  Dick Porter  <dick@ximian.com>
2087         * icall.c: Deleted the icalls that were obsoleted some time ago
2088         by the ICU string code, and which were mixed into the icall
2089         rearranging.  Fixes bug 55969.
2091         * string-icalls.h: 
2092         * string-icalls.c: Deleted the code that those icalls reference.
2094 2004-04-01  Martin Baulig  <martin@ximian.com>
2096         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
2098         * class.c (mono_class_from_generic_parameter): Don't set 
2099         TYPE_ATTRIBUTE_INTERFACE.
2100         (my_mono_class_from_generic_parameter): Likewise.
2102 2004-04-01  Martin Baulig  <martin@ximian.com>
2104         * loader.c (find_method): Added an optional `MonoClass *ic'
2105         argument to search in a specific interface.
2106         (mono_get_method_constrained): New public function.
2108 2004-04-01  Martin Baulig  <martin@ximian.com>
2110         * reflection.c (mono_image_get_generic_field_token): Use the
2111         `handleref' cache here.
2113 2004-04-01  Martin Baulig  <martin@ximian.com>
2115         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
2117         * reflection.c (create_generic_typespec): Use the `typespec' hash
2118         here, not the `typeref' one.    
2120 2004-04-01  Martin Baulig  <martin@ximian.com>
2122         * class.c (mono_class_inflate_generic_type): Moved the
2123         functionality into a new static inflate_generic_type() which
2124         returns NULL if it didn't do anything.  Only increment the
2125         `mono_stats.inflated_type_count' if we actually inflated
2126         something.
2127         (mono_class_get_full): Check the classes type to see whether we
2128         need to inflate it; also inflate MONO_TYPE_(M)VAR.
2130 2004-04-01  Jackson Harper  <jackson@ximian.com>
2132         * reflection.c: Set culture for assembly references.
2133         
2134 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
2136         * reflection.[ch], icall.[ch], Fix support for pinning variables.
2138 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2140         * assembly.c:
2141         (do_mono_assembly_open): the critical section also covers
2142         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
2144 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2146         * threads.c:
2147         (mono_manage_threads): abort the background threads when finishing.
2148         Fixes bug #47232.
2150 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2152         * gc.c: only close the done_event handle if there was no timeout.
2153         C-ified comments.
2155 2004-03-30  Martin Baulig  <martin@ximian.com>
2157         * icall.c (icall_entries): It's called "System.Activator", not
2158         "System.Activation".    
2160 2004-03-30  Martin Baulig  <martin@ximian.com>
2162         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
2163         (mono_class_create_from_typespec): Likewise.
2165 2004-03-30  Martin Baulig  <martin@ximian.com>
2167         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
2168         `has_ctor_constraint' and `initialized'.
2170 2004-03-30  Martin Baulig  <martin@ximian.com>
2172         * reflection.c (encode_new_constraint): New static function to add
2173         the constructor constraint attribute to a type parameter.
2174         (encode_constraints): Call encode_new_constraint() if necessary.
2176         * reflection.h
2177         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
2179         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
2180         
2181 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
2183         * reflection.c, icall.c: add support for pinning variables. 
2185 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
2187         * marshal.c (mono_marshal_get_managed_wrapper):
2188         init bool local with zero rather than null.
2190 2004-03-29  Martin Baulig  <martin@ximian.com>
2192         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
2193         the "official" behavior here.
2194         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
2196 2004-03-29  Martin Baulig  <martin@ximian.com>
2198         * icall.c: Reflect latest API changes.
2200 2004-03-29  Martin Baulig  <martin@ximian.com>
2202         * loader.c (mono_get_method_from_token): Also call
2203         mono_metadata_load_generic_params () for abstract and interface
2204         methods; replace the type arguments in the method signature with
2205         the ones which are loaded from the metadata.
2207 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
2209         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
2210         of the lock is not the current thread. MS.NET don't do it, in spite of
2211         what the documentation says. See bug #56157.
2213 2004-03-28  Martin Baulig  <martin@ximian.com>
2215         * class.c (mono_class_init): Don't call init_properties() and
2216         init_events() for generic instances; set `prop->parent' when
2217         inflating properties.
2219         * reflection.c (mono_generic_inst_get_object): Call
2220         `mono_class_init (ginst->klass)'.
2221         (mono_type_get_object): Only create a MonoGenericInst if your
2222         generic type is a TypeBuilder.
2223         (do_mono_reflection_bind_generic_parameters): Only set
2224         `ginst->is_dynamic' if our generic type is a TypeBuilder.
2226 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
2228         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
2229         Fixes #56091.
2231 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2233         * icall.c: added Kill_internal icall.
2234         * process.[ch]: added Kill_internal icall.
2236 2004-03-25  Martin Baulig  <martin@ximian.com>
2238         * class.h (MonoStats): Added `generic_instance_count',
2239         `inflated_method_count', `inflated_type_count' and
2240         `generics_metadata_size'.       
2242 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2244         * reflection.c: no warnings now.
2246 2004-03-25  Martin Baulig  <martin@ximian.com>
2248         * class.c (mono_class_get_full): New public function; does a
2249         mono_class_get(), but also takes a `MonoGenericContext *'.
2251         * loader.c (mono_field_from_memberref): Renamed to
2252         `field_from_memberref', made static and added `MonoGenericContext *'
2253         argument.
2254         (mono_field_from_token): Added `MonoGenericInst *' argument.
2255         (method_from_memberef): Likewise.
2256         (mono_get_method_from_token): Likewise.
2257         (mono_get_method_full): New public function; does a
2258         mono_get_method(), but also takes a `MonoGenericContext *'.
2260         * verify.c (mono_method_verify): Get the method's generic context
2261         and pass it to mono_field_from_token(), mono_get_method_full() and
2262         mono_class_get_full().
2264 2004-03-25  Martin Baulig  <martin@ximian.com>
2266         * class.c (mono_class_inflate_generic_type): Take a
2267         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
2268         `MonoGenericMethod *'.
2270 2004-03-25  Martin Baulig  <martin@ximian.com>
2272         * loader.h (MonoMethodInflated): Store the MonoGenericContext
2273         instead of the MonoGenericMethod here.
2275 2004-03-25  Martin Baulig  <martin@ximian.com>
2277         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
2278         each time we create a new MonoGenericInst, we also create a new
2279         context which points back to us.
2281         * class.c (inflate_method): Use `ginst->context' instead of
2282         creating a new context.
2284         * loader.c (method_from_memberref): Use
2285         `klass->generic_inst->context' instead of creating a new context.
2287 2004-03-25  Martin Baulig  <martin@ximian.com>
2289         * class.h (MonoGenericContext): New struct.
2290         (MonoGenericMethod): Removed `generic_inst'.
2292         * class.c (mono_class_inflate_generic_method): Take a
2293         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
2295 2004-03-25  Martin Baulig  <martin@ximian.com>
2297         * loader.h (MonoMethodInflated): New typedef.
2299         * metadata.h (MonoMethodSignature): Removed `gen_method', make
2300         `generic_param_count' consume just 30 bits, added `is_inflated'
2301         and `has_type_parameters' flags (one bit each).
2303         * class.c (mono_class_inflate_generic_method): Create a
2304         MonoMethodInflated instead of a MonoMethodNormal and set
2305         `is_inflated' in the method signature.
2307         * class.h (MonoGenericMethod): Removed `generic_method'.
2309 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
2311         * image.c: Make sure the name of a MonoImage is always an absolute path.
2312           This fixes bug #54415.
2314 2004-03-24  Martin Baulig  <martin@ximian.com>
2316         * class.c (mono_class_setup_vtable): If we're a generic instance,
2317         use our generic type's vtable size.
2319 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
2321         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
2322         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
2323         problems.
2325 2004-03-23  Martin Baulig  <martin@ximian.com>
2327         * class.h (MonoDynamicGenericInst): Added `int count_events' and
2328         `MonoEvent *events'.
2330         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
2331         (typebuilder_icalls): Added "get_event_info"; calls
2332         mono_reflection_event_builder_get_event_info(). 
2334         * reflection.c (mono_reflection_generic_inst_initialize): Added
2335         `MonoArray *events'.
2336         (mono_reflection_event_builder_get_event_info): New function.
2338 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
2340         * object.h: add mono_type_initialization_init
2342         * object.c (mono_runtime_class_init): 
2343         implement class constructor synchronization rules
2344         to cope with threading issues.  
2345         add mono_type_initialization_init
2347         * appdomain.c (mono_runtime_init): call 
2348         mono_type_initialization_init
2350         * class.h: removing initializing field from MonoVTable
2352 2004-03-23  Martin Baulig  <martin@ximian.com>
2354         * class.c (my_mono_class_from_generic_parameter): Use
2355         `param->name' if it's not NULL. 
2357 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
2359         * class.c: do not insert non-virtual methods in the vtable.
2360         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
2361         that means the method is non-virtual. This never would have
2362         happened before.
2364 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
2366         * profiler.c: Added lock for accessing coverage_hash.
2368 2004-03-22  Martin Baulig  <martin@ximian.com>
2370         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
2371         `method->method->signature->generic_param_count != 0' to make it
2372         work for interface methods.
2374 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2376         * process.c: quote the string passed to the shell using g_shell_quote.
2378 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2380         * threads.c:
2381         (mono_threads_manage): don't remove the finalizer thread and self
2382         from the threads hash table so that mono_thread_manage can be called
2383         more than once.
2385 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2387         * process.c: quote the arguments when UseShellExecute is true. Fixes
2388         bug #55790.
2390 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2392         * threads.c: set mono_thread_detach as a cleanup routine for every
2393         thread. This way it's always executed upon thread termination, either
2394         aborted or finished normally. No more xsp hangs!
2396 2004-03-17  Martin Baulig  <martin@ximian.com>
2398         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
2399         `int count_nested' and a `MonoType **nested'.
2401         * reflection.c (mono_reflection_bind_generic_parameters): Moved
2402         most of the functionality into a new static
2403         do_mono_reflection_bind_generic_parameters() and don't take a
2404         `MonoType *nested_in' argument any more.  Don't compute nested
2405         types here.
2406         (mono_reflection_generic_inst_get_nested_types): New public method
2407         to get nested types.
2409         * class.c (mono_class_create_generic): Set `klass->nested_in' if
2410         we're a nested class.
2412         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
2413         mono_reflection_generic_inst_get_nested_types() to compute the
2414         nested types.
2416 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
2418         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
2419         descriptive error message under windows.
2420         
2421 2004-03-17  Martin Baulig  <martin@ximian.com>
2423         * class.c (dup_type): Added `const MonoType *original' argument;
2424         copy the attrs from the original type.
2426 2004-03-17  Martin Baulig  <martin@ximian.com>
2428         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
2429         `m->generic_inst_cache' here.
2431 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
2433         * exception.h exception.c: Add stack_overflow_exception.
2435 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2437         * threadpool.c:
2438         (overlapped_callback): call SetEvent *after* invoking the callback.
2439         No need to call CloseHandle.
2441 2004-03-16  Martin Baulig  <martin@ximian.com>
2443         * reflection.c (mono_image_get_fieldref_token): Take a
2444         `MonoReflectionField *' instead of a `MonoClassField *' and a
2445         `MonoClass *'; store the `MonoReflectionField *' in the hash.
2447 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2449         * appdomain.c: don't add the culture to the filename we're looking for
2450         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
2452 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2454         * locales.c: don't ignore symbols when doing case insensitive compares.
2455         Thanks Dick! Fixes bug #54046.
2457         * threads.c: surround 'threads' usage with enter/leave in
2458         mono_thread_manage.
2460 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
2462         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
2463         implicitly marshalled as [Out]. Fixes #55450.
2465         (mono_marshal_get_runtime_invoke): Zero out the result if there is
2466         an exception.
2468 2004-03-16  Martin Baulig  <martin@ximian.com>
2470         * class.c (mono_class_from_generic_parameter): Use the actual
2471         parameter name. 
2473 2004-03-16  Martin Baulig  <martin@ximian.com>
2475         * reflection.c (type_get_signature_size): New static function.
2476         Compues the size of the type in a method signature.
2477         (method_get_signature_size): New static function; calls
2478         type_get_signature_size() to compute the actual size of the
2479         method's signature.
2480         (method_encode_signature): Use method_get_signature_size() to get
2481         the signature's size rather than using `nparams * 10'.
2483 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2485         * file-io.h: define here WapiOverlapped on windows. I don't want the
2486         regular OVERLAPPED one.
2488         * file-io.c:
2489         * threadpool.c: somehow, BindIoCompletionCallback is not found.
2490         Disabling AIO on windows.
2492 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2494         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
2495         bug #55385.
2497 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2499         * appdomain.c: upgraded corlib version.
2501         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
2502         and BeginWrite. Allow opening files for asynchrnous operations.
2504         * file-io.h: new struct that maps FileStreamAsyncResult.
2505         * icall.c: added new icalls.
2506         * process.[ch]: support setting child process environment variables
2507         and use the SHELL or COMSPEC when UseShellExecute is true.
2509         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
2510         callback for async. IO is here and also BindHandle.
2512         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
2513         from here.
2515 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
2517         * reflection.c (create_custom_attr): Allow len == 0.
2519         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
2520         computation on big-endian machines.
2522 2004-03-13  Martin Baulig  <martin@ximian.com>
2524         * class.h (MonoGenericInst): Added `int count_ifaces'.
2526         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
2527         `ginst->count_ifaces' instead `klass->interface_count' since we
2528         may get called before the vtable is created.
2530         * loader.c (mono_method_get_param_names): If we're a generic
2531         instance, return and don't initialize the class.
2533         * reflection.c (mono_reflection_setup_generic_class): Don't call
2534         ensure_runtime_vtable().
2535         (mono_reflection_bind_generic_parameters): Set
2536         `ginst->count_ifaces'.
2538 2004-03-11  Jackson Harper <jackson@ximian.com>
2540         * icall.c:
2541         * unicode.c:
2542         * unicode.h: Remove unused System.Char icalls.
2543         
2544 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
2546         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
2547         code when we P/Invoke the first library in Windows.Forms, instead
2548         of when we first open the assembly.
2550         * assembly.c: Drop the lookup from here.
2552 2004-03-10  Martin Baulig  <martin@ximian.com>
2554         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
2555         class for properties, fields and events.  Finally fixes #54945.
2557 2004-03-10  Martin Baulig  <martin@ximian.com>
2559         * metadata.c (mono_metadata_class_equal): New static function;
2560         checks whether two generic instances or two generic parameters are
2561         equal.
2562         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
2563         compare classes.        
2565 2004-03-10  Martin Baulig  <martin@ximian.com>
2567         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
2569         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
2570         argument and write it into the `reflection_info' field.
2572         * icall.c
2573         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
2574         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
2576 2004-03-09  Jackson Harper  <jackson@ximian.com>
2578         * char-conversions.h: use 8 bits for numeric data its all we need
2579         * icall.c: numeric data is only 8 bits now.
2581 2004-03-09  Martin Baulig  <martin@ximian.com>
2583         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
2585         * class.c (init_properties, init_events): Initialize the new
2586         `parent' field.
2588         * reflection.c (typebuilder_setup_properties): Likewise.
2589         (typebuilder_setup_events): Likewise.
2591         * reflection.h (MonoEventInfo): Replaced `parent with
2592         `declaring_type' and `reflected_type'.
2594         * icall.c (ves_icall_get_property_info): Distinguish between
2595         declaring and reflected type.
2596         (ves_icall_get_event_info): Likewise.
2598 2004-03-09  Martin Baulig  <martin@ximian.com>
2600         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
2601         (ves_icall_Type_GetField): Correctly set field->klass.
2603 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
2605         * loader.h: Fix warning.
2607 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
2609         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
2610         library routine if present.  Notice that it will still continue
2611         executing even if its missing, for those working on the Gtk#
2612         edition of Windows.Forms.
2614         * assembly.c (do_mono_assembly_open): If loading the
2615         System.Windows.Forms call mono_loader_wini_init.
2617 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
2619         * class.h: Added MonoRemoteClass struct.
2620         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
2621         function for MonoStrings.
2622         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
2623         Added internal call for getting the proxy type.
2624         * marshal.c: Get the type of transparent proxies from its remote_class.
2625         Added methods that generate the IL for type checks and casts:
2626         mono_marshal_get_isinst, mono_marshal_get_castclass, 
2627         mono_marshal_get_proxy_cancast.
2628         * marshal.h: Declaration of the previous new methods.
2629         * object.c: Added new moethods for creating and updating MonoRemoteClass
2630         instances: mono_remote_class, mono_upgrade_remote_class, 
2631         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
2632         * verify.c: FIx transparent_proxy_fields layout.
2633         * appdomain.c: Bump corlib version.
2635 2004-03-04  Jackson Harper  <jackson@ximian.com>
2637         * icall.c: Add icall to access char conversion tables.
2638         * char-conversions.h: Character conversion tables.
2639         * Makefile.am: Add char-conversions.h private header file.
2640         
2641 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
2643         * appdomain.c (unload_thread_main): Increase unloading timeout to
2644         10 sec as a temporary workaround for Nant problems.
2646 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
2648         * gc.c: Add checks for GC_enable and GC_disable.
2650         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
2651         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
2652         (bug #54988).
2653         
2654 2004-02-27  Martin Baulig  <martin@ximian.com>
2656         * reflection.c (mono_reflection_bind_generic_parameters): Take a
2657         `MonoReflectionType *' instead of a `MonoType *'.
2659 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
2661         * gc.c (run_finalize): Avoid finalizing the object representing the
2662         finalizer thread.
2663         (finalizer_thread): Fix warning.
2665 2004-02-25  Martin Baulig  <martin@ximian.com>
2667         * class.c (_mono_class_get_instantiation_name): Added `int offset'
2668         argument for nested types.
2669         (mono_class_create_generic): Added support for nested generictypes.
2671         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
2672         `GList *nested'.
2674         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
2676         * reflection.c (method_encode_signature): Increase the minimum
2677         value of `size' from 10 to 11.
2678         (mono_reflection_bind_generic_parameters): Take `int type_argc'
2679         and `MonoType **types' arguments instead of the `MonoArray
2680         *types'; added `MonoType *nested_in'.  Recursively instantiate
2681         nested classes. 
2683 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
2685         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
2686         stack_overflow_ex members which are used by exception handling.
2688         * appdomain.c (mono_runtime_init): Initialize the new members.
2690         * gc.c (mono_gc_enable): New helper function.
2691         * gc.c (mono_gc_disable): New helper function.
2693 2004-02-23  Martin Baulig  <martin@ximian.com>
2695         * icall.c: I must have been really stupid - make it actually work
2696         this time ;-)
2698 2004-02-23  Martin Baulig  <martin@ximian.com>
2700         * loader.c (method_from_memberref): Only inflate the method if
2701         it's in another klass.
2703 2004-02-23  Martin Baulig  <martin@ximian.com>
2705         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
2706         (mono_class_init): If we're a generic instance and an interface,
2707         compute `class->interface_id'; also create `class->interfaces'
2708         here and inflate them.
2710         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
2711         `ginst->is_open'.
2712         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
2714         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
2716 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
2718         * reflection.c (method_encode_code): Improved the error message
2719         generated by the exception.
2721 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2723         * icall.c: Martin did not do what he said in the ChangeLog for
2724         2004-02-18, but put back the changes for properties and events.
2725         Commenting those changes out again and adding comment to bug #54518.
2726         
2727         * process.c: removed warning.
2729 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
2731         * marshal.c (emit_struct_conv): Print an error message instead of
2732         asserting when a type does not have the StructLayout attribute.
2734 2004-02-20  Martin Baulig  <martin@ximian.com>
2736         * reflection.c (mono_type_get_object): Also use the cache for
2737         generic instances.
2738         (mono_reflection_bind_generic_parameters): Always compute
2739         `ginst->ifaces'.        
2741 2004-02-20  Martin Baulig  <martin@ximian.com>
2743         * class.h (MonoGenericMethod): Removed `klass'.
2745         * class.c (mono_class_inflate_generic_method): Added `MonoClass
2746         *klass' argument.
2748 2004-02-20  Martin Baulig  <martin@ximian.com>
2750         * reflection.c (method_encode_methodspec): Actually use the
2751         uninflated signature for the memberref.
2753 2004-02-20  Martin Baulig  <martin@ximian.com>
2755         * class.h (MonoGenericMethod): Removed `declaring'.
2757         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
2758         is NULL, compute it here.
2760 2004-02-20  Martin Baulig  <martin@ximian.com>
2762         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
2764         * metadata.c (mono_metadata_generic_inst_hash): New method.
2765         (mono_metadata_generic_inst_equal): New method.
2767         * reflection.c (mono_reflection_bind_generic_parameters): Use the
2768         `klass->image->generic_inst_cache' cache to avoid creating
2769         duplicate MonoGenericInst's.
2771         * class.c (mono_class_inflate_generic_type): Use the cache.
2773 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
2775         * object.c: fixed gc descriptor calculation for embedded valuetypes.
2777 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2779         * icall.c: added Socket.WSAIoctl icall.
2781         * socket-io.[ch]: implemented
2782         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
2784 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
2786         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
2788 2004-02-18  Urs C Muff  <umuff@quark.com>
2790         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
2791         this work on PPC and other big-endian architectures.
2793         * debug-mono-symfile.h: Prepended the names of all the `guint32'
2794         fields with an underscore to make sure they're only accessed by
2795         the read32() macro.
2797 2004-02-18  Martin Baulig  <martin@ximian.com>
2799         * icall.c: Put the klass->refclass changes back for methods and
2800         fields, but not for properties and events.  We're currently not
2801         distinguishing between DeclaringType and ReflectedType for
2802         properties and events, that's what caused the regressions.
2804 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2806         * object.c:
2807         (mono_async_result_new): the handle can be NULL.
2809         * threadpool.c: Use an event instead of a semaphore, don't initialize
2810         it until needed. This saves quite a few semaphores from being created
2811         when using the threadpool.
2813 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
2815         * object.c (mono_string_is_interned_lookup): Fix interning of long
2816         strings. Fixes #54473.
2818         * domain.c (ldstr_equal): Optimize if the two strings are equal.
2820         * icall.c: Revert the klass->refclass changes since they introduce
2821         regressions (bug #54518).
2823 2004-02-18  Martin Baulig  <martin@ximian.com>
2825         * class.c (mono_class_init): If we're a generic instance and don't
2826         come from a TypeBuilder, inflate our members here.
2827         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
2828         (mono_class_create_generic): New public method.
2829         (mono_class_initialize_generic): Removed.
2830         (get_instantiation_name): Renamed to
2831         _mono_class_get_instantiation_name() and made it public.
2833 2004-02-18  Martin Baulig  <martin@ximian.com>
2835         * class.c (mono_class_inflate_generic_type): Clear the new
2836         instance's `nginst->klass' when inflating a generic instance.
2837         (mono_class_is_subclass_of): Added (basic) support for generic
2838         instances.
2840 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
2842         * appdomain.h, domain.c: use a MonoCodeManager instead of a
2843         MonoMempool to hold compiled native code.
2845 2004-02-17  Martin Baulig  <martin@ximian.com>
2847         * class.h (MonoDynamicGenericInst): Added `count_properties' and
2848         `properties'.
2850         * reflection.c (mono_reflection_generic_inst_initialize): Added
2851         `MonoArray *properties' argument.
2853         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
2855 2004-02-17  Martin Baulig  <martin@ximian.com>
2857         * icall.c (ves_icall_Type_GetFields): Renamed to
2858         ves_icall_Type_GetFields_internal() and added a
2859         `MonoReflectionType *rtype' argument; pass it to
2860         mono_field_get_object() to set the field's "reflected" type.
2861         (ves_icall_Type_GetConstructors): Likewise.
2862         (ves_icall_Type_GetEvents): Likewise.
2863         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
2864         argument; pass it to mono_method_get_object() to set the method's
2865         "reflected" type.       
2867 2004-02-17  Martin Baulig  <martin@ximian.com>
2869         * class.h (MonoDynamicGenericInst): New type.
2870         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
2872         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
2873         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
2874         (ves_icall_MonoGenericInst_GetFields): New interncall.
2876         * class.c (mono_class_from_generic): Don't call
2877         mono_class_initialize_generic() if this is a dynamic instance;
2878         ie. it's being created from a TypeBuilder.
2879         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
2880         `class->byval_arg.type'.
2882         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
2883         to `inflate_method' and made static.
2884         (mono_reflection_inflate_field): Removed.
2885         (mono_reflection_generic_inst_initialize): New public method.
2887         * reflection.h (MonoReflectionGenericInst): Removed `methods',
2888         `ctors' and `fields'; added `initialized'.
2890 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
2892         * debug-helpers.c (mono_method_full_name): Fix output for empty
2893         namespaces.
2895 2004-02-12  Martin Baulig  <martin@ximian.com>
2897         * class.h (MonoClassField): Added `MonoType *generic_type'.
2899         * reflection.c (mono_image_get_fieldref_token): Added support for
2900         instantiated generic types.
2901         (field_encode_inflated_field): Removed.
2902         (mono_image_get_inflated_field_token): Removed.
2903         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
2905         * reflection.h (MonoReflectionInflatedField): Removed.
2907 2004-02-12  Martin Baulig  <martin@ximian.com>
2909         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
2910         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
2912         * reflection.c (mono_image_get_methodspec_token): Take a
2913         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
2914         (mono_image_create_token): Check whether we have a
2915         `method->signature->gen_method' and call
2916         mono_image_get_methodspec_token() if appropriate.
2917         (inflated_method_get_object): Removed.
2918         (mono_reflection_bind_generic_method_parameters): Return a
2919         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
2920         (mono_reflection_inflate_method_or_ctor): Likewise.
2922         * reflection.h (MonoReflectionInflatedMethod): Removed.
2924 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
2926         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
2927         for custom valuetype marshalling.
2929         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
2931 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2933         * icall.c: fixed WSAGetLastError_internal name.
2935 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
2937         * threads.c (mono_thread_attach): Allow this to be called multiple
2938         times for a thread.
2939         
2940         * threads.c (build_wait_tids): Do not wait for ourselves.
2942         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
2943         appdomain list is empty.
2945         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
2946         memory returned by mono_string_builder_to_utf16, since it points into
2947         managed memory. Thanks to Bernie Solomon for noticing this.
2949         * icall.c: Add AppDomainSetup icalls.
2951         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
2953         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
2954         types.
2956         * reflection.c (reflection_methodbuilder_to_mono_method): Save
2957         custom attributes to the method_aux struct. Also fix array indexes etc.
2959         * loader.c (mono_method_get_param_names): Make dynamic case work again.
2960         
2961 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
2963         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
2964         (both static and runtime) and reduce startup time.
2966 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
2968         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
2969         AsAny marshalling conversion instead of crashing.
2971         * marshal.c: Fix warnings.
2973 2004-02-09  Martin Baulig  <martin@ximian.com>
2975         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
2977         * reflection.h (MonoReflectionInflatedMethod): Removed the
2978         `declaring' field, it's now in the unmanaged MonoGenericMethod.
2980         * reflection.c (method_encode_methodspec): Removed the `method'
2981         argument; we get it from `gmethod->declaring'.
2982         (inflated_method_get_object): Removed the `declaring' argument.
2984 2004-02-09  Martin Baulig  <martin@ximian.com>
2986         * class.h (MonoGenericMethod): New type.
2987         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
2988         `generic_method'.
2990         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
2991         a `MonoGenericMethod *gen_method' one.
2993         * class.c (mono_class_inflate_generic_type): Take an additional
2994         `MonoGenericMethod * argument.  This is only non-NULL if we're
2995         inflating types for a generic method.   
2996         (mono_class_inflate_generic_signature): Renamed to
2997         inflate_generic_signature() and made static; take a
2998         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
2999         (inflate_generic_header): Take a `MonoGenericMethod *' argument
3000         instead of a `MonoGenericInst *' one.
3001         (mono_class_inflate_generic_method): Likewise.
3003         * reflection.c (encode_generic_method_sig): Take a
3004         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
3005         (method_encode_methodspec): Likewise.
3006         (inflated_method_get_object): Likewise. 
3008         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
3009         field with a `MonoGenericMethod *gmethod' one.  
3011 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
3013         * class.h (mono_class_has_parent): add parens to expansion
3014         so you can ! this.
3016 2004-02-08  Martin Baulig  <martin@ximian.com>
3018         * image.h (MonoImage): Removed `generics_cache'.
3020         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
3021         instead of a `MonoType *' argument; removed the `inflate_methods'
3022         argument.  Don't inflate methods here.
3024         * loader.c (find_method): If it's a generic instance, call
3025         mono_class_init() on the `sclass->generic_inst->generic_type'.
3027         * metadata.c (mono_type_size): Make this work on uninitialized
3028         generic instances; call it on the `ginst->generic_type's class.
3030         * reflection.c (mono_reflection_bind_generic_parameters): Call
3031         mono_class_from_generic() to create the `ginst->klass'.
3033 2004-02-08  Martin Baulig  <martin@ximian.com>
3035         * class.h (MonoClass): Changed type of `generic_inst' from
3036         `MonoType *' to `MonoGenericInst *'.
3038 2004-02-08  Martin Baulig  <martin@ximian.com>
3040         * icall.c (ves_icall_Type_BindGenericParameters): Just call
3041         mono_type_get_object(), this is now creating a `MonoGenericInst'
3042         for MONO_TYPE_GENERICINST.
3043         (ves_icall_MonoGenericInst_GetParentType): Likewise.
3044         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
3046         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
3047         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
3048         (inflated_method_get_object): Added `MonoClass *refclass' argument.
3049         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
3050         and reflected type.
3052         * reflection.h (MonoReflectionInflatedMethod): Removed
3053         `declaring_type' and `reflected_type'.
3055 2004-02-08  Martin Baulig  <martin@ximian.com>
3057         * class.h (MonoGenericInst): Added `MonoType *parent' and
3058         `MonoType **ifaces'.
3060         * reflection.h (MonoReflectionGenericInst): Removed `klass',
3061         `parent' and `interfaces'.
3063         * reflection.c (mono_reflection_bind_generic_parameters): Take a
3064         `MonoType *' argument and return a `MonoType *'.
3066         * icall.c
3067         (ves_icall_MonoGenericInst_GetParentType): New interncall.
3068         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
3070 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
3072         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
3073         valuetype marshalling.
3075 2004-02-06  Martin Baulig  <martin@ximian.com>
3077         * class.c
3078         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
3079         (my_mono_class_from_generic_parameter): Likewise.
3081 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
3083         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
3084         contents of the symbol files lazily.
3086         * object.h (MonoThread): Add 'name' and 'name_len' fields.
3088         * threads.h threads.c icall.c: New icalls for getting and setting the
3089         threads name.
3091 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
3093         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
3094         Raise an exception when the domain is not found.
3096 2004-02-03  Martin Baulig  <martin@ximian.com>
3098         * reflection.c (mono_image_get_methodspec_token): Use the
3099         uninflated signature; fixes gen-33.
3101 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
3103         * gc.c threads.c: Make the finalizer thread a normal managed thread so
3104         the finalizer code can use thread functionality.
3106         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
3107         the finalizer thread.
3109         * threads.c: Make some functions more robust.
3111         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
3113         * metadata.h: Add new marshalling conventions.
3115         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
3116         stringbuilder marshalling. Fixes #53700.
3118         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
3120         * reflection.c (mono_image_get_type_info): Save declarative security
3121         info.
3123         * reflection.c (mono_image_get_field_info): Handle uninitialized 
3124         unmanaged fields as well.
3126         * appdomain.c: Bump corlib version.
3128 2004-02-01  Martin Baulig  <martin@ximian.com>
3130         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
3131         method type arguments.  
3133 2004-01-30  Duncan Mak  <duncan@ximian.com>
3135         * marshal.h: Add prototype for
3136         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
3137         and
3138         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
3139         fix the build.
3141 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
3143         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
3144         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
3146 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
3148         * marshal.c (mono_marshal_get_native_wrapper): Add support for
3149         custom marshalling of valuetypes.
3151         * marshal.c: Fix some warnings.
3153 2004-01-29  Martin Baulig  <martin@ximian.com>
3155         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
3156         for generic method parameters.
3158         * reflection.c (method_encode_methodspec): Write the uninflated
3159         signature into the methodspec table.
3160         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
3161         is always the uninflated method.
3162         (reflection_methodbuilder_to_mono_method): Copy the generic
3163         parameters from the MethodBuilder into `header->gen_params'.
3165 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
3167         * class.c (mono_class_from_generic_parameter): Fix warning.
3169 2004-01-27  Martin Baulig  <martin@ximian.com>
3171         * class.c (mono_class_from_generic_parameter): Don't create
3172         `klass->methods' here.  
3174 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
3176         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
3177         extension since it does not work with libraries named lib<FOO>.dll.so.
3179 2004-01-25  Martin Baulig  <martin@ximian.com>
3181         * class.c (mono_class_inflate_generic_type): Added support for
3182         MONO_TYPE_GENERICINST.
3184         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
3185         inflate methods on open constructed types.      
3187 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3189         * object.c: fire ProcessExit event in the root AppDomain after running
3190         Main. Fixes bug #53299.
3192 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
3194         * socket-io.c: include the new socket-wrappers.h header.
3195         Use the wrappers instead of the unix socket functions to make the code
3196         more clear.
3198 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
3200         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
3202         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
3203         Fixes #22532.
3205 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
3207         * reflection.c (mono_image_create_pefile): Handle the case when the
3208         entry point is not a MethodBuilder.
3210         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
3211         field to ReflectionMethod since it is not allways a builder.
3213         * reflection.c (type_get_fully_qualified_name): New helper function to
3214         return the fully qualified name of a type.
3216         * reflection.c (encode_marshal_blob): Always emit the fully qualified
3217         type name for custom marshallers.
3219         * reflection.c (mono_marshal_spec_from_builder): Ditto.
3221         * class.c (mono_class_setup_vtable): If a parent class already 
3222         implements an interface, use the implementing methods from that class.
3223         Fixes #53148.
3225 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3227         * threadpool.c: just return instead of ExitThread to allow for thread
3228         clean up earlier.
3230 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
3232         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
3233         when closing resource modules.
3235         * reflection.c (mono_image_create_pefile): Handle the case when the
3236         entry point is not a MethodBuilder.
3238         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
3239         field to ReflectionMethod since it is not allways a builder.
3241 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
3243         * marshal.c (mono_marshal_get_managed_wrapper): 
3244         mono_marshal_alloc takes native int so CONV_I
3245         the arg for 64bits.
3247 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
3249         * reflection.c (fixup_cattrs): New function to fixup the methoddef
3250         tokens in the cattr table. Fixes #53108.
3252 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3254         * loader.c: don't trim ".dll" before looking up in the config file.
3255         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
3257 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
3259         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
3260         Return the module which contains the resource as well.
3261         (ves_icall_System_Reflection_Module_Close): New icall.
3263         * appdomain.c: Bump corlib version number.
3265         * image.c (mono_image_addref): New public function.
3267         * assembly.c: Call mono_image_addref.
3269         * reflection.c (mono_module_get_object): Increase reference count of 
3270         the image.
3272         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
3273         Fixes #22532.
3275         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
3276         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
3277         proper exceptions on DllImport problems.
3279 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
3281         * class.c, metadata.c: eliminate CSIZE macro.
3283 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
3285         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
3286         * object.h: Added async_callback field in MonoAsyncResult.
3287         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
3288         * verify.c: Added async_callback in MonoAsyncResult layout.
3290 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
3292         * reflection.c (mono_reflection_get_custom_attrs): Add support
3293         for Modules.
3295 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
3297         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
3298         marshalling.
3299         (mono_marshal_method_from_wrapper): Add null pointer check.
3301 2004-01-16  Martin Baulig  <martin@ximian.com>
3303         * debug-mono-symfile.h: Set version number to 36 and reflect
3304         latest symbol writer changes.
3306 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
3308         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
3309         multi-dimensional arrays.
3310         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
3311         (mono_class_from_mono_type): Use bounded_array_class_get.
3312         
3313         * class.c (mono_bounded_array_class_get): New function which takes
3314         a 'bounded' bool argument to distinguish vectors from one dimensional
3315         arrays.
3317         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
3318         bounded_array_class_get if the array has bounds.
3320         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
3321         Search modules loaded using AssemblyBuilder:AddModule as well.
3323 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3325         * appdomain.c: increased corlib version.
3326         * filewatcher.c: removed g_print.
3327         * icall.c:
3328         (get_property_info): only allocate what is actually requested.
3329         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
3331 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3333         * Makefile.am: added filewatcher.[ch]
3334         * filewatcher.[ch]: FileSystemWatcher runtime support.
3335         * icall.c: added new FSW icalls.
3337 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
3339         * string-icalls.c: fix stringbuilder regression as suggested by
3340         Iain McCoy <iain@mccoy.id.au>.
3342 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
3344         * process.c (process_read_stringtable_block): Recognize '007f' as
3345         a language neutral stringtable block.
3347 2004-01-12  Patrik Torstensson
3349         * object.h (MonoStringBuilder) : Changed layout to support our
3350         new stringbuilder class.
3351         * marshal.c: Change marshalling to support the new layout of 
3352         string builder.
3353         * appdomain.c: increased version number because new layout of
3354         string builder.
3356 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
3358         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
3359         assembly name as an string instead of an AssemblyName, since it is
3360         easier to extract info from it.
3362         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
3363         the culture subdirectories too. Fixes #52231.
3365 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3367         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
3368         It takes 2 new parameters with an optional name for the method to look
3369         for and case ignoring info.
3371         * threadpool.c: removed unused variable.
3373 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3375         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
3376         It takes 2 new parameters with an optional name for the property to look
3377         for and case ignoring info.
3378         Fixes bug #52753.
3380 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
3382         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
3383         Fix #52451.
3385 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3387         * appdomain.c:
3388         * assembly.c: escape the uri before passing it to g_filename_from_uri.
3389         Fixes bug #52630.
3391 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
3393         * reflection.c: Add support for more than one unmanaged resource.
3395         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
3396         in field->def_value, as done in all other cases.
3398         * reflection.c (mono_reflection_get_custom_attrs): Add support for
3399         TypeBuilders.
3401         * reflection.c (mono_reflection_create_runtime_class): Remove 
3402         errorneous assignment to klass->element_class, since it is already
3403         done in mono_reflection_setup_internal_class.
3405 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3407         * gc.c: added missing LeaveCriticalSection.
3408         * icall.c: indented a couple of lines.
3409         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
3410         if we call EndInvoke inside a callback. Fixes bug #52601.
3412 2004-01-07  Martin Baulig  <martin@ximian.com>
3414         * mono-debug-debugger.h
3415         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
3417 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
3419         * appdomain.c: Use messages in NotImplementedException.
3421         * exception.c (mono_get_exception_not_implemented): Now this takes
3422         a message argument.
3424         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
3425         exception instead of g_asserting an aborting when something is not
3426         implemented.
3428         Add some inline docs.
3430 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
3432         * reflection.h: Update after changes to object layout.
3434         * reflection.c: Implement saving of unmanaged aka win32 resources.
3436         * appdomain.c: Bump version number.
3438         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
3439         Handle missing domains gracefully.
3441 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
3443         * file-io.c : On Windows, there are much more invalid_path_chars.
3445 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
3447         * class.h, object.c: prepare for GetType () speedup.
3449 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
3451         * profiler.c: workaround for --profile null reference exception on
3452           cygwin. Patch by Patrik Torstensson.
3454 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
3456         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
3457         make work for unaligned access.
3459 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
3461         * class.c: small cleanup (class->fields [i] -> field).
3462         * image.c: check address of metadata is valid.
3464 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
3466         * assembly.h assembly.c (mono_assembly_loaded): New public function to
3467         search the list of loaded assemblies.
3469         * reflection.c (mono_reflection_type_from_name): Use 
3470         mono_assembly_loaded instead of mono_image_loaded.
3472         * reflection.c: Fix warnings.
3474 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
3476         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
3477         is dynamic. This is needed since an assembly can contain both dynamic and
3478         non-dynamic images.
3480         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
3481         assembly->dynamic.
3483         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
3485         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
3486         to store modules loaded using AddModule.
3488         * reflection.c (mono_image_fill_file_table): Generalize this so it works
3489         on Modules.
3491         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
3493         * reflection.c (mono_image_fill_export_table_from_module): New function to
3494         fill out the EXPORTEDTYPES table from a module.
3496         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
3497         into a separate function. Also handle loaded non-dynamic modules.
3499         * reflection.c (mono_image_basic_init): Fix memory allocation.
3501         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3503         * assembly.c (mono_assembly_load_references): Make this public.
3505 2003-12-19  Martin Baulig  <martin@ximian.com>
3507         * class.c (mono_class_initialize_generic): Made this static, take
3508         a `MonoGenericInst *' instead of a `MonoClass *'.
3509         (mono_class_from_generic): Call mono_class_initialize_generic()
3510         unless we're already initialized or being called from
3511         do_mono_metadata_parse_generic_inst().
3513         * class.h (MonoGenericInst): Added `initialized' and
3514         `init_pending' flags.
3516         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
3517         `mono_class_init (gklass)' or mono_class_initialize_generic()
3518         here; set `generic_inst->init_pending' while parsing the
3519         `type_argv'.
3521 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
3523         * locales.c: include string.h for memxxx prototypes
3525 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
3527         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
3528         constructor when accessing literal fields.
3530 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
3532         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3534         * reflection.c (assembly_add_resource_manifest): New function to fill
3535         the MANIFESTRESOURCE table.
3537         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
3539         * reflection.h: Update to changes in class layout.
3541         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
3542         Reenable call to mono_runtime_is_shutting_down ().
3544         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
3545         determine if the runtime is shutting down.
3547 2003-12-16  Jackson Harper <jackson@ximian.com>
3549         * icall.c: comment out call to mono_runtime_is_shutting_down to
3550         fix build.
3551         
3552 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
3554         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
3555         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
3557 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
3559         * reflection.c: move definition of swap_with_size
3560         to before its first call
3562 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
3564         * appdomain.c (mono_runtime_is_shutting_down): New public function.
3566         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
3567         icall.
3569         * object.c: Fix warnings.
3571         * icall.c (ves_icall_Type_Get...): Only consider inherited static
3572         members if FlattenHierarchy is set.
3574         * reflection.c (mono_image_add_decl_security): New function to emit
3575         declarative security.
3577         * reflection.h reflection.c: Add support for declarative security.
3579         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
3580         
3581 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
3583         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
3584         
3585         * appdomain.c verify.c: Moved corlib version checking into its own
3586         function in appdomain.c since it needs to create vtables etc.
3588 2003-12-13  Patrik Torstensson <p@rxc.se>
3590         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
3591         instead of unwrapped server.
3593 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
3595         * verify.c (check_corlib): Fix field index.
3597 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
3599         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
3600         GetGacPath icall.
3602 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
3604         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
3605         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
3606         cope with sizeof(size_t) != sizeof(guint32).
3608 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3610         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
3611         in case of failure.
3613 2003-12-10  Mark Crichton <crichton@gimp.org>
3615         * icall.c: removed the GetNonZeroBytes.  We now handle this case
3616         in managed code.
3618         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
3620 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
3622         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
3623         marked as deleted.
3625 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
3627         * verify.c (check_corlib): Handle the case when the version field is 
3628         initialized by a static constructor.
3630 2003-12-08  Patrik Torstensson  <p@rxc.se>
3632     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
3634 2003-12-08  Martin Baulig  <martin@ximian.com>
3636         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
3637         a MonoReflectionGenericParameter, also take the parameter index
3638         and name as arguments.
3639         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
3640         (ves_icall_MonoGenericParam_initialize): New interncall.
3641         (ves_icall_Type_make_byref_type): New interncall.
3643         * reflection.h (MonoReflectionGenericParam): Derive from
3644         MonoReflectionType, not just from MonoObject.  Added `refobj' and
3645         `index' fields.
3647         * reflection.c (mono_reflection_define_generic_parameter): Create
3648         and return a new MonoReflectionGenericParam; don't initialize the
3649         constraints here.
3650         (mono_reflection_initialize_generic_parameter): New public method;
3651         initializes the constraints and creates the `param->pklass'.
3653 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
3655         * reflection.h reflection.c: Use the new fields 'num_types', 
3656         'num_fields' and 'num_methods' to track the number of types etc.
3658         * verify.c (check_corlib): Check corlib version number.
3660 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
3662         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
3663         function works on all methods.
3665 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
3667         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
3668         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
3669         the custom_type_info flag of the transparent proxy.
3670         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
3671         objects that supports IRemotingTypeInfo.
3672         * object.h: Added custom_type_info field in transparent proxy.
3674 2003-12-06  Martin Baulig  <martin@ximian.com>
3676         * class.c (mono_class_create_from_generic): Removed.
3677         (mono_class_from_generic): Check `ginst->klass' before doing
3678         anything else.  This is important to fully support "recursive"
3679         generic types.
3681         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
3682         empty `generic_inst->klass' before doing anything else.
3684 2003-12-06  Dick Porter  <dick@ximian.com>
3686         * verify.c: 
3687         * object.h:
3688         * icall.c:
3689         * locales.c: Use C structs to access class fields.  Don't do a
3690         conversion between MonoString and UChar because both are
3691         platform-endian UTF-16.  Compare now takes startindex and count
3692         parameters.  Add a char overload for IndexOf.  Speed up the
3693         invariant string IndexOf.
3695 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
3697         * Makefile.am (monosn_LDADD): Fix parallel build.
3699 2003-12-04  Martin Baulig  <martin@ximian.com>
3701         * icall.c
3702         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
3703         (ves_icall_Type_make_array_type): New interncall.       
3705 2003-12-04  Martin Baulig  <martin@ximian.com>
3707         * locales.c: also change it in the !HAVE_ICU case.
3709 2003-12-04  Dick Porter  <dick@ximian.com>
3711         * icall.c:
3712         * locales.c: construct_compareinfo is now in CompareInfo, not
3713         CultureInfo.
3715 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
3717         * image.c (mono_image_load_file_for_image): Cache loaded images in the
3718         image->files array.
3720         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
3721         table as well.
3723         * assembly.c (mono_assembly_load_references): Only load references
3724         once.
3726         * class.c (mono_class_from_name): Avoid linear search of the 
3727         EXPORTEDTYPE table.
3729         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
3731 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
3733         * image.h (MonoImage): Add 'field_cache' field.
3735         * loader.c (mono_field_from_token): Cache field lookups.
3736         
3737         * reflection.c (mono_module_get_object): Fix name property.
3739         * icall.c (ves_icall_get_enum_info): Update after changes to 
3740         mono_metadata_get_constant_index ().
3742         * icall.c: Get rid of get_type_info icall, use a separate icall for
3743         each type property to avoid needless memory allocations. Fixes #51514.
3745         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
3746         to avoid needless binary searches.
3748         * class.c (class_compute_field_layout): Move the initialization of
3749         field->def_value to mono_class_vtable ().
3751         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
3752         non-corlib types.
3754         * object.c (mono_object_allocate): Make it inline.
3756         * object.c (mono_object_allocate_spec): Make it inline.
3757         
3758 2003-12-02  Dick Porter  <dick@ximian.com>
3760         * locales.c (create_NumberFormat): NumberFormatInfo construction.
3761         Patch by Mohammad DAMT (mdamt@cdl2000.com).
3763 2003-12-01  Dick Porter  <dick@ximian.com>
3765         * threads.c: Fix signature and call in CreateMutex and
3766         CreateEvent.
3768 2003-12-01  Dick Porter  <dick@ximian.com>
3770         * icall.c: 
3771         * locales.c: Implement string compares and searching
3773         * object.h: Add extra Thread field
3775 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
3777         * reflection.c (fixup_method): Add support for MonoCMethod.
3779 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
3781         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
3783         * reflection.c (assembly_name_to_aname): Allow extra characters in
3784         assembly names. Fixes #51468.
3786 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
3788         * exception.c (mono_exception_from_name_domain): New helper function.
3790         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
3791         exception object in the correct domain.
3793         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
3794         formatting + make a copy a the input data.
3796         * loader.c (mono_get_method_from_token): Methods which contain
3797         native code do not have entries in the ImplMap.
3799         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
3800         Thanks to Gonzalo for spotting this.
3801         
3802         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
3803         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
3805         * assembly.h (mono_assembly_load_from): Split the second part of 
3806         assembly loading into a new public function.
3808         * exception.h (mono_get_exception_bad_image_format): New function.
3810 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
3812         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
3813         Enumerate all modules inside a dynamic assembly. Fixes #51293.
3814         
3815         * icall.c: Add new icall for creating dynamic methods.
3817         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
3819         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
3821         * reflection.c (mono_reflection_create_dynamic_method): New icall to
3822         create a dynamic method.
3824         * reflection.c (resolve_object): New helper function.
3826         * reflection.c: Generalize ReflectionMethodBuilder and the functions
3827         which manipulate it so they can also work on dynamic methods.
3829         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
3830         creating the MonoReflectionMethodAux structure if it is not needed.
3831         
3832         * reflection.h verify.c: Update after changes to object layout.
3834         * reflection.c (method_builder_encode_signature): Fix compilation on
3835         gcc 2.95.x.
3837 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
3839         * appdomain.h: Added support for context static fields. Added static_data
3840           field to MonoAppContext and renamed thread_static_fields to a more
3841           generic special_static_fields in MonoAppDomain, since it can now contain
3842           context static fields.
3843         * domain.c: Updated hashtable name.
3844         * object.c: Replaced field_is_thread_static() for a more generic
3845           field_is_special_static() which also checks for context static attribute.
3846           In mono_class_vtable(), added support for static context fields.
3847         * threads.c: Changed methods that manage thread static fields to more
3848           generic methods so they can be reused both for thread and context static
3849           data.
3850         * threads.h: Declared some new methods.
3852 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
3854         * reflection.h: Update after changes to the managed types.
3856         * reflection.c (encode_custom_modifiers): New helper function.
3858         * reflection.c (method_encode_signature): Emit custom modifiers.
3860         * reflection.c (field_encode_signature): Emit custom modifiers.
3862 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
3864         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
3866         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
3867         implementation.
3869         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
3870         icall.
3872         * object.c (mono_field_get_value_object): New function.
3874         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
3875         specific.
3877 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
3879         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
3880         return a preallocated out-of-memory exception instance.
3882         * object.c (out_of_memory): Use the new function.
3884         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
3885         flag is before the custom modifiers. Fixes #49802.
3887 2003-11-16  Martin Baulig  <martin@ximian.com>
3889         * class.c (mono_class_is_open_constructed_type): Implemented the
3890         MONO_TYPE_GENERICINST case.
3892 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
3894         * assembly.c (mono_assembly_fill_assembly_name): New function to
3895         fill out the MonoAssemblyName structure.
3896         (mono_assembly_open): Use the new function.
3898         * icall.c (fill_reflection_assembly_name): New helper function.
3900         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
3901         new function.
3903         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
3905 2003-11-15  Martin Baulig  <martin@ximian.com>
3907         * class.c (mono_class_is_open_constructed_type): New public
3908         function; checks whether a type is an open constructed type,
3909         ie. whether it still contains type parameters.
3910         (mono_class_inflate_generic_type): If we're a type parameter and
3911         the inflated type is also a MONO_TYPE_(M)VAR, return the original
3912         type.
3914         * class.h (MonoGenericInst): Added `guint32 is_open'.
3916         * loader.c (method_from_methodspec): Check whether we're an open
3917         or closed constructed type and set `ginst->is_open'.
3919         * reflection.c (mono_reflection_bind_generic_parameters): Check
3920         whether we're an open or closed constructed type and set
3921         `ginst->is_open'.
3922         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
3923         from open constructed types.
3925 2003-11-15  Martin Baulig  <martin@ximian.com>
3927         * reflection.c (mono_reflection_bind_generic_parameters): If we're
3928         a generic instance (instead of a generic type declaration) with
3929         unbound generic parameters, bind them to our actual types.
3931 2003-11-14  Martin Baulig  <martin@ximian.com>
3933         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
3935         * reflection.c (mono_reflection_bind_generic_parameters): If we're
3936         an interface type, populate `res->interfaces' with instantiated
3937         versions of all the interfaces we inherit.
3939 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
3941         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
3942         when MONO_PATH is set but doesn't contain the install dir.
3944 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3946         * icall.c:
3947         (ves_icall_Type_GetInterfaces): don't return an interface twice when
3948         it's also implemented in base classes. Fixes bug #50927.
3950 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
3952         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
3953         if this method is called from a finalizer. Fixes #50913.
3955 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
3957         * threads.c: Implement VolatileRead/VolatileWrite
3959         * icall.c: Add new icalls for VolatileRead/VolatileWrite
3961 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
3963         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
3964         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
3965         2.95.3.
3967         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
3968         from Peter Ross (pro@missioncriticalit.com).
3969         
3970 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
3972         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
3974 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
3976         * assembly.c (mono_assembly_load_references): Disable check because it
3977         triggers on older corlibs which lots of people have.
3979 2003-11-12  Jackson Harper  <jackson@ximian.com>
3981         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
3982         load corlib.dll if mscorlib.dll is not found.
3983         * assembly.h: Remove corlib name define.
3984         * class.c:
3985         * domain.c:
3986         * image.c: Change corlib name to mscorlib.
3987         
3988 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
3990         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
3992 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
3994         * appdomain.h: Added loader_optimization here to sync with the C#
3995         code, and add disallow_binding_redirects field.
3997 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
3999         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
4001         * reflection.c (mono_image_build_metadata): Fix crash on modules
4002         with no types.
4004         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
4006         * icall.c (ves_icall_get_method_info): Return callingConvention as
4007         well.
4009         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
4010         namespaces from the EXPORTEDTYPE table as well.
4012         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
4013         from all modules inside the assembly.
4014         
4015 2003-11-11  Martin Baulig  <martin@ximian.com>
4017         * reflection.c (mono_reflection_bind_generic_parameters): Make
4018         this work for interfaces.
4020 2003-11-11  Martin Baulig  <martin@ximian.com>
4022         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
4024 2003-11-11  Martin Baulig  <martin@ximian.com>
4026         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
4027         "MonoInflatedMethod" and "MonoInflatedCtor".
4029 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
4031         * reflection.c (resolution_scope_from_image): Use the assembly table
4032         from the manifest module, since other modules don't have it.
4034         * debug-helpers.c (mono_type_full_name): New helper function.
4036         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
4038         * image.c (mono_image_load_file_for_image): New public function which
4039         is a replacement for the load_file_for_image in class.c.
4041         * assembly.c (mono_assembly_load_module): A wrapper for the function
4042         above which does assembly association and reference loading too.
4044         * class.c (mono_class_from_name): Call mono_assembly_load_module.
4046 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4048         * appdomain.c: not all of the attributes for the full assembly name
4049         are required and the order doesn't matter. Fixes bug #50787.
4051 2003-11-10  Dick Porter  <dick@ximian.com>
4053         * locales.c: Use platform-endian UTF16
4055 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
4057         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
4058         
4059 2003-11-10  Martin Baulig  <martin@ximian.com>
4061         * metadata.c
4062         (mono_metadata_load_generic_params): Make this actually work.
4064         * reflection.c (mono_reflection_bind_generic_parameters): If our
4065         parent is a generic instance, pass all the `types' to it, no
4066         matter whether it has the same number of type parameters or not.
4068 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
4070         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
4072         * assembly.c (mono_assembly_load_references): Move the image<->assembly
4073         assignment code to this function so it gets called recursively for all
4074         modules.
4076         * image.c (load_modules): Remove the assembly assignment since it is
4077         now done by mono_assembly_load_references.
4078         
4079         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
4080         Add 'module' argument.
4081         (mono_module_get_types): New helper function.
4082         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
4084 2003-11-08  Martin Baulig  <martin@ximian.com>
4086         * class.c (mono_class_inflate_generic_method): Interface method
4087         don't have a header.
4089         * reflection.c (mono_image_get_methodspec_token): Take an
4090         additional `MonoGenericInst *' argument instead of reading it from
4091         the header; this is necessary to support interfaces.
4092         (mono_image_create_token): Pass the `MonoGenericInst *' from the
4093         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
4094         (inflated_method_get_object): Take an additional `MonoGenericInst *'
4095         argument.
4097         * reflection.h (MonoReflectionInflatedMethod): Added
4098         `MonoGenericInst *ginst'.
4100 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
4102         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
4104 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
4106         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
4108 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
4110         * reflection.c 
4111         (reflection_methodbuilder_from_method_builder):
4112         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
4113         initialize a ReflectionMethodBuilder structure.
4114         (mono_image_get_methodbuilder_token):
4115         (mono_image_get_ctorbuilder_token): New functions to emit memberref
4116         tokens which point to types in another module inside the same assembly.
4118         * reflection.c: Use the new helper functions.
4119         
4120         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
4122         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
4123         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
4125         * reflection.c (resolution_scope_from_image): Emit a moduleref if
4126         neccesary.
4128         * reflection.c (mono_image_build_metadata): Emit metadata only for the
4129         current module. Emit the manifest only for the main module.
4131         * reflection.c (mono_image_create_token): Add assertion when a 
4132         memberref needs to be created.
4134         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
4136         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
4137         larger buffer for the custom attribute blob. Fixes #50637.
4138         
4139 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4141         * threadpool.c: notify listener on async processing handles after
4142         invoking the async callback. Thanks to Zoltan.
4144 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
4146         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
4147         avoid code duplication.
4149         * reflection.h (MonoDynamicImage): New type which is currently unused,
4150         but will be used through the ref.emit code in place of 
4151         MonoDynamicAssembly.
4153         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
4154         object layout.
4156         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
4157         a MonoDynamicImage instead of just a MonoImage.
4158         
4159         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
4160         icalls to ModuleBuilder but keep their semantics, so they will work
4161         with moduleb->assemblyb. This will change later.
4162         
4163 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
4165         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
4166         object layout.
4168         * reflection.c (mono_image_build_metadata): Avoid creation of a default
4169         main module, since it is now done by the managed code.
4171 2003-11-03  Martin Baulig  <martin@ximian.com>
4173         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
4174         `ginst->klass' here.
4175         (method_encode_methodspec): Don't use the `ginst->generic_method's
4176         klass if it's a generic instance, use `ginst->klass' in this case.
4178 2003-11-03  Martin Baulig  <martin@ximian.com>
4180         * reflection.c (mono_image_get_generic_method_param_info):
4181         Removed, use mono_image_get_generic_param_info() instead.
4182         (mono_image_get_type_info): Write the GenericParam table before
4183         the Method table.  This is neccessary because in the GenericParam
4184         table, type parameters of the class (ie. '!0' etc.) must come
4185         before the ones from its generic methods (ie. '!!0' etc).
4187 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
4189         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
4191 2003-11-02  Martin Baulig  <martin@ximian.com>
4193         * reflection.c (create_generic_typespec): Take a
4194         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
4195         the generic parameters from it.
4197 2003-11-02  Martin Baulig  <martin@ximian.com>
4199         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
4200         instead of a `MonoClassField *' since we just need the type.
4201         (create_generic_typespec): New static function.  Creates a
4202         TypeSpec token for a generic type declaration.
4203         (mono_image_get_generic_field_token): New static function.
4204         (mono_image_create_token): If we're a FieldBuilder in a generic
4205         type declaration, call mono_image_get_generic_field_token() to get
4206         the token.
4208 2003-11-02  Martin Baulig  <martin@ximian.com>
4210         * reflection.h
4211         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
4212         `MonoReflectionGenericInst *declaring_type' and
4213         `MonoReflectionGenericInst *reflected_type' fields.
4215         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
4216         `MonoReflectionGenericInst *declaring_type' and a
4217         `MonoReflectionGenericInst *reflected_type' argument instead of a
4218         single `MonoReflectionGenericInst *type' one.  Set
4219         `res->declaring_type' and `res->reflected_type' from them.
4220         (mono_reflection_inflate_field): Likewise.      
4222 2003-11-02  Martin Baulig  <martin@ximian.com>
4224         * class.c (mono_class_setup_vtable): Don't store generic methods
4225         in the vtable.  
4227 2003-11-02  Martin Baulig  <martin@ximian.com>
4229         * reflection.h (MonoReflectionGenericInst): Added
4230         `MonoReflectionType *declaring_type'.
4232         * reflection.c (mono_reflection_bind_generic_parameters): Use
4233         `if (tb->parent)' instead of `klass->parent'.
4235 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
4237         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
4238         with an empty ASSEMBLY table.
4240         * reflection.c (mono_image_build_metadata): Avoid using the same loop
4241         variable in the inner and outer loops.
4243 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
4245         * metadata.h (mono_metadata_make_token): Put parentheses around macro
4246         argument.
4248         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
4249         
4250         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
4251         icalls. Instead, do everything in managed code. This is needed since
4252         it is hard to restore the original domain etc. in unmanaged code in the
4253         presence of undeniable exceptions.
4255         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
4256         New icalls to push and pop appdomain refs.
4258 2003-10-31  Martin Baulig  <martin@ximian.com>
4260         * class.c (inflate_generic_type): Renamed to
4261         mono_class_inflate_generic_type() and made it public.
4263         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
4264         New interncall.
4266         * loader.c (mono_field_from_memberref): Also set the retklass for
4267         typespecs.
4269         * fielder.c (mono_image_get_inflated_field_token): New static
4270         method; creates a metadata token for an inflated field.
4271         (mono_image_create_token, fixup_method): Added support for
4272         "MonoInflatedField".
4273         (fieldbuilder_to_mono_class_field): New static function.
4274         (mono_reflection_inflate_field): New public function.
4276         * reflection.h
4277         (MonoReflectionGenericInst): Added `MonoArray *fields'.
4278         (MonoReflectionInflatedField): New typedef.     
4280 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
4282         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
4283         for Solaris and other platforms without s6_addr16
4285 2003-10-30  Martin Baulig  <martin@ximian.com>
4287         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
4288         argument instead of two.
4289         (mono_class_inflate_generic_signature): Likewise.
4290         (inflate_generic_header): Likewise.
4291         (mono_class_inflate_generic_method): Likewise.  In addition, if
4292         `ginst->klass' is set, it becomes the new `method->klass'.
4294         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
4295         field.
4297         * reflection.c (encode_generic_method_sig): Write a 0xa as the
4298         first byte. [FIXME]
4299         (method_encode_methodspec): If we have generic parameters, create
4300         a MethodSpec instead of a MethodRef.
4301         (fixup_method): Added support for "MonoInflatedMethod" and
4302         "MonoInflatedCtor".
4303         (mono_image_create_token): Added support for "MonoInflatedMethod"
4304         and "MonoInflatedCtor".
4305         (inflated_method_get_object): New static function; returns a
4306         managed "System.Reflection.MonoInflatedMethod" object.
4307         (mono_reflection_bind_generic_method_parameters): Return a
4308         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
4309         (mono_reflection_inflate_method_or_ctor): Likewise.
4310         (mono_image_get_generic_method_param_info): Initialize unused
4311         fields to zero.
4312         (mono_image_get_generic_param_info): Likewise.
4314         * reflection.h (MonoReflectionInflatedMethod): New public
4315         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
4316         "S.R.MonoInflatedCtor" classes.
4318         * loader.c (method_from_memberref): If we're a TypeSpec and it
4319         resolves to a generic instance, inflate the method.
4321 2003-10-28  Dick Porter  <dick@ximian.com>
4323         * object.c (mono_runtime_run_main): Convert command-line arguments
4324         into utf8, falling back to the user's locale encoding to do so.
4326 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
4328         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
4329         at this time.
4331         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
4333         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
4334         up icalls at method definition time. Partially fixes #33569.
4336 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
4338         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
4339         marshalling of arrays. Fixes #50116.
4341         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
4343         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
4344         points to a vtable in the dying appdomain.
4346         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
4347         listeners into unmanaged code inside the lock.
4349         * object.c (mono_class_vtable): Turn off typed allocation in non-root
4350         domains and add some comments.
4352 2003-10-25  Martin Baulig  <martin@ximian.com>
4354         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
4356         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
4358         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
4359         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
4360         currently parsing.  Create the generic class and store it in
4361         `generic_inst->klass' before parsing the type arguments.  This is
4362         required to support "recursive" definitions; see mcs/tests/gen-23.cs
4363         for an example.
4364         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
4365         to support recursive typespec entries.
4367         * class.c (mono_class_setup_parent): If our parent is a generic
4368         instance, we may get called before it has its name set.
4369         (mono_class_from_generic): Splitted into
4370         mono_class_create_from_generic() and mono_class_initialize_generic().
4372 2003-10-25  Martin Baulig  <martin@ximian.com>
4374         * icall.c (ves_icall_Type_BindGenericParameters): Return a
4375         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
4376         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
4377         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
4379         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
4380         (create_typespec): Likewise.
4381         (mono_reflection_bind_generic_parameters): Return a
4382         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
4383         (mono_reflection_inflate_method_or_ctor): New public function.
4385         * reflection.h (MonoReflectionGenericInst): New typedef.        
4387 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
4389         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
4390         inside the domain lock. Fixes #49993.
4391         
4392         * object.c (mono_class_vtable): When typed allocation is used, 
4393         allocate vtables in the GC heap instead of in the mempool, since the
4394         vtables contain GC descriptors which are used by the collector even
4395         after the domain owning the mempool is unloaded.
4397         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
4399         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
4400         reflect what it does. Also invalidate mempools instead of freeing
4401         them if a define is set.
4403         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
4404         of the appdomain.
4405         
4406         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
4407         hold the finalizable objects in this domain.
4409         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
4410         appdomain.
4412         * appdomain.c (mono_domain_set): New function to set the current
4413         appdomain, but only if it is not being unloaded.
4415         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
4416         appdomain which is being unloaded.
4417         
4418         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
4419         unloading of the root appdomain.
4421         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
4422         icall to execute a method in another appdomain. Intended as a 
4423         replacement for InternalSetDomain, which can confuse the code 
4424         generation in the JIT.
4426         * appdomain.c (mono_domain_is_unloading): New function to determine
4427         whenever an appdomain is unloading.
4429         * appdomain.c (mono_domain_unload): New function to correctly unload
4430         an appdomain.
4432         * assembly.c (mono_assembly_load_references): Check that an assembly
4433         does not references itself.
4435         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
4436         domain manually, it asks the finalizer thread to do it, then waits for
4437         the result. Also added a timeout.
4439         * icall.c: Register the new icalls.
4441         * threads.h threads.c: Export the mono_gc_stop_world and 
4442         mono_gc_start_world functions.
4443         
4444         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
4445         function to fill out the mempool with 0x2a.
4447 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
4449         * reflection.h (MonoReflectionMethodAux): New structure to store
4450         information which is rarely used, thus is not in the MonoMethod
4451         structure.
4453         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
4454         store the aux info.
4456         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
4457         and marshalling info into the aux structure.
4459         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
4460         from the aux structure.
4462         * loader.c (mono_method_get_param_names): Retrieve the param names from
4463         the aux structure.
4464         
4465 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
4467         * exception.h exception.c: Add AppDomainUnloadedException && fix 
4468         warning.
4470 2003-10-21  Dick Porter  <dick@ximian.com>
4472         * socket-io.c
4473         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
4474         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
4476 2003-10-21  Martin Baulig  <martin@ximian.com>
4478         * reflection.c (mono_reflection_bind_generic_parameters):
4479         `klass->parent' is NULL for interfaces.
4481 2003-10-21  Martin Baulig  <martin@ximian.com>
4483         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
4485 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
4487         * exception.c (mono_exception_from_name_msg): New helper function for
4488         creating exceptions and initializing their message field.
4490         * exception.c: Simplify functions using the new helper.
4492         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
4493         New function.
4495         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
4496         mono_raise_exception, since otherwise gcc doesn't generate the function
4497         epilog for raise_exception, confusing the stack unwinding in the JIT.
4498         Fixes #45043.
4500         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
4501         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
4502         Fixes #49499.
4504 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4506         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
4507         utf8.
4509 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
4511         * icall.c: Removed GetUninitializedObject method because
4512           AllocateUninitializedClassInstance does the same.
4514 2003-10-18  Martin Baulig  <martin@ximian.com>
4516         * class.c (inflate_generic_signature): Renamed to
4517         mono_class_inflate_generic_signature() and made it public.
4518         (my_mono_class_from_generic_parameter): New static function; if we
4519         don't already have the generic parameter's MonoClass, create a
4520         very simple one which is just used internally in the runtime and
4521         not passed back to managed code.
4523         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
4525         * metadata.h (MonoMethodSignature): Moved the
4526         `MonoGenericParam *gen_params' to the MonoMethodHeader.
4527         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
4529         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
4530         ves_icall_MonoMethod_GetGenericArguments(); this is now an
4531         interncall on the MonoMethod class, not on MethodInfo.
4532         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
4533         calling mono_reflection_bind_generic_method_parameters() directly.
4535         * loader.c (mono_method_get_signature): If this is a MethodSpec;
4536         return the already computed `method->signature'.
4537         (method_from_methodspec): New static function to load a method
4538         from a MethodSpec entry.
4539         (mono_get_method_from_token): Call the new method_from_methodspec()
4540         for MethodSpec tokens.  
4541         (mono_get_method_from_token): If we're a generic method, load the
4542         type parameters.
4544         * reflection.c (mono_image_get_memberref_token): Allow
4545         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
4546         table.
4547         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
4548         (mono_image_create_token): First check whether it's a generic
4549         method (so we'd need to create a MethodSpec), then do the other
4550         two alternatives.
4551         (mono_reflection_bind_generic_method_parameters): Return a
4552         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
4553         called directly from the interncall.
4555 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
4557         * reflection.c (load_public_key): Move loading of the public key
4558         into managed code.
4560         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
4562         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
4563         fields.
4565         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
4566         culture, hash_alg and public_key. Fixes #49555.
4568 2003-10-17  Martin Baulig  <martin@ximian.com>
4570         * class.h (MonoGenericInst): Moved this declaration here and added
4571         `MonoMethod *generic_method'.
4573         * icall.c
4574         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
4575         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
4577         * metadata.c (mono_metadata_type_equal): Two types of
4578         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
4579         index; ie. don't compare the address of the `MonoGenericParam'
4580         structure.
4581         (mono_metadata_load_generic_params): Removed the `MonoMethod
4582         *method' argument.
4584         * metadata.h (MonoGenericInst): Moved declaration to class.h.
4585         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
4587         * reflection.c (method_encode_signature): Encode the number of
4588         generic parameters.
4589         (encode_generic_method_sig): New static function.
4590         (method_encode_methodspec): New static function; creates an entry
4591         in the MethodSpec table for a generic method.
4592         (mono_image_get_methodspec_token): New static function.
4593         (mono_image_create_token): Call mono_image_get_methodspec_token()
4594         for generic methods.
4595         (mono_reflection_bind_generic_method_parameters): New public
4596         function.  Instantiates a generic method.
4598 2003-10-16  Martin Baulig  <martin@ximian.com>
4600         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
4601         *gen_params' here from MonoMethodHeader.
4603         * metadata.c (mono_metadata_parse_method_signature): If we have
4604         generic parameters, initialize `method->gen_params' and then set
4605         the correct `type->data.generic_param' in all the parameters.
4607 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
4609         * threads.c (mono_threads_get_default_stacksize): New function to 
4610         return the default stacksize.
4612         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
4613         termination of the finalizer thread, since the previous method had
4614         race conditions. Fixes #49628.
4616         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
4617         as for the other managed threads.
4619 2003-10-16  Martin Baulig  <martin@ximian.com>
4621         * class.c (inflate_generic_signature): Copy `generic_param_count'
4622         and `gen_params'.
4624         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
4625         New interncall.
4627         * metadata.c (mono_metadata_parse_method_signature): Actually set
4628         the `method->generic_param_count' here.
4629         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
4631 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
4633         * object.h: Add a new field to TypedRef to simplify the implementation
4634         of the REFANY opcodes in the JIT.
4636         * icall.c: Make use of the new field.
4638         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
4639         dynamically.
4641 2003-10-15  Martin Baulig  <martin@ximian.com>
4643         * class.c (mono_class_from_gen_param): Renamed to
4644         mono_class_from_generic_parameter() and moved most of the
4645         functionality from mono_reflection_define_generic_parameter()
4646         here; ie. we create a "real" class here.
4647         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
4648         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
4649         previously been called.
4651         * class.h (MonoGenericParam): Moved the declaration of this struct
4652         here from metadata.h and added `MonoMethod *method'.
4654         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
4655         interncall.
4657         * loader.c (mono_get_method_from_token): If we have any generic
4658         parameters, call mono_metadata_load_generic_params() to read them
4659         from the MONO_TABLE_GENERICPAR.
4661         * metadata.c (mono_metadata_load_generic_params): Added
4662         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
4664         * metadata.h (MonoMethodSignature): Replaced
4665         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
4666         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
4668         * reflection.c (mono_reflection_define_generic_parameter): Moved
4669         most of the functionality into the new
4670         mono_class_from_generic_parameter(); set the `method' field if
4671         we're a method parameter.       
4673 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
4675         * marshal.c (emit_struct_conv): if native size is 0
4676         emit no code.
4678 2003-10-14  Martin Baulig  <martin@ximian.com>
4680         * icall.c: The generics API has changed in the spec since it was
4681         added to System.Type; these modifications make it match the spec
4682         again.
4683         (ves_icall_Type_GetGenericParameters): Renamed to
4684         `ves_icall_Type_GetGenericArguments'.
4685         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
4686         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
4687         `ves_icall_MonoType_get_HasGenericArguments'.
4688         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
4689         `ves_icall_MonoType_get_IsGenericParameter'.
4690         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
4691         this is no interncall anymore.
4692         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
4693         `ves_icall_TypeBuilder_get_IsGenericParameter'.
4695 2003-10-14  Martin Baulig  <martin@ximian.com>
4697         * reflection.c (mono_reflection_bind_generic_parameters): Also
4698         inflate generic methods if we're reading the class from IL.
4700 2003-10-13  Martin Baulig  <martin@ximian.com>
4702         * reflection.c (mono_reflection_define_generic_parameter): This
4703         method isn't called directly from the icall anymore; take a
4704         `MonoReflectionAssemblyBuilder *' so we can use this for type and
4705         method generic parameters.
4706         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
4707         (method_builder_encode_signature): Encode generic parameters.
4708         (mono_image_get_method_info): Write generic params to the
4709         MONO_TABLE_GENERICPARAM table.
4711         * reflection.h (MonoReflectionMethodBuilder): Added
4712         `MonoArray *generic_params'.
4714         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
4716         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
4717         wrapper for mono_reflection_define_generic_parameter().
4718         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
4720 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
4722         * marshal.h: Add missing function to fix build.
4724         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
4725         the SetLastError pinvoke attribute.
4727         * marshal.c (mono_marshal_set_last_error): New helper function called
4728         by the generated code.
4729         
4730         * marshal.c (mono_mb_emit_branch): New helper function.
4732         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
4734         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
4735         classes as parameters and return values of delegates. Fixes #29256. 
4737 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
4739         * locales.c: use gint32 in non HAVE_ICU case
4741 2003-10-11  Martin Baulig  <martin@ximian.com>
4743         * mono-debug.c (mono_debug_add_method): Added a workaround for
4744         bug #48591.
4746 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
4748         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
4749         delegates passed to native code must use the STDCALL calling 
4750         convention. Fixes #35987.
4752 2003-10-10  Martin Baulig  <martin@ximian.com>
4754         * class.c (inflate_generic_type): If we're inflating for a generic
4755         type instance (and not for a generic method), return
4756         MONO_TYPE_MVAR unchanged.
4758 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4760         * string-icalls.c: Join ignores null strings in the source array.
4761         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
4762         * threads.c: GetAvailableTheads is slightly more accurate.
4764 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
4766         * threads.h threads.c : add mono_threads_set_default_stacksize
4767         and pass default to CreateThread calls.
4769 2003-10-09  Dick Porter  <dick@ximian.com>
4771         * icall.c:
4772         * locales.h:
4773         * locales.c: Internal calls for constructing CultureInfo and
4774         related objects from libicu (if its available.)
4776 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
4778         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
4780 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4782         * threadpool.c: added an argument to async_invoke_thread that is the
4783         item to process, pass the MonoAsyncResult to the thread start function
4784         when creating a new thread. This way we don't need to acquire any lock
4785         when we're creating a new thread. Readded a semaphore for faster
4786         response times (instead of that Sleep i added).
4788 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
4790         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
4791         get daylight change dates better on Windows, fix handling
4792         of platforms without tm_gmtoff.
4794 2003-10-06  Martin Baulig  <martin@ximian.com>
4796         * class.c (inflate_generic_method): Renamed to
4797         mono_class_inflate_generic_method() and made public.
4798         (mono_class_init): Don't inflate the generic methods here.
4799         (mono_class_from_generic): Added `gboolean inflate_methods'
4800         argument.  Inflate the methods here.
4802         * loader.c (mono_method_get_param_names): Ignore instances of
4803         generic types for the moment.
4805         * reflection.c (fixup_method): Added support for inflated methods.
4806         (mono_image_create_token): Use mono_image_get_methodref_token()
4807         for inflated methods.
4808         (mono_custom_attrs_from_param): Ignore instances of generic types
4809         for the moment.
4810         (mono_reflection_bind_generic_parameters): New public function.
4811         Moved all the functionality from
4812         ves_icall_Type_BindGenericParameters() here and added support for
4813         dynamic types.
4814         (mono_reflection_define_generic_parameter): Initialize
4815         `klass->methods' here.
4817         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
4818         functionality into mono_reflection_define_generic_parameter().
4819         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
4820         TypeBuilder, return that TypeBuilder.
4822 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4824         * appdomain.c: removed mono_delegate_semaphore.
4826         * threadpool.c:
4827         (mono_thread_pool_add): moved hash table creation inside and the thread 
4828         creation outside of the critical region.
4829         (mono_thread_pool_finish): removed obsolete code.
4830         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
4831         continue or exit the thread depending on the queue.
4833 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
4835         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
4836         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
4837         handle more bool marshalling options
4839 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
4841         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
4842         arrays of structs. Also add a more descriptive error message when
4843         a structure member is marshalled as LPArray.
4845 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
4847         * marshal.c (mono_marshal_get_native_wrapper): Add support for
4848         marshalling arrays of complex types. Fixes #29098. Also remove an
4849         usused and incomplete function.
4851 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
4853         * gc.c: report heap_size - free_bytes as total memory allocated
4854         (bug#49362).
4856 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
4858         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
4859         fix timezone handling problems on Windows.
4860         
4861         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
4862         asserts when the year is outside the range handled by ms the functions.
4864         * class.c (setup_interface_offsets): If the class is an interface,
4865         fill out its interface_offsets slot.
4867 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4869         * threadpool.c: mark threadpool threads as background.
4871 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
4873         * decimal.c - define DECINLINE to nothing if not using GCC
4875 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
4877         * assembly.c: More refcount fixes.
4879 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4881         * string-icalls.c: if we're not trimming, return the same string.
4882         When not splitting, don't create a new string.
4884 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4886         * image.c:
4887         (mono_image_open): increment the ref_count inside the critical section.
4889 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
4891         * image.c (mono_image_open): Fix reference counting bug.
4893 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
4895         * marshal.c (mono_marshal_type_size) struct alignment changed for 
4896         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
4897         64bits. Avoid leak in mono_marshal_get_native_wrapper when
4898         mono_lookup_pinvoke_call throws.        
4900 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
4902         * reflection.c (mono_reflection_parse_type): Fix #49114.
4904         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
4905         temporary workaround for cygwin header problem.
4907         * object.c (mono_object_isinst): Synchronize this with the code
4908         generated by the JIT for casts.
4910 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
4912         * reflection.c (encode_type): Fix #38332.
4914 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
4916         * marshal.c (mono_marshal_method_from_wrapper): New function to return
4917         the original method from the wrapper method.
4919 2003-09-25  Martin Baulig  <martin@ximian.com>
4921         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
4922         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
4923         (ves_icall_Type_get_IsGenericInstance): New interncall.
4925 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
4927         * object.c: fix cast warning in big endian code.
4929 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
4931         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
4932         
4933 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4935         * assembly.c: don't call check_env from mono_assembly_load. It's
4936         already done once in mono_assemblies_init and may cause headaches when
4937         multiple threads are loading assemblies.
4939 2003-09-19  Martin Baulig  <martin@ximian.com>
4941         * reflection.c (mono_reflection_define_generic_parameter): Don't
4942         allocate `klass->methods', set `klass->flags' to
4943         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
4945 2003-09-18  Martin Baulig  <martin@ximian.com>
4947         * class.c (mono_class_init): Don't create `class->methods' if it's
4948         already initialized.
4950         * metadata.c (mono_metadata_load_generic_params): Make this
4951         actually work.
4953         * reflection.c (mono_reflection_define_generic_parameter): Set
4954         parent class and interfaces from the constraints.
4956         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
4957         to keep this struct in sync with the declaration in TypeBuilder.cs.
4959 2003-09-17  Martin Baulig  <martin@ximian.com>
4961         * metadata.h (MonoType): Replaced the data's `int type_param'
4962         field with `MonoGenericParam *generic_param'.
4963         (MonoGenericParam): Added `MonoClass *klass'.
4965         * class.c (mono_class_from_gen_param): Removed the
4966         `MonoImage *image' and `int type_num' arguments.
4968         * metadata.c (mono_metadata_parse_generic_param): New static
4969         method; creates a MonoGenericParam which just contains the index.
4970         (do_mono_metadata_parse_type): Call
4971         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
4972         MONO_TYPE_MVAR.
4974         * reflection.c (mono_image_typedef_or_ref): Generic type
4975         parameters may be in the same assembly, but never use a typedef
4976         for them.
4977         (mono_reflection_define_generic_parameter): We're now creating a
4978         "real" class for the type parameter; it's now safe to call
4979         mono_class_from_mono_type() on the class'es type, it'll do the
4980         right thing.
4982 2003-09-16  Martin Baulig  <martin@ximian.com>
4984         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
4985         `symfile->range_entry_size' and `symfile->class_entry_size' here;
4986         the `symfile' data structure must be fully initialized before it
4987         gets added to the table.
4989 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
4991         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
4993         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
4994         class init trampolines.
4996 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
4998         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
4999         to the built-in profiler to turn off time and allocation profiling
5000         respectively.
5002 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
5004         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
5005         g_direct_equal.
5007         * debug-helpers.c (mono_method_full_name): Print the wrapper type
5008         in human readable form.
5010 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
5012         * reflection.c icall.c: Fixed warnings.
5014         * image.c (load_class_names): Use a temporary hash table to hold the
5015         namespaces in order to avoid doing many string comparisons.
5017         * image.h: Fix typo.
5019         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
5020         Pass NULL instead of g_direct_equal to the GHashTable constructor 
5021         since the NULL case is short-circuited inside g_hash_table_lookup, 
5022         leading to better performance.  
5024         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
5025         obtain the first custom attribute for a given index. Depends on the
5026         CustomAttribute table being sorted by the parent field.
5028         * reflection.c (mono_custom_attrs_from_index): Use the new function 
5029         for better performance.
5031 2003-09-07  Martin Baulig  <martin@ximian.com>
5033         * class.c (mono_class_init): If we're a generic instance, inflate
5034         all our methods instead of loading them from the image.
5035         (mono_class_from_generic): Set `class->methods = gklass->methods'.
5037 2003-09-07  Martin Baulig  <martin@ximian.com>
5039         * mono-debug-debugger.c: Added support for constructors.
5041 2003-09-06  Martin Baulig  <martin@ximian.com>
5043         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
5044         New interncall.
5046         * reflection.c (mono_reflection_setup_generic_class): Call
5047         ensure_runtime_vtable() to create the vtable.
5049 2003-09-05  Martin Baulig  <martin@ximian.com>
5051         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
5052         MONO_TYPE_MVAR.
5054 2003-09-04  Martin Baulig  <martin@ximian.com>
5056         * reflection.c (mono_reflection_define_generic_parameter): Generic
5057         parameters start with zero.
5059 2003-09-04  Martin Baulig  <martin@ximian.com>
5061         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
5063         * reflection.h (MonoReflectionGenericParam): New typedef.
5064         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
5065         the generic parameters from the managed TypeBuilder.
5067         * reflection.c (mono_reflection_define_generic_parameter): New function.
5068         (mono_reflection_create_runtime_class): Encode generic parameters.
5069         (mono_reflection_setup_generic_class): New function; this is
5070         called after adding adding all generic params to the TypeBuilder.
5071         (encode_type): Added MONO_TYPE_VAR.
5073 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
5075         * class.h class.c (mono_class_needs_cctor_run): Moved this method
5076         here from the JIT.
5078         * assembly.h assembly.c: Moved the AOT loading code into an assembly
5079         load hook.
5081 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
5083         * reflection.h reflection.c class.h class.c: Delete duplicate 
5084         definition of mono_type_get_name () from reflection.c and export the
5085         one in class.c.
5087         * class.c: Class loading fixes from Bernie Solomon 
5088         (bernard@ugsolutions.com).
5090         * reflection.c: Endianness fixes from Bernie Solomon 
5091         (bernard@ugsolutions.com).
5092         
5093 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
5095         * assembly.h assembly.c: Define a file format version for AOT
5096         libraries.
5097         
5098         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
5100         * appdomain.h (MonoJitInfo): New field to determine whenever the
5101         code is domain neutral.
5102         
5103 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
5105         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
5107 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
5109         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
5110         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
5111         Avoid caching the result since strings must be domain specific. Fixes
5112         #48050.
5114 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
5116         * marshal.c (mono_marshal_init): Make this callable multiple times
5117         since it is hard to find a correct place to call it.
5119         * object.c (mono_runtime_class_init): Execute static constructors in
5120         the correct appdomain.
5122         * image.c (build_guid_table): Handle the case when multiple images have
5123         the same GUID.
5125 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5127         * icall.c: added a couple of icalls for System.Web.
5129 2003-08-28  Martin Baulig  <martin@ximian.com>
5131         * icall.c (ves_icall_Type_BindGenericParameters): Use
5132         `klass->generic_inst' instead of `&klass->byval_arg' in the
5133         mono_type_get_object() call.  The returned type must be
5134         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
5136 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
5138         * NOTES: New file.
5140         * object.c (mono_class_proxy_vtable): Make it thread safe.
5142         * pedump.c: Fix warning.
5144         * object.c appdomain.h: Get rid of metadata_section. 
5145         It is no longer needed and it was causing deadlocks with domain->lock.
5147         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
5149 2003-08-26  Martin Baulig  <martin@ximian.com>
5151         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
5153 2003-08-26  Martin Baulig  <martin@ximian.com>
5155         * pedump.c (main): Call mono_metadata_init(),
5156         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
5157         and mono_loader_init().
5159 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
5161         * loader.h: Add missing include to fix build.
5163         * image.h: mono_image_load_references is no more.
5165         * assembly.c: Reworked assembly loading to make it really thread safe.
5166         After these changes, the assembly returned by mono_assembly_open is
5167         fully initialized, i.e. all its references assemblies are loaded.
5169         * assembly.c (mono_image_load_references): Renamed to 
5170         mono_assembly_load_references, and made private, since clients no
5171         longer need to call it.
5173         * class.c: Removed calls to mono_assembly_load_references, since it was
5174         a source of deadlocks.
5176         * loader.h loader.c class.h class.c: Protect data structures using a 
5177         new lock, the loader lock.
5179         * class.c (mono_class_setup_vtable): Create temporary hash tables and
5180         GPtrArrays only when needed.
5182         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
5183         into empty structures by mcs. Fixes pinvoke7.cs.
5184         
5185         * domain.c (mono_init): Call a new initialization function.
5187         * appdomain.c (mono_runtime_init): Call the new initializer function
5188         of the marshal module.
5190         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
5191         inserted into empty structures by mcs. Fixes pinvoke7.cs.
5193         * marshal.h marshal.c: Added locks around the wrapper caches to make
5194         this module thread safe.
5196         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
5197         this argument. Fixes pinvoke1.exe.
5199 2003-08-25  Lluis Sanchez <lluis@ximian.com>
5201         * object.h: Added call_type field to MonoMethodMessage and the corresponding
5202         enumeration of values. Removed fields to store remote call output values in
5203         MonoAsyncResult. Not needed any more.
5204         * object.c: Initialize call_type and async_result fields in mono_message_init.
5205         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
5206         dispatching the message.
5207         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
5208         async call to finish. To do it use a message with EndInvoke call type.
5210 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
5212         * loader.h loader.c (mono_method_hash_marhal_info): New function which
5213         determines whenever a method has marshalling info.
5215 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5217         * assembly.c: fix the build on windows.
5219 2003-08-22 Lluis Sanchez <lluis@ximian.com>
5221         * object.cs: Fixed bug #47785.
5223 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
5225         * string-icalls.c (StringReplace): If their are no occurances of
5226         the old string found return a reference to the supplied
5227         string. This saves some memory and matches MS behavoir.
5228         
5229 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5231         * socket-io.c: fixed compilation for systems that define AF_INET6
5232         and don't define SOL_IP/SOL_IPV6.
5234 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
5236         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
5237         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
5239         * rawbuffer.c rawbuffer.h: Make this module thread safe.
5241         * domain.c: Make this module thread safe.
5243         * domain.c (mono_init): Call new initialization function.
5245         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
5246         reference types too. Fixes #38812.
5248         * image.c (mono_image_init): Fixed warnings.
5250         * class.c (mono_class_from_typeref): Handle assembly load failure
5251         correctly.
5253         * appdomain.c (add_assemblies_to_domain): Handle the case when
5254         the references of an assembly are not yet loaded.
5256         * metadata.c image.c assembly.c: Moved initialization of global
5257         variables to a separate function called at startup since lazy 
5258         initialization of these variables is not thread safe.
5259         
5260         * image.c assembly.c: Made this module thread safe by adding locks in 
5261         the appropriate places.
5263         * domain.c (mono_init): Call the new initialization functions of the
5264         three modules.
5266 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
5268         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
5269           make a direct call. It is proxy's work to make the call asynchronous.
5270           mono_delegate_end_invoke(): If the targe is a proxy, just collect
5271           the return values.
5272         * object.cs: mono_method_call_message_new(): read AsyncResult and
5273           state object from parameters list, if this info is requested.
5274         * object.h: Added fields to store remote call output values in
5275           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
5277 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
5279         * object.h: add needed fields to MonoThread.
5280         * threads.c, threads.h: allow registering a function to cleanup data
5281         allocated per thread by the JIT.
5283 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
5285         * loader.h: portability fix by Bernie Solomon
5286         * <bernard@ugsolutions.com>.
5288 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
5290         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
5291         return a MonoArray. This simplifies the code and also ensures that
5292         the cache allways contains an object reference as a value.
5294         * icall.c (ves_icall_get_parameter_info): Simplified using the new
5295         function.
5297 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5299         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
5300         fixes a problem with byte ordering when getting the address family for
5301         a socket.
5303 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
5305         * .cvsignore: Added monosn.
5307         * reflection.h reflection.c loader.c: Added support for parameter
5308         marshalling to dynamically created types. Fixes #47295.
5310 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
5312         * rand.c: remove useless warnings.
5314 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
5316         * class.c: implemented ldtoken for methods and fieldrefs.
5318 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5320         * threadpool.c: when mono_async_invoke was called, no one took care of
5321         monitoring the queue. So if the method invoked took some time and we
5322         got new async invoke requests after 500 ms (the thread created waited
5323         that long in WaitForSingleObject), the new async invoke was not called
5324         until the previous one finished.
5326         This is fixed now. Thanks to Totte for helping with it.
5328 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5330         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
5332 2003-08-11  Martin Baulig  <martin@ximian.com>
5334         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
5336 2003-08-06  Martin Baulig  <martin@ximian.com>
5338         * mono-debug-debugger.c: Added support for static fields,
5339         properties and methods.
5341 2003-08-06  Martin Baulig  <martin@ximian.com>
5343         * mono-debug-debugger.c: Don't store the MonoString's vtable to
5344         make this work for applications with multiple application domains.
5346 2003-08-04  Martin Baulig  <martin@ximian.com>
5348         * mono-debug-debugger.c: Completely reworked the type support; the
5349         most important thing is that we're now just using one single
5350         `MonoType' instance per type.
5352 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
5354         * mono-endian.h, mono-endian.c, icall.c: Added icall
5355         ves_icall_System_Double_AssertEndianity to assert double word endianity
5356         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
5358 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
5360         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
5361         support, icalls and fixes.
5363 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
5365         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
5366         classes that are a punctuation character in .NET is not the same a
5367         g_unichar_ispunct.
5369 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
5371         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
5373 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
5375         * icall.c: Add new MemCopy internalcall.
5376         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
5377         Simplified code; It is not necessary to handle all the cases here,
5378         as the C# code takes care of it.  Only handle the case of the name
5379         resource embedded into the assembly.
5381         Changed signature to return the data pointer and the size of the
5382         data. 
5384 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
5386         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
5387         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
5389 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
5391         * socket-io.c: ignore EINTR error in select.
5393 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
5395         * class.h, class.c: removed unused subclasses field in MonoClass.
5397 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
5399         * icall.c: improve fix of get_base_definition(). If the parent class
5400           doesn't have the mehod, look at the parent of the parent.
5401         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
5402           to check if a parameter is an in or out parameter
5403           (PARAM_ATTRIBUTE_IN is not set by default).
5404           mono_method_return_message_restore(): Use mono_class_value_size to
5405           get the size of a value type. mono_type_stack_size (parameterType)
5406           does not return the correct value if parameterType is byRef.
5407           mono_load_remote_field(), mono_load_remote_field_new(),
5408           mono_store_remote_field(), mono_store_remote_field_new():
5409           raise exception if the remote call returns an exception.
5411 2003-07-28  Martin Baulig  <martin@ximian.com>
5413         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
5414         method.  This is a wrapper around mono_runtime_invoke() which
5415         boxes the instance object if neccessary.
5417 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
5419         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
5420         metadata.h, row-indexes.h, verify.c: first cut of generics support.
5422 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
5424         * icall.c: disable mcs bug workaround.
5426 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
5428         * object.c (mono_runtime_class_init): Take the metadata_section
5429         mutex before obtaining the domain mutex.
5431         * appdomain.h: Added definition of metadata_section mutex here. 
5433         * object.c: define metadata_mutex here.
5435 2003-07-24  Ravi Pratap  <ravi@ximian.com>
5437         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
5438         fixed.
5440 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
5442         * reflection.c: Fix bug #46669
5444 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5446         * exception.c:
5447         * exception.h:
5448         * icall.c:
5449         * object.h: fill in the type name for TypeLoadException.
5451 2003-07-23  Ravi Pratap  <ravi@ximian.com>
5453         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
5454         relationship between TypeBuilders while compiling corlib) and bug
5455         45993 (Array types returned from the runtime while compiling
5456         corlib were from the loaded corlib).
5458 2003-07-22  Martin Baulig  <martin@ximian.com>
5460         * mono-debug-debugger.c: Reworked the type support a bit more;
5461         distinguish between types and classes.
5463 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
5465         * icall.c: add IsArrayImpl icall.
5467 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
5469         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
5470         initializing real_size only once. Also fix bug #46602.
5472 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
5474         * object.c: Renamed mono_metadata_section to metadata_section.
5476 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
5478         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
5479           empty array if the type is an array. Fixed.
5480           ves_icall_MonoMethod_get_base_definition: if the base method
5481           is abstract, get the MethodInfo from the list of methods of
5482           the class.
5483         * reflection.c: ParameterInfo.PositionImpl should be zero-based
5484           and it was 1-based. Fixed in mono_param_get_objects.
5486 2003-07-20  Martin Baulig  <martin@ximian.com>
5488         * mono-debug.h: Set version number to 31.
5489         (mono_debug_init): Added `MonoDomain *' argument.
5491         * mono-debug-debugger.c: Reworked the type support; explicitly
5492         tell the debugger about builtin types; pass the `klass' address to
5493         the debugger.
5495 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
5497         * image.c: Allow new metadata tables to be loaded without a
5498         warning. Also update the warning message to give the new constant value.
5499                 
5500 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
5502         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
5503         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
5504         array type representation changes.
5506 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
5508         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
5509         on Environment.Exit () call.
5511 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
5513         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
5514         requires a matching corlib.
5516 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
5518         * Changelog: My editor decided to add a CR to each line. Sorry about that.
5519           Committed again without the CRs.
5520         
5521 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
5523         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
5524           getting it from the "this" socket instance. Did not work
5525           if the socket is a subclass of Socket.
5526           Also fixed bug #35371.
5528 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
5530         * metadata.c: fixed size for TypedByRef.
5531         * loader.c: when searching for a method, consider the vararg amrker.
5532         * unicode.c, decimal.c: constify some arrays.
5534 2003-07-15  Dick Porter  <dick@ximian.com>
5536         * socket-io.c: Fixed compilation for gcc < 3.2.
5538         Fixed compilation for machines that don't have AF_INET6 (thanks to
5539         Bernie Solomon <bernard@ugsolutions.com> for that part.)
5541         Fixed compile warnings.
5542         
5543         Fixed formatting and line endings.
5545 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
5547         * socket-io.h:
5548         * socket-io.c: Added IPv6 support.
5550 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
5552         * class.c (mono_class_is_assignable_from): New function to implement
5553         the is_assignable_from logic. Used by mono_object_isinst, 
5554         Type::IsAssignableFrom () and the interpreter.
5556         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
5557         Object, even interfaces.
5558         
5559         * object.c (mono_object_isinst): Implement in terms of 
5560         is_assignable_from.
5562         * icall.c (ves_icall_type_is_assignable_from): New icall.
5564 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
5566         * domain.c (foreach_domain): fix compiler warning.
5568 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
5570         * image.c (load_metadata_ptrs): use g_strndup because strndup is
5571         not available on all plattforms
5573 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
5575         * image.h image.c: Store the metadata version string in MonoImage.
5576         * icall.c: New icall to retrieve the image version.
5577         * reflection.c (create_dynamic_image): Fill in the image version field
5578         * reflection.c (build_compressed_metadata): Use the image version
5579         from the image structure.
5581 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5583         * appdomain.c: modified comment.
5584         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
5585         That will be its last iteration when mono_gc_cleanup is called from
5586         mono_runtime_cleanup and before the domain is unloaded.
5588         Fixes bug #45962.
5590 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
5592         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
5593         attributes.
5595 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
5597         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
5598         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
5599         Bernie Solomon <bernard@ugsolutions.com>.
5601 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
5603         * object.c, object.h: provide mono_object_new_fast() for faster
5604         allocation in some special cases.
5606 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
5608         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
5609         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
5611 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
5613         * threadpool.c: fix leaks.
5615 2003-07-01  Dick Porter  <dick@ximian.com>
5617         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
5618         using MonoGHashTables.  Fixes threadpool bug posted to list.
5620 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
5622         * image.h, image.c: added support to load an assembly from a byte array.
5623         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
5624         assembly bundle support.
5626 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
5628         * threadpool.c (mono_thread_pool_add): keep a reference to the
5629         AsyncResult to prevent GC
5631 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
5633         * class.c: leak fix.
5635 2003-06-25  Dick Porter  <dick@ximian.com>
5637         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
5638         for the async object, the WaitHandle object will close the handle.
5639         Fixes bug 45321.
5641 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
5643         * class.c: in mono_array_class_get (), lookup from the hash with the
5644         same type we insert: this works around a bug in
5645         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
5646         lluis. The real fix will have to wait for after the release.
5648 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
5650         * icall.c: fix memory leak when getting type members.
5652 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
5654         * reflection.c: added more pubtoken special cases.
5656 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
5658         * class.c: handle field offset correctly when class size
5659         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
5661 2003-06-20  Martin Baulig  <martin@ximian.com>
5663         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
5664         *image' field.
5666 2003-06-20  Martin Baulig  <martin@ximian.com>
5668         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
5670 2003-06-20  Martin Baulig  <martin@ximian.com>
5672         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
5673         just distinguish between variables in registers and variables at
5674         an offset relative to a register.
5676 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5678         * icall.c: #ifdef out latest changes until mcs is fixed.
5680 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
5682         * icall.c: return members in metadata order.
5684 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
5686         * icall.c: avoid infinite loop in GetTimeZoneData.
5688 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
5690         * icall.c: added Marshal.Prelink/All icalls.
5692 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
5694         * object.c, object.h: fix warnings and do some overflow checking
5695         when creating arrays.
5697 2003-06-17  Dick Porter  <dick@ximian.com>
5699         * file-io.h:
5700         * file-io.c: File attributes need to be tweaked slightly when
5701         passed from the managed to the w32 world.
5703 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
5704         * profiler.h profiler-private.h profiler.c: Rework last patch
5705         based on suggestion by Paolo.
5706         
5707 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
5709         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
5710         instruction level coverage data collection.
5711         * profiler.h profiler.c (: Added new callback function which can be
5712         used by the profiler to limit which functions should have coverage
5713         instrumentation.
5714         * profiler.c (mono_profiler_load): Call g_module_build_path to
5715         generate the file name of the profiler library.
5717 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
5719         * profiler.c, profiler.h, profiler-private.h: added basic block 
5720         coverage profiling API.
5722 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
5724         * reflection.c (mono_reflection_create_runtime_class): Add support
5725         for events in dynamically generated code.
5727         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
5728         not allocated.
5730 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
5732         * icall.c: when getting timezone info, return reasonable values if we
5733         can't get the actual data.
5735 2003-06-14  Dick Porter  <dick@ximian.com>
5737         * threads.c (start_wrapper): Remove the reference to the thread
5738         object in the TLS data, so the thread object can be finalized.
5739         This won't be reached if the thread threw an uncaught exception,
5740         so those thread handles will stay referenced :-( (This is due to
5741         missing support for scanning thread-specific data in the Boehm GC
5742         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
5744 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
5746         * reflection.c: ensure streams and tables are first allocated with
5747         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
5749 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
5751         * icall.c: fixed GetElementType for byrefs (bug# 44792).
5753 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
5755         * reflection.c (mono_reflection_create_runtime_class): Add support for
5756         properties to dynamically created classes.
5757         * reflection.c: Fix a few places where non-MonoObjects were inserted
5758         into the tokens hashtable.
5760 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
5762         * object.c: some support to handle out of memory exceptions.
5764 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
5766         * marshal.c (mono_marshal_get_native_wrapper): support reference
5767         return types
5769 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
5771         * object.h, object.c: more portability stuff from Bernie Solomon.
5772         Unexport mono_object_allocate(). Added mono_object_unbox ().
5773         Set exitcode when an unhandled exception is thrown.
5775 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
5777         * marshal.c (mono_marshal_get_native_wrapper): use custom
5778         marshaler for return types.
5780 2003-06-10  Dick Porter  <dick@ximian.com>
5782         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
5783         ip_mreq is available
5785 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
5787         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
5788         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
5789         by Bernie Solomon <bernard@ugsolutions.com>.
5791 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
5793         * gc.c (mono_gc_init): Avoid error message on shutdown when
5794         GC_DONT_GC=1 is used.
5796         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
5797         New icall to return the GUID of a module.
5799 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
5801         * class.c: ensure instance size always includes the parent's size
5802         even whem class size is set explicitly (fixes bug#44294).
5804 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
5806         * profiler.h, profiler.c: made the simple profiler thread-safe,
5807         get more accurate timing info. Allow the loading of an
5808         externally-developed profiler module.
5810 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
5812         * marshal.c (mono_marshal_get_native_wrapper): improved
5813         class/byref arguments.
5814         (mono_marshal_get_native_wrapper): better string marshaling support.
5816 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
5818         * class.c: ensure .pack and .size are handled correctly and
5819         simplified layout of static fields.
5821 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
5823         * appdomain.c
5824         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
5826         * loader.c (mono_lookup_pinvoke_call): look for modules in the
5827         current directory (fix bug 44008)
5829 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
5831         * marshal.c (mono_marshal_get_native_wrapper): started support for
5832         custom marshalers.
5833         (mono_delegate_to_ftnptr): consider marshalling specifications
5835 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
5837         * reflection.c, reflection.h: emit custom marshal info.
5839 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5841         * object.c: free the GError.
5842         * icall.c: added CloseEvent_internal.
5843         * threads.[ch]:
5844         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
5845         call.
5847 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
5849         * loader.c (mono_method_get_signature): Add support for dynamic
5850         assemblies.
5852 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
5854         * reflection.c: fixed bug #43905.
5856 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
5858         * class.c, domain.c, icall.c, metadata.h, object.h: support for
5859         handling TypedReference and ArgIterator.
5860         * loader.c, loader.h: added function to get signature at call site.
5862 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
5864         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
5865         data readonly. Buglets and warning fixes. Some MethodSpec support.
5867 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
5869         * class.h, class.c, object.c: remove relative numbering support.
5871 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
5873         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
5874         free the string, until we get a chance to fix Gtk#
5876 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5878         * marshal.c: revert last patch.
5880 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
5882         * icall.c: updates for new mono_class_vtable() not calling
5883         the type constructor anymore.
5885 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
5887         * object.h, object.c: separate vtable creation from type
5888         initialization. Make running the .cctor thread safe.
5890 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
5892         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
5894 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
5896         * loader.c (mono_get_method): consider calling convention
5898 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
5900         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
5901         to return the invisible global type for a module.
5903         * reflection.c (mono_image_build_metadata): Emit global fields too.
5905 2003-05-20  Peter Williams  <peterw@ximian.com>
5907         * loader.c (mono_lookup_internal_call): Add a few newlines.
5909 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
5911         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
5912         literal strings.
5914         * appdomain.c (set_domain_search_path): Recalculate search path when
5915         AppDomainSetup.PrivateBinPath changes.
5917         * object.c (mono_class_compute_gc_descriptor): It turns out some
5918         parts of the class libs (like System.Thread) holds pointers to
5919         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
5920         to treat native int a pointer type here.
5921         
5922 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
5924         * appdomain.h, domain.c: add hashtable for jump target resolution.
5926 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
5928         * reflection.h reflection.c icall.c: Added new icalls 
5929         GetManifestResourceInfoInternal, GetModulesInternal and support
5930         infrastructure.
5932 2003-05-16  Dick Porter  <dick@ximian.com>
5934         * icall.c:
5935         * file-io.h:
5936         * file-io.c: Implement System.IO.MonoIO::GetTempPath
5938 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
5940         * object.c: mono_store_remote_field: little fix to previous patch.
5942 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
5944         * class.c: add constructors to array classes.
5945         * icall.c: special case array construction for InternalInvoke (),
5947 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
5949         * class.h class.c reflection.c object.c: Added support for field
5950         defaults in dynamically generated classes.
5952 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
5954         * reflection.c: properly encode charset for ddlimport.
5956 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
5958         * threads.c: allow compiling without GC.
5960 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
5962         * appdomain.h, object.c, object.h, threads.c, threads.h: added
5963         handling of thread static data.
5965 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
5967         * reflection.h, reflection.c: added mono_custom_attrs_free ().
5969 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
5971         * class.c (mono_array_class_get): always set the serializable flags
5972         (mono_array_class_get): always set the SEALED attribute for array types
5974 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
5976         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
5977         attributes (fix for bug 42021).
5979 2003-05-12  Dick Porter  <dick@ximian.com>
5981         * gc.c: Don't run finalizers when the finalizer thread is
5982         finishing up, because the default domain has already been
5983         destroyed.
5985 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
5987         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
5988         value is null, we should throw an exception.   This is slightly
5989         different than the other conventions used for the constructor.
5991 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5993         * socket-io.c: fixed windows build.
5995 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5997         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
5999 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
6001         * object.c (mono_string_new_wrapper): Compatibility fix for MS
6002         compilers.
6004 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
6006         * class.c (mono_class_layout_fields): Add experimental GC aware
6007         auto layout facility. Requires class library changes to work correctly.
6009         (mono_class_setup_vtable): Avoid overriding explicit interface
6010         method implementations. Fixes iface3.exe test.
6012         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
6013         object reference.
6014         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
6015         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
6017         * metadata.h: Add new type classification macro which determines
6018         whenever the type holds an object reference.
6020 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
6022         * marshal.c (mono_marshal_get_native_wrapper): cleanups
6024 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
6026         * gc.c (finalizer_thread): Work around a GC bug.
6028 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
6030         * marshal.c (emit_struct_conv): allow unions
6032         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
6034 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
6036         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
6038 2003-05-06  Martin Baulig  <martin@ximian.com>
6040         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
6042 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6044         * socket-io.c:
6045         (Select_internal): allow NULLs, don't create arrays if not needed.
6046         Coupled with Socket.cs changes.
6048         * threadpool.c:
6049         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
6050         register a finalizer for it that will close the semaphore handle. This
6051         fixes the leak and make Lupus' test run with > 4080 loops.
6053 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
6055         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
6056         Jerome Laban (bug #42287)
6058 2003-05-02  Martin Baulig  <martin@ximian.com>
6060         * debug-mono-symfile.h
6061         (MonoSymbolFile): Moved declaration into mono-debug.h.
6062         (MonoDebugMethodJitInfo): Likewise.
6063         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
6064         argument.
6065         (_mono_debug_address_from_il_offset): Take a
6066         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
6068         * mono-debug.h
6069         (MonoDebugDomainData): New struct.
6070         (mono_debug_get_domain_data): New function.
6071         (mono_debug_add_method): Take an additional `MonoDomain *'
6072         argument.
6073         (mono_debug_source_location_from_address): Likewise.
6074         (mono_debug_il_offset_from_address): Likewise.
6075         (mono_debug_address_from_il_offset): Likewise.
6077 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
6079         * reflection.c: one more check for null type in custom attrs.
6081 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6083         * reflection.c: avoid warning (comparison is always false due to limited
6084         range of data type).
6086 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6088         * icall.c: throw an exception in Type.GetField if the argument 'name'
6089         is NULL.
6091 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
6093         * reflection.c: fixed handling of enums in named arguments to custom
6094         attributes (bug #42123).
6096 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
6098         * reflection.c: use the right array element type and handle
6099         a null for a Type argument, too.
6101 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
6103         * reflection.c: handle arrays as arguments to custom attributes.
6105 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
6107         * reflection.c: handle a string value in a custom attr
6108         ctor that takes an object.
6110 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
6112         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
6113         (fix bug #42063)
6115 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
6117         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
6119 2003-04-27  Martin Baulig  <martin@ximian.com>
6121         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
6122         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
6123         MONO_DEBUGGER_EVENT_BREAKPOINT.
6124         (mono_breakpoint_trampoline_code): Removed.
6125         (mono_debugger_event_handler): The last argument is now a
6126         `guint32'.
6127         (mono_debugger_insert_breakpoint_full): Removed the
6128         `use_trampoline' argument.
6129         (mono_debugger_method_has_breakpoint): Likewise.
6130         (mono_debugger_trampoline_breakpoint_callback): Renamed to
6131         mono_debugger_breakpoint_callback(); take the method and
6132         breakpoint number as arguments.
6134 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
6136         * metadata.c: fix off by one when loading parameters attributes.
6138 2003-04-24  Martin Baulig  <martin@ximian.com>
6140         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
6142 2003-04-24  Martin Baulig  <martin@ximian.com>
6144         * mono-debug-debugger.c: Moved all code which interacts with the
6145         Mono Debugger here.
6147         * debug-mono-symfile.c: This code now just deals with the symbol
6148         file itself, the debugger code is now in mono-debug-debugger.c.
6150 2003-04-23  Martin Baulig  <martin@ximian.com>
6152         * mono-debug.c (mono_debug_source_location_from_il_offset):
6153         New method; like mono_debug_source_location_from_address(), but
6154         takes an IL offset instead of a machine address.
6156 2003-04-23  Martin Baulig  <martin@ximian.com>
6158         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
6159         `line' field; this is now computed by the debugger.
6161 2003-04-23  Martin Baulig  <martin@ximian.com>
6163         * mono-debug.[ch]: New files.  This is the new debugging interface.
6165         * mono-debug-debugger.[ch]: New files.  Moved all code which
6166         interacts with the Mono Debugger here.
6168 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
6170         * domain.c (mono_init): initialize mono_defaults.monitor_class
6172 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
6174         * reflection.c (method_encode_code): Add a spicy exception to help
6175         future compiler authors.
6177 2003-04-21  Martin Baulig  <martin@ximian.com>
6179         * icall.c
6180         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
6181         Make this work with relative pathnames; g_filename_to_uri() needs
6182         an absolute filename.
6184 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
6186         * icall.c: Track name changes in Object and ValueType.
6188 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
6190         * metadata.c (mono_type_stack_size): size should be a multiple of
6191         sizeof (gpointer)
6193 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6195         * gc.c:
6196         (internal_domain_finalize): moved into mono_domain_finalize. No need
6197         to create another thread because the finalizers will be run in the
6198         finalizer thread.
6199         
6200         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
6201         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
6202         to be run (MS does this too).
6204 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
6206         * object.c (mono_class_compute_gc_descriptor): Update comment.
6208         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
6210         * image.h: Add synchronized wrapper cache.
6212         * image.c (do_mono_image_open): Initialize cache.
6214         * reflection.c (create_dynamic_mono_image): Initialize cache.
6216 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6218         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
6219         ves_icall_System_Buffer_ByteLengthInternal.
6221 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
6223         * reflection.c: setup klass->nested_in earlier. Allow
6224         a dash in the assembly name.
6226 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
6228         * metadata.c (mono_type_to_unmanaged): dont access
6229         type->data.klass for MONO_TYPE_OBJECT
6230         (mono_type_to_unmanaged): consider System.Delegate class
6232 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
6234         * class.c: just setup supertypes in the proper place instead of
6235         initializing the full element class for arrays.
6237 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
6239         * class.c: ensure the element class of arrays is initialized.
6240         Setup the supertype info for array classes, too.
6242 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
6244         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
6246 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6248         * Makefile.am: re-added -m option when running cygpath. This way,
6249         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
6250         separator.
6251         * mono-config.c: same codepath for locating mono config file for WIN32
6252         and the rest.
6253         * assembly.c: if mono_assembly_setrootdir is called, don't override
6254         the value set.
6256 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6258         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
6259         MONO_ASSEMBLIES variable.
6261 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
6263         * icall.c: added Assembly::GetNamespaces() icall.
6265 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6267         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
6269 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
6271         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
6272         * object.c: fixed bug in the construction of vtable for proxies
6274 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
6276         * object.c (mono_array_new): Mark mono_array_new as an icall.
6278 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6280         * class.c: fixed test for public method when overriding interfaces.
6281         Closes bug #40970.
6283 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
6285         * appdomain.h, domain.c: added mono_domain_foreach() to
6286         be able to access the currently loaded appdomains.
6287         * object.c: make string interning work across sppdomains.
6288         Mark some functions for use as icalls.
6290 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
6292         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
6294         * reflection.h reflection.c: Allocate long living data using 
6295         GC_MALLOC_ATOMIC so the collector does not need to scan it.
6297         * reflection.c: Double the allocation size in streams instead of
6298         increasing it, to prevent unneccesary copying on large assemblies.
6299         
6300         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
6301         creation if the assembly does not have the Run flag set.
6303 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
6305         * class.h: avoid the C++ keywords in header files (Jerome Laban
6306         spotted and fixed this).
6308 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6310         * object.c:
6311         (mono_unhandled_exception): fill in the arguments for the
6312         UnhandledException event. Only trigger that event for the default
6313         domain (as MS does).
6315 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
6317         * object.c: Improve typed allocation stuff based on suggestions from
6318         Paolo. Also turn it on if the GC library supports it.
6320 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
6322         * object.c object.h class.h: Added experimental typed allocation
6323         facility using the interfaces in gc_gcj.h.
6325         * os/gc_wrapper.h: Added new include files.
6326         
6327 2003-04-03  Martin Baulig  <martin@ximian.com>
6329         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
6330         which is not yet enabled by default.
6332         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
6333         functions.
6334         (mono_gc_lock, mono_gc_unlock): New static functions.
6336         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
6337         functions; stop/start the world for the garbage collector.  This
6338         is using the windows API; we need to complete the SuspendThread()/
6339         ResumeThread() implementation in the io-layer to make this work on Unix.
6340         (mono_gc_push_all_stacks): New public function; tells the garbage
6341         collector about the stack pointers from all managed threads.
6343 2003-04-03  Martin Baulig  <martin@ximian.com>
6345         * object.h (MonoThread): Added `gpointer stack_ptr'.
6347         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
6349 2003-04-03  Martin Baulig  <martin@ximian.com>
6351         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
6353 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
6355         * reflection.c (typebuilder_setup_fields): Initialize field.first and
6356         field.last.
6358 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
6360         * loader.c (mono_lookup_internal_call): Report the corlib that is
6361         out of sync.
6363 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
6365         * icall.c (ves_icall_type_GetTypeCode): fixed check for
6366         System.DBNull (it's class not valuetype).
6368 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
6370         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
6371         if the array method was already assigned a token (fixes bug#40646).
6373 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
6375         * reflection.c (mono_reflection_get_type): Attempt type resolve even
6376         if no assembly is given.
6378 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
6380         * metadata.h: Added the new tables.
6382         * row-indexes.h: Added definitions for new tables.
6384         * metadata.c: Add schemas for new tables, and add support for
6385         computing the sizes of them.
6387         * class.c: Update for handling the new type cases.
6389 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
6391         * metadata.h (MONO_TYPE_IS_VOID): new macro
6393 2003-03-31  Martin Baulig  <martin@ximian.com>
6395         * threads.h (MonoThreadCallbacks): Added `thread_created'.
6397         * threads.c (mono_thread_new_init): Call `thread_created' in the
6398         mono_thread_callbacks.
6400 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
6402         * loader.h: added marshalbyrefobject_class to mono_defaults
6403         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
6404         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
6405           generation of output parameters.
6406           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
6407         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
6408           contextbound and the target object belongs to the context of the caller.
6409         * object.h: added context and unwrapped_server variables in MonoRealProxy.
6410         * object.c: Implemented support for interfaces and abstract classes
6411           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
6412           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
6414 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
6416         * class.h class.c (mono_class_is_subclass_of): New function.
6417         
6418         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
6419         routines for most common case (calls from ArrayList::ToArray).
6421         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
6422         routine so programs which call Environment::Exit() can be profiled.
6424         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
6425         Added MONO_ARCH_SAVE_REGS.
6427         * icall.c (ves_icall_type_is_subtype_of): Use new function.
6429 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
6431         * blob.h: Add a couple of new MonoType types definitions.
6433         * tabledefs.h: Add a couple of new call convs.
6435 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
6437         * reflection.h (MonoReflectionDynamicAssembly): track changes in
6438         the layout of the class.
6440         * reflection.c (alloc_table): double the size on overflow to avoid
6441         unnecessary copying.
6443         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
6444         avoid filling out metadata tables and blobs. Also set mb->ilgen to
6445         null so it can be garbage collected.
6446         
6447 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
6449         * reflection.c (mono_reflection_get_type): Return the resolved type
6450         only if it is in the assembly we searched.
6452         * reflection.c (ensure_runtime_vtable): Initialize method slots.
6454         * class.c (mono_class_setup_vtable): Set the slot of the overriding
6455         method.
6457 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6459         * appdomain.c:
6460         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
6461         the right one is 'file:///blah', but MS allows it.
6462         * assembly.c:
6463         (mono_assembly_open): allow 'file://blah'
6465         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
6467 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
6469         * socket-io.c: fixes bug #40310.
6471 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
6473         * reflection.c (mono_reflection_parse_type): handle deeply nested
6474         types correctly.
6476         * reflection.c (mono_image_create_token): Use unique token values
6477         since they will be put into a hash table.
6479         * class.c (mono_class_setup_vtable): If a method occurs in more than
6480         one place in the vtable, and it gets overriden, then change the
6481         other occurances too.
6483         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
6484         object as return type.
6486 2003-03-22  Pedro Martínez Juliá  <yoros@wanadoo.es>
6488         * icall.c: Deleted "ToString" implementation for double and float
6489         because they are full implemented in managed code.
6491 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
6493         * reflection.c, reflection.h: implemented and exported functions
6494         to retrieve info about custom attributes.
6496 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6498         * appdomain.c: moved Uri handling to assembly.c
6499         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
6500         work when using a file Uri in *nix and windows.
6502         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
6503         GetReferencedAssemblies.
6505 2003-03-18  Dick Porter  <dick@ximian.com>
6507         * icall.c: Rename a couple of internal calls
6509         * threads.c: Set the thread state to Stopped when a thread exits.
6510         Fixes bug 39377.
6512 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
6514         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
6515         New icall.
6517         * object.c (mono_class_vtable): fix warning.
6519 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
6521         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
6523         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
6524         memory.
6525         (method_encode_clauses): Create exception info structures in the right
6526         order.
6527         (mono_reflection_setup_internal_class): Initialize supertypes field.
6529         * class.c object.c: Handle interfaces which implement other interfaces 
6530         correctly.
6532         * class.h class.c: Move the supertypes array initialization code into 
6533         a separate function so it can be used for dynamic types too. Also call
6534         it earlier, in mono_class_init(), since it can be used before the
6535         type is initialized.
6537 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6539         * Makefile.am:
6540         * assembly.c:
6541         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
6543         * appdomain.c:
6544         * appdomain.h:
6545         * marshal.c:
6546         * object.c: remove warnings.
6548 2003-03-13  Martin Baulig  <martin@ximian.com>
6550         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
6551         (MonoDebugLexicalBlockEntry): New types.
6553         * debug-mono-symfile.c
6554         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
6556 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6558         * process.c: ret can be any non-zero value accroding to MS doc.
6560 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
6562         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
6563         fixing a warning for a miss-used prototype, would have cause
6564         random memory corruption.
6566 2003-03-07  Martin Baulig  <martin@ximian.com>
6568         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
6569         getting really annoying ....
6571 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
6573         * reflection.c (fixup_method): added support for array methods.
6575 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
6577         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
6578         (pointed out by Michael Adams).
6580 2003-03-04  Dick Porter  <dick@ximian.com>
6582         * icall.c: Temporarily reverted the Double and Single ToString()
6583         change, because it broke nunit.
6585 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
6587         * object.h, threads.h: make include files compatible with C++
6588         (patch by Jerome Laban <jlaban@wanadoo.fr>).
6590 2003-03-04  Pedro Martínez Juliá  <yoros@wanadoo.es>
6592         * icall.c: Erased ToString helper functions for Double and Single.
6593         Now, that implementations ar all in managed code (Double and Single
6594         Formatters).
6596 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
6598         * appdomain.c: Added method for initializing the default context of
6599         a domain. Added internal call for getting the default context.
6600         * appdomain.h: Added context variable in MonoDomain struct.
6601         * domain.c: mono_domain_set also sets the default context of the domain
6602         * icall.c: Mapped internal method InternalGetDefaultContext.
6603         * object.c: mono_object_get_virtual_method returns always a remoting
6604         wrapper if the object is a transparent proxy.
6605         mono_runtime_invoke_array: when creating an object by calling the
6606         constructor, if the created object is a proxy, then the constructor should
6607         be called using the a remoting wrapper.
6609 2003-03-03  Dick Porter  <dick@ximian.com>
6611         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
6612         variable so it compiles on solaris.  Problem spotted by
6613         Christopher Taylor <ct@cs.clemson.edu>
6615 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6617         * appdomain.c:
6618         (get_info_from_assembly_name): don't leak value.
6620         * icall.c:
6621         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
6622         result.
6624 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
6626         * assembly.c: export mono_image_load_references ().
6627         * class.c: handle function pointers. mono_class_from_name() now
6628         supports nested type names directly.
6630 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
6632         * reflection.h reflection.c: Encode already created dynamic methods 
6633         and fields correctly as a DEF instead of a REF.
6635         * reflection.c: Get rid of the force_ref argument to 
6636         mono_image_typedef_or_ref since it was wrong in the first place.
6638         * string-icalls.c: add error checking to string constructors according
6639         to the MSDN docs.
6641         * reflection.c: Emit types in the order their TypeBuilders were 
6642         created. Previously, a new table index was assigned to each type before
6643         the tables were emitted. This was wrong because the signature blob
6644         might already refer to a type by its original table index.
6646 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
6648         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
6649         change.
6650         
6651 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6653         * Makefile.am: make assemblies dir have \ instead of / on windows.
6655 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
6657         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
6658         iterate over the NESTEDCLASS table using a linear search since the
6659         table is not guaranteed to be sorted by the secondary key.
6661         * class.c (mono_class_create_from_typedef): fixed up call to
6662         mono_metadata_nesting_typedef.
6663         
6664 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
6666         * marshal.c (mono_string_to_byvalstr): clear the memory as
6667         suggested by Jerome Laban <jlaban@wanadoo.fr>
6669 2003-02-26  Dick Porter  <dick@ximian.com>
6671         * process.c: Cope with padding in .rsrc blocks
6673 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
6675         * metadata.h: reverted the filter_len change, it breaks reflection
6676         
6677 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
6679         * metadata.h: added a new field to store the filter_len
6680         
6682 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
6684         * reflection.c: handle custom attributes for types and members
6685         created with Reflection.Emit (bug#38422).
6687 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
6689         * reflection.c: define RTSpecialName automatically for constructors for
6690         compatibility with MS.NET.
6692         * reflection.c (mono_reflection_create_runtime_class): initialize
6693         nested_in field of dynamically created classes.
6695 2003-02-22  Martin Baulig  <martin@ximian.com>
6697         * debug-mono-symfile.h: Incremented version number.
6699 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
6701         * object.h icall.c process.c: fix warnings.
6703 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
6705         * appdomain.h appdomain.c:
6706         (mono_domain_try_type_resolve): split the 
6707         name_or_tb argument into a name and a tb argument.
6708         (mono_domain_has_type_resolve): new function to check whenever the
6709         application has registered a TypeResolve event handler.
6710         
6711         * icall.c reflection.h reflection.c: move the type resolve logic into
6712         mono_reflection_get_type () so it will be invoked when 
6713         Assembly::GetType () is called.
6715         * reflection.c:
6716         (mono_reflection_get_type): renamed to get_type_internal.
6717         (mono_reflection_get_type): fixed type name generation so it works 
6718         for nested types too.
6719         (mono_reflection_get_type): call has_type_resolve () to avoid the 
6720         costly type name generation if there is no resolve event handler.
6722 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
6724         * class.c, image.c: load exported types from file references.
6726 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
6728         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
6729           used to cache the managed methods used to create proxies and make 
6730           remote invocation of methods.
6731         * class.h: Added in MonoVTable a flag to indicate that a class needs 
6732           to be remotely created.
6733         * object.c: Modified the method mono_class_vtable(). It now initializes 
6734           the remote flag of the vtable. Modified mono_object_new_specific(), 
6735           so now it checks the remote flag.
6736         * icall.c: Added a couple of internal methods, one for enabling instance 
6737           creation interception for a type, and one for creating objects bypassing
6738           the remote check.
6740 2003-02-18  Martin Baulig  <martin@ximian.com>
6742         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
6743         New interncall to get a method's metadata token.
6745         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
6746         New interncall for the debugger.
6748 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
6750         * class.c (mono_class_setup_vtable): allocate supertype array
6752 2003-02-18  Martin Baulig  <martin@ximian.com>
6754         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
6756 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6758         * reflection.c:
6759         (assembly_name_to_aname): jump over unknown properties (i've found
6760         something like: 'type, assembly, version=xxx, custom=null, public...',
6761         so now will ignore custom=null and still get the rest of the values).
6763 2003-02-17  Dick Porter  <dick@ximian.com>
6765         * threads.c: Have Thread.Start() wait for a semaphore to signal
6766         that the thread has set up all its local data.  This fixes bug
6767         34323, where Abort() raced the new thread's TLS data.
6769         Also removes the handle_store() call from start_wrapper, because
6770         threads are now always created suspended and there is no longer a
6771         race between the parent and child threads to store the info.
6773 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
6775         * image.c: explain the #- heap issue in a message, hopefully
6776         avoiding FAQs on mono-list.
6778 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6780         * icall.c:
6781         (GetEntryAssembly): if the domain has not invoked
6782         AppDomain.ExecuteAssembly yet, return the assembly of the default
6783         AppDomain.
6785 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
6787         * class.c (mono_ldtoken): make it work in dynamic assemblies.
6789 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
6791         * metadata.c, reflection.c: simple speedup to type hash
6792         and equals code.
6794 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
6796         * image.c, image.h, class.c, assembly.c: move module loading
6797         to MonoImage. When loading metadata, consider alignemnet from
6798         the start of metadata, not from the metadata address in memory.
6800 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
6802         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
6803         AssemblyBuilder objects. Factored out custom attribute creation into
6804         a separate function.
6805         (create_custom_attr): new function to create custom attributes.
6807 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
6809         * Makefile.am: Got tired of typing the full pathname to pedump.
6810         Until there is another option, am installing this.
6812 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
6814         * class.c (class_compute_field_layout): always set field->parent 
6815         (mono_ldtoken): use mono_defaults.fieldhandle_class;
6817 2003-02-11  Dick Porter  <dick@ximian.com>
6819         * threads-types.h:
6820         * monitor.c: Rewrote Monitor, making lock much faster and
6821         Pulse/Wait work as specified.  Also uses much fewer handles, and only
6822         creates them as needed.
6824         * exception.c: Added SynchronizationLockException
6826         * threads.c: Deleted old Monitor implementation.  The new one is
6827         in a new file.
6829 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
6831         * class.c: handled TypedReference type code. Set the correct size for
6832         class data. Setup interface_offsets for interface classes, too.
6834 2003-02-09  Martin Baulig  <martin@ximian.com>
6836         * debug-mono-symfile.h: Reflect latest symbol writer changes.
6838 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
6840         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
6841         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
6842         * object.c: fixed mono_object_get_virtual_method () for interfaces.
6843         * verify.c: check for code that runs after the end of the method.
6845 2003-02-08  Pedro Martínez Juliá  <yoros@wanadoo.es>
6847         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
6848         "System.Math::Round2".
6849         * sysmath.h: Added Floor, Round and Round2 definitions.
6850         * sysmath.c: Modified certain functions that were not 100% compliant
6851         with MS.NET (math precision) and added the implementation of Floor,
6852         Round and Round2.
6854 2003-02-07  Martin Baulig  <martin@ximian.com>
6856         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
6858 2003-02-07  Martin Baulig  <martin@ximian.com>
6860         * debug-mono-symfile.c: Reflected latest symwriter changes.
6861         (mono_debug_create_mono_symbol_file): Removed.
6862         (mono_debug_open_mono_symbol_file): Take an argument which
6863         specifies whether to create a dynamic symbol file.
6865 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
6867         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
6869 2003-02-05  Martin Baulig  <martin@ximian.com>
6871         * reflection.c (mono_image_build_metadata): Make this public,
6872         protect it against being called multiple times, don't create
6873         resources and don't build the compressed metadata here.
6874         (mono_image_create_pefile): Do this here.
6876         * icall.c
6877         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
6879 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6881         * socket-io.c: fixed bug #36322.
6883 2003-02-06  Piers Haken <piersh@friskit.com>
6885         * appdomain.[ch]:
6886         * class.h:
6887         * debug-mono-symfile.c:
6888         * icall.c:
6889         * loader.c:
6890         * mono-config.c:
6891         * monosn.c:
6892         * reflection.c:
6893         * socket-io.c: warning cleanups
6895 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
6897         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
6898         function. works like remoting invoke, but does a check for the Proxy first.
6900 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
6902         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
6904 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
6906         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
6907         array of pointers.
6908         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
6909         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
6911         * object.c (mono_store_remote_field_new): used by the new jit
6912         instead of mono_store_remote_field
6913         (mono_load_remote_field_new): used by the new jit
6914         instead of mono_load_remote_field
6916 2003-02-05  Patrik Torstensson
6918         * appdomain.c: changed unload to take the domain id instead
6919         of domain
6920         
6921         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
6924 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6926         * appdomain.c: don't look for assemblies in ApplicationBase if
6927         PrivateBinPathProbe is set.
6929 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6931         * object.c: make the first argument in main_args contain the absolute
6932         path to the assembly. Fixes bug #37511.
6934 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6936         * icall.c: get correct UTC offset for countries not using daylight
6937         time saving. Fixes bug #30030.
6939 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6941         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
6942         and 1 are the family).
6944 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
6946         * icall.c (ves_icall_InternalExecute): removed wrong assertion
6948         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
6950 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
6952         * reflection.c: added support for SignatureHelper tokens, which is
6953         needed by the Calli opcode.
6955         * reflection.h: track changes to SignatureHelper class.
6957         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
6959 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6961         * appdomain.c: fixed loading assemblies from PrivateBinPath.
6963 2003-02-03  Patrik Torstensson
6964         * appdomain.[c|h], domain.c : 
6965          - Added support for getting a domain via domain id
6966          - Support for setting and getting domain from System.AppDomain 
6967            (used in cross appdomain channel)
6968          - Added support for get/set for a MonoAppContext on a thread 
6969            (Context class in System.Runtime.Remoting.Contexts),
6970          - Removed hack in Get/SetData and ExecuteAssembly.
6971         
6972         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
6973         the managed world to get control when a proxy is created.
6975         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
6976         
6977 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
6979         * icall.c
6980         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
6981         Populate the codebase field as well.
6983 2003-02-02  Martin Baulig  <martin@ximian.com>
6985         * debug-mono-symfile.c
6986         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
6987         (mono_debug_symfile_add_method): Allow interncalls.
6989 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6991         * icall.c: throw parse exception if strtod fails or the string is empty.
6993 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
6995         * marshal.c: handle object type separately from defined
6996         class types.
6998 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
7000         * marshal.c: handle NATIVE_LPSTR for strings when it's
7001         explicitly specified.
7003 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
7005         * reflection.c, reflection.h, icall.c: setup the reflection
7006         handle cache for ModuleBuilders and AssemblyBuilders.
7008 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
7010         * reflection.c (reflection_methodbuilder_to_mono_method): set
7011         pinvoke flag
7013 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7015         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
7017 2003-01-29  Dick Porter  <dick@ximian.com>
7019         * threads.c: No need for the fake_thread kludge now that Thread
7020         doesn't run a class constructor
7021         
7022 2003-01-29  Dick Porter  <dick@ximian.com>
7024         * threads.c: Use g_direct_hash instead of the rather bogus
7025         g_int_hash
7027 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
7029         * marshal.c (mono_marshal_get_native_wrapper): add check for null
7030         (fix pinvoke12.exe)
7031         (mono_marshal_get_struct_to_ptr): generate valid IL code
7032         (mono_marshal_get_ptr_to_struct): generate valid IL code
7033         (*): correctly set sig->pinvoke, we need to memdup the signature
7034         to do that
7036 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
7038         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
7039         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
7041 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
7043         * profiler.c: provide more callers information.
7045 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
7047         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
7049         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
7051         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
7053 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7055         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
7056         exception instead of going into an infinite loop on dates which it 
7057         can't yet handle.
7059         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
7060         out-of-range exception if needed.
7062         * class.c (mono_class_setup_vtable): allow a virtual method to provide
7063         an implementation for an interface method and to override an inherited
7064         method at the same time. 
7065         Imagine a scenario when a virtual method is used to override a
7066         virtual abstract method in a parent class, and this same method 
7067         provides an implementation for an method inherited from an interface. 
7068         In this case, the interface resolution code will set im->slot, which 
7069         means that the virtual method override pass will skip this method 
7070         which means a pointer to the abstract method inherited from the parent
7071         will remain in the vtable of this non-abstract class.
7073         * class.c: (mono_class_setup_vtable): continue search for a real 
7074         method if only an abstract method is found.     
7076 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
7078         * reflection.c: add size to encoding for ByValStr and ByValArray
7079         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
7081 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7083         * class.c (mono_class_setup_vtable): pass the override info as an
7084         argument.
7086         * class.c (mono_class_setup_vtable): set the slot of overriding methods
7087         correctly.
7088         
7089         * reflection.c (ensure_runtime_vtable); add support for method 
7090         overrides.
7091         
7092 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7094         * reflection.c (resolution_scope_from_image): Hack to work to work with
7095         dynamic assemblies.
7097         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
7098         added a 'force_ref' argument to force this function to allways return 
7099         a TypeRef. This is needed by mono_image_get_memberref_token ().
7100         
7101 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7103         * reflection.c (mono_image_get_type_info): interfaces really don't have
7104         a parent.
7106         * reflection.c (mono_image_basic_init): fill out missing fields of
7107         image structure.
7109         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
7110         dynamic assemblies. This is required so dynamic assemblies show up in
7111         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
7112         Type::GetType() etc. This is consistent with MS behaviour.
7114         * image.c image.h reflection.c: add newly created classes to the name 
7115         cache so mono_class_get () will find them.      
7117 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7119         First part of changes to get IKVM.NET running under mono.
7120         
7121         * appdomain.h, appdomain.c: added new function 
7122         mono_domain_try_type_resolve() which will emit TypeResolve events. 
7123         This function will call AppDomain::DoTypeResolve to do the actual work.
7125         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
7126         moved existing code dealing with dynamic tokens to a new function 
7127         called mono_reflection_lookup_dynamic_token (). This function will 
7128         raise TypeResolve events when appropriate. Since reflection.c is not 
7129         part of libmetadata, a new hook function called 
7130         mono_lookup_dynamic_token() is added to class.c which will call this.
7132         * assembly.h assembly.c: make the invoke_load_hook function public,
7133         so it can be called for dynamic assemblies.
7135         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
7137         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
7138         type isn't found.
7140         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
7141         MonoGHashTable, since it contains pointers to objects which the GC 
7142         needs to track.
7144         * assembly.c (search_loaded): remove unused variable.
7145         
7146 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
7148         * object.c: fixed issue exposed by gcc-generated IL programs
7149         that use RVA data for pointers.
7151 2003-01-25  Martin Baulig  <martin@ximian.com>
7153         * threads.c (start_wrapper): Moved the initialization of
7154         `start_func' above the mono_new_thread_init() call to which we
7155         pass it as argument.
7157 2003-01-24  Martin Baulig  <martin@ximian.com>
7159         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
7160         the MonoThread pointer.
7162 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
7164         * icall.c: Rename `PowImpl' to Pow.
7166 2003-01-23  Dick Porter  <dick@ximian.com>
7168         * threads.c (start_wrapper): Create a Thread object if needed, so
7169         the Main() thread can do the class initialisation in a subthread
7170         that has been set up to allow managed code execution.
7172         Pass the thread ID instead of the MonoThread pointer to the thread
7173         start and attach callbacks.  This change is required, because the
7174         jit thread start callback must be called _before_ the Thread
7175         object can be created.
7176         
7177         (mono_thread_init): Removed much object creation code that is no
7178         longer needed.  No managed code is called from here now.
7180         * object.c (mono_runtime_exec_managed_code): Create a subthread
7181         for Main, and call back to the runtime to use it.
7182         Set the exit code when Main exits.
7184         * gc.c: Make sure domain finalisation happens in a subthread.
7185         Re-enable threaded GC, fixing bug 31333 (again).
7187         * environment.c: System.Environment internall calls (so far just
7188         ExitCode is here, the others are still in icall.c)
7190         * appdomain.c (mono_runtime_cleanup): All threads running managed
7191         code should have finished before mono_runtime_cleanup() is
7192         reached, so no need to clean up threads.
7194 2003-01-22  Martin Baulig  <martin@ximian.com>
7196         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
7197         `gpointer func' arguments.      
7198         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
7199         but added `MonoThread *thread' argument.
7200         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
7202         * threads.c (mono_new_thread_init): Added `gpointer func' argument
7203         and pass it to the mono_thread_start_cb callback.
7204         (mono_install_thread_callbacks): New public function to install a
7205         set of callbacks which are set by the debugger.
7206         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
7208 2003-01-22  Martin Baulig  <martin@ximian.com>
7210         * Makefile.am: Install debug-mono-symfile.h.
7212 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
7214         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
7216 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
7218         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
7219         * class.c (mono_ptr_class_get): correctly set access levels of pointers
7220         (mono_array_class_get): correctly set access levels of arrays
7222 2003-01-20      Patrik Torstensson
7223         * image.h (MonoAssemblyName): changed major, minor, build, revision
7224         from signed to unsigned.
7226 2003-01-20  sean kasun <skasun@azstarnet.com>
7228         * reflection.c (load_cattr_value): Now this handles
7229         MONO_TYPE_SZARRAY.  Fixes bug #35629
7231 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
7233         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
7234         integer value
7236 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7238         * decimal.c: fixed bug #26056.
7240 2003-01-17  Martin Baulig  <martin@ximian.com>
7242         * gc.c: Raise an ExecutionEngineException instead of using g_error().
7244 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7246         * exception.[ch]:
7247         (mono_get_exception_type_initialization): new function.
7249         * object.c: throw a TypeInitializationException when an exception is
7250         thrown invoking the class constructor.
7252 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7254         * reflection.c: fixed attribute reading.
7256 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7258         * icall.c:
7259         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
7260         provided, look for the type in the calling assembly and then in
7261         mscorlib; if the assembly name is provided, only try that one.
7263 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
7265         * object.c: register the vtable before there is a chance it's
7266         queried again recursively.
7268 2003-01-13  Duncan Mak  <duncan@ximian.com>
7270         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
7271         gc-internal.h. 
7272         
7273 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
7275         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
7277 2003-01-11  Martin Baulig  <martin@ximian.com>
7279         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
7280         this to 20 for the release.
7282 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
7284         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
7286         * loader.c (mono_method_get_marshal_info): bug fix
7288         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
7289         structures with explicit layout
7291 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
7293         * profiler.c: made the output more readable (and sorted). 
7294         Added caller information for the allocation profiler.
7296 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
7298         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
7300 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7302         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
7303         to get value types.
7304         
7305 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
7307         * object.c, profiler.h, profiler.c, profiler-private.h:
7308         Added object allocation profiler.
7310 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
7312         * reflection.h, reflection.c: handle global methods.
7313         Compress blob entries.
7315 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
7317         * marshal.c: fix compilation.
7319 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
7321         * loader.c (mono_method_get_marshal_info): impl.
7323         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
7325 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7327         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
7328         for reference types.
7330 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
7332         * loader.c: fixed off by one error in loaded parameter names.
7334 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
7336         * marshal.c (mono_marshal_get_icall_wrapper): like
7337         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
7338         instead of a MonoMethod.
7340 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7342         * decimal.c: fixed bug #36537.
7344 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
7346         * marshal.c: throw a missing method exception if a
7347         P/Invoke method is not found.
7349 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
7351         * icall.c: allow a null this for constructors.
7353 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
7355         * icall.c: raise the proper exceptions if the arguments to the
7356         internal Invoke are incorrect.
7358 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
7360         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
7362 2003-01-03  Martin Baulig  <martin@ximian.com>
7364         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
7366 2002-12-31  Martin Baulig  <martin@ximian.com>
7368         * debug-mono-symfile.c: Completely rewrote the type section.
7369         Instead of using individual malloc()ed fields, we use one big
7370         continuous memory area and offsets into this area.
7371         See the comments in the source code for details.
7373 2002-12-30  Martin Baulig  <martin@ximian.com>
7375         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
7377 2002-12-30  Martin Baulig  <martin@ximian.com>
7379         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
7380         line number table in this data blob instead of using an external
7381         pointer.
7383 2002-12-28  Martin Baulig  <martin@ximian.com>
7385         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
7387 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
7389         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
7390         as a boxed return type.
7392 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
7394         * appdomain.c
7395         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
7396         g_build_filename to properly get separators on the filename created.
7398         * object.h: Small change, introduce MonoMarshalByRefObject to
7399         track the layout of that structure in the C# universe as we make
7400         changes there.
7402 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
7404         * object.c: removed assert to allow static fields on interfaces.
7405         * loader.c: a TypeSpec may be used for any type, not just arrays.
7407 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
7409         * class.c, class.h: added mono_class_array_element_size ().
7410         Ignore static methods in interfaces.
7412 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7414         * threads.c: fixed the build under cygwin.
7416 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
7418         * reflection.c: handle nullref constants. Allocate keys for
7419         reflection handles with the GC.
7421 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
7423         * threads.c, threads.h: added mono_thread_get_abort_signal()
7424         to get a suitable signal for thread abort.
7426 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
7428         * metadata.c: fix handling of ExportedType table.
7430 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7432         * icall.c: added WriteWindowsDebugString internal call.
7434 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7436         * reflection.h: added fields to match C# implementation.
7438 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7440         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
7442 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
7444         * gc.h, gc-internal.h: Rename header for GC internal calls to
7445         gc-internal.h from gc.h as to not clash with Boehm GC having its
7446         header installed as <gc.h> in outside include paths.
7447         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
7448         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
7450 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7452         * icall.c: assign minor, build and revision in FillName.
7454 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
7456         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
7457         Added support for running code generated by Reflection.Emit.
7459 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7461         * appdomain.c: check for NULL argument in LoadFrom.
7463 2002-12-10  Dick Porter  <dick@ximian.com>
7465         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
7467 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7469         * appdomain.c: fix buglet when building exe file name.  Handle full
7470         assembly name (needed after latest changes to AssemblyName).
7471         * image.c:
7472         (mono_image_close): free some hashtables.
7474 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
7476         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
7477         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
7478         on some systems (redhat 7.3) 
7480 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
7482         * threads.c: delete the critical section of a sync block,
7483         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
7485 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
7487         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
7489 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7491         * appdomain.[ch]: handle the assembly preload event to try loading the
7492         assemblies using the paths we have in the current domain.
7494         * assembly.[ch]: created an assembly preload hook that is called to try
7495         loading the assembly by other means that the ones provided here.
7497         * domain.c: initialize the domain search path.
7499         From now on, assemblies (TODO: except corlib and System) are loaded
7500         according to these rules when using mono_assembly_load ():
7502                 1. It tries to load the assembly from the ApplicationBase
7503                 of the current domain appending .dll and .exe (TODO: have to
7504                 try loading from name/name.dll and name/name.exe).
7506                 2. It tries the search path specified in PrivateBinPath for the
7507                 current domain (if any).
7509                 3. Previous behavior.
7511 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
7513         * icall.c: implemented GetInterfaceMap() related icall.
7514         * domain.c, loader.h: load MethodInfo in mono_defaults.
7516 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
7518         * gc.c: disable the finalizer thread for now, untill all the issues
7519         with it are resolved.
7521 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
7523         * string-icalls.c: handle embedded nulls in string ctor when the
7524         length is specified.
7526 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
7528         * class.c: look for explicit interface implementation in parent
7529         classes, too.
7531 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
7533         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
7535 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
7537         * gc.c: protect handles with a critical section.
7539 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7541         * icall.c:
7542         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
7543         parameters. If no assembly specified, try getting the type from all
7544         the assemblies in the current domain, else, load the assembly and get
7545         the type from it.
7547 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7549         * marshal.c: applied patch from Aleksey Demakov that fixes
7550         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
7552 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7554         * icall.c: fixed get_location.
7556 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
7558         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
7559         declarations to make it work with older gcc. 
7561         * loader.c (mono_get_method): set signature->pinvoke for native calls
7563 2002-11-20  Dick Porter  <dick@ximian.com>
7565         * threads.c (mono_thread_init): Set the main thread's handle
7567 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
7569         * gc.c: allow compilation without GC support. Changed to match the
7570         mono coding style.
7572 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
7574         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
7576 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
7578         * reflection.c: set a public key token on the core assemblies.
7580 2002-11-18  Dick Porter  <dick@ximian.com>
7582         * threads.c: Split out some thread initialisation so that other
7583         files can set the start callback function.
7585         * gc.c: Run finalisers in a separate thread, to avoid stack
7586         overflow.  Fixes bug 31333.
7588         * appdomain.c: Set up GC finalisation thread.
7590         * reflection.c: 
7591         * object.c: 
7592         * domain.c: Use gc.h macros for GC_malloc
7593         
7594 2002-11-15  Dick Porter  <dick@ximian.com>
7596         * threadpool.c: 
7597         * threads.c:
7598         * appdomain.c: Removed mono_runtime_init_with_attach(),
7599         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
7600         merging the extra parameter with the existing function.  Removed
7601         unneeded code in mono_thread_attach().
7603 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
7605         * image.c (mono_image_loaded_by_guid): a method to get loaded
7606         images by guid. 
7607         (load_metadata_ptrs): we store the guid as string.
7609 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
7611         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
7613         * metadata.c (mono_guid_to_string): imported method form Zoltan
7614         Varga (slightly modified)
7616         * assembly.c (mono_assembly_open): load precompiled code
7618         * loader.h (MonoMethod): we store the method token for use in the
7619         aot compiler. 
7621 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7623         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
7624         the hook function called when an assembly is loaded.
7625         
7626         * domain.c: Modified file.
7627         (mono_domain_assembly_load): removed hash table insertion of assemblies.
7629         Fixes bug #33196.
7631 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
7633         * reflection.c: Map PEFileKind to the value expected by the WinNT
7634         image loader. 
7636 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7638         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
7639         Read until the buffer is filled completely.
7641 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7643         * icall.c: implemented MonoType.InternalGetEvent ().
7645 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7647         * appdomain.c: implemented InitAppDomainSetup. Delayed
7648         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
7649         the entry_assembly.
7651         * assembly.c: base_dir is now an absolute path ending with
7652         G_DIR_SEPARATOR.
7654         * icall.c: modified get_location according to the above changes.
7656         * object.c: init AppDomain.SetupInformation for the default domain after
7657         we have the entry assembly.
7659         * domain.c: when unloading a domain, setup = NULL.
7661 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
7663         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
7665 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
7667         * object.h, object.c: introduced mono_object_get_virtual_method ()
7668         to lookup the method invoked on an object when a callvirt is done on
7669         a method.
7670         * icall.c: make MethodInfo::Invoke() always do a virtual call.
7672 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7674         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
7675         current domain when loaded an assembly and failed to load it.
7677         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
7679 2002-10-31  Dick Porter  <dick@ximian.com>
7681         * icall.c: 
7682         * file-io.h: 
7683         * file-io.c: Return the error status in a parameter, as the
7684         GetLastError() value has long since been blown away if we try and
7685         look it up in a subsequent internal call invocation.  Delete the
7686         GetLastError() internal call, because it's useless.
7688 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
7690         * class.[ch]: added cast_class to fix bug 29517
7692 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
7694         * marshal.c: create valid IL code in the filter clause:
7695         the new JIT is less forgiving:-)
7697 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7699         * icall.c: removed get_property internal call.
7701 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
7703         * appdomain.h domain.c: Added an ID to appdomains.
7704         
7705         * threads.c threads.h icall.c: Implement icall
7706         Thread:GetDomainID(), and remove unused icall 
7707         CurrentThreadDomain_internal.
7709 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7711         * icall.c: Don't recurse through the base types in GetConstructor.
7712         Fixes bug #32063. 
7714 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
7716         * mempool.h, mempool.c: added mono_mempool_empty() and
7717         mono_mempool_stats().
7719 2002-10-23  Dick Porter  <dick@ximian.com>
7721         * file-io.c: 
7722         * file-io.h: 
7723         * icall.c: Added MonoIO.GetFileType internal call
7725 2002-10-17  Dick Porter  <dick@ximian.com>
7727         * appdomain.c (mono_runtime_cleanup): Don't signal the async
7728         delegate semaphore before waiting for all threads to finish,
7729         because new threads can also call async delegates.  Fixes bug
7730         32004.
7732         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
7733         of 3 seconds, in case another async job is queued.  (This part is
7734         needed because the bug fix reintroduced the 3s exit lag.)  This
7735         makes the mono_runtime_shutdown flag superfluous.
7737 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
7739         * reflection.c: include ehader size in method section headers.
7740         Really check for suplicated modules entries.
7742 2002-10-17  Martin Baulig  <martin@gnome.org>
7744         * debug-mono-symfile.c: Added back support for locals.
7746 2002-10-14  Martin Baulig  <martin@gnome.org>
7748         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
7749         MONO_TYPE_VOID.
7751 2002-10-14  Martin Baulig  <martin@gnome.org>
7753         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
7754         mono_class_get() instead of looking in the class cache. 
7756 2002-10-13  Martin Baulig  <martin@gnome.org>
7758         * debug-mono-symfile.c: Set version number to 28, include the
7759         signature in method names.
7761 2002-10-13  Martin Baulig  <martin@gnome.org>
7763         * debug-mono-symfile.h: Set version number to 27.
7765 2002-10-11  Martin Baulig  <martin@gnome.org>
7767         * gc.c: Don't register/unregister NULL pointers as disappearing links.
7769 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
7771         * metadata.c, metadata.h: added helper function to allocate signatures.
7773 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7775         * icall.c: added internal call to get the location of machine.config.
7777 2002-10-08  Martin Baulig  <martin@gnome.org>
7779         * debug-mono-symfile.c: Ignore classes with a pending init for the
7780         moment.
7782 2002-10-03  Dick Porter  <dick@ximian.com>
7784         * threads.c: Freebsd pthread_t is a pointer
7786 2002-10-03  Dick Porter  <dick@ximian.com>
7788         * socket-io.c: Implemented GetHostName_internal
7790 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7792         * mono-config.c:
7793         (mono_config_parse_file): don't leak the text.
7795 2002-10-02  Martin Baulig  <martin@gnome.org>
7797         * debug-mono-symfile.c: Added support for methods.
7799 2002-10-01  Martin Baulig  <martin@gnome.org>
7801         * debug-mono-symfile.c: Don't emit methods and line numbers for
7802         the dynamic symbol file, just write the type table.  We can easily
7803         have an external helper program which creates a symbol file for an
7804         IL file.        
7806 2002-10-01  Dick Porter  <dick@ximian.com>
7808         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
7809         Only add the handle to the cleanup array when we're about to
7810         launch the thread.  Bug 31425 deadlocked when the test was run on
7811         mono under w32.
7813 2002-10-01  Martin Baulig  <martin@gnome.org>
7815         * debug-mono-symfile.c: Added support for properties.
7817 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
7819         * reflection.c: unaligned store fix from Mark Crichton
7820         <crichton@gimp.org>.
7822 2002-09-27  Martin Baulig  <martin@gnome.org>
7824         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
7825         New interncall.
7827 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
7829         * assembly.h, assembly.c: use a sane API to hook into the assembly
7830         loading process instead of a useless special-purpouse hack
7831         (ngen needs a hook, too, for example).
7833 2002-09-27  Dick Porter  <dick@ximian.com>
7835         * threads.c (mono_thread_init): Call GetCurrentProcess() so
7836         io-layer can set up some process handle info.  Not needed on w32,
7837         but doesn't hurt either.
7839         * process.c: Pass the program name in the second parameter to
7840         CreateProcess, so the path is searched.  Include the working
7841         directory. Implemented process name, process enumeration, and some
7842         process detail internal calls.
7843         
7844         * icall.c: Added internal calls for process lookup, and some
7845         process details
7847 2002-09-26  Martin Baulig  <martin@gnome.org>
7849         * assembly.c (mono_install_open_assembly_hook): New global
7850         function to install a function to be invoked each time a new
7851         assembly is loaded.
7852         (mono_assembly_open): Run this callback function if set.
7854         * debug-mono-symfile.c: Put back line numbers for the dynamic
7855         symbol file and also record the .il file as source file.  This
7856         allows us to install the temporary symbol file as `file.dbg' just
7857         like a compiler-generated one.
7859 2002-09-26  Nick Zigarovich <nick@chemlab.org>
7861         * Corrected typo in gc.c (BOHEM vs BOEHM).
7863 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7865         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
7866         GetProperties. Also avoid calling g_slist_length in GetProperties and
7867         GetMethods.
7869 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
7871         * reflection.c: avoid unaligned stores (bug spotted by
7872         Mark Crichton  <crichton@gimp.org>).
7874 2002-09-25  Martin Baulig  <martin@gnome.org>
7876         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
7877         instead of guint64 for addresses and added prologue/epilogue info.
7879 2002-09-25  Martin Baulig  <martin@gnome.org>
7881         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
7882         store line number info.  For the dynamic symbol file, we only need
7883         to provide the JIT generated dynamic line number info for the dynamic
7884         symbol file.
7886 2002-09-25  Martin Baulig  <martin@gnome.org>
7888         * debug-mono-symfile.h: Incremented version number.
7890 2002-09-24  Martin Baulig  <martin@gnome.org>
7892         * class.c (mono_debugger_class_init_func): New global function
7893         pointer variable.
7894         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
7895         call it.
7897         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
7898         function.  This is called via the mono_debugger_class_init_func
7899         hook to add all types to the dynamic type table.
7900         (ves_icall_MonoDebugger_GetType): New interncall to get a class
7901         from its metadata token.
7903         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
7904         New interncall for the debugger.
7906 2002-09-24  Nick Drochak <ndrochak@gol.com>
7908         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
7909         before using it in case it is null.
7910         
7911 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
7913         * metadata.c: allow custom modifiers in local var signatures
7914         (bug spotted by Zoltan Varga).
7916 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
7918         * class.c: deal with the <Module> class that may have a NULL vtable.
7919         Eliminate warnings.
7921 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
7923         * image.c, image.h: more strong name helpers.
7924         * monosn.c: more work: convert pem keys to cryptoapi format.
7926 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
7928         * string-icalls.c: speedup IndexOf.
7930 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
7932         * icall.c: updates from Zoltan.2.Varga@nokia.com.
7934 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
7936         * icall.c: cleanup: use mono_object_domain ().
7938 2002-09-23  Martin Baulig  <martin@gnome.org>
7940         * debug-mono-symfile.c: Improved type support.
7942 2002-09-22  Martin Baulig  <martin@gnome.org>
7944         * debug-mono-symfile.c: Added support for reference types and strings.
7946 2002-09-22  Martin Baulig  <martin@gnome.org>
7948         * debug-mono-symfile.c: Started to work on the type table.
7950 2002-09-21  Martin Baulig  <martin@gnome.org>
7952         * debug-mono-symfile.c: Largely reworked the symbol table format.
7953         The symbol table is now incrementally updated each time a new
7954         method is added.  We're now also using our own magic and version
7955         so that you don't need to recompile all your classes if the
7956         dynamic table changes.
7957         (mono_debug_update_mono_symbol_file): Removed.
7958         (mono_debug_symfile_add_method): New function to add a method.
7960 2002-09-21  Martin Baulig  <martin@gnome.org>
7962         * icall.c
7963         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
7964         New interncall.
7966         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
7967         New interncall to get a method from its metadata token.
7969 2002-09-21  Martin Baulig  <martin@gnome.org>
7971         * debug-mono-symfile.c: Create type table.
7973 2002-09-20  Martin Baulig  <martin@gnome.org>
7975         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
7977 2002-09-20  Martin Baulig  <martin@gnome.org>
7979         * debug-mono-symfile.c: Provide information about params and locals.
7981 2002-09-20  Martin Baulig  <martin@gnome.org>
7983         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
7984         New interncall.
7986         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
7987         interncall to get a method from its metadata token.
7989 2002-09-20  Martin Baulig  <martin@gnome.org>
7991         * debug-mono-symfile.c: Added a few checks for method->header
7992         being non-NULL.  This should never happen, but for the moment
7993         let's use a g_warning() rather than a g_assert().
7995 2002-09-19  Mark Crichton  <crichton@gimp.org>
7997         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
7998         even if support for it isn't present.  Added an #ifdef to fix this.
8000         * socket-io.c: Added checks back for Solaris support.
8002 2002-09-19  Martin Baulig  <martin@gnome.org>
8004         * debug-mono-symfile.c (read_string, write_string): Reflect latest
8005         changes in the symbol file format.
8007 2002-09-18  Martin Baulig  <martin@gnome.org>
8009         * debug-mono-symfile.c: Set version number to 21.
8011 2002-09-18  Dick Porter  <dick@ximian.com>
8013         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
8014         on netbsd.  Fixes bug 30051.
8016 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8018         * reflection.c:
8019         (set_version_from_string): little fix.
8021 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
8023         * monosn.c, Makefile.am: added strong name utility.
8024         * reflection.h, reflection.c: implemented delayed signing,
8025         locale, version and hash id assembly attributes.
8027 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
8029         * loader.c, metadata.c: load param attributes in signatures.
8031 2002-09-16  Martin Baulig  <martin@gnome.org>
8033         * debug-mono-symfile.c: Added string table with all method names.
8035 2002-09-14  Martin Baulig  <martin@gnome.org>
8037         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
8038         fast method lookup.
8040 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
8042         * reflection.c: record the public key token of referenced assemblies.
8044 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
8046         * image.c, image.h: added functions to get the strong name and the
8047         public key of an assembly.
8048         * pedump.c: use them.
8050 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
8052         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
8054 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
8056         * marshal.c (mono_marshal_get_managed_wrapper): Added
8057         MONO_TYPE_BOOLEAN 
8059 2002-09-11  Martin Baulig  <martin@gnome.org>
8061         * gc.c: Call GC_unregister_disappearing_link() on all links when
8062         finalizing them, this is necessary to aviod a crash in boehm's
8063         finalize handler.
8065 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
8067         * gc.c: handle GetTarget for finalized objects spotted and fixed by
8068         nick@chemlab.org.
8070 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
8072         * icall.c: implemented MonoType::Module.
8073         * reflection.c, reflection.h: mono_module_get_object () from
8074         Tomi Pakarinen <tomi.pakarinen@welho.com>.
8076 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
8078         * icall.c: ignore overridden methods in GetMethods ().
8079         Fix for FieldInfo::SetValue().
8080         * object.c: handle float/double in runtime invoke.
8082 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
8084         * object.c: allow a constructor to be called again on an object.
8086 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
8088         * class.h, class.c: move field layout code to it's own function and
8089         export it. Get an interface id earlier. Move fields in MonoClass
8090         so they are more cache friendly and align the bitfields.
8091         * loader.c: temporary handle get_param_names() for a runtime method.
8092         * reflection.c, reflection.h: more code to handle runtime creation of
8093         types.
8095 2002-09-09  Martin Baulig  <martin@gnome.org>
8097         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
8098         signature with the pinvoke field being set for the actual call.
8100 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
8102         * icall.c: removed some unused icalls. Start of map of glib charsets
8103         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
8105 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
8107         * debug-helpers.c: break infinite loop (found and fixed by
8108         Holger Arnold <harnold@gmx.de>).
8110 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
8112         * icall.c: target may be null in create_delegate.
8114 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
8116         * marshal.c: handle a boolean return type.
8118 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
8120         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
8122 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
8124         * gc.c: fix weakreferences.
8126 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
8128         * icall.c: added icall to get default codepage.
8130 2002-09-03  Dick Porter  <dick@ximian.com>
8132         * threads.h: 
8133         * threads.c: Use MonoThread instead of MonoObject where
8134         apropriate.
8136         Store running thread objects in a hash table, so that we have all
8137         the info to hand when waiting for them to finish
8138         (means we don't need OpenThread() any more, so mingw builds should
8139         be fully functional again.)
8141         * verify.c:
8142         * object.h: Added thread ID to MonoThread
8144 2002-09-03  Martin Baulig  <martin@gnome.org>
8146         * icall.c (System.Reflection.Assembly::get_location): New interncall.
8148 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8150         * icall.c: fixed leak in get_temp_path. Thanks lupus.
8152 2002-09-03  Martin Baulig  <martin@gnome.org>
8154         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
8155         argument to store the end address of the disassembled instruction.
8157         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
8158         here from debug-symfile.h.
8159         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
8160         JIT into this struct.
8161         (MonoSymbolFile): Added `char *image_file' field.
8162         (MonoDebugGetMethodFunc): Removed.
8163         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
8164         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
8165         (mono_debug_find_method): New method.
8167         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
8168         create a full symbol file.
8169         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
8170         and static symbol files.
8171         (mono_debug_find_method): The symbol file keeps an internal method hash,
8172         call this to get a MonoDebugMethodInfo from a MonoMethod.
8174         * debug-symfile.[ch]: Removed.
8176 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
8178         * image.c (do_mono_image_open): Remove linker version check.
8180 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
8182         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
8183         wrappers for instance methods.
8184         
8185 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8187         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
8189 2002-08-28  Dick Porter  <dick@ximian.com>
8191         * Makefile.am: Export HOST_CC for w32 builds
8193 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
8195         * file-io.c process.c: MonoString are null terminated, no
8196         need for mono_string_to_utf16() anymore.
8198 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
8200         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
8202 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
8204         * icall.c, reflection.h: speedup System.MonoType.
8206 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
8208         * reflection.c: allow null as the value of a string argument in
8209         custom attributes constructors.
8211 2002-08-27  Martin Baulig  <martin@gnome.org>
8213         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
8214         `trampoline_address' field.
8216 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
8218         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
8219         check (fixes bug #29486) 
8221 2002-08-27  Martin Baulig  <martin@gnome.org>
8223         * debug-mono-symfile.c: Changed the file format in a way that allows us
8224         open it read-only and to use a specially malloced area for all the
8225         dynamic data.  We can now also generate a symbol file on-the-fly if we're
8226         debugging IL code and there is no MCS generated symbol file for it.
8228 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
8230         * object.c: added a define for a good string and array
8231         creation speedup (not enabled by default because we need to deal with
8232         the synch stuff).
8234 2002-08-26  Martin Baulig  <martin@gnome.org>
8236         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
8237         function to create a dynamic symbol file.  This is used by the
8238         debugger to create a symbol file for IL code on-the-fly.
8240 2002-08-26  Martin Baulig  <martin@gnome.org>
8242         * loader.c (mono_lookup_pinvoke_call): Include the error message
8243         from g_module_error() in the error message.
8245 2002-08-24  Martin Baulig  <martin@gnome.org>
8247         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
8248         function to update the symbol file.  The symbol file is mmap()ed
8249         writable, but private.  This allows us to install the symbol file
8250         together with the assembly.
8252 2002-08-24  Martin Baulig  <martin@gnome.org>
8254         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
8255         but they can read the new symbol file format which mcs is now creating.
8257         * debug-symfile.c (mono_debug_find_source_location): Moved to
8258         debug-mono-symfile.c; this is now operating on the new symbol file.
8260 2002-08-23  Martin Baulig  <martin@gnome.org>
8262         * debug-helpers.c (mono_method_desc_from_method): New function to get
8263         a MonoMethodDesc from a MonoMethod.
8265 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
8267         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
8268         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
8270 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
8272         * string-icalls.[ch]: make helper methods static.
8274 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8276         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
8277         types to it and to SetValueInternal.
8279         * object.c: Moved handle_enum label to its proper place. This was the
8280         f... bug! ;-)
8282         This time i compiled mcs and gtk-sharp and they both work.
8284 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8286         * icall.c: reverted partially my previous patch until 
8287         object.c:set_value handles enums correcly.
8289 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8291         * icall.c:
8292         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
8293         (ves_icall_System_Environment_get_MachineName): removed warning when
8294         compiling under cygwin.
8296 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
8298         * object.c: fixed field_get_value() for reference types.
8300 2002-08-22  Dick Porter  <dick@ximian.com>
8302         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
8303         Don't free a buffer while it's still needed.  Patch from Jonathan
8304         Liger <Jonathan.liger@wanadoo.fr>
8306 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
8308         * icall.c (ves_icall_System_Environment_get_Platform): Add new
8309         internal call.
8311 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
8313         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
8314         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
8316         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
8317         we call unmanaged code which throws exceptions.
8319 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
8321         * appdomain.h: added per-domain entry_assembly.
8322         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
8323         arguments.
8324         * icall.c: Assembly::GetEntryAssembly icall.
8325         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
8326         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
8328 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
8330         * appdomain.h, gc.c: added mono_domain_finalize ().
8332 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8334         * object.c:
8335         (mono_print_unhandled_exception): changed g_warning by g_printerr
8336         because g_log has a 1024 characters limit (yeah, i got a big stack
8337         trace). Don't print exception name, that should be in ToString 
8338         returned string.
8340 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8342         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
8343         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
8345 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8347         * object.c:
8348         (mono_print_unhandled_exception): after previous commit, i realized
8349         that MS calls ToString on the exception. I changed this function to
8350         do that. This way we get stack_trace for free.
8352 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8354         * object.c:
8355         (mono_print_unhandled_exception): invoke Message property instead of
8356         getting 'message' field from Exception. Don't allocate memory for
8357         'trace' and 'message' if not needed.
8359 2002-08-18  Dick Porter  <dick@ximian.com>
8361         * unicode.c: Fix asserts to match Encoder.cs checks
8363 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
8365         * marshal.c: fix unaligned store issue and a few wrong
8366         opcode argument types.
8368 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8370         * icall.c: added GetUninitializedObjectInternal internal call.
8372 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
8374         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
8375         to the right domain.
8377 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
8379         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
8381         * class.c (class_compute_field_layout): set blittable to false for Strings
8383         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
8385 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
8387         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
8388         first chunk of code to create types at runtime. Code to
8389         handle ReflectedType/DeclaringType. Make reflection handles
8390         domain specific.
8392 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
8394         * class.c: set correct name in arrays.
8396 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
8398         * appdomain.c (mono_domain_transfer_object): make it work with
8399         valuetypes. bug fixes.
8401 2002-08-12  Dick Porter  <dick@ximian.com>
8403         * object.h: Rename some parameters to avoid c++ keywords (Patch
8404         from Joseph Wenninger <kde@jowenn.at>)
8406 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
8408         * icall.c: added icall to implement Assembly.GetFile*.
8410 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
8412         * reflection.h, reflection.c: code to embed managed resources.
8414 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
8416         * class.c: move all the type size stuff into
8417         class_compute_field_layout().
8419 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
8421         * class.c: ensure enums have always the correct instance size.
8422         * unicode.c: remove wrong assert.
8424 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
8426         * assembly.c: fix mem corruption issue.
8427         * image.h, image.c: added mono_image_get_resource () to access
8428         managed resources.
8429         * icall.c: implemented Assembly.EntryPoint property and some
8430         Managed Resources related internalcalls.
8433 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
8435         * image.c, image.h: impemented mono_image_get_entry_point ().
8436         * appdomain.c: use mono_image_get_entry_point.
8438 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
8440         * reflection.c: support the object type argument when loading
8441         custom attributes.
8443 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
8445         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
8446         String as return type.
8448 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
8450         * reflection.c: fix encoding of named args for custom attrs to match
8451         the ms implementation. Read them back when instantiating custom
8452         attributes.
8454 2002-08-02  Radek Doulik  <rodo@ximian.com>
8456         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
8457         by Dietmar as quick fix
8458         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
8459         16 as stack size, used on more places as quick fix before Dietmar
8460         will fix it properly
8462 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
8464         * object.h, object.c: added accessors for fields and properties.
8466 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
8468         * class.c, class.h: made mono_class_get_field_from_name ()
8469         loop on parent types.
8470         Added mono_class_get_property_from_name ().
8472 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
8474         * class.c, class.h: move the code to setup the type vtable in its own
8475         function so that it can be reused also for types created at runtime.
8476         Eliminate the "class" identifier from the header file.
8477         * reflection.c: setup the vtable for enums so that we can create
8478         objects for use in SetConstant ().
8480 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
8482         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
8483         instead of the delegate itself as this pointer (bug #28383)
8485 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
8487         * marshal.c (mono_marshal_get_managed_wrapper): added return type
8488         conversions.
8490 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
8492         * loader.c: don't set the pinvoke bit on icalls.
8494 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
8496         * debug-helpers.c (mono_method_full_name): only print a number to
8497         indicate wrapper type (so that the output is more readable in traces).
8499 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
8501         * class.c (mono_class_init): include method override patch from Paolo
8503 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
8505         * icall.c: fixed GetTypeCode().
8507 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
8509         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
8510         use real delegate invoke function to make it work with multicast
8511         delegates (fix bug# 28291).
8513 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
8515         * object.c: load constant strings.
8517 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
8519         * reflection.c: no magic numbers.
8520         * tabledefs.h: security action enum.
8522 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
8524         * assembly.c: fix possible memory corruption.
8526 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
8528         * reflection.h, reflection.c: added support for linking resources.
8529         * verify.c: check we have an updated corlib.
8531 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
8533         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
8534         string arrays.
8535         (mono_marshal_string_array): null terminate unmanaged string arrays.
8536         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
8538 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
8540         * icall.c: Type.GetType () can now return also types from the
8541         calling assembly.
8543 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
8545         * loader.h, loader.c: stack walking support.
8546         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
8547         GetCallingAssembly.
8549 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
8551         * marshal.c: added optimisations for blittable types 
8553         * class.c (mono_array_class_get): do not set blittable attribute on arrays
8554         (mono_class_setup_mono_type): set blittable attribute for single
8555         and double.
8557         * marshal.c (mono_string_utf8_to_builder): impl.
8558         (mono_string_builder_to_utf8): impl.
8559         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
8561 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
8563         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
8564         (mono_marshal_get_managed_wrapper): impl. byref types
8566 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8568         * icall.c:
8569         (search_method): don't display debug message. 
8571 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
8573         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
8575 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
8577         * appdomain.c: set the missing filename when throwing exception.
8579 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
8581         * metadata.c (mono_type_size): code cleanup
8582         (mono_type_stack_size): removed some test code
8584 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
8586         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
8587         mono_get_exception_file_not_found now.
8589         * exception.c (mono_exception_from_name_two_strings): New version
8590         that will call a constructor with two string arguments. 
8591         (mono_get_exception_file_not_found): New helper routine, used to
8592         report file-not-found errors.
8594 2002-07-20  Dick Porter  <dick@ximian.com>
8596         * process.h:
8597         * process.c: Pass file handles to CreateProcess
8598         
8599         * icall.c:
8600         * file-io.h:
8601         * file-io.c: Implemented CreatePipe
8603 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
8605         * metadata.c (mono_get_param_info): set alignment for value types
8607 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
8609         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
8610         Constify mono_domain_assembly_open().
8611         * loader.c: handle null namespace in icalls.
8613 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
8615         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
8616         (emit_str_to_ptr_conv): marshal object as structs
8618         * metadata.c (mono_type_to_unmanaged): marshal object as structs
8620         * marshal.c (mono_marshal_get_runtime_invoke): support value types
8622 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
8624         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
8625         (mono_marshal_get_native_wrapper): we an now return value types
8627 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
8629         * verify.c: more checks implemented.
8631 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
8633         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
8634         (fix bug #27695)
8635         (mono_marshal_get_native_wrapper): allow byref arguments
8636         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
8637         impl. PtrToStringXXX methods
8638         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
8639         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
8640         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
8641         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
8642         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
8644 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
8646         * reflection.c: fix buglet in parsing an assembly name.
8648 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
8650         * marshal.c (emit_ptr_to_str_conv): first impl.
8652 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
8654         * object.c, class.h: cache the vtable in the class as suggested by
8655         vargaz@freemail.hu (Zoltan Varga).
8657 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
8659         * class.h, loader.c: added mono_field_from_token().
8660         * verify.c: first cut of type checking code.
8662 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
8664         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
8666 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
8668         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
8669         (fix bug #27782)
8670         (mono_marshal_get_remoting_invoke): impl.
8671         (mono_delegate_begin_invoke): impl.
8672         (mono_mb_emit_save_args): impl.
8673         (mono_delegate_end_invoke): impl.
8674         (mono_marshal_get_delegate_begin_invoke):
8675         (mono_marshal_get_delegate_end_invoke):
8676         (mono_marshal_get_delegate_invoke): generate a special name for
8677         those methods (including the signature) and associate them whith
8678         the delegate class. 
8680 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
8682         * reflection.[ch]: 
8683         (mono_reflection_type_from_name): now it has a MonoImage parameter
8684         which is used as the default image to search the type in. If the image
8685         is NULL or getting the type from it fails, it defaults to corlib.
8687         * icall.c: changed 1 call to mono_reflection_type_from_name to match
8688         new parameter.
8690 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
8692         * reflection.c: update the parameter table index.
8694 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
8696         * domain.c: don't include the mark byte in the string hash.
8698 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
8700         * icall.cs: icall for Type.GetTypeCode ().
8701         * verify: a couple of fixes and disabled local initialization checks.
8703 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
8705         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
8707         * debug-helpers.c (mono_method_full_name): print the type of the
8708         runtime wrapper
8710         * metadata.c (mono_signature_hash): a hash function for signatures
8711         (mono_signature_hash): better hash algorithm
8713         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
8715         * debug-helpers.c (mono_method_full_name): this can now generate
8716         method names with signatures
8718         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
8719         method dont have this pointers.
8721 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
8723         * reflection.c: fixup typebuilder tokens.
8724         * image.c: fix buglet.
8725         * marshal.h: remove whitespace.
8726         * metadata.h, metadata.c: reinstate code that was removed.
8727         * verify.c: handle catch directives and fix another couple of bugs.
8729 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
8731         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
8732         (mono_marshal_get_native_wrapper): make it comp. with the old code
8733         (mono_marshal_get_native_wrapper): support boolean
8734         (mono_marshal_get_managed_wrapper): support more types
8736 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
8738         * class.c (class_compute_field_layout): compute class->blittable attribute.
8740 2002-07-09  Dick Porter  <dick@ximian.com>
8742         * threads.c: Make the thread cleaning up cope with threads that
8743         call ExitThread()
8745 2002-07-08  Radek Doulik  <rodo@ximian.com>
8747         * reflection.c (method_encode_code): use non-translated values to
8748         compute finally_start, this fixes exception handling on ppc, yay!
8750         * decimal.h (struct signscale): fix endianess
8752 2002-07-07  Radek Doulik  <rodo@ximian.com>
8754         * reflection.c: swap box_val and not val
8756 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
8758         * reflection.c, reflection.h: handle full assembly info in type name.
8759         Handle Type arguments when loading custom attributes.
8760         * icall.c: updated to use new mono_reflection_type_from_name () method.
8762 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8764         * loader.c:
8765         (method_from_memberref): also print assembly name when method not found.
8767 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8769         * icall.c:
8770         (ves_icall_TypeGetProperties): fixed bug #27473. 
8772 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8774         * reflection.c: display image name and token when cannot find the
8775         .ctor for an attribute.
8777 2002-07-05  Martin Baulig  <martin@gnome.org>
8779         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
8781 2002-07-04  Dick Porter  <dick@ximian.com>
8783         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
8784         compile on mingw.  This will cause mingw builds to not wait for
8785         subthreads to terminate after the main thread does.  I've lodged a
8786         bug with the mingw developers for them to wrap OpenThread().
8788 2002-07-03  Dick Porter  <dick@ximian.com>
8790         * threads.c: Store thread IDs instead of handles, because
8791         GetCurrentThread() returns a pseudohandle and therefore stores
8792         useless values.  mono_thread_cleanup() continues checking the
8793         array of threads until it is empty, to cope with subthreads
8794         spawning new threads after the main thread has finished.
8796         * profiler.h:
8797         * profiler.c:
8798         * profiler-private.h: Pass the thread ID to thread profiler
8799         functions, instead of a handle
8801 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
8803         * verify.c: fixes to make it more usable.
8804         * pedump.c: added --verify code to verify IL code in an assembly.
8806 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
8808         * reflection.c: turn errors into warnings to allow compiling corlib.
8810 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
8812         * reflection.c: add special cases to compile corlib.
8814 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
8816         * reflection.c: handle properties with only a set method.
8818 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
8820         * opcodes.h: add enum with opcodes in opval order.
8822 2002-07-01  Dick Porter  <dick@ximian.com>
8823         
8824         * object.h:
8825         * object.c (mono_runtime_run_main): Removed unneeded argument
8827 2002-06-28  Martin Baulig  <martin@gnome.org>
8829         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
8831 2002-06-27  Dick Porter  <dick@ximian.com>
8833         * threads.c: Store the handle in both the parent thread and in the
8834         subthread, to minimise the time between starting a new thread and
8835         storing its ID.
8837 2002-06-26  Dick Porter  <dick@ximian.com>
8839         * appdomain.c (mono_runtime_cleanup): Close the socket library
8840         after all the threads have finished, not before
8842 2002-06-26  Martin Baulig  <martin@gnome.org>
8844         * debug-symfile.c (mono_debug_find_source_location): Added
8845         `guint32 *line_number' argument.  If it's not NULL, store the line number
8846         there and return the file name without the line number.
8848 2002-06-25  Dick Porter  <dick@ximian.com>
8850         * icall.c:
8851         * process.h:
8852         * process.c: Process forking and other support functions
8854 2002-06-25  Dick Porter  <dick@ximian.com>
8856         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
8857         things dont happen when the image is closed.
8858         (mono_image_lookup_resource): Walk the resource section looking
8859         for a particular entry
8861         * cil-coff.h: PE resource section decoding
8863 2002-06-25  Dick Porter  <dick@ximian.com>
8864         
8865         * assembly.h:
8866         * assembly.c: 
8867         (mono_assembly_foreach): Accessor functions to walk the list of
8868         loaded assemblies
8869         (mono_assembly_set_main):
8870         (mono_assembly_get_main): Process methods need to know which
8871         assembly is the "main" one
8873         * object.c (mono_runtime_run_main): Record the main assembly
8875         * debug-helpers.c: Fix typo
8877 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
8879         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
8880         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
8882 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
8884         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
8886 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
8888         * image.c (do_mono_image_open): Initialize reference count,
8889         otherwise we leak the MonoImage.
8891 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
8893         * reflection.c: small tweak to handle self-hosting.
8895 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
8897         * reflection.c: fix type name parse code.
8899 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
8901         * reflection.c: break out of the loop.
8902         * image.c: special case corlib.
8904 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
8906         * reflection.c: add all the custom attrs at the end to ensure the
8907         ctors have been properly initialized when the attributes are defined
8908         in the current assembly.
8910 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
8912         * reflection.c: handle correctly multiple-nested types.
8914 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
8916         * row-indexes.h: fix typos.
8917         * reflection.c: adjust for typos and fix method_def_or_ref
8918         encoding in MethodImpl table.
8920 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
8922         * reflection.c: fix entry point patching (thanks Serge!).
8924 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
8926         * verify.c: add check for System.Exception
8928 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
8930         * image.c, class.c: minifix for code just c&p'ed.
8931         * reflection.c: warning fix.
8932         * object.h, loader.h, domain.c: load also StringBuilder.
8934 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
8936         * marshal.h, marshal.c: some support code to handle complex marshaling.
8938 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
8940         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
8941         Better signatures with vtable error dump.
8943 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
8945         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
8947 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
8949         * icall.c (ves_icall_Type_GetField): impl.
8951 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
8953         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
8954         to retrieve a marshal description blob for a field or param.
8956 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
8958         * reflection.h, reflection.c: change order of nested type emission
8959         to avoid table corruption. The NestedTypes table is sorted.
8960         * icall.c: change order of GetConstructor results to workaround mcs bug.
8962 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
8964         * reflection.h, reflection.c: handle field and param marshal
8965         information.
8967 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
8969         * icall.c, marshal.c marshal.h: more Marshal class implementation.
8971 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
8973         * reflection.c: fix call convention.
8975 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
8977         * reflection.h, reflection.c: mono_image_get_memberref_token()
8978         takes a type instead of a class, now. Added
8979         mono_image_get_array_token() to create tokens for the special
8980         multi-dim array methods.
8982 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
8984         * assembly.c: handle modules (no assembly table). Split
8985         loading references in its own function.
8986         * class.c: handle moduleref resolution scope.
8987         * image.c, image.h: cache module name in image.
8989 2002-06-07  Martin Baulig  <martin@gnome.org>
8991         * reflection.c (mono_image_get_type_info): Only add a class layout entry
8992         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
8994 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
8996         * icall.c: more signature fixes that used uint instead of int.
8998 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9000         * reflection.c: fixed signature of field refs.
9002 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
9004         * class.c, reflection.c: handle typerefs of nested types
9005         (both on read and when writing files).
9007 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
9009         * icall.c: fix method signatures that tried to workaround the previous
9010         typo, d'oh!
9012 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
9014         * debug-helpers.c: fix typo.
9016 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
9018         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
9019         rewrote the PE/COFF writing code (our programs are understood by the
9020         ms runtime, now).
9022 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
9024         * gc.c, gc.h, icall.c: weakreference support.
9026 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
9028         * Makefile.am, mono-config.c: use $(sysconfdir).
9030 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
9032         * icall.c: changed default precision of Double.ToString() to 15.
9033         Fixed memory leak. Unified with Single.ToString.
9035 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
9037         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
9039 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
9041         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
9042         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
9043         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
9044         and myself.
9046 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
9048         * debug-symfile.c, sysmath.c: yet more compilation fixes.
9050 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9052         * reflection.c, socket-io.c: more compilation fixes.
9054 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
9056         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
9057         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
9058         unicode.c: warning and compiler compatibility fixes.
9060 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
9062         * class.h, metadata.c: fixed warnings/compilation errors.
9064 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
9066         * Makefile.am, mono-config.c, mono-config.h: configuration file
9067         support routines.
9068         * loader.c, loader.h: make Dll mapping configurable at runtime in the
9069         config file. Export methods to insert and lookup mappings.
9071 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
9073         * reflection.c: handle types and boxed objects in custom attr
9074         constructors.
9076 2002-05-30  Martin Baulig  <martin@gnome.org>
9078         * debug-symfile.c
9079         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
9081 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
9083         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
9084         to lookup the implmap row for a P/Invoke method.
9085         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
9086         P/Invoke method from the runtime on an as needed basis.
9088 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
9090         * metadata.c (mono_metadata_parse_signature): impl.
9092 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9094         * class.c: handle .pack directive.
9096 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
9098         * object.c: initialize static fields with RVA data.
9100 2002-05-25  Martin Baulig  <martin@gnome.org>
9102         * debug-symfile.c
9103         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
9105 2002-05-24  Martin Baulig  <martin@gnome.org>
9107         * debug-symfile.c
9108         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
9109         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
9110         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
9112 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
9114         * object.c: special case string ctros in invoke.
9115         * gc.c: silly whitespace changes.
9117 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
9119         * threadpool.[ch]: impl. a threadpool that can
9120         be used by mint and mono.
9122 2002-05-22  Martin Baulig  <martin@gnome.org>
9124         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
9125         The first argument is now a `MonoReflectionModuleBuilder *', the return
9126         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
9127         `methods' field to get the method builder.  The `token' argument is the
9128         unfixed token.
9130         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
9131         invalid characters instead of g_assert_not_reached()ing.  This seems
9132         to be the behaviour of mscorlib.
9134 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
9136         * object.c (mono_runtime_invoke_array): applied patch from Rachel
9137         Hestilow to fix bug #25104
9139 2002-05-21  Martin Baulig  <martin@gnome.org>
9141         * debug-symfile.c (mono_debug_find_source_location): New function.
9142         Looks up an IL offset in the line number table and returns the source
9143         location as a string.
9145 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9147         * icall.c:
9148         (mono_double_ToStringImpl): changed %f by %g until we have something
9149         better.
9151 2002-05-21  Nick Drochak  <ndrochak@gol.com>
9153         * icall.c : Use different name for Math.Pow's icall.  Needed to check
9154         parameters first in C#.
9156 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
9158         * icall.c, reflection.h: added icall to get info about an event.
9160 2002-05-20  Radek Doulik  <rodo@ximian.com>
9162         * object.c (mono_value_box): don't use memcpy for boxing on BIG
9163         endian
9164         (mono_value_box): don't use memcpy for small sizes on
9165         architectures with unaligned access
9167 2002-05-20  Martin Baulig  <martin@gnome.org>
9169         * reflection.c (mono_reflection_setup_internal_class): Don't crash
9170         if `tb->parent == NULL'.
9171         (mono_reflection_create_internal_class): New function.  This is
9172         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
9173         for enum types.
9175         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
9176         New interncall.
9178 2002-05-19  Martin Baulig  <martin@gnome.org>
9180         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
9181         argument to get the length, don't default to the array length.
9183 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
9185         * assembly.c (mono_assembly_setrootdir): New function used to
9186         override the MONO_ASSEMBLIES directory.
9188 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
9190         * icall.c: ValueType_GetHashCode() initialize local var.
9192 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
9194         * reflection.c: sort custom attributes table.
9196 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
9198         * reflection.c: support named args in custom attributes (write support).
9200 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
9202         * reflection.c: fix finally position calculation.
9204 2002-05-15  Radek Doulik  <rodo@ximian.com>
9206         * reflection.c: fixed endianess at many places
9208         * icall.c (ves_icall_InitializeArray): comment out debug msg
9210 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
9212         * object.c (mono_unhandled_exception): new function to handle
9213         unhandled exceptions.
9214         (mono_unhandled_exception): call the UnhandledException event.
9215         (mono_runtime_delegate_invoke): impl.
9217 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
9219         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
9220         returns the RVA, not the direct pointer to the data. Handle the case
9221         when the class size is fixed.
9223 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
9225         * reflection.c: fix some endianess issues.
9227 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
9229         * object.c (mono_runtime_invoke): is now able to catch exceptions.
9231         * threads.c (mono_thread_init): added a callback which is invoked
9232         at thread start.
9234 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
9235         
9236         * icall.c: make GetHashCode return non-negative values.
9238 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
9240         * object.c, icall.c, gc.c: revert to address-based hashcode.
9242 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
9244         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
9246 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
9248         * icall.c, class.c: special case <Module>.
9250 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
9252         * icall.c: fix bug in GetNow().
9254 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
9256         * object.c (mono_runtime_class_init): make sure that we call all
9257         static class constructors.
9259 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
9261         * reflection.c: sort methodsemantics table.
9263 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
9265         * reflection.h, reflection.c: honour init locals setting.
9267 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
9269         * icall.c: copied Double ToStringImpl for Single ToStringImpl
9271 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
9273         * reflection.c: support ContructorBuilders in attribute blob creation.
9275 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
9277         * reflection.c: some changes to build a binary that can be run
9278         directly in windows.
9280 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
9282         * loader.c: print a big message when an icall can't be found.
9284 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9286         * string-icalls.c: fix bug 24248.
9288 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
9290         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
9291         icall.c, reflection.h: separate assembly loading by pathname and by
9292         assembly name. Use the MONO_PATH env var to search for assemblies.
9294 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
9296         * assembly.c, image.h: add some support for assemblies
9297         with multiple modules.
9298         * class.c, class.h: export mono_class_from_typeref().
9299         * loader.c: remove duplicated code and use mono_class_from_typeref(),
9300         instead.
9302 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
9304         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
9305         documentation says (the ECMA one is correct).
9307 2002-05-02  Dick Porter  <dick@ximian.com>
9309         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
9310         Don't name the synchronisation mutex.
9312 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
9314         * rand.c
9315         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
9316         Make the prototypes match.
9317         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
9318         Same.
9320         * icall.c
9321         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
9322         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
9323         all systems have tm.tm_zone, so use strftime() with %Z to print
9324         the timezone abreviation into a temp string.
9326         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
9327         rather than mono_array_addr() on a MonoString on Big Endian
9328         machines.
9330 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
9332         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
9333         fix bug 24041
9335 2002-04-30  Dick Porter  <dick@ximian.com>
9337         * socket-io.c: Cope with SOCKET being an integer rather than a
9338         pointer now.
9340         * threads.c: Added Thread_free_internal, to deal with thread
9341         handle cleanup.  Moved calls to handle_store() and handle_remove()
9342         to start_wrapper(), so each can only be called once.  Allocate
9343         synchronisation blocks with GC_malloc(), and use GC finalisation
9344         to close the handles.
9346         * icall.c: added System.Threading.Thread::Thread_free_internal
9348 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
9350         * icall.c: support Environment.Exit, CommandLineArgs().
9352 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
9354         * object.c, object.h: added mono_runtime_run_main () and
9355         mono_runtime_get_main_args () for use in System.Environment.
9357 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
9359         * gc.c: fix thinko, enable actual finalization since the jit is now
9360         fixed.
9362 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
9364         * gc.c, object.c: take into account that an object may be offset wrt the address
9365         returned by GC_malloc().
9367 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
9369         * image.c: handle files without entries in the assembly table (modules).
9371 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
9373         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
9374         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
9375         allowed to be null when it's System.Object class setup.
9377 2002-04-27  Martin Baulig  <martin@gnome.org>
9379         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
9380         if `tb->parent == NULL' rather than crashing.
9382 2002-04-28  Nick Drochak  <ndrochak@gol.com>
9384         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
9385         calling acos() where asin() should have been called.
9387 2002-04-26  Martin Baulig  <martin@gnome.org>
9389         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
9390         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
9391         there's a subdirectory called `System', but we don't want to read that
9392         subdirectory as an assembly.
9394 2002-04-25  Martin Baulig  <martin@gnome.org>
9396         * debug-symfile.c: Reflect latest MonoString changes.
9398 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
9400         * rand.c, rand.h: instance method icalls need to have an explicit
9401         this pointer as first argument in the C implementation.
9403 2002-04-25  Nick Drochak <ndrochak@gol.com>
9405         * icall.c: Fix typo in map for GetNonZeroBytes
9407 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
9409         * string-icalls.c : String does now passes unit tests without any 
9410         errors, the following changes has been made:
9411         
9412         Implemented replace methods.
9413         Renaming of methods to (try) follow the standard.
9414         Fixed compare ordinal
9415         Made all memory allocated directly to function instead of via icall function.
9416         Small performance fix in is_in_array function
9417                         
9418  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
9420         c (mono_string_Internal_ctor_charp_int_int):
9421         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
9422         sindex < 0, throw ArgumentOutOfRangeException instead of
9423         ArgumentNullException.
9425         Added new check for length == 0, however
9426         I need to make it return String.Empty from the C code.
9427         
9428         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
9429         that calculate the length for us here.
9430         
9431         (mono_string_Internal_ctor_sbytep_int_int): Replaced
9432         mono_string_new_utf16 with mono_string_new, since value is utf8.
9434 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9436         * object.c: register the object for finalization if needed.
9437         Allocate one more char in the string for the terminating 0 char.
9439 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
9441         * class.c, class.h, image.c: check if a type implemenst a destructor.
9442         Use the proper key for array class lookups.
9443         * icall.c: register the icalls in the System.GC class.
9444         * gc.c, gc.h: GC-related functions and icalls.
9446 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9448         * icall.c:
9449         * socket-io.c:
9450         * unicode.c: free some strings gotten from mono_string_to_utf8 and
9451         changed a couple of free () by g_free ().
9453         * decimal.c: one-liner in the comments for decimal2string ().
9455 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
9457         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
9459 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
9461         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
9462         * object.c (mono_runtime_invoke_array) : handle null in params
9464 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
9466         * string-icalls.c: fixed bug in split (one off bug)
9468 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
9470         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
9471         * icalls.c: added String::Equals as internal method
9473 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
9475         * threads.c: fixed bug in the double interlocked functions
9477 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
9479         * threads.c: implemented all of the new interlocked icalls.
9480         * string-icalls.c: fix a bug in insert.
9481         * icalls.c: added the icalls for interlocked, removed old string functions.
9482         
9483 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
9485         * loader.c: fix off-by-one error when reading argument names.
9487 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
9489         * profiler.c: win32 counter implementation (untested).
9490         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
9491         (the latter needs testing and more complete impl. from win32 folks).
9493 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
9495         * object.c: mono_array_new_full workaround mono_array_class_get
9496         problem.
9498 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
9500         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
9501         * object.h (mono_string_chars): Changed casting type.
9503 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
9505         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
9506                            method signatures to use gunichar2 instead of gint16.
9508 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
9510         * object.h, object.c: domain-specific versions of mono_object_new and
9511         mono_array_new.
9513 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
9515         * object.c: changed String layout
9517         * string-icalls.c (mono_string_Internal_ctor_chara): added
9518         internal string constructors.
9520 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
9522         * threads.c: pass 'this' to the thread start routine.
9524 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9526         * string-icalls.c: fix IndexOf and LastIndexOf. Now
9527         InternalCompareStr don't call twice mono_string_cmp_char for the last
9528         character. Improved performance in mono_string_cmp_char.
9530 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
9532         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
9533         code into its own library: libmonoruntime.
9535 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
9537         * object.h, object.c: changed array format so that szarrays do not
9538         require a bounds structure.
9539         * icall.c, appdomain.c: support for new szarray format.
9541 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
9543         * metadata.c: compare also the retuns type when comparing signatures:
9544         we didn't do this as an optimization since really overloaded methods
9545         must differ also in the arguments, but this doesn't work with
9546         low-level IL code (or when using explicit conversion operators: see
9547         bug#23498 for an example).
9549 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
9551         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
9553 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
9555         * icall.c: make MonoType::GetElementType its own icall.
9557 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
9559         * icall.c: remove MonoMethod_get_Name().
9560         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
9561         object.
9563 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
9565         * string-icalls.c: optimized a few methods.
9567 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
9569         * icall.c: added all new string internal calls
9570         * string-icalls.c: added, new string internal call implementation.
9571         * object.c: added mono_string_new_size for allocating a string a size
9573 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
9575         * object.c (mono_object_isinst): use the same code as in the
9576         optimized x86 version.
9578 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
9580         * profiler.c: TSC-based timer code (faster and more accurate).
9581         Not hooked up in configure, yet (set USE_X86TSC to 1).
9583 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
9585         * profiler.c, profiler.h: track time spent compiling methods.
9586         * threads.c: track thread creation/destruction.
9588 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
9590         * profiler.c, profiler.h, profiler-private.h: profiling interface
9591         and sample implementation. Moved here so that it can be used also by
9592         the jit.
9594 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
9596         * reflection.c, reflection.h: keep types and other handles separate in
9597         the hash tables for referred tokens. Add guid for modules.
9599 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
9601         * assembly.c: fix bugs found with valgrind.
9602         * metadata.h, metadata.c: added mono_metadata_guid_heap().
9604 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
9606         * threads: added icall support for getting current domain for
9607                    the thread.
9609 2002-04-13  Martin Baulig  <martin@gnome.org>
9611         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
9612         (MonoDebugVarInfo): Added `index' field for register based addresses.
9613         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
9614         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
9615         `MonoDebugVarInfo *params' and `guint32 this_offset' with
9616         `MonoDebugVarInfo *this_var'.
9618         * debug-symfile.c (relocate_variable): New static function to write
9619         a location description for a local variable or method parameter.
9621 2002-04-12  Martin Baulig  <martin@gnome.org>
9623         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
9624         stack offset and begin/end scope address of a local variable.
9625         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
9626         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
9627         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
9629         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
9630         Added new relocation types for start/end scope of a local variable.
9632 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9634         * object.h: add mono_object_domain() macro.
9635         * reflection.c: handle typespecs.
9636         * icall.c: MonoMethod::get_Name() implementation.
9638 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
9640         * icall.c: String::GetHashCode() icall implementation.
9642 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9644         * icall.c: String::IndexOfAny icall.
9645         * object.c, object.h: make array->max_length more useful.
9646         Intrduced mono_object_class() and mono_string_length() macros.
9648 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9650         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
9651         instead of g_unichar_isdigit.
9653 2002-04-11  Nick Drochak  <ndrochak@gol.com>
9655         * icall.c: Implement a simple Double.ToString().
9657 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
9659         * appdomain.h: only io-layer.h is supposed to be included.
9660         * icall.c: explicitly import environ. Fix warning.
9662 2002-04-10  Nick Drochak  <ndrochak@gol.com>
9664         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
9665                 return true even if it's not Daylight Savings time.
9666                 Only return false for the case where the function isn't
9667                 implemented for a plaform (read Windows).
9669 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9671         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
9672         data with a mutex.
9674 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
9676         * mempool.c (mono_mempool_alloc): only use g_malloc when
9677         absolutely necessary.
9679 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
9681         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
9683         * class.c (mono_class_vtable): use domain mempool to allocate vtable
9684         (mono_class_proxy_vtable): use domain mempool
9686 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
9688         * appdomain.h, appdomain.c: split initialization that requires the
9689         execution engine support into mono_runtime_init().
9691 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
9693         * class.c (mono_class_init): don't include vtable inside MonoClass
9694         to save some memory, gather some statistics.
9695         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
9697 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
9699         * icall.c: internalcall implementation for ValueType.Equals().
9701 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
9703         * object.c (mono_message_init): moved 
9704         (mono_runtime_exec_main): new arch. independent impl.
9705         (mono_runtime_invoke_array): new method - like
9706         mono_runtime_invoke, but you can pass an array of objects.
9707         (mono_remoting_invoke): new arch. independent impl.
9708         (mono_message_invoke): new arch. independent impl.
9709         (mono_runtime_class_init): new arch. independent impl.
9710         (mono_runtime_object_init): new arch. independent impl.
9712 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
9714         * metadata.c, object.c, reflection.c: documented the exported
9715         functions.
9717 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
9719         * icall.c: simpler code to pass the assembly builder data to corlib.
9720         Implement GetNestedTypes() internalcall.
9722 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
9724         * class.c: warn if a type can't be loaded.
9726 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
9728         * image.h: typedef MonoImageOpenStatus
9729         * types.h: removed unused file
9730         
9731 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
9733         * icall.c: Enum_ToObject accepts enum value arguments.
9735 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
9737         * class.c: move initialization of properties, events and nested
9738         classes, so that they happen for interfaces, too.
9740 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
9742         * icall.c: cleanup some ugly casts in Array_SetValue*.
9744 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
9746         * icall.c: the values array fro enums is of the correct type, now.
9747         Implement (correctly) getFullName instead of assQualifiedName for
9748         MonoType.
9749         * reflection.h, reflection.c: added mono_type_get_name ().
9751 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
9753         * assembly.c, image.h: for each MonoImage, record from wich assembly
9754         it was loaded.
9755         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
9756         Make Type.Assembly work.
9758 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
9760         * debug-symfile.h: use char* instead of gpointer to avoid
9761         unnecessary casts.
9763         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
9765         * icall.c (ves_icall_InternalExecute): impl. FielSetter
9766         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
9768 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
9770         * icall.c (mono_message_init): impl. (code cleanup)
9771         (ves_icall_InternalExecute): impl. FieldGetter
9773         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
9774         defined we call all (non-static)methods through the vtable. 
9776 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
9778         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
9779         finalizer even though the memory is still referenced (and the chunk of
9780         memory is not freed).
9782 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
9784         * assembly.c: fix brokeness.
9786 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
9788         * class.c: kill some warnings. Check explicit interface method
9789         implementation also without considering the namespace.
9790         Load also literal strings in static class data.
9792 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
9794         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
9795         (default_assembly_name_resolver): Make the resolver take the
9796         "base" directory where the assembly was originally defined, so we
9797         can load DLLs that are in the same directory as the assembly that
9798         is being referenced.
9800 2002-03-28  Dick Porter  <dick@ximian.com>
9802         * file-io.h: 
9803         * file-io.c:
9804         * socket-io.c: 
9805         * unicode.h: 
9806         * unicode.c: Warning cleanups
9808 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
9810         * object.h, reflection.h: use the correct type instead of MonoObject.
9812 2002-03-28  Martin Baulig  <martin@gnome.org>
9814         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
9815         (mono_debug_update_symbol_file): Initialize classes if necessary.
9817 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
9819         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
9820         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
9822 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
9824         * assembly.h: fix function prototype.
9825         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
9826         * mono-endian.h: use const cast.
9828 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
9830         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
9832 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
9834         * loader.c: don't assert when a typeref can't be loaded, give
9835         a chance to the runtime to trow an exception instead.
9836         * loader.h: fix warning.
9838 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
9840         * class.c (mono_class_proxy_vtable): added proxy support
9842 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
9844         * icall.c: removed last of PAL calls, added System.Environment
9845         * file-io.h, file-io.c: MonoIO implementation
9846         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
9848 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
9850         * appdomain.c: do not use the byte marker in ldstr table lookup.
9851         * debug-helpers.c: allow two ':' to separate class and method name.
9852         * object.c: allocate arrays bounds with the GC, too.
9853         * verify: add a few more checks.
9855 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
9857         * reflection.c: output also literal strings. Allocate parameter data
9858         with GC_malloc() (thanks, Martin, for catching this!).
9860 2002-03-26  Martin Baulig  <martin@gnome.org>
9862         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
9863         include the `this' offset in the `param_offsets'.
9865 2002-03-25  Martin Baulig  <martin@gnome.org>
9867         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
9868         mono_debug_get_class() function to get the classes. Added new
9869         relocation types for arrays and strings.
9870         (mono_debug_get_class): New static function to search in all
9871         referenced assemblies for a metadata token.
9873         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
9875 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
9877         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
9878         hold gc-allocated objects. Make the string heap a stream like the
9879         others. Removed duplicated code when writing stream info.
9880         Added asserts to catch possible buffer overflows. Set the sorted map
9881         for tables that need sorting. Added some documentation.
9883 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
9885         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
9886         for interned strings and vtables.
9888 2002-03-24  Martin Baulig  <martin@gnome.org>
9890         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
9891         it in the array since it was created with g_slist_prepend().
9893 2002-03-24  Martin Baulig  <martin@gnome.org>
9895         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
9896         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
9897         (mono_debug_method_from_token): Renamed to
9898         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
9899         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
9901         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
9902         relocation types.
9904         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
9906 2002-03-24  Martin Baulig  <martin@gnome.org>
9908         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
9909         (mono_debug_method_from_token): New func.
9911         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
9912         New interncall, calls mono_debug_local_type_from_signature().
9913         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
9914         calls mono_debug_method_from_token().
9916 2002-03-23  Martin Baulig  <martin@gnome.org>
9918         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
9919         specifies the number of bytes to be converted, not the array size.
9920         Return the number of chars, not the number of bytes.
9921         (ves_icall_iconv_get_chars): The `byteCount' argument
9922         specifies the number of bytes to be converted, not the array size.
9924 2002-03-23  Martin Baulig  <martin@gnome.org>
9926         * reflection.h (MonoReflectionSigHelper): New type.
9928         * reflection.c (mono_reflection_sighelper_get_signature_local),
9929         (mono_reflection_sighelper_get_signature_local): New functions.
9931         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
9932         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
9933         interncalls.
9935 2002-03-23  Martin Baulig  <martin@gnome.org>
9937         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
9938         is_writeable is set.
9939         (mono_raw_buffer_update): New function to write the modified map
9940         back to disk.
9942         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
9944         * debug-symfile.c (mono_debug_update_symbol_file): Call
9945         mono_raw_buffer_update() when done writing.
9947 2002-03-23  Martin Baulig  <martin@gnome.org>
9949         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
9951         * debug-symfile.c: Added support for arguments and local variables.
9953 2002-03-23  Dick Porter  <dick@ximian.com>
9955         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
9956         protected by ifdefs, hence breaking the w32 build.
9958 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
9960         * object.c: implement is_interned() the right way.
9962 2002-03-21  Martin Baulig  <martin@gnome.org>
9964         * debug-symfile.[ch]: New files to handle debugging information
9965         files. There's also support to dynamically update these symbol
9966         files to include machine dependent information.
9968 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
9970         * threads.c (mono_thread_create): new function to create thread
9971         from C
9973 2002-03-20  Martin Baulig  <martin@gnome.org>
9975         * icall.c (ves_icall_InternalInvoke): Create a new object if the
9976         method is a constructor.
9977         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
9978         points to ves_icall_InternalInvoke().
9980 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
9982         * file-io.c: Flush shouldn't throw exceptions.
9984 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
9986         * file-io.c: FileStream flush support; FileSetLength now
9987         restores file pointer.
9989 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
9991         * class.c: set image for pointer classes.
9993 2002/03/19  Nick Drochak <ndrochak@gol.com>
9995         * sysmath.c: Forgot one.
9997 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
9999         * sysmath.c: Avoid redefining existing names.
10001 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
10003         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
10004         handled by runtime as icall rather than dllimport from libm.so
10005         * file-io.c, file-io.h: fixed handle argument type.
10007 2002-03-18  Dick Porter  <dick@ximian.com>
10009         * reflection.c (mono_image_get_type_info): rename interface to
10010         iface, because of "#define interface struct" on windows.
10012 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
10014         * class.c, class.h: rename and export mono_ptr_class_get().
10015         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
10016         * reflection.c, reflection.h, icall.c: better/saner type name
10017         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
10018         method signatures.
10020 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
10022         * class.c (mono_class_init): removed hardcoded GHC_SLOT
10024         * icall.c (ves_icall_InternalInvoke): impl.
10026 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
10028         * reflection.c: output the interface map table, too.
10030 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
10032         * class.c (class_compute_field_layout): separate computation of 
10033         static field layout
10035 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
10037         * icall.c: added System.Buffer support.
10038         * file-io.c: moved file icalls from PAL to FileStream.
10040 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
10042         * icall.c (ves_icall_System_Object_GetHashCode): impl.
10044 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
10046         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
10048 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
10050         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
10052 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
10054         * debug-helpers.{c,h}: moved here from monograph some useful functions
10055         to locate a method by name/signature in a class or image. Included
10056         also a small and flexible IL disassembler.
10058 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
10060         * reflection.c: fixup tokens in methods with small header size, too.
10062 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
10064         * object.c (mono_string_to_utf8): remove assert(!error), instead
10065         print a warning. 
10067 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
10069         * icall.c: update to the new mono_Array_class_get interface.
10071 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
10073         * appdomain.c, object.c: Boehm-GC enable.
10074         * icall.c: make get_data_chunk() support split data requests.
10075         Ensure a class is initialized in more cases. Return only the first
10076         property found in GetProperties() or the compiler gets confused. 
10077         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
10078         * reflection.h, reflection.c: add fixup mechanism for field and method
10079         tokens. Initialize assembly->typeref in a single place. Output
10080         properties after events. Support custom attributes for events, too.
10081         Typo fix for paramter custom attrs.
10083 2002-03-07  Martin Baulig  <martin@gnome.org>
10085         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
10087 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
10089         * class.c (mono_array_class_get): fix. for multi. dim. arrays
10091 2002-03-06  Martin Baulig  <martin@gnome.org>
10093         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
10094         non-zero lower bounds. See testcases #F10-#F13.
10096 2002-03-05  Martin Baulig  <martin@gnome.org>
10098         * exception.c (mono_get_exception_argument_out_of_range): New exception.
10100         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
10101         ves_icall_System_Array_GetValue(), only calculate the absolute array position
10102         here.
10103         (ves_icall_System_Array_SetValue): Likewise.
10104         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
10105         as argument and does the actual work. This function is used when copying a
10106         multi-dimensional array.
10107         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
10108         now do all the widening conversions of value types.
10109         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
10111 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
10113         * class.c: remove some magic numbers and use the smbolic names,
10114         instead. Added init_events() to load event info at class init time.
10115         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
10116         and mono_metadata_methods_from_event().
10117         * reflection.h, reflection.c: added support for writing out the evnets
10118         related information.
10120 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
10122         * reflection.h, icall.c: use a different method (GetInterfaces)
10123         to gather interface info and add isbyref, isprimitive and
10124         ispointer to the ves_icall_get_type_info() return value.
10126 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
10128         * class.h: stared adding support for events.
10129         * icall.c: split find_members implementation. Added debug icall to get
10130         the address of an object.
10131         * reflection.c: handle TypeBuilders in mono_type_get_object().
10133 2002-03-01  Martin Baulig  <martin@gnome.org>
10135         * icall.c (ves_icall_System_Array_GetLength): This must throw an
10136         ArgumentOutOfRangeException(), not an ArgumentException().
10137         (ves_icall_System_Array_GetLowerBound): Likewise.
10138         (ves_icall_System_Array_GetValue): Improved argument checking.
10139         (ves_icall_System_Array_SetValue): Improved argument checking.
10141 2002-03-01  Martin Baulig  <martin@gnome.org>
10143         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
10144         called with invalid arguments rather than just dying with g_assert().
10145         (ves_icall_System_Array_SetValue): Likewise.
10146         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
10147         raise a NotImplementedException instead.
10148         (ves_icall_System_Array_GetLength): Added argument checking.
10149         (ves_icall_System_Array_GetLowerBound): Added argument checking.
10151 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
10153         * object.h (mono_assert): new macros mono_assert and
10154         mono_assert_not_reached
10156 2002-02-28  Martin Baulig  <martin@gnome.org>
10158         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
10159         and "System::String::IsInterned" to "System::String::_IsInterned".
10161 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
10163         * icall.c: remove hacks for typebuilder. Added icall to create a
10164         modified type from a tybebuilder.
10165         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
10166         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
10167         to create a backing MonoClass for a TypeBuilder.
10169 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
10171         * class.c, class.h: more refactoring of class init.
10172         Export mono_class_setup_mono_type() and mono_class_setup_parent().
10174 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
10176         * marshal.c, marshal.h: start of marshaling interface.
10178 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
10180         * icall.c: fix order in assembly qualified name icall.
10182 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
10184         * class.c: do not free str, since we store it in the hash table.
10185         * reflection.h: add label field to MonoILExceptionInfo.
10186         * reflection.c: handle references to more than one assembly. Handle
10187         case when there isn't a module created in the assembly.
10189 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
10191         * class.c: Fix typo. Start refactoring of class init code.
10193 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
10195         * appdomain.c: exit with 1 on error.
10196         * class.c: we already have the name in MonoClassField.
10197         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
10198         MonoStreamHeader instead of an offset of image->raw_metadata.
10200 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
10202         * appdomain.c (mono_init): Be even more descriptive about the error.
10204 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
10206         * appdomain.c: give the user an informative message when corlib can't
10207         be loaded.
10209 2002-02-26  Martin Baulig  <martin@gnome.org>
10211         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
10212         New icall to get the time zone data.
10214 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
10216         * reflection.c: set virtual and raw size of section correctly.
10217         * threads.c: transfer domain information to newly created threads.
10219 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
10221         * class.c: when instancing a class in a domain, load the default
10222         vaules for static fields from the constant table. Fix System.Enum to
10223         not be an enum.
10224         * icall.c: implement Object::GetType() internalcall. Implemented
10225         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
10226         Fixed checking of binding flags in find_members().
10227         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
10228         * reflection.c: handle enumerations when writing to the constant
10229         table. Use a different object cache for types.
10232 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
10234         * object.c (mono_object_isinst): fix for arrays
10236         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
10238 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
10240         * object.c: don't use mprotect ()  and fix intern pool hash table
10241         lookup for big endian systems.
10243 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
10245         * icall.c: change type_is_subtype_of () signature.
10247 2002-02-21  Mark Crichton  <crichton@gimp.org>
10249         * rand.c, rand.h: Added random number generator for
10250         System.Security.Cryptography classes.
10252         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
10254         * icall.c: Added System.Security.Cryptography calls.
10256 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
10258         * class.c, icall.c, metadata.c: better support for pointer types.
10259         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
10260         * reflection.c: Add support for getting custom attrs for properties
10261         and simplify some code.
10263 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
10265         * icall.c: change getToken () and add custom attribute GetBlob()helper
10266         method.
10267         * reflection.h: add custom attrs array to the reflection builder structures.
10268         * reflection.c: encode and emit custom attributes for all the relevant
10269         reflection objects. Cache fieldref and methodref tokens. Change
10270         mono_image_create_token() interface to take a MonoDynamicAssembly.
10271         More complete custom attributes decoder. Load custom attributes for
10272         Assembly, Field, Method and Constructor objects, too. Make the
10273         returned array an Attribute[] one, not object[]. Added
10274         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
10275         custom attribute constructor.
10277 2002-02-20  Dick Porter  <dick@ximian.com>
10279         * icall.c:
10280         * rawbuffer.c:
10281         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
10282         problem code out for now).
10284 2002-02-19  Radek Doulik  <rodo@ximian.com>
10286         * object.c (mono_ldstr): use hash table to avoid multiple swapping
10288 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
10290         * icall.c: register the GetCustomAttributes method.
10291         * object.c, object.h: add mono_string_new_len ().
10292         * reflection.h, reflection.c: added mono_runtime_invoke(),
10293         mono_install_runtime_invoke(). Added
10294         mono_reflection_get_custom_attrs () to load custom attributes and
10295         create the attribute objects.
10297 2002-02-19  Dick Porter  <dick@ximian.com>
10298         * threads-dummy-types.c:
10299         * threads-dummy-types.h:
10300         * threads-dummy.c:
10301         * threads-dummy.h:
10302         * threads-pthread-types.c:
10303         * threads-pthread-types.h:
10304         * threads-pthread.c:
10305         * threads-pthread.h:  Deleted obsolete files
10307 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
10309         * class.c (mono_class_vtable): runtime init the class when we
10310         allocate static class data.
10312         * icall.c (ves_icall_System_Array_SetValue): check for null values.
10314         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
10315         and String - but we will need generic marshalling support in the
10316         future. 
10317         (mono_init): set the domain name in a ms compatible way
10319         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
10320         String[].
10322 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
10324         * object.c (mono_array_clone): use alloca() instead of g_malloc  
10325         for sizes
10327         * appdomain.c (mono_domain_unload): impl.
10329 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
10331         * appdomain.c, object.c: fix intern pool implementation.
10332         * class.c: fix alignment code.
10334 2002-02-16  Radek Doulik  <rodo@ximian.com>
10336         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
10337         and s2 > s1, just copy lower bytes to be compatible with little
10338         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
10339         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
10341         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
10342         force big_endian to be 1 for big endian machines 
10343         (ves_icall_iconv_new_decoder): ditto
10345 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
10347         * socket-io.c (convert_sockopt_level_and_name): If the system
10348         doesn't define SOL_IP or SOL_TCP, get them by hand using
10349         getprotobyname() and caching the values (because this could be a
10350         slow operation).
10351         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
10352         Use the appropriate struct when the system does support it. Ie,
10353         not all systems have struct ip_mreqn so use struct ip_mreq when
10354         appropriate.
10356 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
10358         * reflection.c: handle finally clauses.
10360 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
10362         * socket-io.c: use g_snprintf() instead of snprintf.
10364 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
10366         * reflection.c (mono_param_get_objects): Cast second argument to
10367         mono_method_get_param_names to a const char** to silence the
10368         compiler warning.
10370         * appdomain.c (mono_domain_assembly_open): Put parens around the
10371         truth statement in the for-loop.
10373         * unicode.c (iconv_convert): Got rid of a compiler warning about
10374         int i being unused when the system has a new iconv.
10375         (iconv_get_length): Same.
10377         * image.c (load_class_names): Cast the second argument to
10378         g_hash_table_insert() to char* to hush compiler warnings about the
10379         arg being a const.
10380         (mono_image_open): Same here.
10382         * socket-io.c: Don't conditionally include sys/filio.h or
10383         sys/sockio.h here anymore since we now get them from
10384         io-layer/io-layer.h
10385         (inet_pton): If the system doesn't support inet_aton, implement
10386         using inet_addr and also #define INADDR_NONE if it isn't defined
10387         by the system.
10389 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
10391         * metadata.c, metadata.h: added function to get packing and size info
10392         of a typedef.
10393         * reflection.h, reflection.c: handle field RVA data. Save info about
10394         the table layout if needed. Assign typedef indexes to all the types
10395         before dumping the info about them to avoid forward reference problems.
10397 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
10399         * socket-io.c (convert_sockopt_level_and_name): ifdef
10400         SO_ACCEPTCONN because it is not defined on my system (old debian)
10402 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
10404         * opcode.c: use stddef.h to get NULL.
10406 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
10408         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
10409         for FIONBIO, FIONREAD and SIOCATMARK.
10410         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
10411         define INADDR_NONE and besides, inet_addr() is deprecated and
10412         should not be used. Use inet_pton() instead - it also has the
10413         added bonus that it can easily handle IPv6 addresses as well.
10414         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
10416 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
10418         * decimal.c: remove _MSC_VER conditional.
10420 2002-02-13  Dick Porter  <dick@ximian.com>
10422         * socket-io.c: 
10423         * icall.c: Internal calls for Blocking, Select, Shutdown,
10424         GetSocketOption and SetSocketOption
10426 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
10428         * assembly.cs: better resolver: use it instead of some kludgy
10429         code.
10431 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
10433         * reflection.c: the best way to speed-up the compiler is to avoid
10434         infinite loops.
10436 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
10438         * class.c (mono_class_vtable): changed the object layout
10439         (obj->vtable->class). 
10440         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
10442 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
10444         * assembly.c: look for assemblies in the assembly dir, too.
10446 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
10448         * class.c: fix thinko in mono_class_from_type().
10450 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
10452         * exception.h, exception.c: added TypeLoadException.
10453         * object.h, object.c: added mono_array_clone ().
10454         * icall.c: handle throwOnError in AssemblyGetType().
10455         Added Array.Clone().
10456         * opcode.h, opcode.c: use a single value for the opcode val.
10457         Compile fix for non-gcc compilers.
10459 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
10461         * opcodes.c, opcodes.h: export interesting info about opcodes.
10463 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
10465         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
10466         icalls. 
10468         * class.c (class_compute_field_layout): set element_class for enums
10469         (mono_class_create_from_typedef): set element_class for normal classes
10471         * icall.c (ves_icall_System_Enum_get_value): impl.
10473         * class.c (mono_class_create_from_typedef): do not set valuetype
10474         flag for System.ValueType and System.Enum
10476 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
10478         * unicode.c (iconv_convert): fix big endian problem.
10480 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
10482         * class.c: add asserts if we are ever going to scribble over memory.
10483         * socket-io.c: not all systems have AF_IRDA defined.
10485 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
10487         * class.c (class_compute_field_layout): do not consider static
10488         fields to compute alignment
10490 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
10492         * appdomain.c (mono_appdomain_get): impl.
10493         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
10495 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
10497         * icall.c: ignore "file://" prefix when loading an assembly.
10499 2002-01-23  Dick Porter  <dick@ximian.com>
10501         * socket-io.c:
10502         * icall.c:
10503         * Makefile.am: Added socket support
10505 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
10507         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
10508         code back.  This should return the assemblies that are loaded by
10509         the runtime on behalf of an application domain. 
10511         The current implementation is still broken, it just returns every
10512         assembly loaded, but until we get real applications domain this
10513         will do.
10515 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
10517         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
10518         AppDomain object.
10520 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
10522         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
10523         the mono_class_from_name lookup.
10524         (ves_icall_get_parameter_info): ditto.
10525         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
10526         method.
10527         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
10529 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
10531         * class.c: load also nested classes on class init.
10532         System.ValueType instance methods gets passed boxed
10533         values, unless methods in derived classed that get a pointer to the
10534         data.
10535         * icall.c: use better name parsing code in GetType().
10536         * image.c, image.h: add mono_image_loaded ().
10537         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
10538         * reflection.c, reflection.h: added mono_reflection_parse_type().
10540 2002-01-22  Veronica De Santis <veron78@interfree.it>
10542         * icall.c : Added mapping of internal calls for Manual and Auto reset events
10543         * threads.c : Added the implementation of internal calls for events
10544         * threads.h : Added prototypes of internal calls for events
10545         
10546 2002-01-21  Radek Doulik  <rodo@ximian.com>
10548         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
10550 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
10552         * class.c (mono_class_init): set min_align to 1 (instead of 0)
10553         (mono_class_value_size): use min_align
10555 2002-01-20  Dick Porter  <dick@ximian.com>
10557         * threads.h:
10558         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
10559         so it compiles on w32.
10561 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
10563         * metadata.c (mono_type_stack_size): impl.
10565         * class.c (mono_class_get_field): impl. memberref token
10567 2002-01-16 Veronica De Santis <veron78@@interfree.it>
10569         * icall.h : Added the internal calls mapping for CreateMutex_internal
10570                     and ReleaseMutex_internal.
10571         * threads.h : Added the prototype of mutexes internal calls.
10572         * threads.c : Added the implementations of mutexes internal calls.
10574 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
10576         * metaparse.h: removed unused file.
10577         * reflection.c, reflection.h: added stream_data_align () function 
10578         to align data in streams and keep stream aligned. Add support for
10579         exception support in method headers.
10581 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
10583         * unicode.c: make iconv_convert () return the number of bytess written
10584         in the output buffer.
10586 2002-01-15  Dick Porter  <dick@ximian.com>
10587         * threads.c: Make the runtime's idea of infinite timeouts coincide
10588         with the class library's
10590         Fix a particularly egregious bug in mono_thread_cleanup(). That
10591         code was so utterly bogus it must have been written on a Monday.
10593 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
10595         * reflection.h: add subtypes field to TypeBuilder.
10596         * reflection.c: encode constants for literal fields.
10597         Handle subtypes. Fix user string token (and add a zero byte)
10598         at the end.
10599         
10600 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
10602         * class.c (mono_class_init): bug fix: assign slot numbers for
10603         abstract methods.
10605 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
10607         * reflection.c: don't try to output a code RVA for abstract methods.
10608         Small fixes for method header format. Output parameter info to the
10609         ParamDef table. Save method overriding info to MethodImpl table.
10610         Fix property support. Allow typedef.extends to be a type in the
10611         building assembly.
10612         * verify.c: fix off-by-one error.
10614 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
10616         * class.c: fix mono_class_from_mono_type () for szarray types.
10617         Remove unused cache check in mono_class_from_type_spec().
10618         * icall.c: *type_from_name () functions handle simple arrays and byref.
10619         * reflection.c: handle byref and szarray types. Handle methods without
10620         body (gets P/Invoke compilation working). Handle types and fields in
10621         get_token ().
10622         * reflection.h: add rank to MonoTypeInfo.
10624 2002-01-10  Dick Porter  <dick@ximian.com>
10626         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
10627         internal calls
10629 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
10631         * icall.c: initialize class in type_from_handle ().
10632         Loop also in parent classes for get_method ().
10633         * reflection.c: properly encode class and valuetype types.
10634         Start on encoding TypeBuilder types. Handle fieldrefs.
10635         Use correct length when registering a user string.
10636         Handle ConstructorBuilder and MonoMethod in get_token ().
10637         Make mono_type_get_object () aware of cached types.
10638         * object.c: back out change to mono_string_new ().
10640 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
10641         * object.c: mono_string_new should return a NULL when the string 
10642         passed in is NULL -- not try to deference it.
10643         
10644 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
10646         * icall.c: hack to make IsSubType work for TypeBuilders.
10647         * reflection.c: emit constructors before methods.
10648         Retrieve param names in mono_param_get_objects().
10650 2002/01/05  Nick Drochak  <ndrochak@gol.com>
10652         * Makefile.am: fix list of headers and sources so automake 1.5
10653         doesn't complain. Removed \# at end of list.
10655 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
10657         * reflection.c: get token for a method ref. Set return type of
10658         constructor to void.
10659         * loader.c: debug message.
10660         * class.c: typo fix.
10662 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
10664         * icall.c: fix array init with rank > 1. FindMembers
10665         loops in parent class as well.
10666         * image.c: do not insert nested types in name cache.
10667         * reflection.c: warning fix.
10668         * reflection.h: add override method (for interface impl).
10670 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
10672         * metadata.c: fix customattr decoding.
10674 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
10676         * rawbuffer.cs: Added native Win32 implementation, avoids using
10677         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
10679 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
10681         * class.c: make the low-level routines handle the cache.
10683 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
10685         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
10687 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
10689         * class.c: fix mono_array_element_size() for objects.
10690         * class.h, class.c: add properties to MonoClass and load them
10691         at init time.
10692         * icall.c: check with isinst() when assigning a value to an array
10693         instead of requiring the classes to match exactly.
10694         Implemented icall for System.Type::GetType().
10695         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
10696         enums. Handle bindingflags when looking for methods and fields.
10697         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
10698         and mono_metadata_methods_from_property().
10699         * reflection.h, reflection.c: added structures for propreties,
10700         parameters and enums. Implemented mono_property_get_object() and
10701         mono_param_get_objects().
10703 2001-12-18  Dick Porter  <dick@ximian.com>
10705         * file-io.c: Use mono_string_to_utf16() instead of
10706         mono_string_chars()
10708         * object.c: Added mono_string_to_utf16(), which copies the non
10709         NULL-terminated MonoString into a new double-null-terminated
10710         buffer.
10712 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
10714         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
10716 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
10718         * file-io.c: raise exceptions if handle is invalid.
10720 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
10722         * assembly.c: yet another check for mscorlib.
10723         * class.c, class.h: load nesting info for classes.
10724         * icall.c: many new functions to support the Reflection classes.
10725         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
10726         * reflection.h, reflection.c: mono_image_create_token(),
10727         mono_assembly_get_object(), mono_type_get_object(),
10728         mono_method_get_object(), mono_field_get_object(): methods to return
10729         objects that parallel the C representation of assemblies, types,
10730         methods, fields.
10732 2001-12-11  Dick Porter  <dick@ximian.com>
10734         * icall.c:
10735         * file-io.c: Internal calls for file IO.
10737 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
10739         * tabledefs.h: missing FileAttributes.
10740         * verify.h, verify.c: use is_valid_string () to simplify and check for
10741         valid strings more correctly. Fix warnings and speeling.
10742         Check more tables: Filed, File, ModuleRef, StandAloneSig.
10743         Check code: branches, maxstack, method calls.
10745 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
10747         * object.c (mono_object_allocate): removed static, so that the jit
10748         can allocate value types.
10750         * icall.c (ves_icall_System_DateTime_GetNow): impl.
10752 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
10754         * class.c: init enum types right away and register the
10755         token->MonoClass map in mono_class_create_from_typedef ().
10756         * verify.h, verify.c: first cut of the verifier.
10757         * pedump.c: add --verify switch to verify metadata tables.
10758         * tabledefs.h: add some missing enums.
10760 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
10762         * class.c (mono_install_runtime_class_init): impl.
10763         (mono_class_init): renamed mono_class_metadata_init to
10764         mono_class_init, also removed the metadata_inited flag
10766         * object.c (mono_object_isinst): use faster algorithm
10768 2001-11-30  Radek Doulik  <rodo@ximian.com>
10770         * mono-endian.h: reverted last change
10771         added function prototypes
10773         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
10774         add mono-endian.c back
10776         * mono-endian.c: returned back, as Paolo pointed out, it's needed
10777         for unaligned access, I've mistaked it with endianess. I am
10778         sorry.
10779         (mono_read16): fix reverted endianess
10780         (mono_read64): ditto
10781         (mono_read32): ditto
10783 2001-11-30  Dick Porter  <dick@ximian.com>
10785         * exception.c: Implement mono_exception_from_name()
10787 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
10789         * metadata.h, metadata.c: remove params_size and locals_size and their
10790         calculation from the metadata code: they are only usefult to the
10791         interp.
10793 2001-11-29  Radek Doulik  <rodo@ximian.com>
10795         * object.c (mono_ldstr): swap bytes here, it's probably not the
10796         best place, but works for me now, I'll redo it once I know mono
10797         better, also note that I add PROT_WRITE and don't reset back, also
10798         note that it's only affects big endians, so x86 should be OK
10800         * mono-endian.h (read16): use just glib macros for both endians
10802         * mono-endian.c: removed as glib macros are used in in
10803         mono-endian.h so we don't need to care about endianess for read
10804         macros as glib does that for us already
10806 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
10808         * class.h, class.h: take minimum alignment into consideration so
10809         that the fields of a class remain aligned also when in an array.
10811 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
10813         * loader.h, loader.c: add mono_method_get_param_names().
10814         * class.c: 0-init class fields.
10816 2001-11-26  Dick Porter  <dick@ximian.com>
10818         * icall.c:
10819         * threads-types.h:
10820         * threads.c: New file that handles System.Threading on all platforms
10822         * object.c: 
10823         * object.h: Remove the synchronisation struct from MonoObject,
10824         replace it with a pointer that gets initialised on demand
10826         * Makefile.am: Replace all the system-specific threading code with
10827         a single file that uses the new wrapper library
10829 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
10831         * class.c, class.h: add mono_install_trampoline() so that the runtime
10832         can register a function to create a trampoline: removes the ugly
10833         requirement that a runtime needed to export arch_create_jit_trampoline.
10834         * object.h, object.c: added mono_install_handler() so that the runtime
10835         can install an handler for exceptions generated in C code (with
10836         mono_raise_exception()). Added C struct for System.Delegate.
10837         * pedump.c: removed arch_create_jit_trampoline.
10838         * reflection.c: some cleanups to allow registering user strings and
10839         later getting a token for methodrefs and fieldrefs before the assembly
10840         is built.
10841         * row-indexes.h: updates and fixes from the new ECMA specs.
10843 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
10845         * class.h, class.c: add enum_basetype field to MonoClass.
10846         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
10847         to get index in the constant table reated to a field, param or
10848         property.
10849         * reflection.h, reflection.c: handle constructors. Set public-key and
10850         version number of the built assembly to 0.
10851         * row-indexes.h: update from new ECMA spec.
10853 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
10855         * class.h, class.c: add a max_interface_id to MonoClass.
10856         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
10857         since it's used to do that. Added mono_type_type_from_obj().
10858         Make GetType() return NULL instead of segfaulting if the type was not
10859         found. Handle simple arrays in assQualifiedName.
10860         * object.h: add a struct to represent an Exception.
10861         * reflection.c: output call convention in method signature.
10862         Add code to support P/Invoke methods and fixed offsets for fields.
10864 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
10866         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
10867         the value.
10868         * icall.c: use mono_array_addr instead of array->vector: fixes the
10869         reflection image writing.
10870         * reflection.c: init call convention byte to 0 in method signature.
10871         Encode the property signature. Don't output property-related methods
10872         twice. Really process the properties for a type (don't cast a field to
10873         a property, my mom always told me that).
10874         Fix 64 bit issues in pointer alignment in a different and more
10875         readable way.
10877 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
10879         * loader.h: Removed type class from MonoDefaults, added monotype
10881         * loader.c: Loaded MonoType, removed loading of Type
10883         * icall.c (my_mono_new_object): Now returns a System.MonoType,
10884         and fills in System.Type._impl with a RuntimeTypeHandle rather
10885         than the actual MonoClass *
10887         (ves_icall_type_from_handle): change from type_class to
10888         monotype_class
10890         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
10891         implemented
10893         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
10894         implemented
10896         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
10898         (ves_icall_System_Reflection_Assembly_GetType): implemented
10900         (ves_icall_System_MonoType_assQualifiedName): implemented
10902         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
10904 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
10906         * assembly.c (mono_assembly_open): Implement a cache for the
10907         assemblies. 
10909         (mono_assembly_close): only destroy the assembly when the last
10910         reference is gone.
10911         
10912 2001-11-09  Dick Porter  <dick@ximian.com>
10914         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
10916 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
10918         * class.c (mono_class_metadata_init): bug fix: compute the right slot
10920 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
10922         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
10923         from Martin Weindel.
10924         * object.h: add mono_string_chars ().
10926 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
10928         * reflection.c (build_compressed_metadata): Eliminates warnings
10929         and uses 64-bit clean code.
10931         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
10932         (mono_type_equal): Change signature to eliminate warnings.
10934 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
10936         * icall.c, loader.c: remove the internalcall array constructors.
10937         Changes to match the new MonoArray structure.
10938         * object.h, object.c: an array object doesn't allocate an extra
10939         vector. Add mono_array_new_full () to create jagged arrays easily.
10941 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
10943         * metadata.h, metadata.c: add mono_metadata_field_info () to
10944         retreive all the info about a field from vairous tables.
10945         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
10946         * class.h, class.c: augment MonoClassField with more info.
10947         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
10948         policy and load a field's RVA if needed.
10950 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
10952         * class.c (mono_class_metadata_init): create a trampoline for all
10953         virtual functions instead of actually compiling them.
10955 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
10957         * class.h, class.c: include name in MonoClassField.
10958         * class.c: fix fundamental type of System.Object and System.String.
10959         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
10960         tokens in ldtoken.
10961         * icall.c: remove internalcalls for the Reflection stuff that is now
10962         done in C# code.
10963         * loader.c: mono_field_from_memberref () implementation.
10964         * mono-endian.c: thinko (s/struct/union/g).
10965         * object.c, object.h: make the mono_string_* prototypes actually use
10966         MonoString instead of MonoObject.
10967         * reflection.c, reflection.h: updates for changes in the reflection
10968         code in corlib: we use C structures that map to the actual C# classes.
10969         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
10970         fat method header if needed and use the info from the ILGenerator for
10971         methods. Handle fields in types. Misc fixes.
10973 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
10975         * class.c (mono_class_metadata_init): bug fix: always allocate
10976         space for static class data
10978 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
10980         * class.c (mono_compute_relative_numbering): use relative
10981         numbering to support fast runtime type checks.
10983 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
10985         * class.c (mono_class_create_from_typeref): added debugging output
10986         to print class name when MonoDummy is returned instead of real class
10988 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
10990         * class.c (mono_class_metadata_init): interface offset table now
10991         contains pointers into the vtable - this is more efficient for the jit
10993 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
10995         * class.c (mono_class_metadata_init): use a temporary vtable (the
10996         old algorithm only worked for the interpreter, but not for the jit)
10998 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
11000         * loader.c (method_from_memberref): use mono_class_get to get the
11001         class of an array instead of using System.Array directly.
11002         (mono_get_method): also add MEMBERREF methods to the method cache
11003         which usefull for arrays.
11005 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
11007         * pedump.c (arch_compile_method): added to compute vtable entry
11009         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
11010         number of interfaces.
11011         
11012         * class.h: merged MonoArrayClass into MonoClass
11014         * class.c (mono_class_create_from_typedef): compute the vtable size and
11015         allocate space to include the vtable inside MonoClass
11016         (mono_class_metadata_init): initialize the vtable
11018 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
11020         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
11021         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
11022         * image.c: endian fixes by Laurent Rioux.
11023         * object.h, object.c: rename MonoStringObject to MonoString and
11024         MonoArrayObject to MonoArray. Change some function names to conform to
11025         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
11026         guint16* as first argument, so don't use char*.
11027         Provide macros to do the interesting things on arrays in a portable way.
11028         * threads-pthread.c: updates for the API changes and #include <sched.h>
11029         (required for sched_yield()).
11030         * icall.c: updates for the API changes above.
11031         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
11032         platforms that need them.
11034 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
11036         * class.c: set the correct type for all the fundamental
11037         type when loading the class.
11039 2001-10-05  Dick Porter  <dick@ximian.com>
11041         * threads-pthread.c (pthread_mutex_timedlock): Simple
11042         compatibility version for C libraries that lack this call.
11044 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
11046         * class.c: MonoTypes stored in MonoClass are stored as
11047         fundamental MonoTypes when the class represents a
11048         fundamental type (System.Int32, ...).
11049         The TypeHandle return by ldtoken is a MonoType*.
11050         * icall.c: ves_icall_get_data_chunk () write out all the
11051         PE/COFF stuff. Implement ves_icall_define_method (),
11052         ves_icall_set_method_body (), ves_icall_type_from_handle ().
11053         * image.c: properly skip unknown streams.
11054         * loader.h, loader.c: add type_class to mono_defaults.
11055         * metadata.c, metadata.h: export compute_size () as
11056         mono_metadata_compute_size () with a better interface.
11057         Typo and C&P fixes.
11058         * pedump.c: don't try to print the entry point RVA if there is no entry point.
11059         * reflection.c, reflection.h: many cleanups, fixes, output method
11060         signatures and headers, typedef and typeref info, compress the metadata
11061         tables, output all the heap streams, cli header etc.
11062         * row-indexes.h: typo fixes.
11064 2001-10-04  Dick Porter  <dick@ximian.com>
11066         * object.h: Add a synchronisation mutex struct to MonoObject
11068         * object.c (mono_new_object): Initialise the object
11069         synchronisation mutexes
11071         * icall.c: System.Threading.Monitor internal calls
11072         
11073         * threads-pthread.h:
11074         * threads-pthread.c: System.Threading.Monitor internal calls
11076         * threads-types.h: New file, includes the system-specific thread
11077         structures
11078         
11079         * threads-pthread-types.h:
11080         * threads-pthread-types.c: New files, handle pthread-specific
11081         synchronisation types
11083         * threads-dummy-types.h: 
11084         * threads-dummy-types.c: New files of dummy support for
11085         thread-specific types
11087         * metadata.c:
11088         * image.c:
11089         * pedump.c: include mono-endian.h not endian.h
11090         
11091         * Makefile.am: More threads files.
11092         Name mono-endian.h not endian.h
11094 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
11096         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
11097         stuff and implement a few more bits.
11098         * icall.c: a field needs to be dereferenced twice. Do not use the same
11099         name for two variables in the same scope.
11100         * image.c, image.h: cleanups.
11102 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
11104         * class.c (mono_class_metadata_init): bug fix: compute the right size
11106 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
11108         * icall.c: implemented some of the Reflection internalcalls.
11109         * image.c, image.h: start writing out the PE/COFF image.
11110         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
11111         that does the reverse than decode_blob_size ().
11112         * object.c: use mono_metadata_encode_value (). Move here
11113         temporary implementation of mono_string_to_utf8 ().
11114         * rawbuffer.c: make malloc_map static.
11116 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
11118         * metadata.c: fix type comparison for arrays.
11119         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
11120         Added a couple of new classes to monodefaults.
11121         * icall.c: added a couple of Reflection-related internalcalls.
11122         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
11123         Added a byval_arg MonoType to MonoClass.
11125 2001-09-28  Dick Porter  <dick@ximian.com>
11127         * icall.c:
11128         * threads-pthread.h: 
11129         * threads-pthread.c: Implemented internal calls for
11130         LocalDataStoreSlot operations.  Applied mutexes around all shared
11131         data.  Reworked the thread creation and Start() operations to
11132         avoid a race condition.
11133         
11134         * threads-dummy.h:
11135         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
11137 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
11139         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
11141 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
11143         * class.c, loader.c: warn and return NULL instead of erroring out.
11144         * icall.c: added System.AppDomain::getCurDomain().
11145         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
11147 2001-09-25  Dick Porter  <dick@ximian.com>
11149         * threads-pthread.h:
11150         * threads-pthread.c: Implemented timed thread joining and added
11151         System.Threading.Thread::Join_internal internal call
11153         * icall.c: Added System.Threading.Thread::Join_internal internal call
11155         * threads-dummy.h:
11156         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
11158 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
11160         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
11161         mono_string_intern () to implement the semantics of the ldstr opcode
11162         and the interning of System.Strings.
11163         * icall.c: provide hooks to make String::IsIntern and String::Intern
11164         internalcalls.
11166 2001-09-23  Dick Porter  <dick@ximian.com>
11168         * threads-dummy.c: 
11169         * threads-dummy.h: New files of dummy threading routines
11171         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
11172         support code based on system specifics
11174         Rename PTHREAD_LIBS to THREAD_LIBS
11175         
11176 2001-09-23  Dick Porter  <dick@ximian.com>
11178         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
11179         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
11180         internal calls.
11181         (mono_thread_init): Set up a Thread object instance to return when
11182         the main thread calls Thread.CurrentThread
11183         (mono_thread_cleanup): Wait for all subthreads to exit
11185         * icall.c: New internal calls for System.Threading.Thread::Sleep
11186         (including Schedule) and CurrentThread
11188         * threads.h: New file, to insulate thread-specific stuff from the
11189         rest of the code
11191 2001-09-21  Dick Porter  <dick@ximian.com>
11193         * threads-pthread.h: 
11194         * threads-pthread.c: New file, for handling pthreads-style
11195         threading support.  Start() now starts a new thread and executes
11196         the ThreadStart delegate instance.
11198         * icall.c: Added the internalcall for
11199         System.Threading.Thread::Start_internal
11201         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
11203 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
11205         * loader.c: work around the different signatures for delegates
11206         constructors csc generates in compiled code vs the ones compiled in mscorlib.
11208 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
11210         * class.h, class.c: add mono_class_get_field_from_name ().
11211         * *: Fix C comments and other ANSI C issues.
11213 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
11215         * endian.h, assembly.c: fix some endianness issues.
11217 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
11219         * loader.h, load.c: add delegate_class to mono_defaults.
11220         Handle runtime provided methods in mono_get_method ().
11222 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
11224         * loader.c (mono_get_method): use pinvoke for internal call
11226         * icall.c: use pinvoke for internal call
11228         * loader.c (method_from_memberref): set the method name
11230 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
11232         * metadata.c: help the compiler generate better code for
11233         mono_class_from_mono_type ().
11235 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
11237         * class.c (mono_class_metadata_init): delayed computing of the
11238         class size to mono_class_metadata_init ()
11240 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
11242         * class.c, class.h: add an interfaces member to MonoClass.
11243         * image.c, image.h: add assembly_name field to MonoImage
11244         from the assembly table.
11245         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
11247 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
11249         * class.c: Handle Array in mono_class_from_mono_type ().
11250         * metadata.c, pedump.c: some endian fixes.
11252 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
11254         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
11255         * metadata.c: fix small problem introduced with the latest commit.
11257 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
11259         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
11260         We don't need a MonoMetadata pointer anymore to compare signatures in
11261         mono_metadata_signature_equal (), update callers.
11262         Reduced memory usage an number of allocations for MonoMethodHeader and
11263         MonoMethodSignature.
11265 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
11267         * metadata.c: added compare for szarray.
11269 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
11271         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
11272         and add a couple more types to it and mono_defaults. Give an hint on
11273         classes that need implementing in our corlib and are referenced
11274         in mscorlib.
11276 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
11278         * class.h, class.c: keep track if a class is also an Enum.
11279         * loader.c: Implement a couple more types for use in libffi
11280         marshalling. Gives better diagnostics when failing to dlopen
11281         a library. Set method->klass for P/Invoke methods, too.
11283 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
11285         * class.c, class.h: add a MonoType this_arg to MonoClass that
11286         represents a pointer to an object of the class' type that
11287         can be used by the interpreter and later the type cache.
11288         Add best guess alignment info for valuetype objects.
11290 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
11292         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
11293         into MonoType: one less level of indirection and allocation and
11294         simplifies quite a bit of code. Added cache for MonoTypes that are
11295         used frequently, so that we don't need to allocate them all the time.
11297 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
11299         * class.c (mono_class_create_from_typedef): System.Enum is also a
11300         value type, although it does not derive from System.ValueType
11301         (maybe a bug in the ms compiler?)
11303         * metadata.c (mono_type_size): return the right size for value types
11305         * loader.c (mono_get_method): only initialize method header if not abstract
11307         * class.c (mono_class_from_mono_type): use mono_default values. 
11309 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
11311         * *: use MonoClass pointers instead of <type_tokens>
11312         
11313         * class.h: new flag: metadata_inited.
11315         * class.c (mono_class_metadata_init): impl.
11316         (mono_class_instance_size): impl.
11317         (mono_class_data_size): impl.
11319 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
11321         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
11322         MonoClass now has the name and name_space fields. 
11323         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
11324         mono_get_method () takes and optional MonoClass as argument.
11325         Removed mono_typedef_from_name() and added mono_class_token_from_name()
11326         instead that takes advantage of a map from class names to typedef
11327         tokens in MonoImage.
11329 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
11331         * metadata.c: zero is not a valid alignment boundary.
11332         Merge MONO_TYPE_VOID in default decoding code.
11334 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
11336         * image.h: merged MonoMetadata into MonoImage
11338         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
11339         identify the type of elements.
11341 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
11343         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
11344         * cil-coff.h: split MonoMSDOSHeader and add size info.
11345         * image.c: add some consistency checks.
11346         * metadata.c: fix row size computation: one programmer
11347         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
11348         add explanation for the locator routine.
11349         Fix decoding of size in method header.
11350         
11351 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
11353         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
11354         (g_concat_dir_and_file): Bring g_concat_dir_and_file
11355         function from gnome-libs.  This uses the right path separator
11356         based on the OS, and also works around a bug in some systems where
11357         a double slash is not allowed. 
11358         (default_assembly_name_resolver): Use g_concat_dir_and_file
11359         (mono_assembly_open): ditto.
11361 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
11363         * metadata.c (mono_metadata_signature_equal): impl.
11365         * *: void is now a realy MonoType (instead of using NULL)
11366         
11367         * metadata.c (do_mono_metadata_parse_type): use
11368         mono_metadata_parse_type to parse void value.
11370 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
11372         * metadata.c, metadata.h: in the signature and method header store
11373         only the space required for holding the loca vars and incoming arguments.
11375 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
11377         * metadata.c (do_mono_metadata_parse_type): treat void like any
11378         other type (instead of assigning NULL);
11380 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
11382         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
11384 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
11386         * image.c (do_mono_image_open): added a cache for arrays.
11388 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
11390         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
11391         decode a single column from a row in a metadata table and changes
11392         to take advantage of it in the typedef locator (gives a nice speed up).
11393         Store offset info for function params.
11395 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
11397         * image.h (MONO_IMAGE_IS_CORLIB): removed 
11399 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
11401         * assembly.c: how could mono_assembly_close () had ever worked?
11402         * metadata.c, metadata.h: provide offset info for local vars.
11403         Implement mono_type_size () to take care of alignment as well
11404         as size (it was mono_field_type_size in cli/class.c before).
11406 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
11408         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
11410         * assembly.h (CORLIB_NAME): set to corlib.dll
11412         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
11414 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
11416         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
11417         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
11418         tokentype.h: massive namespace cleanup.
11420 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
11422         * metadata.h, metadata.c: decode exception clauses when parsing method header.
11424 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
11426         * metadata.c (mono_metadata_free_type): added check for type !=
11427         NULL (void) before calling mono_metadata_free_type()
11429 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
11431         * metadata.h, row_indexes.h: added header with enumerations to use
11432         to index in the columns from tables in metadata and to decode coded
11433         tokens: we should start using this instead of embedding magic numbers
11434         all over the code.
11436 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
11438         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
11439         Move metadata_t info from cli_image_info_t to MonoImage, where
11440         it's easily accessible. Changed all the uses accordingly.
11441         Added the method and class caches to MonoImage.
11442         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
11443         and mono_metadata_decode_value () signature to be more consistent
11444         with the other parse functions (and simplify code). Taken advantage
11445         of zero-length array allocation with GCC. Removed reduntant (and
11446         wrong) MonoFieldType struct and use MonoParam instead. Changed
11447         mono_metadata_parse_field_type () to use common code for parsing.
11448         Added mono_metadata_typedef_from_field () and
11449         mono_metadata_typedef_from_method () to lookup a typedef index from a
11450         field or method token.
11451         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
11453 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
11455         * metadata.c (mono_metadata_parse_field_type): Implement. 
11456         (do_mono_metadata_parse_type): Split engine from
11457         mono_metadata_parse_type, so that we can create smaller structures
11458         for things that just have one pointer to the MonoType (look at
11459         the MonoFieldType)
11461 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
11463         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
11464         as Jan Gray found out, it is incorrect. 
11466 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
11468         * assembly.c: Implement asssembly loading.  This loads an image
11469         and loads all the referenced assemblies.  Come to think of it, we
11470         could always do lazy loading of the assemblies. 
11472         * image.c (mono_image_open): Keep loaded images in a hashtable.
11474         * image.h (MonoImage): Add reference count.
11476 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
11478         * assembly.c (mono_assembly_open): Keep track of the file name in
11479         case the assembly has no ASSEMBLY table.
11481         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
11482         from get.c here.
11484 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
11486         * metadata.c, metadata.h: decode local vars in method header
11487         parse function. Change callers accordingly.
11489 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
11491         * metadata.h, cil-coff.h: protect against multiple inclusion.
11492         Added some new structures to hold information decoded from metadata:
11493         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
11494         and relevant decoding/free functions.
11495         * metadata.c: implement decoding functions. Add warning for out of bounds
11496         index in mono_metadata_locate(). Implement mono_get_method () to retreive
11497         all the info about a method signature and invocation. Remove check on
11498         uninitialized local var in parse_mh() and fix memory leak.
11500 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
11502         * metadata.h: More macros.
11504         * tokentype.h: New file.
11506 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
11508         * assembly.c: added a consistency check and initialize
11509         some structures with g_new0().
11510         * metadata.c: fixed a couple more bugs in table size computation
11511         and add other checks for out-of bound access to metadata.
11513 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
11515         * metatada.c: fix bugs computing table sizes. Spew a
11516         warning when index in string heap is out of bounds.
11518 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
11520         * metadata.h: Add a couple of macros to manipulate tokens. 
11522 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
11524         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
11525         cli_section_tables).
11527 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
11529         * metadata.c (mono_metadata_user_string): New function, provides
11530         access to the UserString heap. 
11532 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
11534         * metadata.c: Add inline documentation.
11536 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
11538         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
11539         files. 
11541 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
11543         * typeattr.h: New file, TypeAttribute flags. 
11545 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
11547         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
11548         mono_assembly_ensure_section): Section loading code.
11549         (load_section_tables): Load the sections.
11551         * mono/metadata/metadata.c (mono_metadata_locate_token,
11552         mono_metadata_locate): Functions to locate the information
11553         definition given a token or a table and an index.
11554         (mono_metadata_compute_table_bases): New.
11555         (compute_size): New function to compute the sizes of the various
11556         tables.
11558         * mono/metadata/metadata.h: Finish listing the different index
11559         types. 
11561         * mono/metadata/pedump.c: Improve to dump new information.
11563 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
11565         * mono/metadata/metadata.c: Entered all the tables matching
11566         Beta2. 
11568         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2