2005-02-03 Ben Maurer <bmaurer@ximian.com>
[mono-project.git] / mono / metadata / ChangeLog
blob8ab1d809c1be66688424e5c3793c1bf3f726f2ac
1 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
3         * icall.c, class-internals.h, monodiet.c, class.c: Remove
4         mono_class_setup_properties where possible. Remove this ftn from
5         the header file, and make it static.
7 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
9         * loader.c: Add missing setup_... call.
11         * class.c: Add missing setup_... calls.
13         * class.c (mono_class_init): Switch on lazy initialization of 
14         the generic vtable.
15         
16         * class.c (mono_class_init): Fix generics broken by the recent changes.
18         * monodiet.c (handle_type): Add missing setup_... calls.
20         * class.c: Back out garbage in previous patch.
21         
22         * class.c: Add missing setup_... calls.
24         * class.c (mono_class_get_method_from_name_flags): Avoid calling
25         mono_class_setup_methods () if possible.
27         * class-internals.h (MonoClass): Add 'has_cctor' flag.
29         * class-internals.h (MonoCachedClassInfo): New structure.
31         * class.c: Initialize properties and events fields of MonoClass lazily.
33         * class.c: Add infrastructure for lazily initializing the methods and
34         vtable fields of MonoClass. Not yet used.
36         * class.c (mono_class_get_finalizer): New helper function.
38         * class.c: Add infrastructure for loading some class related data from
39         an AOT file.
41         * object.c: Add infrastructure for initializing the vtable from data
42         in the AOT file.
44         * gc.c (run_finalize): Use mono_class_get_finalizer ().
46         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
47         appropriate initialization function before accessing parts of the
48         MonoClass structure.
50         * marshal.c: Fix warnings.
51         
52         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
54         * mono-debug-debugger.c (get_exception_message): Use 
55         mono_class_get_method_from_name_flags ().
57 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
59         * reflection.c, appdomain.c: Replace a few manual searches that
60         Zoltan missed. (Paolo approved this part of my initial patch).
62 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
64         * profiler.c: disable recording statistical events at report time.
66 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
68         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
69         to byteswap arrays of enum values, too (bug #72080).
71 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
73         * appdomain.c (set_domain_search_path): Allow this to be called if
74         domain->setup is not yet set.
76         * loader.c (mono_method_get_index): New helper function.
78         * loader.c reflection.c: Use mono_method_get_index ().
80         * class.c (mono_class_get_method_from_name_flags): New helper method.
82         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
83         this.
85         * class.c (mono_class_get_cctor): New helper method.
87         * string-icalls.c object.c class.c marshal.c reflection.c: Use
88         mono_class_get_method () to look up methods.
90 2005-02-01  Miguel de Icaza  <miguel@novell.com>
92         * console-io.c: Fix the build, this should work on Windows.
94 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
96         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
97         be set to null to keep things valid
99 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
101         * icall.c: added Console 2.0 icalls.
102         * Makefile.am: added console-io.[ch]
103         * console-io.[ch]: internal calls for Console 2.0 API.
105 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
107         * class.c: make sure we consider all the interfaces
108         when calculating max_interface_id (bug found by
109         Jeroen Frijters running ikvm).
111 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
113         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
114         valuetype fields to null.
116         * object.c (set_value): Ditto. Fixes #71669.    
118 2005-01-31  Martin Baulig  <martin@ximian.com>
120         * metadata.c (mono_metadata_has_generic_params): New public
121         function; checks whether something is a generic method.
123 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
125         * appdomain.c: fix infinite recursion when adding assemblies.
127 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
129         * object.c: Fix small typo to return all items for Environment.
130         GetCommandLineArgs.
132 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
134         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
135         reflection.c: more domain and assembly-unload related fixes
136         and memory leaks plugs.
138 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
140         * class.c loader.c security.c loader.h process.c threads.c mono-debug-debugger.c profiler.c marshal.c rand.cpedump.c: Fix 64 bit warnings.
142 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
144         * loader.c (mono_method_signature): Make this method lazy
145         (mono_get_method_from_token): Don't computate the signature here.
147         Doing this saves quite a bit of memory. I got 90 kb on starting up
148         monodoc. It should also save some disk reads on startup.
150         * *: MonoMethod->signature might be NULL now. You *MUST* use
151         mono_method_signature.
153 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
155         * object.c (mono_runtime_get_main_args): Return an array from the
156         current domain here. Fixes #71938.
158 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
160         * monitor.c: formatting changes to comply with the
161         mono coding style and remove #ifdefs from the code.
163 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
165         * metadata.c, private.h: remove some unneeded data
166         and use a more compact representation for table schemas.
168 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
170         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
171         to get a better distribution in hash tables.
172         * *.c: use mono_aligned_addr_hash() where appropriate.
173         * assembly.c: make var static.
175 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
177         * domain-internals.h: Put MonoJitInfo on a diet.
179         * domain.c: Fix a warning.
181 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
183         * gc.c: rework the gc handles code to reuse handles
184         when freed.
186 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
188         * domain.c: fixed long standing bug in mono_string_equal() which
189         was brought to light with the ldstr changes.
191 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
193         * reflection.c: Remove warning by adding missing include for marshal.h
195 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
197         * domain.c, object.c: change the ldstr_table to hold
198         MonoString* as keys: makes the runtime isinterned lookup
199         faster and simplifies memory management.
201 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
203         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
204         possible to add imperative security checks before calling the icall.
205         * reflection.c: Return security attributes on the original MonoMethod
206         (and not the wrapped one). This fix permissions on icalls.
208 2005-01-25  Dick Porter  <dick@ximian.com>
210         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
211         the check for mktime() support actually test the mktime() return
212         value.  "Fixes" bug 71682, though the output is still different to
213         MS.
215 2005-01-25  Martin Baulig  <martin@ximian.com>
217         * class.c (mono_class_is_assignable_from): Make this work for
218         generic instances.
220 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
222         * marshal.c (mono_string_utf8_to_builder)
223         (mono_string_builder_to_utf16): We might not have ownership of the
224         string. In thise case, we need to create a new buffer.
226         * object-internals.h (mono_stringbuilder_capacity): sb->str might
227         be null, in which case, use the default capacity.
229 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
231         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
232         GC events to the profiler.
234 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
236         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
237         if you don't want the GC to run.
239 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
241         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
242         start providing a GC API and keeping different implementations in
243         their own file.
244         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
246 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
248         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
249         mmap rather than allocating a huge buffer.
250         (mono_debug_close_mono_symbol_file): Free the buffer allocated
251         above.
253 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
255         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
256         and CheckExecutionRights.
257         * reflection.c|h: Keep the index of the declarative security to be 
258         used, instead of the pointer, when AOT compiler is used. Also add 
259         class initialization when requesting demands.
260         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
261         CheckExecutionRights. Both properties are now FALSE by default, and
262         unmodifiable, unless the --security option is used.
264 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
266         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
267         reflection.c: properly refcount images and assemblies, many leaks fixed.
269 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
271         * threadpool.c: increase the timeout for threads in the thread pool to
272         10s.  Fixes bug #67159.
274 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
276         * class-internals.h: Sun's compiler insists on explicit
277         signed on bit fields to handle then correctly.
279 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
281         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
282         Make the size of the array fit only the number of invalid path
283         chars that we have.
285         * class.c (_mono_class_get): Improve the error reporting when a
286         class referenced is not found, to assist debugging. 
288 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
290         * threads.c: fix off-by-one error.
291         * domain.c: free data allocated in the domain.
293 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
295         * reflection.c (mono_method_body_get_object): Fill out exception info
296         as well.
298         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
299         structure.
300         
301 2005-01-19  Martin Baulig  <martin@ximian.com>
303         * loader.c (mono_get_method_constrained): Make this work again.
305 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
307         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
308         guint16 to match the managed side.
310         * reflection.c (mono_reflection_body_get_object): Fill out local
311         variables array.
313         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
314         as well.
316         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
317         'local_var_sig_token'.
319 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
321         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
322         System.Drawing.
324         * reflection.c (mono_method_body_get_object): Handle abstract and
325         runtime methods.
327 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
329         * marshal.c, loader.c, class-internals.h, reflection.c:
330         store the emthod data for a wrapper in an array instead of a list.
332 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
334         * marshal.c: change the code to allocate memory more
335         conservatively for method wrappers.
337 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
339         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
340         fields from MonoClass to the marshal info structure where they belong.
342 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
344         * class.c, object.c, class-internals.h, marshal.c: rearrange
345         some fields and tweak some types to lower memory usage.
347 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
349         * threads.c (signal_thread_state_change): Handle the case when the
350         target thread is the current thread.
352         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
354         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
355         emit_ptr_to_object_conv. 
357         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
358         marshalling. Fixes #71352.
360 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
362         * metadata.h, blob.h: move table enum to blob.h so it can be included
363         in any header.
364         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
365         cut the size of MonoImage/MonoDynamicImage.
367 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
369         * profiler.c (mono_profiler_install_simple): Fix default arguments.
371 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
373         * reflection.c, reflection.h, icall.c: add a function to check
374         if an attribute type is defined for a metadata object.
376 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
378         * object-internals.h: Added some needed fields from StringBuilder class.
379         * marshal.c: Set the maxCapacity when creating a StringBuilder.
381 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
383         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
384         threads before shutting down the runtime.
386         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
388 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
390         * object-internal.h, threads.c: implement stacksize and 
391         parameterized thread start functionality (requires
392         matching corlib). Marked broken code for later removal.
394 2005-01-12  Martin Baulig  <martin@ximian.com>
396         * class-internals.h (MonoGenericClass): Moved the `initialized'
397         flag to MonoDynamicGenericClass, removed `init_pending'.
398         (MonoGenericInst): Added `is_reference' flag.
400 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
402         * reflection.c (mono_image_create_pefile): Only set the pe_offset
403         inside the MSDOS header. Fixes #71201.
405         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
406         gc thread.
407         (mono_domain_finalize): Ditto.
409 2005-01-12  Martin Baulig  <martin@ximian.com>
411         * class.c (mono_get_shared_generic_class): Use the cache for
412         non-dynamic generic classes.
414         * class-internals.h (mono_class_create_generic_2): Removed
415         function prototype, this function is now static inside class.c.
417         * class.c (mono_class_create_generic_2): Made this static, only
418         call it from mono_class_init() and mono_class_setup_parent().
419         (collect_implemented_interfaces_aux): Call mono_class_init() on
420         the interfaces we collect.
421         (mono_class_setup_vtable): Call mono_class_init (class->parent).
423 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
425         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
426         it a real thread handle.
428         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
429         MonoJitExceptionInfo, since each catch clause needs its own variable.
430         
431 2005-01-11  Dick Porter  <dick@ximian.com>
433         * image.c (mono_pe_file_open): New variant on mono_image_open()
434         that does not set up the CLI metadata; used for FileVersionInfo so
435         it can get the data for windows binaries too.
436         
437         * process.c (process_read_string_block): Don't read off the end of
438         the StringTable block.
440         These both fix bug 70766.
442 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
444         * gc.c: set some fields to NULL at GC cleanup time.
445         * threads.c: if we quit the main thread, call exit ().
447 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
449         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
451 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
453         * threads.h, threads.c, object.c: added accessor and settor for
454         main_thread. Handle it specially when exiting from it: wait
455         for other foreground threads to exit.
457 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
459         * process.c, verify.c: remove some bloat.
461 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
463         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
464         the calling convention to cdecl under win32.
466 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
468         * object.c (mono_object_get_size): New function to get the size of
469         an object instance.
471         * profiler.c (simple_allocation): Use above.
473 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
475         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
476         ves_icall_System_AppDomain_getRootDomain (as it's not required to
477         get an appdomain by it's id and we can't assume the root's id is 0).
478         * domain-internals.h: Change the function prototype to match.
479         * icall.c: Change the icall table for AppDomain.
481 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
483         * locales.c (string_invariant_compare_char): Only compute
484         GUnicodeTypes in the case where we need them.  Test for ordinality
485         first and return if so.
487         From the commit:
489                 /*
490                  * FIXME: here we must use the information from c1type and c2type
491                  * to find out the proper collation, even on the InvariantCulture, the
492                  * sorting is not done by computing the unicode values, but their
493                  * actual sort order.
494                  */
496 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
498         * loader.c: for P/Invoke methods, allow the "Internal" shared
499         library name to refer to the calling process symbol namespace.
501 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
503         * Makefile.am: Add the security manager to the build.
504         * security-manager.c|h: New. Initialization of the security manager.
506 2005-01-07  Dick Porter  <dick@ximian.com>
508         * threads.c: 
509         * monitor.c: Update thread state during Monitor and WaitHandle
510         waits.  Fixes bug 71031.
512 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
514         * reflection.c (property_encode_signature): Correctly handle when the
515         property has no methods.
517 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
519         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
520         
521         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
522         fields from mb, not rmb. Fixes #71017.
524         * marshal.c (emit_ptr_to_str_conv): Add support for 
525         ByValTStr -> string conversion. Fixes #71015.
527         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
529         * mempool.c (mono_mempool_contains_addr): New helper function.
531 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
533         * metadata.c (mono_metadata_compute_size): Fix size calculation of
534         HasSematics encoded fields.
535         
536         * metadata.c (mono_type_to_unmanaged): Improve error message for 
537         invalid string marshalling.
539         * metadata.c: Fix warnings.
540         
541 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
543         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
544         profiler support.
546 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
548         * domain.c object.c domain-internals.h: Revert part of r38077 since the
549         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
550         tests.
552 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
554         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
555         so methods containing these can be AOTed.
557 2005-01-03  Martin Baulig  <martin@ximian.com>
559         * loader.c (find_method): Removed the hack for generic instances.
560         (method_from_memberref): If our parent is a generic instance, pass
561         its generic type definition to find_method() and then inflate the
562         method.
563         (mono_get_method_constrained): Pass the generic type definition to
564         find_method() and inflate the method later.
566         * class-internals.h (MonoStats): Added `generic_class_count'.
568         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
569         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
571         * reflection.c (mono_custom_attrs_from_params): Don't ignore
572         generic type definitions.
574 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
576         * loader.c icall.c: Fix warnings.
578 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
580         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
581         blittable types. Fixes #70864.
583 2004-12-29  Martin Baulig  <martin@ximian.com>
585         * icall.c
586         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
588         * reflection.c (mono_method_get_object): Create a
589         "System.Reflection.MonoGenericMethod" for inflated methods; don't
590         call mono_get_inflated_method().
592         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
594 2004-12-27  Martin Baulig  <martin@ximian.com>
596         * class-internals.h (MonoMethod): Added `is_inflated' flag.
597         (MonoMethodInflated): Added `inflated' field.
599         * class.c (mono_class_inflate_generic_method): Don't really
600         inflate the method here; just set the `is_inflated' flag in the
601         MonoMethod.
602         (mono_class_get_inflated_method): Actually inflate the method here
603         if it's not already inflated; we use the MonoMethodInflated's new
604         `inflated' field as a cache.
606 2004-12-26  Martin Baulig  <martin@ximian.com>
608         * class.c
609         (inflate_generic_class): Moved some code out of inflate_generic_type().
610         (mono_class_inflate_generic_method): If we're already inflated,
611         inflate the context and use the declaring method; ie. make sure
612         the declaring method of an inflated method is always the generic
613         method definition.
614         (mono_class_create_from_typedef): Create
615         `class->generic_container->context->gclass'.
617 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
619         * metadata-internals.h, marshal.c, reflection.c: More
620         MonoGHashTable->GHashTable.
622         * domain-internals.h, class.c: Change MonoGHashTable's into
623         GHashTables for some cases where no gc stuff is used
625         All users: update apis
627 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
629         * metadata.c (builtin_types): Make this `const'. Makes this get
630         put into the shareable section.
631         (mono_metadata_init): Casts to make gcc happy.
633 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
635         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
637 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
639         * icall.c: Added an internal call to retrieve the position and length
640         of assembly-level declarative security attributes (RequestMinimum, 
641         RequestOptional and RequestRefuse). This is used by the Assembly class
642         to re-create the corresponding permission sets.
644 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
646         * marshal.c: fix the stelemref wrapper to be type correct
647         (and faster).
649 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
651         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
652         to do key & 0x7fffffff. Hashtable already does this. It just
653         results in longer code.
655 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
657         * appdomain.c: Bump corlib version.
658         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
659         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
660         * reflection.c|h: Add functions to get declarative security infos
661         (blob position and length) for assemblies, classes and methods.
663 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
665         * reflection.c: sort the constant table (bug #70693).
667 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
669         * object-internals.h, threads.c, domain.c: add accessors for
670         the MonoThread and MonoDomain tls keys.
672 2004-12-18  Martin Baulig  <martin@ximian.com>
674         * class.c (inflate_generic_type): If we're inflating a generic
675         instance, set `ngclass->context->container = context->container';
676         ie. the container we inflated into.
678         * metadata.c (mono_metadata_parse_generic_param): Reflect above
679         inflate_generic_type() changes.
681 2004-12-17  Martin Baulig  <martin@ximian.com>
683         * class-internals.h
684         (MonoGenericClass): Replaced `MonoType *generic_type' with
685         `MonoClass *generic_class'.  Removed `dynamic_info'; if
686         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
687         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
689 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
691         * exception.c (mono_exception_from_token): New helper function.
693 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
695         * assembly.c (mono_assembly_load_with_partial_name): Call 
696         mono_assembly_loaded before invoking the preload hooks. Fixes
697         #70564.
699         * object-internals.h (MonoThread): Change culture_info and 
700         ui_culture_info into an array.
702         * threads.c: Cache culture info objects from more than one appdomain.
704         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
705         current UI culture.
707 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
709         * threads.h threads.c appdomain.c: Clear the culture_info field of
710         all threads during unloading if they point to an object in the dying
711         appdomain.
713 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
715         * culture-info.h (TextInfoEntry): New struct
716         * object-internals.h: sync with managed
717         * locales.c: fill the `text_info_data' field
718         * culture-info-tables.h: update
720 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
722         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
723         collector.
725 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
727         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
728         (ves_icall_ModuleBuilder_getMethodToken): Ditto
730 2004-12-12  Martin Baulig  <martin@ximian.com>
732         * mono-debug-debugger.c (write_type): If we're an enum and the
733         builtin types have already been initialized, call mono_class_init().
735 2004-12-11  Martin Baulig  <martin@ximian.com>
737         * metadata.c (mono_metadata_load_generic_params): Added
738         `MonoGenericContainer *parent_container' argument; automatically
739         compute `container->is_method'; pass the correct owner to
740         get_constraints().      
742         * reflection.c (compare_genericparam): Sort the GenericParam table
743         according to increasing owners. 
745 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
747         * profiler.c: allow disabling the default profiler.
749 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
751         * decimal.c, icall.c: allow disabling System.Decimal support.
753 2004-12-09  Marek Safar <marek.safar@seznam.cz>
755         * reflection.c: Add support for null attribute arguments.
757 2004-12-09  Martin Baulig  <martin@ximian.com>
759         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
760         names to get rid of compiler warnings.
762 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
764         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
765         mono_marshal_load_type_info (). Fixes #69625.
766         (mono_marshal_get_ptr_to_struct): Likewise.
768 2004-12-08  Martin Baulig  <martin@ximian.com>
770         * mono-debug.h: Bumped version number to 47.
772         * mono-debug-debugger.c
773         (mono_debugger_event_handler, mono_debugger_event): Take two
774         guint64 arguments insteed of a gpointer and a guint32.  
776 2004-12-08  Martin Baulig  <martin@ximian.com>
778         * debug-mono-symfile.h
779         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
780         `address' to `native_offset'.
782 2004-12-08  Martin Baulig  <martin@ximian.com>
784         * class.c (mono_class_create_from_typespec): Only inflate if we
785         either have `context->gclass' or `context->gmethod'.
787 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
789         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
791         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
793         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
795         * reflection.c (mono_assembly_get_object): Remove the workaround put
796         in for the release.
797         
798         * appdomain.c: Use the corlib_internal field from MonoAssembly.
800         * appdomain.c: Bump corlib version.
802         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
803         be visible in other appdomains.
805 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
807         * threads.c: Interlocked inc and dec for longs were messed up,
808         use a KISS based impl for this. Fixes 70234
810 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
812         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
814 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
816         * icall.c: fix to follow policy not to allow struct
817         arguments in icalls.
819 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
821         * process.c: make the patch that handles spaces in file paths work
822         on mono/windows too.
824 2004-12-06  Martin Baulig  <martin@ximian.com>
826         * class.c (mono_class_create_generic): Call
827         mono_class_setup_supertypes() if we're dynamic.
828         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
830 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
832         * object-internals.h: Add new fields to MonoThread.
834         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
836         * icall.c threads-types.h threads.c: Add new icalls.
838         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
840         * object-internals.h (MonoReflectionAssembly): Sync object layout with
841         managed side.
843         * appdomain.c: Bump corlib version.
845         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
846         internal assemblies. Fixes #69181.
848 2004-12-05  Martin Baulig  <martin@ximian.com>
850         * class.c (mono_class_inflate_generic_signature): Make this a
851         no-op if `context' is NULL or we don't have any type parameters;
852         also copy `sentinelpos'.        
854 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
856         * image.c: Add unbox_wrapper_cache.
858         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
860         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
861         function generator.
862         
863         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
864         Fixes #70173.
866         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
867         
868 2004-12-04  Martin Baulig  <martin@ximian.com>
870         * loader.c (mono_method_get_signature_full): New public function;
871         like mono_method_get_signature(), but with an additional
872         `MonoGenericContext *' argument.
874         * class.c (mono_class_inflate_generic_signature): Formerly known
875         as inflate_generic_signature(); make this public.
877 2004-12-04  Martin Baulig  <martin@ximian.com>
879         * metadata.c
880         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
881         instead of a `MonoGenericContainer *'.  
882         (mono_metadata_parse_array_full): Likewise.
883         (mono_metadata_parse_signature_full): Likewise.
884         (mono_metadata_parse_method_signature_full): Likewise.
885         (mono_metadata_parse_generic_inst): Likewise.
886         (mono_metadata_parse_generic_param): Likewise.
887         (mono_metadata_parse_mh_full): Likewise.
888         (mono_type_create_from_typespec_full): Likewise.
890 2004-12-03  Martin Baulig  <martin@ximian.com>
892         * class-internals.h (MonoGenericContainer): Replaced the
893         `MonoGenericContext * pointer with a `MonoGenericContext'
894         structure and made it the first element.
896 2004-12-03  Martin Baulig  <martin@ximian.com>
898         * class.c
899         (inflate_generic_type): Set the `context->container' when creating
900         a new MonoGenericContext.
901         (mono_class_inflate_generic_method): Likewise.
902         (mono_class_create_from_typespec): Just use `context->container'
903         to get the container.
905         * loader.c (method_from_methodspec): Set `context->parent' from
906         `context->container' - and if that's a method container, use its
907         parent.  Also set the `context->container' when creating a new
908         MonoGenericContext.
909         (mono_get_method_from_token): Use just `context->container' to get
910         the container.
912         * metadata.c (do_mono_metadata_parse_generic_class): Also set
913         `gclass->context->container'.
915         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
916         the `context->container' when creating a new MonoGenericContext.
918 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
920         * reflection.c (compare_genericparam): Sort params with identical
921         owner by their number. Fixes gen-111 on sparc.
923 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
925         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
926         around the domain changes.
928         * appdomain.c (mono_domain_unload): Handle the case when the thread
929         calling Unload is itself being aborted during unloading. Fixes #70022.
931         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
933         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
934         checkpoint_func as an icall so it gets a wrapper.
935         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
936         in the cross-appdomain wrappers too.
938         * threads.c (mono_thread_has_appdomain_ref): Make this public.
940         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
942         * reflection.c: Fix some memory leaks.
943         
944 2004-12-02  Martin Baulig  <martin@ximian.com>
946         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
948         * metadata.c (generic_class_cache): New static hashtable.
949         (mono_metadata_lookup_generic_class): New public method.
951 2004-12-02  Martin Baulig  <martin@ximian.com>
953         * class.c (mono_class_create_from_typedef): Call
954         mono_class_setup_parent() and mono_class_create_mono_type() before
955         parsing the interfaces.
957 2004-12-02  Martin Baulig  <martin@ximian.com>
959         * metadata.c (generic_inst_cache): New static hashtable.
960         (mono_metadata_lookup_generic_inst): New public function.
961         (mono_metadata_inflate_generic_inst): New public function.
962         (mono_metadata_parse_generic_inst): New public function.
963         (do_mono_metadata_parse_generic_class): Use the new
964         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
965         since this'll also use the cache.
967         * reflection.c (mono_reflection_bind_generic_method_parameters):
968         Use mono_metadata_lookup_generic_inst() to use the new cache.
970         * class.c (inflate_mono_type): Use
971         mono_metadata_inflate_generic_inst() to inflate a generic
972         instance; this'll also use the new cache.
974         * loader.c (method_from_methodspec): Use
975         mono_metadata_parse_generic_inst() and
976         mono_metadata_inflate_generic_inst() rather than parsing it
977         manually, so we can use the new cache.
979 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
981         * threads.c (wait_for_tids): Do not incorrectly free threads when 
982         the wait times out.
984 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
986         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
987         iter->args based on whether parameters are passed in registers (i.e.
988         MONO_ARCH_REGPARMS is defined)
990 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
992         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
993         the exception message. Fixes #70070.
994         (method_from_methodspec): Fix warnings.
996 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
998         * process.c: (complete_path) return the path quoted
1000 2004-12-01  Martin Baulig  <martin@ximian.com>
1002         * class-internals.h (MonoGenericInst): New structure.
1003         (MonoGenericClass): Replaced `type_argc', `type_argv' and
1004         `is_open' with `MonoGenericInst *inst'.
1005         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
1006         `is_open' with `MonoGenericInst *inst'.
1008 2004-11-30  Martin Baulig  <martin@ximian.com>
1010         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
1012         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
1013         to `generic_class_cache'.
1015         * metadata.c
1016         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
1017         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
1018         (mono_generic_inst_is_valuetype): Renamed to
1019         mono_generic_class_is_valuetype().
1021         * class-internals.h
1022         (MonoGenericInst): Renamed to MonoGenericClass.
1023         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
1024         (MonoClass): Renamed `generic_inst' to `generic_class'.
1025         (MonoGenericContext): Renamed `ginst' to `gclass'.
1027         * object-internals.h
1028         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
1030         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
1031         mono_reflection_generic_class_initialize().
1033         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
1034         now known as "System.Reflection.MonoGenericClass".
1035         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
1037 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
1039         * class-internals.h: Added a flag field to MonoClass to cache the
1040         declarative security attributes actions associated with the class.
1041         * domain-internals.h: Added booleans to MonoJitInfo to cache the
1042         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
1043         applicable to the JITted method.
1044         * reflection.c|h: Added functions to extract (as flags) which security
1045         actions are available (declaratively) for a method, class or assembly.
1046         * metadata.c|h: Added functions to search the declarative security
1047         table in the metadata.
1048         
1049 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
1051         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
1052         EXPORTEDTYPES are already in the class name cache, so there is no
1053         need to add extra code here to look at them. Just removes a bit of
1054         cruft.
1056         (ves_icall_System_Environment_get_TickCount): No need for #if
1057         WINDOWS. We already have the code in io-layer.
1059 2004-11-28  Martin Baulig  <martin@ximian.com>
1061         * loader.c
1062         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
1063         Fixes gen-112.cs.
1065 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
1067         * assembly.c (do_mono_assembly_open): Instead of having a
1068         conditional WITH_BUNDLE, incorporate support for bundles here, by
1069         having a global `bundles' variable holding a pointer to the actual
1070         bundles. 
1072         (mono_register_bundled_assemblies): New API call used by the
1073         bundle code. 
1075         See mkbundle.1 for details.
1076         
1077 2004-11-27  Martin Baulig  <martin@ximian.com>
1079         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
1080         the vtable for generic methods.
1082 2004-11-26  Martin Baulig  <martin@ximian.com>
1084         * metadata.c
1085         (mono_metadata_generic_method_hash): New public function.
1086         (mono_metadata_generic_method_equal): Likewise.
1088         * class-internals.h
1089         (MonoGenericContainer): Added `GHashTable *method_hash'.
1091         * reflection.c (ReflectionMethodBuilder): Added
1092         `MonoGenericContainer *generic_container'.
1093         (reflection_methodbuilder_to_mono_method): Don't create a new
1094         MonoGenericContainer each time we're called.
1095         (mono_reflection_bind_generic_method_parameters): Use
1096         `container->method_hash' to cache the results so we don't create a
1097         different method if we're called several times with the same
1098         arguments.
1100         * loader.c (method_from_methodspec): Use the new
1101         `container->method_hash' here, too.
1103 2004-11-26  Martin Baulig  <martin@ximian.com>
1105         * class.c (inflate_generic_signature): Correctly compute
1106         `res->has_type_parameters'.
1107         (mono_class_vtable): Use the `has_type_parameters' flag to
1108         determine whether we're a generic method.
1110         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
1112 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
1114         * object.c (mono_runtime_run_main): Fix a small memory leak.
1116 2004-11-25  Martin Baulig  <martin@ximian.com>
1118         * class.c (set_generic_param_owner): Fixed the loop.
1120 2004-11-25  Martin Baulig  <martin@ximian.com>
1122         * object.c (mono_class_vtable): Don't create any JIT wrappers for
1123         generic methods.
1125 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
1127         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
1128         names. Fixes #69787.
1130 2004-11-24  Martin Baulig  <martin@ximian.com>
1132         * class.c (mono_class_create_generic_2): If we don't have a
1133         `ginst->parent', inflate `gklass->parent' to get our parent.
1135 2004-11-24  Martin Baulig  <martin@ximian.com>
1137         * reflection.c (compare_genericparam): Correctly sort the
1138         GenericParam table; fixes #69779.
1140 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
1142         * reflection.c: When writing a PE file, don't create a huge
1143         buffer in memory. Just write the arrays we have to the file.
1144         This reduces memory usage.
1146         * metadata-internals.h: MonoDynamicStream pefile is no longer used
1147         globally.
1149 2004-11-17  Martin Baulig  <martin@ximian.com>
1151         * class.c (mono_class_init): Don't setup `class->parent' for
1152         dynamic instances; moved this to mono_class_generic_2().
1153         (mono_class_create_generic): Also set `klass->inited' for dynamic
1154         generic instances.
1155         (mono_class_create_generic_2): Don't do anything for dynamic
1156         generic instances.  Set `klass->parent' here and also call
1157         mono_class_setup_parent() here. 
1159         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
1160         `MonoType *parent' argument; set `ginst->parent' before calling
1161         mono_class_create_generic_2(), so we set the correct parent.
1163 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
1165         * reflection.c: allow getting attributes from ModuleBuilder
1166         (used by ikvm).
1168 2004-11-17  Martin Baulig  <martin@ximian.com>
1170         * class.c (mono_class_create_from_typedef): If a type parameter is
1171         inherited from an outer class, set its owner to that class.
1173 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
1175         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
1176           for (int*) written size. This fixes bug #69592.
1178 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
1180         * icall.c: Added IsAuthenticodePresnet internal call.
1181         * image.c|h: New function that check a MonoImage for an Authenticode
1182         signature in the certificate PE data directory.
1183         * security.c|h: New internal call to ask the runtime if an 
1184         Authenticode signature seems referenced in the PE header.
1186 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
1188         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
1190         * reflection.c (mono_image_create_pefile): Free the assembly streams
1191         after writing out the assembly file.
1193         * object.c (mono_runtime_run_main): Fix small memory leak.
1195         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
1196         property access modifiers. Fixes #69389.
1198 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
1200         * domain.c, object.c, object-internals.h, domain-internals.h,
1201         object.h, marshal.c: keep dynamic code info per domain.
1203 2004-11-15  Martin Baulig  <martin@ximian.com>
1205         * class.c (mono_type_get_name_recurse): Put type arguments in
1206         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
1207         see bug #68387.
1209 2004-11-15  Martin Baulig  <martin@ximian.com>
1211         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
1212         (mono_class_setup_vtable): When computing `the_cname' for a
1213         generic instance, don't include the namespace since we'd otherwise
1214         add it twice.
1216 2004-11-15  Martin Baulig  <martin@ximian.com>
1218         * class.c (mono_class_create_generic): Changed return type to void.
1219         (mono_class_create_generic_2): New public function; setup
1220         `class->method', `class->field' and `class->interfaces' here
1221         instead of in mono_class_init().
1223         * class.h (mono_class_create_generic): Moved to class-internals.h.
1225 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
1227         * reflection.c (mono_image_create_pefile): take a file HANDLE.
1228         rather than writing to memory, write to this file. Right now,
1229         we are just writting into a buffer, and copying that. However
1230         we can avoid the buffer later.
1232         (mono_dynamic_stream_reset): new function
1234         * icall.c, object-internals.h: update for the above.
1236 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
1238         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
1239         have been using gc'd memory. First it is slower, unlikely
1240         the comment in the source code said, secondly, it increases
1241         our footprint to do it in the gc.
1243         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
1244         the method so that it does not have to copy to managed code.
1246 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
1248         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
1250 2004-11-12  Martin Baulig  <martin@localhost>
1252         * reflection.c (mono_image_create_token): Allow generic method
1253         definitions here, since they may appear in an `.override'; see
1254         gen-98/gen-99 for an example.
1256 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
1258         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
1259         #69365.
1261         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
1262         descriptive.
1264 2004-11-11  Martin Baulig  <martin@ximian.com>
1266         * class.c (mono_class_setup_vtable): In an explicit interface
1267         implementation, the method name now includes the arity.
1269 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
1271         * object.c (mono_array_full_copy): Fix warning.
1273 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
1275         * appdomain.c: Removed look_for_method_by_name(). Use the new method
1276         mono_class_get_method_from_name() instead.
1277         
1278         * class-internals.h: Added two new types of wrappers. 
1279         Added MonoRemotingTarget enum. Added new trampoline function type, which
1280         takes an additional MonoRemotingTarget value as parameter, so it is
1281         possible to request a trampoline for a specific target.
1282         
1283         * class.c: Added new mono_class_get_method_from_name() method.
1284         
1285         * class.h: In MonoRemoteClass, we can have now to vtables, one for
1286         general remoting sinks and one specific for cross domain calls.
1287         
1288         * debug-helpers.c: Added new wrapper names.
1289         
1290         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
1291         of a remote class.
1292         
1293         * image.c: Porperly delete value objects form the remoting invoke hashtable.
1294         
1295         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
1296         with several other methods (mono_marshal_get_xappdomain_dispatch,
1297         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
1298         and others) can generate a fast remoting wrapper for cross domain calls.
1299         More information can be found in docs/remoting.
1300         Other changes: Removed mono_find_method_by_name, and used
1301         mono_class_get_method_from_name instead.
1302         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
1303         is stored in the remoting invoke hashtable.
1304         
1305         * marshal.h: published the new method for getting the xdomain wrapper,
1306         and also added a method for getting the adequate wrapper for a given
1307         method and target.
1308         
1309         * object-internals.h, object.c: Added a couple of methods for capying and
1310         cloning arrays.
1311         Modified mono_install_remoting_trampoline, which takes the new remoting
1312         trampoline that has a remoting target as parameter.
1313         mono_class_proxy_vtable now also takes a remoting target as parameter, and
1314         will return the most suitable vtable for the target.
1315         Added mono_remote_class_vtable, which returns the vtable of a remote class
1316         (which can be the normal remoting vtable or the xdomain vtable).
1317         
1318         * threads.c: the xdomain invoke and dispatch wrappers must also be
1319         protected against interruptions.
1321 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1323         * icall.c: use memmove in BlockCopyInternal when the source and
1324         destination arrays are the same.
1326 2004-11-09  Martin Baulig  <martin@ximian.com>
1328         * class-internals.h (MonoGenericContainer): Removed `method' and
1329         `signature', replaced them with `is_method' and `is_signature'
1330         flags.  Added `context'.
1332         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
1333         instead of a `MonoGenericContainer *'.
1335         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
1336         for dynamic type parameters.
1337         (mono_metadata_load_generic_params): Setup `container->context'.
1339         * reflection.c (mono_reflection_setup_generic_class): Setup
1340         `tb->generic_container->context'.
1341         (do_mono_reflection_bind_generic_parameters): Use
1342         mono_class_inflate_generic_type() to correctly inflate types,
1343         rather than using our own hack just for MONO_TYPE_VAR.
1345 2004-11-09  Martin Baulig  <martin@ximian.com>
1347         * class.c (mono_class_inflate_generic_method): Small fix; don't
1348         crash here.
1350         * icall.c
1351         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
1352         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
1353         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
1354         (ves_icall_Type_BindGenericParameters): Likewise.
1355         (ves_icall_Type_get_IsGenericInstance): Likewise.
1356         (ves_icall_Type_GetGenericParameterPosition): Likewise.
1357         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
1358         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
1359         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
1361 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
1363         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
1364         assembly versions and public key tokens. Fixes #69113.
1366 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
1368         * metadata.c: fix bug introduced with the type cache changes
1369         on 2004-11-06.
1371 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
1373         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
1374         the MonoClass pointer instead of the token in exception clauses.
1375         * reflection.c: updates for the above and make the code not depend
1376         on the structure of MonoExceptionClause.
1378 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
1380         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
1381         Add support for dynamic assemblies. Fixes #69114.
1383         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
1385 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
1387         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
1388         since most only those methods use it. the code member of
1389         MonoMethodPInvoke was dead, so that can be removed too. Also,
1390         remove inline_count (again, not used), and move slot so that it
1391         can share bits with some other flags. This saves 8 bytes in the
1392         structure and gives us about 50 kb back for mcs helloworld.cs
1394         * *.[ch]: Do naming changes for the above.
1396         * loader.c (mono_method_get_header): Lazily init the header
1397         on first access.
1398         (mono_get_method_from_token): don't init the header here
1399         (mono_free_method): the header may never be allocated
1401         Overall, this saves 150 kb of unmanaged allocations
1402         for mcs helloworld.cs. That accounts for 10% of the unmanaged
1403         memory at runtime.
1404         
1405         * loader.c, loader.h (mono_method_get_header): new accessor.
1407         * *.[ch]: use the above method. Prepares us to lazily load
1408         the header.
1410         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
1411         three warnings, which are actual bugs (see 69206).
1413         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
1414         unused. Saves a cool 4 bytes / method.
1416 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
1418         * metadata.c (builtin_types): Add types for System.Object here.
1419         (mono_metadata_parse_type_full): Cache MonoType*'s that are
1420         for a class or valuetype from klass->this_arg or klass->byval_arg.
1422         On mcs for a hello world, this gets us down from 21836 MonoType's
1423         to 14560.
1425         (mono_metadata_free_type): Account for the above change.
1427 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
1429         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
1430         exception instead of asserting if name is null.
1431         (ves_icall_System_AppDomain_GetData): Ditto.
1433 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
1435         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
1436         EnumBuilder.
1438         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
1439         Return NULL when the domain does not have entry_assembly set.
1441         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
1442         Add a 'resource_modules' argument.
1443         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
1445         * reflection.c (mono_reflection_create_runtime_class): Move setting
1446         of wastypebuilder here, so mono_get_type_object () returns a MonoType
1447         for enums too.
1449         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
1450         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
1451         Throw an ArgumentNullException if 'ptr' is null.
1453         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
1454         assemblies here. Fixes #69020.
1456 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
1458         * reflection.c (build_compressed_metadata): Fix the previous patch for
1459         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
1460         the stack.
1462 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
1464         * assembly.c (mono_assembly_names_equal): Allow a match if one of
1465         the cultures is false. Fixes #69090.
1467         * reflection.c (build_compressed_metadata): Fix invalid memory read 
1468         detected by valgrind.
1469         
1470         * reflection.c (mono_reflection_get_type): Avoid triggering a 
1471         TypeResolve multiple times for the same type. Fixes #65577.
1473 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
1475         * marshal.c: Avoid using ldftn to call managed functions. It is
1476         much slower than just a call.
1478         * reflection.c (mono_module_get_object): free the basename we
1479         allocate here from glib.
1480         
1481         * reflection.c (ensure_runtime_vtable): make sure to free
1482         overrides.  Also, we were allocating an array of MonoMethod not an
1483         array of MonoMethod*.
1485         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
1487         * image.c (mono_image_close): free image->guid here.
1489 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
1491         * reflection.c: Fix some spec conformance issues with the PE file
1492         structures so mcs compiled apps run on the Net 2.0 beta.
1494 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
1496         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
1497         Implement this. Fixes #67264.
1499         * debug-helpers.h debug-helpers.c marshal.c: Move 
1500         mono_find_method_by_name to debug-helpers.c.
1502 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
1504         * object.c (mono_release_type_locks): type_initialization_hash is
1505         a GHashTable.
1507         * reflection.c object.c object-internals.h: Fix warnings.
1509         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
1510         without accessors. Fixes #61561.
1512         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
1513         application base from the root domain if not set. Fixes #65641.
1514         (mono_runtime_init): Fix warning.
1516 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1518         * appdomain.c: call mono_thread_pool_init.
1519         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
1520         of worker threads based on the number of CPUs and the environment
1521         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
1522         for non-windows (windows) systems.
1524 2004-10-27  Chris Toshok  <toshok@ximian.com>
1526         * mono-debug-debugger.c (write_class): don't call mono_class_init
1527         here, as even with the check for (!klass->init_pending), we get
1528         into a situation where we're hitting cycles in class
1529         initialization.  Fixes #68816.
1531 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
1533         * image.c: Avoid overwriting values in the loaded_images_hash when an
1534         assembly is loaded multiple times. Fixes #61152.
1536         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
1537         so multiple satellite assemblies for the same name can be loaded.
1538         Fixes #68259.
1540         * mono_domain_assembly_preload: Actually return the loaded assembly, 
1541         not NULL.
1543         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
1544         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
1546         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
1547         pending finalizers are not invoked after the appdomain has been 
1548         unloaded. Fixes #67862.
1550 2004-10-22  Martin Baulig  <martin@ximian.com>
1552         * mono-debug-debugger.c
1553         (mono_debugger_runtime_invoke): Don't box valuetypes.
1555 2004-10-22  Chris Toshok  <toshok@ximian.com>
1557         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
1558         don't hide private methods.
1560 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
1562         * icall.c: Allows the runtime to "share" (when known) the public key
1563         token of an assembly. This avoid the need to recalculate the token 
1564         (from the public key) in managed code.
1566 2004-10-21  Chris Toshok  <toshok@ximian.com>
1568         * debug-helpers.c (append_class_name): argh, revert last patch.
1569         
1570 2004-10-21  Chris Toshok  <toshok@ximian.com>
1572         * debug-helpers.c (append_class_name): use '+' as the delimiter,
1573         not '/', so that it matches what the debugger uses to look up
1574         methods.
1576 2004-10-21  Martin Baulig  <martin@ximian.com>
1578         * mono-debug-debugger.c (mono_debugger_throw_exception): New
1579         public method; this is called each time an exception is thrown and
1580         allows the debugger to use exception catch points.
1582 2004-10-21  Martin Baulig  <martin@ximian.com>
1584         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
1585         the stack pointer and the exception object in some struct and pass
1586         that to the debugger.
1588 2004-10-21  Chris Toshok  <toshok@ximian.com>
1590         * mono-debug-debugger.c (do_write_class): add instance/static
1591         event support.  We don't expose "raise" or "other" yet.
1592         (event_is_static): new method.
1594 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
1596         * mono-debug-debugger.c
1597         (mono_debugger_handle_exception): Remove
1598         bogus return value for fussy compilers.
1600 2004-10-20  Martin Baulig  <martin@ximian.com>
1602         * mono-debug-debugger.c
1603         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
1604         (mono_debugger_handled_exception): Likewise.
1606 2004-10-20  Martin Baulig  <martin@ximian.com>
1608         * mono-debug-debugger.h (MonoDebuggerEvent): Added
1609         MONO_DEBUGGER_EVENT_EXCEPTION.
1611         * mono-debug-debugger.c (mono_debugger_handle_exception): New
1612         public function to send the debugger a notification for an
1613         exception and inform it about a catch/finally clause.
1615 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
1617         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
1618         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
1619         fix 2.95 build. 
1621         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
1623 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
1625         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
1626         marshalled as [In,Out]. Fixes #58325.
1628 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
1630         * reflection.c (mono_method_body_get_object): Implement some fields.
1632 2004-10-12  Martin Baulig  <martin@ximian.com>
1634         * reflection.c (mono_reflection_bind_generic_parameters): Small
1635         fix, correctly retrieve our parent from a generic instance.
1637 2004-10-12  Martin Baulig  <martin@ximian.com>
1639         * metadata.c (mono_metadata_generic_param_equal): We always have
1640         an owner.
1642         * class.c
1643         (mono_class_from_generic_parameter): We need to have an owner.
1644         (my_mono_class_from_generic_parameter): Likewise.
1646         * reflection.c (mono_reflection_setup_generic_class): Renamed to
1647         mono_reflection_create_generic_class() and added a new
1648         mono_reflection_setup_generic_class().  
1649         (mono_reflection_initialize_generic_param): If we're a nested
1650         generic type and inherited from the containing class, set our
1651         owner to the outer class.
1653 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
1655         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
1657         * reflection.c (mono_method_body_get_object): New function to create
1658         a MethodBody object.
1660         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
1662 2004-10-11  Martin Baulig  <martin@ximian.com>
1664         * metadata.c (_mono_metadata_type_equal): Renamed to
1665         do_mono_metadata_type_equal() and made static.
1667 2004-10-11  Martin Baulig  <martin@ximian.com>
1669         * appdomain.c: Bump corlib version number to 28.
1671 2004-10-10  Martin Baulig  <martin@ximian.com>
1673         * class-internals.h
1674         (MonoGenericInst): Added `MonoGenericContainer *container'.
1675         (MonoGenericMethod): Likewise.
1676         (MonoGenericContext): Likewise.
1677         (MonoGenericParam): Added `MonoGenericContainer *owner'.
1679         * metadata.c
1680         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
1681         (do_mono_metadata_parse_generic_inst): Likewise.
1682         (mono_metadata_parse_type_full): New public method.  This is the actual
1683         mono_metadata_parse_type() implementation - with an additional
1684         `MonoGenericContainer *' argument.
1685         (mono_metadata_parse_array_full): Likewise.
1686         (mono_metadata_parse_signature_full): Likewise.
1687         (mono_metadata_parse_method_signature_full): Likewise.
1688         (mono_metadata_parse_mh_full): Likewise.
1689         (mono_type_create_from_typespec): Likewise.
1690         (mono_metadata_interfaces_from_typedef_full): New public method;
1691         this is similar to the other _full() methods, but we take a
1692         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
1693         (mono_metadata_parse_generic_param): Take an additional
1694         `MonoGenericContainer *' argument and lookup the MonoGenericParam
1695         from that container.
1696         (mono_metadata_generic_param_equal): New static method to compare
1697         two type parameters.
1698         (_mono_metadata_type_equal): New static method; takes an
1699         additional `gboolean signature_only' argument - if true, we don't
1700         compare the owners of generic parameters.
1701         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
1702         with a TRUE argument - do a signature-only comparision.
1704         * loader.c: Use the new _full() methods and pass the
1705         MonoGenericContainer to them.
1707         * object-internals.h (MonoReflectionTypeBuilder): Added
1708         `MonoGenericContainer *generic_container' field.
1709         (MonoReflectionMethodBuilder): Likewise.
1711 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
1713         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
1714         case initial images of dynamic assemblies.
1716         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
1718         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
1720         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
1721         length of event->other array.
1722         (typebuilder_setup_events): Ditto.
1724         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
1725         'assembly_by_name' and add an 'assemblies' list.
1727         * assembly.h assembly.c: Add a new search hook for determining whenever
1728         an assembly is already loaded. Use this instead of searching in the
1729         loaded_assemblies list.
1731         * domain.c appdomain.c: Implement the new search hook so loaded 
1732         assemblies are now scoped by appdomain. Fixes #67727.
1734 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
1736         * threads.c (mono_thread_attach): Initialize synch_lock field so
1737         mono_thread_detach works again.
1739         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
1740         'lib' too. Fixes #63130.
1742 2004-10-06  Jackson Harper  <jackson@ximian.com>
1744         * culture-info-tables.h: regenerated.
1746 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
1748         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
1749         implemented by other interfaces in the result. Fixes #65764.
1750         
1751         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
1752         Handle unloadable modules without crashing.
1754         * image.c (load_modules): Revert the previous patch since modules must
1755         have a fixed index inside the array.
1756         
1757         * image.c (load_modules): Don't include native modules in the modules
1758         array.
1760 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
1762         * reflection.h: Add param_defaults field.
1764         * reflection.c: Add support for parameter defaults in dynamic methods.
1765         Fixes #64595.
1767         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
1768         an empty string when a type has no namespace. Fixes #64230.
1770 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
1772         * tabledefs.h: Added "internal" security actions to support non-CAS
1773         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
1774         Note: they do not seems to be used anymore in 2.0 (new metadata format)
1776 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
1778         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
1779         constructor of abstract class. Fixes #61689.
1781 2004-10-04  Martin Baulig  <martin@ximian.com>
1783         * class-internals.h (MonoGenericContainer): New type.
1784         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
1785         `MonoGenericContainer *generic_container'.
1786         (MonoClass): Replaced `gen_params' and `num_gen_params' with
1787         `MonoGenericContainer *generic_container'.
1789         * metadata.c (mono_metadata_load_generic_params): Return a
1790         `MonoGenericContainer *' instead of a `MonoGenericParam *';
1791         removed the `num' argument.
1793 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
1795         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
1796         for dynamic images.
1798         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
1799         machine fields.
1801         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
1803         * reflection.c: Save pe_kind and machine values into the generated
1804         image file.
1806         * appdomain.c: Bump corlib version number.
1808         * object-internals.h: Reorganize layout of LocalBuilder.
1810         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
1811         New helper function.
1813         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
1814         created MonoType for dynamic types. Fixes #66180.
1816 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
1818         * threadpool.c: the ares hashtable needs a critical section around it.
1819         this prevents some nasty segfaults
1821 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
1823         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
1824         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
1825         bug 67324).
1826         
1827 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
1829         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
1830         
1831 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
1833         * image.c: Always canonicalize image file names, to avoid loading
1834         the same assembly twice when referenced using a relative path.
1836 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
1838         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
1840         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
1842         * marshal.c: Fix warnings.
1844 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
1846         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
1847         attempting to marshal the delegate_trampoline as the method_addr.
1848         This patch has a static hashtable of marshalled delegates so that 
1849         we can map delegate_trampoline addresses back to delegates.  This
1850         allows a delegate passed to managed code to be passed back into native
1851         code.  Fixes #67039
1853 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
1855         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
1857         * reflection.c (method_encode_code): Align method headers properly.
1858         Fixes #66025.
1860 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
1862         * marshal.c: In the runtime invoke wrapper, reset the abort
1863         exception if it is cached. This avoids the automatic rethrowal of 
1864         the exception after the catch of the wrapper. Also check for pending
1865         interruptions before calling the managed method. This is done using
1866         the new method emit_thread_force_interrupt_checkpoint, since the
1867         normal checkpoint method is ignored when running the invoke wrapper.
1868         * object.c: If the abort exception is rethrown, set the abort_exc
1869         field of the thread, so it will be rethrown aftere every catch.
1870         * threadpool.c: Only run an interruption checkpoint if what has been
1871         requested is a stop of the thread (aborts will be ignored).
1872         * threads.c: By default, a thread will now never be interrumped while
1873         running the runtime invoke wrapper (this ensures that runtime_invoke
1874         will always return to the caller if an exception pointer is provided).
1875         There is a new special method mono_thread_force_interruption_checkpoint()
1876         to force an interruption checkpoint even if running a protected
1877         wrapper, which is used by the same runtime invoke wrapper to do a check
1878         at a safe point.
1880 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
1882         * object.c, object-internals.h: Implemented mono_release_type_locks,
1883         which releases the cctor locks held by a thread.
1884         * threads.c, threads.h: In thread_cleanup, release cctor locks held
1885         by a thread. Added mono_thread_exit() method to be used to safely stop
1886         a thread.
1888 2004-09-28  Raja R Harinath  <rharinath@novell.com>
1890         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
1891         Move null check before dereference.  Avoid indexing beyond the end
1892         of the 'modules' array.
1894 2004-09-28  Raja R Harinath  <rharinath@novell.com>
1896         * metadata-internals.h (MonoImage): Add module_count field.
1897         * image.c (load_modules): Set image->module_count.
1898         (mono_image_load_file_for_image): Use image->module_count.
1899         * reflection.c (mono_image_load_module): Append to image->modules array 
1900         of dynamic assembly.
1901         (mono_module_get_object): Fix loop to actually increment index.
1902         Use image->module_count.
1903         * assembly.c (mono_assembly_load_references): Use image->module_count.
1904         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
1905         Likewise.
1907 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
1909         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
1910         Avoid assert on generic types.
1912 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
1914         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
1916         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
1918         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
1919         function to convert a MarshalSpec structure to its managed counterpart.
1921         * reflection.c: Fix warnings.
1922         
1923         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
1924         field.
1926         * icall.c (mono_create_icall_signature): Fix build.
1928 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
1930         * icall.c: Add MakePointType icall.
1932         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
1933         warnings.
1935 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1937         * threadpool.c: reuse allocated slots in the queue.
1939 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
1941         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
1943         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
1945         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
1946         previous change.
1948         * tabledefs.h: Add constants for pinvoke attributes BestFit and
1949         ThrowOnUnmappableChar.
1951         * icall.c (ves_icall_Type_GetPacking): New icall.
1953 2004-09-24  Martin Baulig  <martin@ximian.com>
1955         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
1957 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1959         * appdomain.c:
1960         (mono_domain_set): allow setting a domain that is being unloaded.
1961         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
1962         being unloaded.
1964 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
1966         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
1967         the GetCustomAttributes icall.
1969 2004-09-23  Martin Baulig  <martin@ximian.com>
1971         * object-internals.h (MonoReflectionGenericParam): Replaced
1972         'has_ctor_constraint', `has_reference_type' and `has_value_type'
1973         with `guint32 attrs'.
1975 2004-09-23  Martin Baulig  <martin@ximian.com>
1977         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
1979 2004-09-23  Martin Baulig  <martin@ximian.com>
1981         * object-internals.h (GenericParameterAttributes): New enum.
1983 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
1985         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
1986         
1987         * class.c (init_events): Fill out event->other field.
1989         * class.c: Fix warnings.
1991         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
1993 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
1995         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
1996         walk which doesn't supply the IL offset.
1998 2004-09-22  Martin Baulig  <martin@ximian.com>
2000         * reflection.c (mono_reflection_setup_internal_class): If we're
2001         System.ValueType, System.Object or System.Enum, set
2002         `klass->instance_size' and create the vtable.
2003         (mono_reflection_create_internal_class): If we're an enum type,
2004         get the base class from our current corlib.
2006 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
2008         * reflection.h (MonoResolveTokenError): New type.
2010         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
2011         icall.
2013         * icall.c: Add an 'error' argument to the ResolveToken icalls.
2015 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
2017         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
2018         Support also calling constructors, but only for already allocated objects.
2020 2004-09-17  Geoff Norton <gnorton@customerdna.com>
2022         * reflection.c (type_get_qualified_name): If the klass is null
2023         return the typename to avoid a NullRefEx.
2024         (encode_cattr_value): Get the qualified name of the boxed type,
2025         not the underlying enumtype.  Fixes #62984.
2027 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
2029         * marshal.c: Fix problems with previous checkin.
2031 2004-09-21    <vargaz@freemail.hu>
2033         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
2034         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
2036         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
2038 2004-09-21  Geoff Norton <gnorton@customerdna.com>
2040         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
2041         should only return a type for pointers, arrays, and passbyref types.
2042         Fixes bug #63841.
2044 2004-09-21  Martin Baulig  <martin@ximian.com>
2046         * domain.c (mono_debugger_check_runtime_version): New public
2047         function.
2049         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
2051 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
2053         * reflection.c: Added missing sort to the declarative security 
2054         attributes table. MS implementation stops seeing the attributes if the
2055         token number regress in the table (as shown by ildasm and permview).
2057 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
2059         * object-internals.h (MonoReflectionModule): Add 'token' field.
2060         
2061         * reflection.c (mono_reflection_get_token): Add support for Module
2062         and Assembly.
2063         (mono_module_get_object): Set 'token' field.
2064         (mono_module_file_get_object): Set 'token' field.
2066         * icall.c: Add new Assembly and Module icalls.
2068         * appdomain.c: Bump corlib version.
2070 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
2072         * loader.h loader.c class.h class.c: Add helper functions for obtaining
2073         tokens of metadata objects.
2075         * reflection.h reflection.c (mono_reflection_get_token): New function
2076         to obtain the token of a metadata object.
2078         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
2080 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
2082         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
2083         
2084         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
2086 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
2088         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
2089         * object-internals.h: Added 3 MonoArray* members to MonoReflection
2090         AssemblyBuilder to access the permissions set in the class lib.
2091         * reflection.c: Added security attributes encoding step in 
2092         mono_image_build_metadata.
2093         * tabledefs.h: Added new security actions defined in 2.0:
2094         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
2096 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
2098         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
2099         macro parameter.
2101 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
2103         * locales.c: nullify the ICU_collator member of CompareInfo when it is
2104           finalized. There where random SIGSEVs at program termination, when
2105           an object being finalized was trying to do a string comparison and
2106           the current culture was already finalized.
2108 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2110         * threads.c: call thread_cleanup before finishing the thread if we get
2111         there.
2113 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
2115         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
2116         assemblies from the parent. Fixes #65665.
2118 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
2120         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
2121         modifiers.
2123 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
2125         * reflection.h: add prototype for mono_get_dbnull_object
2126         * reflection.c: add prototypes for get_default_param_value_blobs 
2127         and mono_get_object_from_blob for fussier compilers
2129 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
2131         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
2132         false deadlock checks in class initialization.
2134 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
2136         * image.c (mono_image_addref): Fix comment.
2138         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
2139         possible.
2141 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
2143         * reflection.c (mono_param_get_objects): Modified to return
2144         ParameterInfo.DefaultValue object.
2146         (get_default_param_value_blobs):
2147         (mono_get_object_from_blob):
2148         (mono_get_dbnull_object): New helper routines. 
2150         * object.c (mono_get_constant_value_from_blob): New helper routine
2151         carved out from get_default_field_value ()
2153         * object-internals.h (mono_get_constant_value_from_blob): Added
2154         function declaration.
2156 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
2158         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
2159         referenced assemblies. Fixes #62135.
2161         * exception.h exception.c (mono_get_exception_file_not_found2): New
2162         helper function.
2164 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
2166         * class.h class.c: Add mono_type_get_underlying_type ().
2168 2004-09-09  Geoff Norton <gnorton@customerndna.com>
2170         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
2171         Fix GetTypes() to support dynamically created assemblies.
2173 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
2175         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
2176         
2177         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
2178         previous patch.
2180         * reflection.h reflection.c loader.c: Allow dynamic construction of
2181         pinvoke methods. Fixes #65571.
2182         
2183         * reflection.c (mono_reflection_get_type): Revert previous change since
2184         it causes regressions.
2186 2004-09-08  Martin Baulig  <martin@ximian.com>
2188         * class.c (class_compute_field_layout): Don't call
2189         mono_class_layout_fields() for open generic instances.
2191 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
2192         * threads.c appdomain.c: fix typo in GC macro
2194 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2196         * threads.c: don't call mono_thread_detach() in start_wrapper(),
2197         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
2199 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
2201         * image.c (mono_image_close): Applied patch from 
2202         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
2203         assembly is loaded multiple times from data.
2204         
2205         * image.c (mono_image_open): Fix warning.
2207 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
2209         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
2210         once. Fixes #58334.
2211         
2212         * reflection.c (mono_reflection_create_runtime_class): Initialize
2213         klass->nested_classes. Fixes #61224.
2215 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
2217         * threads.c: sched_yield() on exit, to allow threads to quit.
2219 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
2221         * object.c (mono_unhandled_exception): Remove leftover debug code.
2223 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
2225         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
2227 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
2229         * marshal.c (emit_marshal_array): Really null terminate string arrays.
2230         
2231         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
2233 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
2235         * marshal.c (emit_marshal_array): Null terminate string arrays.
2236         
2237         * marshal.c (raise_auto_layout_exception): Fix warning.
2239         * reflection.c (mono_param_get_objects): Initialize the default value
2240         with DBNull.Value, not null. Fixes #62123.
2242 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
2244         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
2245         throw an exception with a cute explanation.
2247 2004-09-06  Dick Porter  <dick@ximian.com>
2249         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
2250         Close the new process's thread handle, as we don't use it.  The
2251         handle stays around forever otherwise.
2253 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
2255         * object.c (arith_overflow): Fix warning.
2257         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
2258         calling conventions in method refs. Fixes #65352.
2260         * reflection.c: Fix warnings.
2262 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
2264         * icall.c: Add a new icall for Array.Clear
2266 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
2268         * object.c: When allocating an array, we have to throw
2269         an overflow exception if any of the lengths are < 0.
2271 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
2273         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
2274         properly. Also move implementation of string array marshalling to 
2275         managed code. Fixes #42316.
2277 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2279         * assembly.c: provide more information when loading an assembly fails.
2281 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2283         * filewatcher.c: don't expect the development fam package to be
2284         installed.
2286 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
2288         * marshal.c: Make a copy of the signature cookie since it will be
2289         freed by the caller.
2290         
2291         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
2293         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
2295         * metadata.c (mono_metadata_free_marshal_spec): New function to free
2296         marshal specs.
2298         * marshal.c: More refactoring.
2299         
2300         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
2301         smaller functions.
2303 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
2305         * object.c: In mono_message_invoke, fill the output parameter array after
2306           calling the managed method (it was done before the call). This fixes
2307           bug #59299.
2309 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
2311         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
2312         as well.
2314 2004-09-02  Martin Baulig  <martin@ximian.com>
2316         * class.c (mono_class_instance_size): Don't allow generic type
2317         definitions or open generic instances.
2318         (mono_class_array_element_size): If we're a value type, call
2319         mono_class_instance_size() on the original class.
2321         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
2322         handle generic instances.
2324         * mono-debug-debugger.c (write_type): Handle generic instances
2325         like classes.
2327 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
2329         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
2330         the allocation request fails. Fixes #65089.
2332         * object.c (mono_runtime_free_method): Do not call mono_free_method.
2333         
2334         * object.c (mono_runtime_free_method): New function to free a dynamic
2335         method.
2337         * marshal.c (mono_delegate_free_ftnptr): New function to free the
2338         delegate trampoline.
2340         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
2341         with hasthis as dynamic,
2343         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
2345         * domain.c (mono_jit_info_table_remove): New function to remove an
2346         entry from the jit info table.
2348         * class-internals.h (MonoMethod): Add 'dynamic' field.
2350         * loader.c: Fix warnings.
2352 2004-09-01  Martin Baulig  <martin@ximian.com>
2354         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
2355         instead of mono_debugger_lock() because the latter one is a no-op
2356         unless running in the debugger.
2358 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
2360         * class.c (class_compute_field_layout): Classes with auto-layout or
2361         reference fields are not blittable.
2362         
2363 2004-09-01  Dick Porter  <dick@ximian.com>
2365         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
2366         mono_image_get_filename() to get the assembly location.
2368         * icall.c:
2369         * metadata.h: Fix compile warnings
2371 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
2373         * class.c (class_compute_field_layout): System.Object is blittable.
2375         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
2376         as in/out. Fixes #59909.
2378 2004-09-01  Martin Baulig  <martin@ximian.com>
2380         * metadata.h (MONO_TYPE_ISREFERENCE): Call
2381         mono_metadata_generic_inst_is_valuetype() if we're a generic
2382         instance to check whether our underlying type is a reference type.
2384 2004-09-01  Martin Baulig  <martin@ximian.com>
2386         * metadata.c (mono_type_size): If we're a generic instance, call
2387         mono_class_value_size() for value types.
2389 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
2391         * marshal.c: Implement more custom marshalling functionality. Fixes
2392         #64915.
2394 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
2396         * mono-debug.c, debug-mono-symfile.c: add some locking love.
2398 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
2400         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
2402         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
2404         * icall.c: Fix some warnings.
2406         * threads.c (abort_appdomain_thread): Fix unref errors.
2407         (mono_thread_current): Fix THREAD_DEBUG define.
2409 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
2411         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
2413         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
2415 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
2417         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
2418         string arrays.
2420 2004-08-28  Martin Baulig  <martin@ximian.com>
2422         * metadata.c
2423         (mono_metadata_generic_inst_is_valuetype): New public function.
2425         * metadata.h (MONO_TYPE_ISSTRUCT): Call
2426         mono_metadata_generic_inst_is_valuetype() if we're a generic
2427         instance to check whether our underlying type is a valuetype.
2429 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
2431         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
2432         #63768.
2434 2004-08-25  Martin Baulig  <martin@ximian.com>
2436         * loader.c (mono_get_method_from_token): Abstract methods can also
2437         be generic and thus have type parameters.
2439         * metadata-internals.h
2440         (MonoDynamicImage): Added `GPtrArray *gen_params'.
2442         * reflection.c (mono_image_get_generic_param_info): Don't create a
2443         metadata row, just add an entry to the `gen_params' array.
2444         (build_compressed_metadata): Sort the `gen_params' array and then
2445         actually create the metadata.
2447 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2449         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
2451 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
2453         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
2455 2004-08-24  Martin Baulig  <martin@ximian.com>
2457         * class.cs (mono_class_is_subclass_of): Like an interface, a
2458         generic instance also derives from System.Object.
2460 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
2462         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
2463         custom modifiers to be in any order. Fixes #61990.
2465 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
2467         * object.c: Register mono_object_new_fast icall.
2468         
2469         * object.c (mono_class_get_allocation_ftn): Return to calling
2470         mono_object_new_fast, since it seems faster to compute the object 
2471         size in unmanaged code than passing it as a parameter.
2473         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
2475         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
2476         this function with Boehm as the oom handler, so we don't have to check
2477         the result of GC_malloc.
2479         * object.c: Remove checks for oom.
2481         * object.h object.c (mono_class_get_allocation_ftn): New function to
2482         return the icall which can be used to allocate an instance of a given
2483         class. 
2485         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
2487         * class-internals.h: Add 'enabled' field.
2489 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
2491         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
2493 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
2494         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
2495         value 0x0010.
2497 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
2499         * appdomain.c: use the Tls function for appdomain too,
2500         at Zoltan's request. Actually return in mono_context_get
2502         * appdomain.c, profiler.c, threads.c: use __thread
2504 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
2506         * appdomain.c threads.c: Call GC_CreateThread on windows.
2508         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
2509         multiple libraries since this don't work on windows.
2511 2004-08-18  Martin Baulig  <martin@ximian.com>
2513         * class-internals.h
2514         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
2515         MonoMethodHeader.
2517         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
2518         MonoMethodNormal since we also need it for abstract and interface
2519         methods.
2521         * reflection.c
2522         (build_compressed_metadata): Sort the GenericParam table.
2523         (mono_image_create_token): Added `gboolean create_methodspec'
2524         argument; this is false when generating a MethodImpl token.
2525         (reflection_methodbuilder_to_mono_method): Abstract and interface
2526         methods may also have generic parameters.
2528 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
2530         * appdomain.c: thread local alloc
2532 2004-08-17  Martin Baulig  <martin@ximian.com>
2534         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
2536         * icall.c
2537         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
2538         argument.
2540         * class.c (mono_type_get_full_name): New public function.
2541         (mono_type_get_name): Don't include the type arguments.
2543 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
2545         * Makefile.am: Build static versions of libmetadata and libmonoruntime
2546         for inclusion into the mono executable.
2548 2004-08-16  Martin Baulig  <martin@ximian.com>
2550         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
2551         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
2553 2004-08-14  Martin Baulig  <martin@ximian.com>
2555         * class.c (dup_type): Also copy the `byref' field.
2557 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
2559         * reflection.c (create_dynamic_mono_image): Revert the last change 
2560         since it breaks bootstrap.
2562 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
2564         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
2566         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
2567         not free them with g_free.
2569 2004-08-11  Martin Baulig  <martin@ximian.com>
2571         * reflection.c (mono_reflection_setup_internal_class): Also call
2572         mono_class_setup_mono_type() if we already have a `tb->type.type'.
2574 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
2576         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
2577         called during default (first) AppDomain creation. Keep track of
2578         Evidence when loading assemblies.
2580 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
2582         * opcodes.c, opcodes.h: reduce runtime relocations.
2584 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
2586         * culture-info.h, locales.c: fixes and chages to sue the new
2587         optimized format of the locale data.
2588         * culture-info-tables.h: regenerated.
2590 2004-08-06  Geoff Norton <gnorton@customerdna.com>
2591         
2592         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
2594 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
2596         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
2597         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
2598         * domain-internals.h: icall declaration.
2599         * icall.c: icall registration.
2600         * object-internals.h: New fields in MonoAssembly for CAS.
2602 2004-08-05  Duncan Mak  <duncan@ximian.com>
2604         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
2605         CEE_LDELEM_ANY.
2607 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
2609         * reflection.c: fix to deal with object[] arrays in custom ctors
2610         (bug #62550).
2612 2004-08-05  Martin Baulig  <martin@ximian.com>
2614         * class.c (mono_class_array_element_size): Added support for
2615         generic instances and correctly handle "recursive" types.
2617 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
2619         * assembly.c: Fix warnings.
2621 2004-08-04  Martin Baulig  <martin@ximian.com>
2623         * class.c
2624         (mono_type_get_name_recurse): Added `gboolean include_arity'
2625         argument specifying whether or not we should include the generic
2626         arity in the type name.
2627         (_mono_type_get_name): New static function.
2628         (mono_class_setup_vtable): If we're a generic instance, don't
2629         include the generic arity in the names of explicit method
2630         implementations.        
2632 2004-08-03  Martin Baulig  <martin@ximian.com>
2634         * class.c (mono_type_get_name_recurse): Enclose the generic type
2635         arguments in `<', '>'.
2637 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
2639         * gc.c: make GC warning messages use the trace API, they are just
2640         noise to most of the users.
2642 2004-08-03  Martin Baulig  <martin@ximian.com>
2644         * debug-mono-symfile.c (read_string): Correctly read the string.
2646 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
2648         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
2649         
2650         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
2651         icalls.
2652         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
2654 2004-07-30  Martin Baulig  <martin@ximian.com>
2656         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
2657         Reflect latest symbol writer changes.   
2659 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
2661         * object.c: always create an object if null is passed
2662         to Invoke() where a valuetype is expected.
2664 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
2666         * marshal.c (mono_marshal_init): make managed
2667         signatures match native ones better for 64bits.
2669 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2671         * appdomain.c: hack to build correctly the private bin path on windows.
2672         Fixes bug #61991.
2674 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
2676         * assembly.c: Load mscorlib from the correct framework directory
2677           (mono/<version>/mscorlib.dll).
2678         * appdomain.h: Added prototypes for new functions.
2679         * internals.h: Added some prototypes.
2680         * domain.c: When initializing the runtime, get from the executable and
2681           the configuration files the runtime version that the app supports.
2682           Added support methods for reading app.exe.config. Added list of versions
2683           supported by the JIT. Added two new methods: mono_init_from_assembly,
2684           which initializes the runtime and determines the required version from
2685           the provided exe file, and mono_init_version, which initializes
2686           the runtime using the provided version.
2687         * icall.c: Get machine.config from version-specific directory.
2688         * reflection.c: When generating an image, embed the version number
2689           of the current runtime.
2691 2004-07-28  Dick Porter  <dick@ximian.com>
2693         * socket-io.c
2694         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
2695         returned sockaddr size before creating the remote address object.
2696         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
2697         61608.
2699 2004-07-28  Dick Porter  <dick@ximian.com>
2701         * locales.c (string_invariant_compare_char): Fix invariant char
2702         compares between upper and lower cases.  Fixes bug 61458.
2704 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
2705         
2706         * marshal.c: actually cache stelem.ref wrappers.
2707         
2708 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
2710         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
2711         sections and remove the mono_cli_rva_map () function.
2713 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
2715         * debug-mono-symfile.c: fix one more endianess issue, from a patch
2716         by Geoff Norton (<gnorton@customerdna.com>).
2718 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
2720         * class.c: fix class loads for pointer types (typeof(int) !=
2721         typeof(int*)).
2723 2004-07-27  Martin Baulig  <martin@ximian.com>
2725         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
2726         reading the debugging information from an external ".mdb" file.
2728 2004-07-24  Martin Baulig  <martin@ximian.com>
2730         * reflection.c (mono_image_get_type_info): Only write a class
2731         layout entry if we actually have a size or a packing size.
2733 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
2735         * reflection.c (type_get_fully_qualified_name): 
2736         insert cast to get type checking of ?: with non-gcc compilers
2738 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
2740         * rand.c: use g_getenv for both lookups of
2741         MONO_EGD_SOCKET
2743 2004-07-17  Martin Baulig  <martin@ximian.com>
2745         * reflection.c (mono_reflection_bind_generic_method_parameters):
2746         Set `gmethod->reflection_info'.
2748 2004-07-17  Martin Baulig  <martin@ximian.com>
2750         * class.c (mono_class_create_from_typedef): Insert the newly
2751         created class into the hash table before computing the interfaces
2752         since we could be called recursively.
2754 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
2756         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
2757         function to implement stelem.ref in managed code
2758         * class-internals.h, debug-helpers.c: a new wrapper type
2759         for the above.
2761 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
2763         * gc.c: allow GC handles to work even when no GC is compiled in.
2764         Fix part of bug #61134 (GetAddrOfPinnedObject).
2766 2004-07-13  Peter Williams  <peter@newton.cx>
2768         * process.c (complete_path): Make sure we don't attempt to execute
2769         directories.
2771 2004-07-12  Geoff Norton <gnorton@customerdna.com>
2773         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
2774           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
2775           and will add/subtract the hour if needed
2777 2004-07-12  Martin Baulig  <martin@ximian.com>
2779         * reflection.c (mono_field_get_object): If we have
2780         `field->generic_info', take the attributes from
2781         `field->generic_info->generic_type'.    
2783 2004-07-12  Martin Baulig  <martin@ximian.com>
2785         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
2786         This function must be called before initializing the runtime.
2787         (mono_debug_init_1): New function; call this after initializing
2788         the runtime, but before loading the assembly.  It tells the
2789         debugger to load corlib and the builtin types.
2791         * mono-debug-debugger.c: Did some larger changes in the debugging
2792         code; support recursive class declarations, make sure we actually
2793         add all classes.
2795 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2797         * debug-helpers.c: undo my previous patch and fixed the real issue in
2798         ../mini/exceptions-x86.c
2800 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2802         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
2803         when no HOME env. variable was set and a NullRef was thrown in a .cctor
2804         called from other .cctors.
2806 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
2808         * loader.c: Removed the mono_loader_wine_init hack now that we are
2809         doing a managed version of Windows.Forms.
2811 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
2813         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
2814         threadpool.c, threads.c: remove static data from rootset.
2816 2004-07-09  Dick Porter  <dick@ximian.com>
2818         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
2819         Don't do any more processing if the matched length was 0.  It was
2820         increasing the size of the string before.  Fixes bug 61167.
2822 2004-07-09  Dick Porter  <dick@ximian.com>
2824         * socket-io.h:
2825         * socket-io.c
2826         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
2827         Add support for SO_PEERCRED if its available.
2829 2004-07-09  Peter Bartok <pbartok@novell.com>
2830         * loader.c: winelib.exe.so error message is now only displayed if
2831         MONO_DEBUG is set. To help us avoid questions when people are trying
2832         out the new Managed.Windows.Forms.
2834 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
2836         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
2837         for isinst and castclass wrappers.
2839         * class-internals.h icall.c: Move registration and lookup of JIT icalls
2840         to libmetadata from the JIT, so they could be used by the marshalling
2841         code and the interpreter.
2843         * marshal.c: Register marshalling related JIT icalls here instead of
2844         in mini.c. Use CEE_MONO_ICALL instead of the family of 
2845         CEE_MONO_PROC<x> opcodes to call marshalling functions.
2847         * metadata.h: Remove unneeded marshalling conversions.
2849         * opcodes.c: Update for new opcodes.
2850         
2851 2004-07-08  Martin Baulig  <martin@ximian.com>
2853         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
2854         (mono_debug_get_domain_data): Make this function static.
2856 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
2858         * gc.c, object.h: add nice GC handle API for embedders.
2860 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
2862         * reflection.c: more changes for the new api
2864         * object.c: When we reflect on a field w/ a constant value, it
2865         will not have a memory location, so we must access metadata. Also,
2866         allow easier reading of strings so that we can read them from
2867         the constant data.
2869         * class.c (mono_class_layout_fields): no need for literal fields here.
2871         * class-internals.h: api changes for const fields
2873         * icall.c (ves_icall_get_enum_info): use new apis for const fields
2875 2004-07-06  Martin Baulig  <martin@ximian.com>
2877         * mono-debug.h: Increment version number to 44.
2879         * mono-debug.c (mono_debug_add_wrapper): The second argument is
2880         now a gpointer, rewrote this whole method.
2882         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
2883         function.  Add information about the wrapper in a new "misc table".
2885         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
2886         for the new misc table.
2888 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
2890         * metadata-internals.h image.c: Add a cache for helper signatures.
2892         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
2894 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
2896         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
2897         delegates from a delegate. Fixes #61033.
2898         
2899         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
2900         marshalling of stringbuilder arrays. Fixes #59900.
2902 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
2904         * icall.c: Add EnumBuilder:setup_enum_type icall.
2906 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
2908         * icall.c: Added a new icall for the property version of
2909         OffsetOfStringData.
2911 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
2913         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
2914         it has a constant size across platforms.
2916         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
2917         stack trace.
2919 2004-06-29  Martin Baulig  <martin@ximian.com>
2921         * mono-debug.c (mono_debug_add_method): Protect the whole function
2922         in mono_debugger_lock(), not just parts of it.
2924 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
2926         * reflection.c: make sure padding bytes in heaps are zeroed.
2928 2004-06-24  David Waite  <mass@akuma.org>
2930         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
2931         image.c, loader.c, locales.c, marshal.c, metadata.c,
2932         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
2933         string-icalls.c, threads.c: change to C90-style comments from C99 /
2934         C++ -style
2936 2004-06-24  Dick Porter  <dick@ximian.com>
2938         * threads.c
2939         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
2940         return createdNew.  Fixes bug 60412.
2942         * threads-types.h: 
2943         * icall.c: Add createdNew parameter to CreateMutex icall
2945 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
2947         * reflection.c, object-internals.h: save default value in params.
2949 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2951         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
2952         no need to build a new path combining that with the application base.
2953         Fixes bug #60442.
2955 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
2957         * reflection.c: fixed minor standard compliance issues.
2959 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
2961         * reflection.c: fixed issue with encoding some custom attributes
2962         (arrays in properties and fields, bug #60411).
2964 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2966         * reflection.c: fix start address when copying the public key token.
2968 2004-06-23  Martin Baulig  <martin@ximian.com>
2970         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
2971         the `exc' object in a static object to put it into the GC's root set.
2973 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
2975         * reflection.c: make mono_reflection_setup_internal_class ()
2976         callable a second time to setup a new parent class.
2978 2004-06-23  Dick Porter  <dick@ximian.com>
2980         * threads.c: Check for WAIT_IO_COMPLETION return values.
2982 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
2984         * appdomain.c: Removed the g_free on the public key token. Now copy 
2985         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
2986         * assembly.c: Added public key token string value when loading 
2987         assemblies. Fix bug #60439.
2988         * icall.c: Added missing informations (like public key) in 
2989         GetReferencedAssemblies. Fix #60519.
2990         * image.h: Changed definition for public key token from const char*
2991         public_tok_value to guchar public_key_token [17];
2992         * reflection.c: Updated for changes to public key token.
2994 2004-06-22  Lluis Sanchez Gual
2996         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
2997         for the field in base classes.
2999 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
3001         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
3002         mark headers as not supported, they are installed only for use by the
3003         debugger.
3005 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
3007         * *.c, *.h: avoid namespace pollution in public headers.
3009 2004-06-21  Martin Baulig  <martin@ximian.com>
3011         * exception.c (mono_get_exception_security): It's in
3012         "System.Security", not in "System".
3014         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
3015         the exception classes.
3017 2004-06-21  Martin Baulig  <martin@ximian.com>
3019         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
3020         Protect the exception object from being finalized.
3022 2004-06-21  Martin Baulig  <martin@ximian.com>
3024         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
3025         public function.
3027 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
3029         * reflection.c: Load the assembly in mono_reflection_type_from_name,
3030         if it was not loaded before. Fix parts of #60439.
3032 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
3034         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
3035         code that was broken since Ben's change: wrappers are now
3036         dependent on the method signature only again.
3038 2004-06-21  Martin Baulig  <martin@ximian.com>
3040         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
3041         added interface support.
3043 2004-06-21  Martin Baulig  <martin@ximian.com>
3045         * class.c (mono_vtable_get_static_field_data): New public method.
3047 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
3049         * filewatcher.c : Windows build fix to be compliant with API changes.
3051 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
3053         * class.h, class.c: more accessors.
3054         * metadata.h, metadata.c: prepare for hiding MonoType and
3055         MonoMethodSignature: people should use the accessors from now on
3056         outside of the tree.
3058 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
3060         * *.c, *.h: more API cleanups.
3062 2004-06-18  Jackson Harper  <jackson@ximian.com>
3064         * assembly.c: Trace loading assemblies.
3065         * loader.c: Trace loading native libraries.
3066         * mono-config.c: Trace loading config files.
3067         
3068 2004-06-18  Dick Porter  <dick@ximian.com>
3070         * locales.c: Tell ICU the lengths of strings, it can cope with
3071         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
3073 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
3075         * image.c: swapped name/filename;
3077 2004-06-18  Martin Baulig  <martin@ximian.com>
3079         * mono-debug-debugger.c (write_class): Write the parent class at
3080         the end of the header.
3082 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
3084         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
3086 2004-06-17  Raja R Harinath  <rharinath@novell.com>
3088         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
3089         (bundle_obj): New conditional define.
3090         (BUILT_SOURCES): Remove.
3091         ($(bundle_srcs)): Make parallel-make safe.
3092         (libmonoruntime_la_LIBADD): Make unconditional.
3093         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
3094         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
3096 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
3098         * culture-info-tables.h: It was inconsistent with the latest
3099           supp info files.
3101 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
3103         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
3104         be loaded.
3106         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
3107         with gcc 2.95.
3109 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
3111         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
3112         cleaned up public header threads.h.
3114 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
3116         * Makefile.am, *.c, *.h: more API cleanups.
3118 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
3120         * Makefile.am: removed monosn from compilation.
3121         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
3122         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
3123         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
3124         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
3125         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
3126         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
3128 2004-06-15  Jackson Harper  <jackson@ximian.com>
3130         * assembly.c: Make locales lower case when searching the GAC for
3131         assemblies. gacutil will always make locales lowercase when
3132         installing so this effectively makes them case insensitive.
3133         
3134 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
3136         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
3137         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
3138           parameter which allows to choose whether the wait can be interrupted or 
3139           not. Also added the method mono_monitor_enter(), which locks the monitor
3140           using an infinite wait and without allowing interruption.
3141           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
3142           interrupted.
3143         * object.h: Added new fields in MonoThread. suspend_event holds the event
3144           used to susped/resume the thread. synch_lock is the lock object to use for
3145           modifying the thread state.
3146         * threads.c: Use the new synch_lock object for locking, instead of "this",
3147           which can generate deadlocks.
3148           Moved thread state change in Thread.Sleep and Thread.Join from managed
3149           to unmanaged code. This avoids a deadlock when the thread was suspended
3150           just after acquiring the thread lock.
3151           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
3152           Implemented Thread.Suspend using an event instead of ThreadSuspend,
3153           which is not fully implemented in the io-layer.
3154         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
3156 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
3158         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
3159         threads-types.h: more API cleanups.
3161 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
3163         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
3164         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
3165         threadpool.c, threads.c: first pass at the exported API cleanup.
3167 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
3169         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
3171 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3173         * icall.c: added internalGetHome.
3175 2004-06-14  Dick Porter  <dick@ximian.com>
3177         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
3178         possible to return successfully when '.' or '..' were the only
3179         entries in a directory, but were skipped.  The MonoIOStat was not
3180         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
3181         Fixes bug 59574.
3183 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
3185         * reflection.c: make binaries run on .Net 1.1 by default.
3187 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
3189         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
3191 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
3193         * marshal.c: keep track of struct size with explicit layout
3194         (bug #59979).
3196 2004-06-12  Martin Baulig  <martin@ximian.com>
3198         * mono-debug-debugger.c: Comment out a debugging g_message().
3200 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
3202         * reflection.c, reflection.h: do not free custom attrs that are cached.
3203         * icall.c: use braces to make code clearer.
3205 2004-06-11  Martin Baulig  <martin@ximian.com>
3207         * class.h (MonoInflatedField): New type.
3208         (MonoClassField): Replaced `MonoType *generic_type' with
3209         `MonoInflatedField *generic_info'.
3211         * icall.c
3212         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
3214 2004-06-11  Martin Baulig  <martin@ximian.com>
3216         * reflection.c (mono_image_create_method_token): Correctly encode
3217         varargs methods.
3219 2004-06-11  Martin Baulig  <martin@ximian.com>
3221         * metadata.c (mono_metadata_parse_method_signature): When parsing
3222         a MethodDef which has VarArgs, also set sentinelpos if we don't
3223         have any parameters.
3225 2004-06-11  Martin Baulig  <martin@ximian.com>
3227         * verify.c (mono_method_verify): In CEE_CALL, use
3228         mono_method_get_signature() to get the method's signature, unless
3229         we're a PInvoke method.
3231 2004-06-10  Jackson Harper  <jackson@ximian.com>
3233         * assembly.c: Use <path>/lib/mono/gac for the extra paths
3234         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
3235         logical name as the supplied path is just a prefix to the gac not
3236         the direct path to it.
3237         
3238 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
3240         * reflection.c: make the token for a created method match
3241         the token of the MethodBuilder it was created from
3242         (IKVM requires this behaviour now).
3244 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
3246         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
3247         reflection.c, socket-io.c: leak fixes.
3249 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
3251         * icall.c: handle sentinel pos in vararg methods in position different
3252         from 0.
3254 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3256         * culture-info-tables.h: freshly generated.
3258 2004-06-09  Martin Baulig  <martin@ximian.com>
3260         * loader.c (mono_get_method_constrained): Call `mono_class_init
3261         (constrained_class)'.   
3263 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
3265         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
3266         any methods. Fixes #59629.
3268 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
3270         * culture-info-tables.h: reflecting locale-builder updates.
3272 2004-06-08  Dick Porter  <dick@ximian.com>
3274         * object.h:
3275         * locales.c: Fixed compile warnings, including a real bug in
3276         CompareInfo_internal_compare.
3277         
3278 2004-06-08  Dick Porter  <dick@ximian.com>
3280         * locales.c
3281         (ves_icall_System_Globalization_CompareInfo_internal_index):
3282         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
3283         Double-check the resuls of usearches, because ICU currently
3284         ignores most of the collator settings here.  Fixes bug 59720.
3285         
3286 2004-06-08  Dick Porter  <dick@ximian.com>
3288         * locales.c
3289         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
3290         Fix memory leak and segfault-causing typo.  No idea how this one
3291         lasted so long without being noticed.
3293 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
3295         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
3296         any methods. Fixes #59629.
3298 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3300         * assembly.c:
3301         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
3302         own the critical section before). Removed dead code (that's done
3303         in the preload hook).
3305         (mono_assembly_load_with_partial_name): call the preload hook.
3307 2004-06-08  Martin Baulig  <martin@ximian.com>
3309         * metadata.c (mono_metadata_signature_alloc): Default
3310         `sentinelpos' to -1.
3312         * reflection.c (mono_image_get_array_token): Likewise.
3314 2004-06-08  Martin Baulig  <martin@ximian.com>
3316         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
3318         * metadata.c (mono_metadata_parse_method_signature): When parsing
3319         a MethodDef which has VarArgs, set sentinelpos.
3321         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
3322         `gint16' since we're using -1 for non-varargs methods.
3324         * reflection.c
3325         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
3326         (method_encode_signature): Added varargs support.
3327         (method_builder_encode_signature): Likewise.
3328         (mono_image_get_varargs_method_token): New static method.
3329         (mono_image_create_method_token): New public method; this is
3330         called via an icall instead of mono_image_create_token() when
3331         calling a varargs method.       
3333 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
3335         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
3337 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
3339         * culture-info-tables.h : Reflecting the latest locale-builder that
3340           fixed empty array representation ({} to {0}).
3342 2004-06-07  Jackson Harper  <jackson@ximian.com>
3344         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
3345         looking up extra gac paths. This allows MONO_GAC_PATH to act
3346         exactly like a prefix.
3347         
3348 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
3350         * reflection.c (mono_reflection_type_from_name): Make a copy of the
3351         type name before modifying it. Fixes #59405.
3353 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
3355         * culture-info.h: added fields for "all datetime patterns".
3356         * locales.c: (  ves_icall_System_Globalization_CultureInfo
3357           _construct_datetime_format ()): fill xxx_patterns fields.
3358         * object.h: added fields for "all datetime patterns" to
3359           MonoDateTimeFormatInfo.
3360         * culture-info-tables.h: reflecting locale-builder updates.
3362 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
3364         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
3365         the event has no add and remove methods. Fixes #59629.
3367 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
3369         * object.c: Fixed possible integer overflow when allocating large
3370         strings.
3372 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
3374         * culture-info-tables.h: reflecting locale-builder updates.
3376 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
3378         * culture-info-tables.h: reflecting locale-builder updates.
3380 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
3382         * culture-info-tables.h: reflecting locale-builder updates.
3384 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
3386         * threads.c: Made Thread.Sleep abortable.
3388 2004-06-02  Martin Baulig  <martin@ximian.com>
3390         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
3392         * debug-mono-symfile.h: Bumped symbol file version number to 37.
3394 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
3396         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
3398 2004-05-30  Jackson Harper  <jackson@ximian.com>
3400         * reflection.c: Do not hardcode assembly versions or public key
3401         tokens anymore. All of this except the corlib section was dead
3402         code anyways.
3403         
3404 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
3406         * object.c (mono_runtime_invoke_array): Automatically create boxed
3407         objects for byref valuetypes if needed. Fixes #59300.
3408         
3409         * object.c (mono_method_return_message_restore): Handle 
3410         MONO_TYPE_OBJECT as well.
3412 2004-05-28  Jackson Harper  <jackson@ximian.com>
3414         * reflection.c: The modified type encoding was causing build
3415         problems. Reverted for now.
3416         
3417 2004-05-28  Jackson Harper  <jackson@ximian.com>
3419         * reflection.c/h: Take an assembly ref so that we dont create
3420         fully qualified names when encoding types in the same assembly as
3421         the custom attribute being emitted.
3422         * appdomain.c: Increment version number.
3423         
3424 2004-05-26  Duncan Mak  <duncan@ximian.com>
3426         * icall.c
3427         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
3428         Set the full version number (major, minor, build, revision).
3430 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
3432         * marshal.c (emit_struct_conv): increment src/dst after blit
3433         (mono_marshal_get_managed_wrapper,
3434         mono_marshal_get_native_wrapper): make sure we have marshalling
3435         info before marshalling params (info computation affects
3436         blittable)
3438         * class.c (class_compute_field_layout): correctly deal with
3439         blittable
3440         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
3441         value types (as per what windows dows by default)
3442         (mono_class_setup_mono_type): System.ValueType is blittable
3443         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
3444         blittable
3446         * marshal.c (mono_marshal_load_type_info): flag types  as
3447         non-blittable if the native layout doesn't match the managed
3448         layout
3450 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3452         * appdomain.c: don't add stuff in the private search path that is
3453         above the application base. If application base is not set, there's
3454         no private search path.
3456 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
3458         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
3459         byref struct arguments in native->managed marshalling.
3461 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
3463         * marshal.c (mono_marshal_get_runtime_invoke): correctly
3464         cache methods using signature (special case for methods
3465         that are value type or string class)
3466         
3467         * image.c (mono_image_close): clean up allocated GSList's
3468         in runtime_invoke_cache.
3470 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3472         * mono-config.c: set the correct path for mono_cfg_dir on windows when
3473         there's no MONO_CFG_DIR environment variable defined.
3475 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3477         * threads.c: windows version must be >= 0x0500 to include OpenThread.
3479 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
3481         * threadpool.c: Really wait for 500ms after the async call, even if the wait
3482           is interrumped.
3483         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
3484           before waiting for it, and call CloseHandle after the wait to unref it.
3485           This will make sure that handles are not disposed too early.
3487 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3489         * appdomain.c:
3490         * appdomain.h:
3491         * icall.c: removed
3492         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
3493         needed now.
3495         * object.c: se the application_base only for the domain that runs
3496         Main. Fixes bug #59216,
3498 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3500         * appdomain.c:
3501         * object.c: only the domain in which Main is run have
3502         SetupInformation.ConfigurationFile set, so moved a few lines from
3503         appdomain.c to object.c.
3505 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3507         * appdomain.c: we tried to load [name].(dll|exe), but according
3508         to bug #57710, we must also try [culture]/[name].(dll|exe) and
3509         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
3510         There's a test case attached to bug #58922.
3512 2004-05-27  Dick Porter  <dick@ximian.com>
3514         * icall.c:
3515         * file-io.c: Implemented icalls for locking and unlocking regions
3516         in a file.
3517         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
3518         FALSE on error (fixes both compiler warning and real bug.)
3520 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
3522         * culture-info-tables.h: reflecting locale-builder updates.
3524           (Added missing ChangeLog entry for 05/26)
3526 2004-05-27  Jackson Harper  <jackson@ximian.com>
3528         * locales.c: Fix some cut and paste errors.
3529         
3530 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3532         * mono-config.c: set the correct path for config. directory on windows.
3534 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
3536         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
3537           on win32.
3539 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
3541         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
3542         from pinvoke functions.
3543         
3544         * marshal.c (mono_ftnptr_to_delegate): Implement this.
3546 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
3548         * culture-info-tables.h: reflecting locale-builder updates.
3550 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
3552         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
3553         #59086.
3555 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
3557         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
3558         * icall.c: Modified icalls for RNG.
3559         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
3560         Windows (CryptoAPI).
3562 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
3564         * locales.c: Fix build.
3566 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
3568         * culture-info-tables.h: reflecting locale-builder updates.
3570 2004-05-25  Jackson Harper  <jackson@ximian.com>
3572         * locales.c: When creating the current culture use the $LANGs
3573         specific culture. So DateTimeFormat and NumberFormat entries are created.
3574         
3575 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
3577         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
3578         a char array as parameter.
3580 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
3582         * image.c: In mono_image_open(), always use an absolute path name to
3583           look for already loaded images.
3585 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
3587         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
3588         missing in the windows build (like older cygwin include files).
3590 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
3592         * icall.c: Fixed check for possible integer overflow in Buffer_
3593         BlockCopy icall. Replaced comments style // by /* */.
3595 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
3597         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
3598         
3599         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
3600         check after MONO_VTADDR. Fixes pinvoke2.exe.
3602         * marshal.h marshal.c metadata.h: Add beginnings of support for
3603         ftnptr -> delegate marshalling.
3605 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
3607         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
3608         * threads.c: Fix warnings.
3610 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
3612         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
3613         * icall.c: Registered icalls for Suspend and Resume.
3614         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
3615           Thread.Abort.
3616         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
3617         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
3618         * process.c: Use WaitForSingleObjectEx.
3619         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
3620           checkpoints.
3621         * threads.c, threads.h: Make use of new Ex wait methods. Improved
3622           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
3623           for Suspend and Resume. Added new mono_thread_stop, used for stoping
3624           background threads. Added basic support for Abort in Windows.
3625           Start new threads using a managed delegate invoke wrapper. This wrapper
3626           has an interruption checkpoint that is needed since an interruption
3627           can be requested before the thread leaves the unmanaged code that starts 
3628           the thread.
3629         * marshal.c: Added interruption checkpoint after every native call, and
3630           also before managed calls for wrappers called from unmanaged code to
3631           go into managed code.
3632         * object.h: Added new field in MonoThread to keep track of interruption
3633           requests.
3635 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
3637         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
3638         calls.
3640 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3642         * appdomain.c:
3643         * assembly.c:
3644         * gc.c:
3645         * locales.c:
3646         * mono-config.c:
3647         * rand.c: getenv -> g_getenv (windows!)
3649         * process.c: complete_path is also used on non-windows platforms.
3651 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3653         * icall.c: new signature for Process_Start.
3655         * process.[ch]: new signature for Process_Start. If we're on windows
3656         and UseShellExecute is false, we have to search for the program by
3657         ourselves if we don't get a full path.
3659 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
3661         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
3662         marshalling and call CleanUpNativeData if needed. Fixes #58646.
3664 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3666         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
3667         Fixes bug #58373.
3669 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3671         * process.c: use double quotes to quote program name and arguments on
3672         windows. Fixes bug #58575.
3674 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3676         * file-io.c: don't return "." and ".." when using windows Find*File.
3678 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
3680         * marshal.c: Don't pass wrappers to message init because method 
3681         addressed used to lookup metadata. part of remoting[2|3] fix.
3683 2004-05-15  Jackson Harper  <jackson@ximian.com>
3685         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
3686         path is essentially the same as MONO_PATH except that it points to
3687         GACs instead of lib directories.
3688         * loader.h: The user gac is gone so we dont need function to
3689         enable/disable it.
3690         * mono-config.c: user gac option is now gone.
3691         
3692 2004-05-15  Jackson Harper  <jackson@ximian.com>
3694         * culture-info.h: Make defines more consistent, add calendar data
3695         to the culture info table.
3696         * culture-info-tables.h: Add basic calendar data. Basically
3697         everyone gets default gregorian until all the data is
3698         updated.
3699         * locales.c: Use the new consistent defines. Set calendar data for
3700         culture info objects.
3701         * object.h: add a field for calendar data to CultureInfo
3702         
3703 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
3705         * image.c: image->runtime_invoke_cache is keyed on signatures now.
3706         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
3707         a signature.
3708         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
3709         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
3710         an extra param that is the pointer of the method to invoke. The IL for
3711         the invoke method is no longer specific to the method, but to the
3712         signature of the method. Thus, we can share the same code for multiple
3713         methods. This reduces the number of methods that have to be compiled.
3715 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
3717         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
3719         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3721         * icall.c: Optimize Buffer.BlockCopy.
3723 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3725         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
3726         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
3727         quote). Changed them to "MMMM yyyy".
3729 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
3731         * rand.c
3732         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
3734 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
3736         * reflection.h: Updated after changes to managed structures.
3738         * appdomain.c: Bump corlib version.
3740 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3742         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
3743         windows.
3745 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3747         * Makefile.am: link to ../os/libmonoos.la on windows.
3749         * assembly.c:
3750                 -If MONO_DEBUG, warn about non-existing directories in
3751                 MONO_PATH.
3752                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
3753                 compile time variable.
3754                 -Removed init_default_path and call mono_set_rootdir from
3755                 libmonoos.a instead (windows only).
3757         * assembly.h: declare mono_assembly_getrootdir().
3759         * domain.c:
3760         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
3762         * loader.c: s/getenv/g_getenv/
3764 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
3766         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
3768         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
3770         * metadata.h: Add new marshalling conversions.
3772         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
3773         function.
3775         * reflection.c (mono_reflection_get_type): Lookup the type in all
3776         modules of a multi-module assembly. Fixes #58291.
3778 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
3780         * threads.c: Before aborting a background, set the StopRequested
3781         state.  This avoids throwing the Abort exception.
3782         In mono_thread_manage, don't continue with the shutdown until all
3783         aborted threads have actually stopped.
3785 2004-05-10  Jackson Harper  <jackson@ximian.com>
3787         * locales.c: Remove the modifier from culture names.
3788         
3789 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3791         * Makefile.am: monosn is not installed any more. It has been deprecated
3792         in favor of sn.
3794 2004-05-07  Jackson Harper  <jackson@ximian.com>
3796         * locales.c
3797         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
3798         Fix array construction, add bailout if the length is 0.
3800 2004-05-07  Dick Porter  <dick@ximian.com>
3802         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
3803         machine doesn't have a DNS entry.  Patch by Urs Muff
3804         (umuff@quark.com), fixes bug 57928.
3806 2004-05-06  Jackson Harper  <jackson@ximian.com>
3808         * reflection.c: Handle null PublicTokens properly. alloc mem for
3809         assembly names culture so we dont crash when freeing it.
3810         
3811 2004-05-06  Jackson Harper  <jackson@ximian.com>
3813         * assembly.c: Check the usergac when loading with partial names.
3814         
3815 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
3817         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
3818         does nothing for now (not required for Linux/Windows) but the class
3819         library can call it (and a newer or modified runtime could need it).
3820         * icall.c: Registred icall.
3822 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3824         * loader.c: prints a message on module loading error we set MONO_DEBUG
3825         environment variable.
3827 2004-05-05  Jackson Harper  <jackson@ximian.com>
3829         * appdomain.c: Handle PublicKeyToken=null properly.
3830         
3831 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
3833         * environment.c|h: Added icall ves_icall_System_Environment_
3834         GetOSVersionString to get the current OS version as a string.
3835         * icall.c: Registred icall.
3837 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
3839         * object.c: in mono_object_get_virtual_method(), take into account that
3840         non-virtual methods don't have a slot in the vtable. Check needed when
3841         the object is a proxy.
3843 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
3845         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
3846         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
3848         * object.c (mono_class_compute_gc_descriptor): Fix warning.
3850         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
3851         passed when a valuetype is expected.
3853         * object.c (mono_unhandled_exception): Only set the exit code if the
3854         exception happens in the main thread. Fixes thread5.exe.
3856         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
3857         invalid names. Fixes #58047.
3859 2004-05-03  Jackson Harper  <jackson@ximian.com>
3861         * assembly.c: This line was committed accidently and is unneeded.
3862         
3863 2004-05-03  Jackson Harper  <jackson@ximian.com>
3865         * icall.c: Add new icall for Assembly::LoadWithPartialName
3866         * assembly.c/.h: new function that probes the GAC to load partial
3867         assembly names by Paolo Molaro.
3868         
3869 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3871         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
3872         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
3873         (type_get_fully_qualified_name): Added PublicKeyToken when building a
3874         full type name.
3876 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3878         * appdomain.c: fixed check for 'neutral' culture and removed warning.
3879         * reflection.c: fix bug when parsing a full type name and Version is not
3880         the last thing in the string.
3882 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
3884         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
3885         crashes when it is freed.
3887 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3889         * assembly.c: print the compat warning to stderr.
3891 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
3893         * assembly.c (mono_assembly_load_references): Add a compatibility
3894         hack to run old applications that might be still referencing the
3895         3300-based assemblies, only do this for System.xxx.
3897 2004-05-01  Jackson Harper  <jackson@ximian.com>
3899         * appdomain.c: If the culture is neutral we set it to "".
3900         
3901 2004-04-29  Jackson Harper  <jackson@ximian.com>
3903         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
3905 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3907         * string-icalls.c: added low overhead function for copying chars
3908         * icall.c: added needed icall for the above function
3910 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3912         * icall.c: fix return value of get_global_assembly_cache.  Implemented
3913         Environment.GetLogicalDrives.
3915 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
3917         * rand.c: try and talk to egd or prngd
3918         for random bytes if opening devices fail.
3920 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
3922         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
3923         alignment for the type using the native alignment of its members 
3924         instead of using klass->min_align.
3926         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
3928 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3930         * file-io.c:
3931         * socket-io.c: added check for sys/aio.h.
3933 2004-04-28  Dick Porter  <dick@ximian.com>
3935         * threads.c: Don't abort a thread thats already aborting, when
3936         terminating everything.
3938 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3940         * icall.c: added 2 new async calls for Socket.
3942         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
3943         IO on *nix systems.
3945         * threadpool.c: removed unused variable.
3947 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
3949         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
3951 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
3953         * locales.c: put back string_invariant_tolower () and
3954         string_invariant_toupper ().
3956 2004-04-26 David Waite <mass@akuma.org>
3958         * file-io.h:
3959         * socket-io.h:
3960         * threads.h:
3961         * unicode.h: remove comma from end of enumeration declarations
3963 2004-04-26 David Waite <mass@akuma.org>
3965         * debug-mono-symfile.h:
3966         * decimal.c:
3967         * mono_debug.h:
3968         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
3971 2004-04-26  Jackson Harper  <jackson@ximian.com>
3973         * appdomain.c: Increment version number.
3974         
3975 2004-04-26  Jackson Harper  <jackson@ximian.com>
3977         * appdomain.c: Set assembly references public token value when
3978         PublicKeyToken is specified, not the hash_value. Free public token
3979         values when free assembly name data. Previously the public key
3980         token was hex decoded, however we are using hex encoded public key
3981         tokens, so this is not neccasary.
3982         * assembly.c: Lookup assemblies in the gac if their public token
3983         value is set. Add function to allow enabling user gac
3984         lookups. Specify whether or not the assembly was loaded from the
3985         GAC. Compare full assembly names when checking the cache for
3986         assemblies (Temporarily disabled see comment in code). Remove
3987         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
3988         specifies trace-loader they get extra info to stdout on the
3989         loading of assemblies.
3990         * image.h: Add a field for an assembly references public token
3991         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
3992         whether an assembly has been loaded from the GAC.
3993         * image.c: Remove a corlib -> mscorlib name mapping.
3994         * loader.h: Add function to enable/disable the user gac.
3995         * mono-config.c: Check if the usergac is enabled in the config
3996         file.
3997         * icall.c: New icall to determine whether or not an assembly has
3998         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
3999         * tabldefs.h: Add constant for assemblyref flag that specifies a
4000         full public key is used instead of a public token.
4001         * reflection.c: Remove mscorlib -> corlib mappings. Set
4002         PublicTokenValue instead of hash value. This value is a hex
4003         string so it does not need to be expanded.
4005 2004-04-26  Martin Baulig  <martin@ximian.com>
4007         * mono-debug-debugger.c (mono_debugger_initialize): Set
4008         `mono_debugger_initialized' before calling mono_debug_lock().
4010 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
4012         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
4013           InternalToUpper/InternalToLower.
4014         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
4015           removed invariant culture shortcut.  This is now done in managed code.
4016         * locales.c: (string_invariant_toupper/tolower) removed.
4018 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4020         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
4021         Added Poll internal call.
4023         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
4024         call for Poll. Select was too heavy for polling a single socket.
4026         * threadpool.[ch]: added mono_threadpool_cleanup.
4027         * threads.c: use it. Don't use Thread_Abort on windows.
4029 2004-04-23  Martin Baulig  <martin@ximian.com>
4031         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
4033 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
4035         * icall.c: Registred new icalls for key pair protection and added an
4036         icall for Environment.GetFolderPath on Windows.
4037         * security.c|h: Added new icalls for key pair protection.
4039 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4041         * socket-io.c: don't display the non-supported family warning for known
4042         families. Now this is not displayed on windows when checking support
4043         for IPv4/IPv6.
4045 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4047         * class.c: don't display the layout warning for static fields.
4049 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
4051         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
4052         * locales.c, locales.h: Added new icalls for culture-specific
4053         Char.ToLower and Char.ToUpper.
4055 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4057         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
4058         by David Waite.
4060 2004-04-20  Martin Baulig  <martin@ximian.com>
4062         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
4063         of the type name before passing it to mono_reflection_type_from_name().
4065 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
4067         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
4068         encodings here. Fixes #56965.
4070 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
4072         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
4073         fix test on strstr result not that I can see anything that
4074         relies on the result.
4076 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
4078         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
4079         Fixes #57081.
4081         * marshal.c (mono_marshal_get_string_encoding): New helper function.
4083         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
4084         function to determine which marshalling to use for strings. Fixes
4085         #56965.
4087         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
4089         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
4091 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
4093         * icall.c: #include mono-config.h
4095 2004-04-15  Jackson Harper  <jackson@ximian.com>
4097         * culture-info-tables.h: Fix date formats for en-US culture.
4098         
4099 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
4101         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
4102         ThreadPool.SetMinThreads.
4103         * threadpool.c: Implemented ThreadPool.GetMinThreads and
4104         ThreadPool.SetMinThreads.
4106 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
4108         * mono-config.c: also load the .config file in the directory
4109         where the assembly was found.
4111 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
4113         * assembly.c: load per-assembly config files.
4114         * icall.c: decrapified code to get the config dir and moved to
4115         mono-config.c.
4116         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
4117         per-assembly config files. When doing a dll map lookup give precedence
4118         to the per-assembly data.
4120 2004-04-14  Martin Baulig  <martin@ximian.com>
4122         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
4123         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
4124         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
4126         * mono-debugger-debugger.c: While the debugger is locked, remember
4127         whether the symbol tables have changes and send one single
4128         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
4130 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
4132         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
4134         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
4135         function.
4137         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
4138         account when marshalling string arrays. Fixes #56965.
4140 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
4142         * icall.c: Add new icalls mapping for security.
4143         * security.c|h: Add internal calls for WindowsIdentity,
4144         WindowsImpersonationContext and WindowsPrincipal.
4146 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
4148         * class.c: Added comment to ensure the System.MonoDummy class
4149         is removed when no longer necessary
4151 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
4153         * appdomain.c: Pass arguments to the bootstraping exceptions to
4154         minimize JITed methods at boot
4156         * metadata.c (mono_exception_from_name_two_strings): Allow for the
4157         second string to be null.
4159         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
4160         Change the protocol to minimize the JIT methods at startup.  Now
4161         it Returns the internal codepage, if the value of "int_code_page"
4162         is 1 at entry, and we can not compute a suitable code page
4163         number, returns the code page as a string.
4165 2004-04-13  Jackson Harper  <jackson@ximian.com>
4167         * culture-info-tables.h: Fix number of decimal digits for all
4168         english locales.
4170 2004-04-13  Jackson Harper  <jackson@ximian.com>
4172         * icall.c: Clairfy out of sync error message. It is not always
4173         your corlib that is out of sync.
4175 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
4177         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
4178         properties when only the set accessor is overriden. Fixes #55874.
4180 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
4182         * assembly.c (mono_assembly_load_references): Make this thread safe.
4183         Fixes #56327.
4185 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
4187         * monosn.c: Add missing initialization calls.
4189 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
4191         * locales.c:
4192         ves_icall_System_Globalization_CultureInfo_construct_number_format
4193         Fix g_assert so it compiles on fussier compilers re int/ptr
4194         mismatch
4196 2004-04-08  Dick Porter  <dick@ximian.com>
4198         * socket-io.h:
4199         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
4200         53992.  Also rearrange the code so that the internal calls return
4201         an error value and exceptions are thrown from managed code.
4203         * icall.c: Add type info to the socket icalls.
4205 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4207         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
4208         owes me a beer.
4210 2004-04-07  Martin Baulig  <martin@ximian.com>
4212         * class.c (mono_class_from_generic_parameter): Don't default
4213         `klass->parent' to `mono_defaults.object_type'.
4215 2004-04-07  Martin Baulig  <martin@ximian.com>
4217         * reflection.c (mono_reflection_initialize_generic_parameter): Set
4218         `param->pklass->reflection_info'.       
4220 2004-04-07  Jackson Harper  <jackson@ximian.com>
4222         * culture-info-tables.h: Fix date separator symbol.
4223         
4224 2004-04-07  Martin Baulig  <martin@ximian.com>
4226         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
4227         from System.Type to System.MonoType.
4229 2004-04-07  Martin Baulig  <martin@ximian.com>
4231         * reflection.h
4232         (MonoReflectionGenericParam): Added `has_reference_type' and
4233         `has_value_type' fields.
4235         * reflection.c (mono_image_get_generic_param_info): Encode the
4236         correct flags if we have the `class' or `struct' constraint.
4238 2004-04-07  Martin Baulig  <martin@ximian.com>
4240         * reflection.h
4241         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
4243 2004-04-07  Jackson Harper  <jackson@ximian.com>
4245         * appdomain.c: Revert extra patches, just wanted to bump the
4246         version number.
4247         
4248 2004-04-07  Jackson Harper  <jackson@ximian.com>
4250         * Makefile.am: Add culture-info private headers.
4251         * icall.c: Add new icalls for contructing locales.
4252         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
4253         * locales.h: Declare new culture info construction methods.
4254         * object.h: Add new fields used to avoid the CultureMap to
4255         MonoCultureInfo.
4256         * culture-info.h: Definition of structs used in the culture info
4257         tables.
4258         * culture-info-tables.h: Autogenerated tables that contain culture
4259         info data. This file was generated with the locale-builder tool.
4260         * appdomain.c: Incement corlib version number.
4261         
4262 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
4264         * appdomain.c: (mono_runtime_init) move mono_thread_init
4265         to before mono_object_new calls so critical sections
4266         are initialized before use.
4268 2004-04-07  Martin Baulig  <martin@ximian.com>
4270         * icall.c
4271         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
4272         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
4273         (ves_icall_MonoGenericParam_initialize): Removed.
4274         (monogenericparam_icalls): Removed.
4275         (generictypeparambuilder_icalls): Added new table for
4276         System.Reflection.Emit.GenericTypeParameterBuilder.
4278         * reflection.c
4279         (mono_reflection_define_generic_parameter): Removed.
4280         (mono_reflection_initialize_generic_parameter): This is now called
4281         from GenericTypeParameterBuilder's .ctor.
4283 2004-04-06  Martin Baulig  <martin@ximian.com>
4285         * class.c (mono_class_init): Don't inflate nested classes in a
4286         generic instance.
4287         (mono_type_get_name_recurse): Include the generic arguments for
4288         generic instances and generic type declarations.
4289         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
4290         (_mono_class_get_instantiation_name): Removed.
4291         (mono_class_create_generic): Always use `gklass->name' as our name.
4293         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
4295         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
4296         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
4297         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
4298         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
4299         closed generic methods here.
4301         * reflection.c
4302         (mono_reflection_generic_inst_get_nested_types): Removed.
4303         (inflate_mono_method): Copy the generic parameters from the
4304         MonoMethodHeader into out MonoGenericMethod.
4306 2004-04-06  Martin Baulig  <martin@ximian.com>
4308         * row-indexes.h
4309         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
4311         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
4313         * reflection.c (build_compressed_metadata): If we have any entries
4314         in the GenericParam, MethodSpec or GenericParamConstraint tables,
4315         set the header version to 1.1.
4317 2004-04-06  Martin Baulig  <martin@ximian.com>
4319         * class.c (mono_class_init): If we're a generic instance,
4320         initialize our nested classes, too.
4321         (_mono_class_get_instantiation_name): Deal with the new `!%d'
4322         suffix. 
4324 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4326         * process.c: quote the argument passed to the shell on windows.
4328 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
4330         * threads.c (mono_alloc_special_static_data): Allow this to be
4331         called during startup.
4333 2004-04-02  Martin Baulig  <martin@ximian.com>
4335         * icall.c
4336         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
4338 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
4340         * icall.c: Fix build.
4342 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
4344         * Makefile.am: Added security.c|h.
4345         * icall.c: Added icall for get_UserName;
4346         * security.c: New file for security related icalls. Added function
4347         get_UserName for System.Environment (fix #56144).
4348         * security.h: New. Header file for security.c
4350 2004-04-02  Dick Porter  <dick@ximian.com>
4352         * icall.c: Deleted the icalls that were obsoleted some time ago
4353         by the ICU string code, and which were mixed into the icall
4354         rearranging.  Fixes bug 55969.
4356         * string-icalls.h: 
4357         * string-icalls.c: Deleted the code that those icalls reference.
4359 2004-04-01  Martin Baulig  <martin@ximian.com>
4361         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
4363         * class.c (mono_class_from_generic_parameter): Don't set 
4364         TYPE_ATTRIBUTE_INTERFACE.
4365         (my_mono_class_from_generic_parameter): Likewise.
4367 2004-04-01  Martin Baulig  <martin@ximian.com>
4369         * loader.c (find_method): Added an optional `MonoClass *ic'
4370         argument to search in a specific interface.
4371         (mono_get_method_constrained): New public function.
4373 2004-04-01  Martin Baulig  <martin@ximian.com>
4375         * reflection.c (mono_image_get_generic_field_token): Use the
4376         `handleref' cache here.
4378 2004-04-01  Martin Baulig  <martin@ximian.com>
4380         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
4382         * reflection.c (create_generic_typespec): Use the `typespec' hash
4383         here, not the `typeref' one.    
4385 2004-04-01  Martin Baulig  <martin@ximian.com>
4387         * class.c (mono_class_inflate_generic_type): Moved the
4388         functionality into a new static inflate_generic_type() which
4389         returns NULL if it didn't do anything.  Only increment the
4390         `mono_stats.inflated_type_count' if we actually inflated
4391         something.
4392         (mono_class_get_full): Check the classes type to see whether we
4393         need to inflate it; also inflate MONO_TYPE_(M)VAR.
4395 2004-04-01  Jackson Harper  <jackson@ximian.com>
4397         * reflection.c: Set culture for assembly references.
4398         
4399 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
4401         * reflection.[ch], icall.[ch], Fix support for pinning variables.
4403 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4405         * assembly.c:
4406         (do_mono_assembly_open): the critical section also covers
4407         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
4409 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4411         * threads.c:
4412         (mono_manage_threads): abort the background threads when finishing.
4413         Fixes bug #47232.
4415 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4417         * gc.c: only close the done_event handle if there was no timeout.
4418         C-ified comments.
4420 2004-03-30  Martin Baulig  <martin@ximian.com>
4422         * icall.c (icall_entries): It's called "System.Activator", not
4423         "System.Activation".    
4425 2004-03-30  Martin Baulig  <martin@ximian.com>
4427         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
4428         (mono_class_create_from_typespec): Likewise.
4430 2004-03-30  Martin Baulig  <martin@ximian.com>
4432         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
4433         `has_ctor_constraint' and `initialized'.
4435 2004-03-30  Martin Baulig  <martin@ximian.com>
4437         * reflection.c (encode_new_constraint): New static function to add
4438         the constructor constraint attribute to a type parameter.
4439         (encode_constraints): Call encode_new_constraint() if necessary.
4441         * reflection.h
4442         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
4444         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
4445         
4446 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
4448         * reflection.c, icall.c: add support for pinning variables. 
4450 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
4452         * marshal.c (mono_marshal_get_managed_wrapper):
4453         init bool local with zero rather than null.
4455 2004-03-29  Martin Baulig  <martin@ximian.com>
4457         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
4458         the "official" behavior here.
4459         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
4461 2004-03-29  Martin Baulig  <martin@ximian.com>
4463         * icall.c: Reflect latest API changes.
4465 2004-03-29  Martin Baulig  <martin@ximian.com>
4467         * loader.c (mono_get_method_from_token): Also call
4468         mono_metadata_load_generic_params () for abstract and interface
4469         methods; replace the type arguments in the method signature with
4470         the ones which are loaded from the metadata.
4472 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
4474         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
4475         of the lock is not the current thread. MS.NET don't do it, in spite of
4476         what the documentation says. See bug #56157.
4478 2004-03-28  Martin Baulig  <martin@ximian.com>
4480         * class.c (mono_class_init): Don't call init_properties() and
4481         init_events() for generic instances; set `prop->parent' when
4482         inflating properties.
4484         * reflection.c (mono_generic_inst_get_object): Call
4485         `mono_class_init (ginst->klass)'.
4486         (mono_type_get_object): Only create a MonoGenericInst if your
4487         generic type is a TypeBuilder.
4488         (do_mono_reflection_bind_generic_parameters): Only set
4489         `ginst->is_dynamic' if our generic type is a TypeBuilder.
4491 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
4493         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
4494         Fixes #56091.
4496 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4498         * icall.c: added Kill_internal icall.
4499         * process.[ch]: added Kill_internal icall.
4501 2004-03-25  Martin Baulig  <martin@ximian.com>
4503         * class.h (MonoStats): Added `generic_instance_count',
4504         `inflated_method_count', `inflated_type_count' and
4505         `generics_metadata_size'.       
4507 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4509         * reflection.c: no warnings now.
4511 2004-03-25  Martin Baulig  <martin@ximian.com>
4513         * class.c (mono_class_get_full): New public function; does a
4514         mono_class_get(), but also takes a `MonoGenericContext *'.
4516         * loader.c (mono_field_from_memberref): Renamed to
4517         `field_from_memberref', made static and added `MonoGenericContext *'
4518         argument.
4519         (mono_field_from_token): Added `MonoGenericInst *' argument.
4520         (method_from_memberef): Likewise.
4521         (mono_get_method_from_token): Likewise.
4522         (mono_get_method_full): New public function; does a
4523         mono_get_method(), but also takes a `MonoGenericContext *'.
4525         * verify.c (mono_method_verify): Get the method's generic context
4526         and pass it to mono_field_from_token(), mono_get_method_full() and
4527         mono_class_get_full().
4529 2004-03-25  Martin Baulig  <martin@ximian.com>
4531         * class.c (mono_class_inflate_generic_type): Take a
4532         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
4533         `MonoGenericMethod *'.
4535 2004-03-25  Martin Baulig  <martin@ximian.com>
4537         * loader.h (MonoMethodInflated): Store the MonoGenericContext
4538         instead of the MonoGenericMethod here.
4540 2004-03-25  Martin Baulig  <martin@ximian.com>
4542         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
4543         each time we create a new MonoGenericInst, we also create a new
4544         context which points back to us.
4546         * class.c (inflate_method): Use `ginst->context' instead of
4547         creating a new context.
4549         * loader.c (method_from_memberref): Use
4550         `klass->generic_inst->context' instead of creating a new context.
4552 2004-03-25  Martin Baulig  <martin@ximian.com>
4554         * class.h (MonoGenericContext): New struct.
4555         (MonoGenericMethod): Removed `generic_inst'.
4557         * class.c (mono_class_inflate_generic_method): Take a
4558         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
4560 2004-03-25  Martin Baulig  <martin@ximian.com>
4562         * loader.h (MonoMethodInflated): New typedef.
4564         * metadata.h (MonoMethodSignature): Removed `gen_method', make
4565         `generic_param_count' consume just 30 bits, added `is_inflated'
4566         and `has_type_parameters' flags (one bit each).
4568         * class.c (mono_class_inflate_generic_method): Create a
4569         MonoMethodInflated instead of a MonoMethodNormal and set
4570         `is_inflated' in the method signature.
4572         * class.h (MonoGenericMethod): Removed `generic_method'.
4574 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
4576         * image.c: Make sure the name of a MonoImage is always an absolute path.
4577           This fixes bug #54415.
4579 2004-03-24  Martin Baulig  <martin@ximian.com>
4581         * class.c (mono_class_setup_vtable): If we're a generic instance,
4582         use our generic type's vtable size.
4584 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
4586         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
4587         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
4588         problems.
4590 2004-03-23  Martin Baulig  <martin@ximian.com>
4592         * class.h (MonoDynamicGenericInst): Added `int count_events' and
4593         `MonoEvent *events'.
4595         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
4596         (typebuilder_icalls): Added "get_event_info"; calls
4597         mono_reflection_event_builder_get_event_info(). 
4599         * reflection.c (mono_reflection_generic_inst_initialize): Added
4600         `MonoArray *events'.
4601         (mono_reflection_event_builder_get_event_info): New function.
4603 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
4605         * object.h: add mono_type_initialization_init
4607         * object.c (mono_runtime_class_init): 
4608         implement class constructor synchronization rules
4609         to cope with threading issues.  
4610         add mono_type_initialization_init
4612         * appdomain.c (mono_runtime_init): call 
4613         mono_type_initialization_init
4615         * class.h: removing initializing field from MonoVTable
4617 2004-03-23  Martin Baulig  <martin@ximian.com>
4619         * class.c (my_mono_class_from_generic_parameter): Use
4620         `param->name' if it's not NULL. 
4622 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
4624         * class.c: do not insert non-virtual methods in the vtable.
4625         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
4626         that means the method is non-virtual. This never would have
4627         happened before.
4629 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
4631         * profiler.c: Added lock for accessing coverage_hash.
4633 2004-03-22  Martin Baulig  <martin@ximian.com>
4635         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
4636         `method->method->signature->generic_param_count != 0' to make it
4637         work for interface methods.
4639 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4641         * process.c: quote the string passed to the shell using g_shell_quote.
4643 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4645         * threads.c:
4646         (mono_threads_manage): don't remove the finalizer thread and self
4647         from the threads hash table so that mono_thread_manage can be called
4648         more than once.
4650 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4652         * process.c: quote the arguments when UseShellExecute is true. Fixes
4653         bug #55790.
4655 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4657         * threads.c: set mono_thread_detach as a cleanup routine for every
4658         thread. This way it's always executed upon thread termination, either
4659         aborted or finished normally. No more xsp hangs!
4661 2004-03-17  Martin Baulig  <martin@ximian.com>
4663         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
4664         `int count_nested' and a `MonoType **nested'.
4666         * reflection.c (mono_reflection_bind_generic_parameters): Moved
4667         most of the functionality into a new static
4668         do_mono_reflection_bind_generic_parameters() and don't take a
4669         `MonoType *nested_in' argument any more.  Don't compute nested
4670         types here.
4671         (mono_reflection_generic_inst_get_nested_types): New public method
4672         to get nested types.
4674         * class.c (mono_class_create_generic): Set `klass->nested_in' if
4675         we're a nested class.
4677         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
4678         mono_reflection_generic_inst_get_nested_types() to compute the
4679         nested types.
4681 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
4683         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
4684         descriptive error message under windows.
4685         
4686 2004-03-17  Martin Baulig  <martin@ximian.com>
4688         * class.c (dup_type): Added `const MonoType *original' argument;
4689         copy the attrs from the original type.
4691 2004-03-17  Martin Baulig  <martin@ximian.com>
4693         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
4694         `m->generic_inst_cache' here.
4696 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
4698         * exception.h exception.c: Add stack_overflow_exception.
4700 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4702         * threadpool.c:
4703         (overlapped_callback): call SetEvent *after* invoking the callback.
4704         No need to call CloseHandle.
4706 2004-03-16  Martin Baulig  <martin@ximian.com>
4708         * reflection.c (mono_image_get_fieldref_token): Take a
4709         `MonoReflectionField *' instead of a `MonoClassField *' and a
4710         `MonoClass *'; store the `MonoReflectionField *' in the hash.
4712 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4714         * appdomain.c: don't add the culture to the filename we're looking for
4715         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
4717 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4719         * locales.c: don't ignore symbols when doing case insensitive compares.
4720         Thanks Dick! Fixes bug #54046.
4722         * threads.c: surround 'threads' usage with enter/leave in
4723         mono_thread_manage.
4725 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
4727         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
4728         implicitly marshalled as [Out]. Fixes #55450.
4730         (mono_marshal_get_runtime_invoke): Zero out the result if there is
4731         an exception.
4733 2004-03-16  Martin Baulig  <martin@ximian.com>
4735         * class.c (mono_class_from_generic_parameter): Use the actual
4736         parameter name. 
4738 2004-03-16  Martin Baulig  <martin@ximian.com>
4740         * reflection.c (type_get_signature_size): New static function.
4741         Compues the size of the type in a method signature.
4742         (method_get_signature_size): New static function; calls
4743         type_get_signature_size() to compute the actual size of the
4744         method's signature.
4745         (method_encode_signature): Use method_get_signature_size() to get
4746         the signature's size rather than using `nparams * 10'.
4748 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4750         * file-io.h: define here WapiOverlapped on windows. I don't want the
4751         regular OVERLAPPED one.
4753         * file-io.c:
4754         * threadpool.c: somehow, BindIoCompletionCallback is not found.
4755         Disabling AIO on windows.
4757 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4759         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
4760         bug #55385.
4762 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4764         * appdomain.c: upgraded corlib version.
4766         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
4767         and BeginWrite. Allow opening files for asynchrnous operations.
4769         * file-io.h: new struct that maps FileStreamAsyncResult.
4770         * icall.c: added new icalls.
4771         * process.[ch]: support setting child process environment variables
4772         and use the SHELL or COMSPEC when UseShellExecute is true.
4774         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
4775         callback for async. IO is here and also BindHandle.
4777         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
4778         from here.
4780 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
4782         * reflection.c (create_custom_attr): Allow len == 0.
4784         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
4785         computation on big-endian machines.
4787 2004-03-13  Martin Baulig  <martin@ximian.com>
4789         * class.h (MonoGenericInst): Added `int count_ifaces'.
4791         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
4792         `ginst->count_ifaces' instead `klass->interface_count' since we
4793         may get called before the vtable is created.
4795         * loader.c (mono_method_get_param_names): If we're a generic
4796         instance, return and don't initialize the class.
4798         * reflection.c (mono_reflection_setup_generic_class): Don't call
4799         ensure_runtime_vtable().
4800         (mono_reflection_bind_generic_parameters): Set
4801         `ginst->count_ifaces'.
4803 2004-03-11  Jackson Harper <jackson@ximian.com>
4805         * icall.c:
4806         * unicode.c:
4807         * unicode.h: Remove unused System.Char icalls.
4808         
4809 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
4811         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
4812         code when we P/Invoke the first library in Windows.Forms, instead
4813         of when we first open the assembly.
4815         * assembly.c: Drop the lookup from here.
4817 2004-03-10  Martin Baulig  <martin@ximian.com>
4819         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
4820         class for properties, fields and events.  Finally fixes #54945.
4822 2004-03-10  Martin Baulig  <martin@ximian.com>
4824         * metadata.c (mono_metadata_class_equal): New static function;
4825         checks whether two generic instances or two generic parameters are
4826         equal.
4827         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
4828         compare classes.        
4830 2004-03-10  Martin Baulig  <martin@ximian.com>
4832         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
4834         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
4835         argument and write it into the `reflection_info' field.
4837         * icall.c
4838         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
4839         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
4841 2004-03-09  Jackson Harper  <jackson@ximian.com>
4843         * char-conversions.h: use 8 bits for numeric data its all we need
4844         * icall.c: numeric data is only 8 bits now.
4846 2004-03-09  Martin Baulig  <martin@ximian.com>
4848         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
4850         * class.c (init_properties, init_events): Initialize the new
4851         `parent' field.
4853         * reflection.c (typebuilder_setup_properties): Likewise.
4854         (typebuilder_setup_events): Likewise.
4856         * reflection.h (MonoEventInfo): Replaced `parent with
4857         `declaring_type' and `reflected_type'.
4859         * icall.c (ves_icall_get_property_info): Distinguish between
4860         declaring and reflected type.
4861         (ves_icall_get_event_info): Likewise.
4863 2004-03-09  Martin Baulig  <martin@ximian.com>
4865         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
4866         (ves_icall_Type_GetField): Correctly set field->klass.
4868 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
4870         * loader.h: Fix warning.
4872 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
4874         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
4875         library routine if present.  Notice that it will still continue
4876         executing even if its missing, for those working on the Gtk#
4877         edition of Windows.Forms.
4879         * assembly.c (do_mono_assembly_open): If loading the
4880         System.Windows.Forms call mono_loader_wini_init.
4882 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
4884         * class.h: Added MonoRemoteClass struct.
4885         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
4886         function for MonoStrings.
4887         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
4888         Added internal call for getting the proxy type.
4889         * marshal.c: Get the type of transparent proxies from its remote_class.
4890         Added methods that generate the IL for type checks and casts:
4891         mono_marshal_get_isinst, mono_marshal_get_castclass, 
4892         mono_marshal_get_proxy_cancast.
4893         * marshal.h: Declaration of the previous new methods.
4894         * object.c: Added new moethods for creating and updating MonoRemoteClass
4895         instances: mono_remote_class, mono_upgrade_remote_class, 
4896         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
4897         * verify.c: FIx transparent_proxy_fields layout.
4898         * appdomain.c: Bump corlib version.
4900 2004-03-04  Jackson Harper  <jackson@ximian.com>
4902         * icall.c: Add icall to access char conversion tables.
4903         * char-conversions.h: Character conversion tables.
4904         * Makefile.am: Add char-conversions.h private header file.
4905         
4906 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
4908         * appdomain.c (unload_thread_main): Increase unloading timeout to
4909         10 sec as a temporary workaround for Nant problems.
4911 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
4913         * gc.c: Add checks for GC_enable and GC_disable.
4915         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
4916         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
4917         (bug #54988).
4918         
4919 2004-02-27  Martin Baulig  <martin@ximian.com>
4921         * reflection.c (mono_reflection_bind_generic_parameters): Take a
4922         `MonoReflectionType *' instead of a `MonoType *'.
4924 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
4926         * gc.c (run_finalize): Avoid finalizing the object representing the
4927         finalizer thread.
4928         (finalizer_thread): Fix warning.
4930 2004-02-25  Martin Baulig  <martin@ximian.com>
4932         * class.c (_mono_class_get_instantiation_name): Added `int offset'
4933         argument for nested types.
4934         (mono_class_create_generic): Added support for nested generictypes.
4936         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
4937         `GList *nested'.
4939         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
4941         * reflection.c (method_encode_signature): Increase the minimum
4942         value of `size' from 10 to 11.
4943         (mono_reflection_bind_generic_parameters): Take `int type_argc'
4944         and `MonoType **types' arguments instead of the `MonoArray
4945         *types'; added `MonoType *nested_in'.  Recursively instantiate
4946         nested classes. 
4948 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
4950         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
4951         stack_overflow_ex members which are used by exception handling.
4953         * appdomain.c (mono_runtime_init): Initialize the new members.
4955         * gc.c (mono_gc_enable): New helper function.
4956         * gc.c (mono_gc_disable): New helper function.
4958 2004-02-23  Martin Baulig  <martin@ximian.com>
4960         * icall.c: I must have been really stupid - make it actually work
4961         this time ;-)
4963 2004-02-23  Martin Baulig  <martin@ximian.com>
4965         * loader.c (method_from_memberref): Only inflate the method if
4966         it's in another klass.
4968 2004-02-23  Martin Baulig  <martin@ximian.com>
4970         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
4971         (mono_class_init): If we're a generic instance and an interface,
4972         compute `class->interface_id'; also create `class->interfaces'
4973         here and inflate them.
4975         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
4976         `ginst->is_open'.
4977         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
4979         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
4981 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
4983         * reflection.c (method_encode_code): Improved the error message
4984         generated by the exception.
4986 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4988         * icall.c: Martin did not do what he said in the ChangeLog for
4989         2004-02-18, but put back the changes for properties and events.
4990         Commenting those changes out again and adding comment to bug #54518.
4991         
4992         * process.c: removed warning.
4994 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
4996         * marshal.c (emit_struct_conv): Print an error message instead of
4997         asserting when a type does not have the StructLayout attribute.
4999 2004-02-20  Martin Baulig  <martin@ximian.com>
5001         * reflection.c (mono_type_get_object): Also use the cache for
5002         generic instances.
5003         (mono_reflection_bind_generic_parameters): Always compute
5004         `ginst->ifaces'.        
5006 2004-02-20  Martin Baulig  <martin@ximian.com>
5008         * class.h (MonoGenericMethod): Removed `klass'.
5010         * class.c (mono_class_inflate_generic_method): Added `MonoClass
5011         *klass' argument.
5013 2004-02-20  Martin Baulig  <martin@ximian.com>
5015         * reflection.c (method_encode_methodspec): Actually use the
5016         uninflated signature for the memberref.
5018 2004-02-20  Martin Baulig  <martin@ximian.com>
5020         * class.h (MonoGenericMethod): Removed `declaring'.
5022         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
5023         is NULL, compute it here.
5025 2004-02-20  Martin Baulig  <martin@ximian.com>
5027         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
5029         * metadata.c (mono_metadata_generic_inst_hash): New method.
5030         (mono_metadata_generic_inst_equal): New method.
5032         * reflection.c (mono_reflection_bind_generic_parameters): Use the
5033         `klass->image->generic_inst_cache' cache to avoid creating
5034         duplicate MonoGenericInst's.
5036         * class.c (mono_class_inflate_generic_type): Use the cache.
5038 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
5040         * object.c: fixed gc descriptor calculation for embedded valuetypes.
5042 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5044         * icall.c: added Socket.WSAIoctl icall.
5046         * socket-io.[ch]: implemented
5047         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
5049 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
5051         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
5053 2004-02-18  Urs C Muff  <umuff@quark.com>
5055         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
5056         this work on PPC and other big-endian architectures.
5058         * debug-mono-symfile.h: Prepended the names of all the `guint32'
5059         fields with an underscore to make sure they're only accessed by
5060         the read32() macro.
5062 2004-02-18  Martin Baulig  <martin@ximian.com>
5064         * icall.c: Put the klass->refclass changes back for methods and
5065         fields, but not for properties and events.  We're currently not
5066         distinguishing between DeclaringType and ReflectedType for
5067         properties and events, that's what caused the regressions.
5069 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5071         * object.c:
5072         (mono_async_result_new): the handle can be NULL.
5074         * threadpool.c: Use an event instead of a semaphore, don't initialize
5075         it until needed. This saves quite a few semaphores from being created
5076         when using the threadpool.
5078 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
5080         * object.c (mono_string_is_interned_lookup): Fix interning of long
5081         strings. Fixes #54473.
5083         * domain.c (ldstr_equal): Optimize if the two strings are equal.
5085         * icall.c: Revert the klass->refclass changes since they introduce
5086         regressions (bug #54518).
5088 2004-02-18  Martin Baulig  <martin@ximian.com>
5090         * class.c (mono_class_init): If we're a generic instance and don't
5091         come from a TypeBuilder, inflate our members here.
5092         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
5093         (mono_class_create_generic): New public method.
5094         (mono_class_initialize_generic): Removed.
5095         (get_instantiation_name): Renamed to
5096         _mono_class_get_instantiation_name() and made it public.
5098 2004-02-18  Martin Baulig  <martin@ximian.com>
5100         * class.c (mono_class_inflate_generic_type): Clear the new
5101         instance's `nginst->klass' when inflating a generic instance.
5102         (mono_class_is_subclass_of): Added (basic) support for generic
5103         instances.
5105 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
5107         * appdomain.h, domain.c: use a MonoCodeManager instead of a
5108         MonoMempool to hold compiled native code.
5110 2004-02-17  Martin Baulig  <martin@ximian.com>
5112         * class.h (MonoDynamicGenericInst): Added `count_properties' and
5113         `properties'.
5115         * reflection.c (mono_reflection_generic_inst_initialize): Added
5116         `MonoArray *properties' argument.
5118         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
5120 2004-02-17  Martin Baulig  <martin@ximian.com>
5122         * icall.c (ves_icall_Type_GetFields): Renamed to
5123         ves_icall_Type_GetFields_internal() and added a
5124         `MonoReflectionType *rtype' argument; pass it to
5125         mono_field_get_object() to set the field's "reflected" type.
5126         (ves_icall_Type_GetConstructors): Likewise.
5127         (ves_icall_Type_GetEvents): Likewise.
5128         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
5129         argument; pass it to mono_method_get_object() to set the method's
5130         "reflected" type.       
5132 2004-02-17  Martin Baulig  <martin@ximian.com>
5134         * class.h (MonoDynamicGenericInst): New type.
5135         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
5137         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
5138         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
5139         (ves_icall_MonoGenericInst_GetFields): New interncall.
5141         * class.c (mono_class_from_generic): Don't call
5142         mono_class_initialize_generic() if this is a dynamic instance;
5143         ie. it's being created from a TypeBuilder.
5144         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
5145         `class->byval_arg.type'.
5147         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
5148         to `inflate_method' and made static.
5149         (mono_reflection_inflate_field): Removed.
5150         (mono_reflection_generic_inst_initialize): New public method.
5152         * reflection.h (MonoReflectionGenericInst): Removed `methods',
5153         `ctors' and `fields'; added `initialized'.
5155 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
5157         * debug-helpers.c (mono_method_full_name): Fix output for empty
5158         namespaces.
5160 2004-02-12  Martin Baulig  <martin@ximian.com>
5162         * class.h (MonoClassField): Added `MonoType *generic_type'.
5164         * reflection.c (mono_image_get_fieldref_token): Added support for
5165         instantiated generic types.
5166         (field_encode_inflated_field): Removed.
5167         (mono_image_get_inflated_field_token): Removed.
5168         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
5170         * reflection.h (MonoReflectionInflatedField): Removed.
5172 2004-02-12  Martin Baulig  <martin@ximian.com>
5174         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
5175         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
5177         * reflection.c (mono_image_get_methodspec_token): Take a
5178         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
5179         (mono_image_create_token): Check whether we have a
5180         `method->signature->gen_method' and call
5181         mono_image_get_methodspec_token() if appropriate.
5182         (inflated_method_get_object): Removed.
5183         (mono_reflection_bind_generic_method_parameters): Return a
5184         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
5185         (mono_reflection_inflate_method_or_ctor): Likewise.
5187         * reflection.h (MonoReflectionInflatedMethod): Removed.
5189 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
5191         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
5192         for custom valuetype marshalling.
5194         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
5196 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5198         * icall.c: fixed WSAGetLastError_internal name.
5200 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
5202         * threads.c (mono_thread_attach): Allow this to be called multiple
5203         times for a thread.
5204         
5205         * threads.c (build_wait_tids): Do not wait for ourselves.
5207         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
5208         appdomain list is empty.
5210         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
5211         memory returned by mono_string_builder_to_utf16, since it points into
5212         managed memory. Thanks to Bernie Solomon for noticing this.
5214         * icall.c: Add AppDomainSetup icalls.
5216         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
5218         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
5219         types.
5221         * reflection.c (reflection_methodbuilder_to_mono_method): Save
5222         custom attributes to the method_aux struct. Also fix array indexes etc.
5224         * loader.c (mono_method_get_param_names): Make dynamic case work again.
5225         
5226 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
5228         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
5229         (both static and runtime) and reduce startup time.
5231 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
5233         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
5234         AsAny marshalling conversion instead of crashing.
5236         * marshal.c: Fix warnings.
5238 2004-02-09  Martin Baulig  <martin@ximian.com>
5240         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
5242         * reflection.h (MonoReflectionInflatedMethod): Removed the
5243         `declaring' field, it's now in the unmanaged MonoGenericMethod.
5245         * reflection.c (method_encode_methodspec): Removed the `method'
5246         argument; we get it from `gmethod->declaring'.
5247         (inflated_method_get_object): Removed the `declaring' argument.
5249 2004-02-09  Martin Baulig  <martin@ximian.com>
5251         * class.h (MonoGenericMethod): New type.
5252         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
5253         `generic_method'.
5255         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
5256         a `MonoGenericMethod *gen_method' one.
5258         * class.c (mono_class_inflate_generic_type): Take an additional
5259         `MonoGenericMethod * argument.  This is only non-NULL if we're
5260         inflating types for a generic method.   
5261         (mono_class_inflate_generic_signature): Renamed to
5262         inflate_generic_signature() and made static; take a
5263         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
5264         (inflate_generic_header): Take a `MonoGenericMethod *' argument
5265         instead of a `MonoGenericInst *' one.
5266         (mono_class_inflate_generic_method): Likewise.
5268         * reflection.c (encode_generic_method_sig): Take a
5269         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
5270         (method_encode_methodspec): Likewise.
5271         (inflated_method_get_object): Likewise. 
5273         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
5274         field with a `MonoGenericMethod *gmethod' one.  
5276 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
5278         * class.h (mono_class_has_parent): add parens to expansion
5279         so you can ! this.
5281 2004-02-08  Martin Baulig  <martin@ximian.com>
5283         * image.h (MonoImage): Removed `generics_cache'.
5285         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
5286         instead of a `MonoType *' argument; removed the `inflate_methods'
5287         argument.  Don't inflate methods here.
5289         * loader.c (find_method): If it's a generic instance, call
5290         mono_class_init() on the `sclass->generic_inst->generic_type'.
5292         * metadata.c (mono_type_size): Make this work on uninitialized
5293         generic instances; call it on the `ginst->generic_type's class.
5295         * reflection.c (mono_reflection_bind_generic_parameters): Call
5296         mono_class_from_generic() to create the `ginst->klass'.
5298 2004-02-08  Martin Baulig  <martin@ximian.com>
5300         * class.h (MonoClass): Changed type of `generic_inst' from
5301         `MonoType *' to `MonoGenericInst *'.
5303 2004-02-08  Martin Baulig  <martin@ximian.com>
5305         * icall.c (ves_icall_Type_BindGenericParameters): Just call
5306         mono_type_get_object(), this is now creating a `MonoGenericInst'
5307         for MONO_TYPE_GENERICINST.
5308         (ves_icall_MonoGenericInst_GetParentType): Likewise.
5309         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
5311         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
5312         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
5313         (inflated_method_get_object): Added `MonoClass *refclass' argument.
5314         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
5315         and reflected type.
5317         * reflection.h (MonoReflectionInflatedMethod): Removed
5318         `declaring_type' and `reflected_type'.
5320 2004-02-08  Martin Baulig  <martin@ximian.com>
5322         * class.h (MonoGenericInst): Added `MonoType *parent' and
5323         `MonoType **ifaces'.
5325         * reflection.h (MonoReflectionGenericInst): Removed `klass',
5326         `parent' and `interfaces'.
5328         * reflection.c (mono_reflection_bind_generic_parameters): Take a
5329         `MonoType *' argument and return a `MonoType *'.
5331         * icall.c
5332         (ves_icall_MonoGenericInst_GetParentType): New interncall.
5333         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
5335 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
5337         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
5338         valuetype marshalling.
5340 2004-02-06  Martin Baulig  <martin@ximian.com>
5342         * class.c
5343         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
5344         (my_mono_class_from_generic_parameter): Likewise.
5346 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
5348         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
5349         contents of the symbol files lazily.
5351         * object.h (MonoThread): Add 'name' and 'name_len' fields.
5353         * threads.h threads.c icall.c: New icalls for getting and setting the
5354         threads name.
5356 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
5358         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
5359         Raise an exception when the domain is not found.
5361 2004-02-03  Martin Baulig  <martin@ximian.com>
5363         * reflection.c (mono_image_get_methodspec_token): Use the
5364         uninflated signature; fixes gen-33.
5366 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
5368         * gc.c threads.c: Make the finalizer thread a normal managed thread so
5369         the finalizer code can use thread functionality.
5371         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
5372         the finalizer thread.
5374         * threads.c: Make some functions more robust.
5376         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
5378         * metadata.h: Add new marshalling conventions.
5380         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
5381         stringbuilder marshalling. Fixes #53700.
5383         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
5385         * reflection.c (mono_image_get_type_info): Save declarative security
5386         info.
5388         * reflection.c (mono_image_get_field_info): Handle uninitialized 
5389         unmanaged fields as well.
5391         * appdomain.c: Bump corlib version.
5393 2004-02-01  Martin Baulig  <martin@ximian.com>
5395         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
5396         method type arguments.  
5398 2004-01-30  Duncan Mak  <duncan@ximian.com>
5400         * marshal.h: Add prototype for
5401         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
5402         and
5403         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
5404         fix the build.
5406 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
5408         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
5409         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
5411 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
5413         * marshal.c (mono_marshal_get_native_wrapper): Add support for
5414         custom marshalling of valuetypes.
5416         * marshal.c: Fix some warnings.
5418 2004-01-29  Martin Baulig  <martin@ximian.com>
5420         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
5421         for generic method parameters.
5423         * reflection.c (method_encode_methodspec): Write the uninflated
5424         signature into the methodspec table.
5425         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
5426         is always the uninflated method.
5427         (reflection_methodbuilder_to_mono_method): Copy the generic
5428         parameters from the MethodBuilder into `header->gen_params'.
5430 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
5432         * class.c (mono_class_from_generic_parameter): Fix warning.
5434 2004-01-27  Martin Baulig  <martin@ximian.com>
5436         * class.c (mono_class_from_generic_parameter): Don't create
5437         `klass->methods' here.  
5439 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
5441         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
5442         extension since it does not work with libraries named lib<FOO>.dll.so.
5444 2004-01-25  Martin Baulig  <martin@ximian.com>
5446         * class.c (mono_class_inflate_generic_type): Added support for
5447         MONO_TYPE_GENERICINST.
5449         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
5450         inflate methods on open constructed types.      
5452 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5454         * object.c: fire ProcessExit event in the root AppDomain after running
5455         Main. Fixes bug #53299.
5457 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
5459         * socket-io.c: include the new socket-wrappers.h header.
5460         Use the wrappers instead of the unix socket functions to make the code
5461         more clear.
5463 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
5465         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
5467         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
5468         Fixes #22532.
5470 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
5472         * reflection.c (mono_image_create_pefile): Handle the case when the
5473         entry point is not a MethodBuilder.
5475         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
5476         field to ReflectionMethod since it is not allways a builder.
5478         * reflection.c (type_get_fully_qualified_name): New helper function to
5479         return the fully qualified name of a type.
5481         * reflection.c (encode_marshal_blob): Always emit the fully qualified
5482         type name for custom marshallers.
5484         * reflection.c (mono_marshal_spec_from_builder): Ditto.
5486         * class.c (mono_class_setup_vtable): If a parent class already 
5487         implements an interface, use the implementing methods from that class.
5488         Fixes #53148.
5490 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5492         * threadpool.c: just return instead of ExitThread to allow for thread
5493         clean up earlier.
5495 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
5497         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
5498         when closing resource modules.
5500         * reflection.c (mono_image_create_pefile): Handle the case when the
5501         entry point is not a MethodBuilder.
5503         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
5504         field to ReflectionMethod since it is not allways a builder.
5506 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
5508         * marshal.c (mono_marshal_get_managed_wrapper): 
5509         mono_marshal_alloc takes native int so CONV_I
5510         the arg for 64bits.
5512 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
5514         * reflection.c (fixup_cattrs): New function to fixup the methoddef
5515         tokens in the cattr table. Fixes #53108.
5517 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5519         * loader.c: don't trim ".dll" before looking up in the config file.
5520         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
5522 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
5524         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
5525         Return the module which contains the resource as well.
5526         (ves_icall_System_Reflection_Module_Close): New icall.
5528         * appdomain.c: Bump corlib version number.
5530         * image.c (mono_image_addref): New public function.
5532         * assembly.c: Call mono_image_addref.
5534         * reflection.c (mono_module_get_object): Increase reference count of 
5535         the image.
5537         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
5538         Fixes #22532.
5540         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
5541         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
5542         proper exceptions on DllImport problems.
5544 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
5546         * class.c, metadata.c: eliminate CSIZE macro.
5548 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
5550         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
5551         * object.h: Added async_callback field in MonoAsyncResult.
5552         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
5553         * verify.c: Added async_callback in MonoAsyncResult layout.
5555 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
5557         * reflection.c (mono_reflection_get_custom_attrs): Add support
5558         for Modules.
5560 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
5562         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
5563         marshalling.
5564         (mono_marshal_method_from_wrapper): Add null pointer check.
5566 2004-01-16  Martin Baulig  <martin@ximian.com>
5568         * debug-mono-symfile.h: Set version number to 36 and reflect
5569         latest symbol writer changes.
5571 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
5573         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
5574         multi-dimensional arrays.
5575         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
5576         (mono_class_from_mono_type): Use bounded_array_class_get.
5577         
5578         * class.c (mono_bounded_array_class_get): New function which takes
5579         a 'bounded' bool argument to distinguish vectors from one dimensional
5580         arrays.
5582         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
5583         bounded_array_class_get if the array has bounds.
5585         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
5586         Search modules loaded using AssemblyBuilder:AddModule as well.
5588 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5590         * appdomain.c: increased corlib version.
5591         * filewatcher.c: removed g_print.
5592         * icall.c:
5593         (get_property_info): only allocate what is actually requested.
5594         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
5596 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5598         * Makefile.am: added filewatcher.[ch]
5599         * filewatcher.[ch]: FileSystemWatcher runtime support.
5600         * icall.c: added new FSW icalls.
5602 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
5604         * string-icalls.c: fix stringbuilder regression as suggested by
5605         Iain McCoy <iain@mccoy.id.au>.
5607 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
5609         * process.c (process_read_stringtable_block): Recognize '007f' as
5610         a language neutral stringtable block.
5612 2004-01-12  Patrik Torstensson
5614         * object.h (MonoStringBuilder) : Changed layout to support our
5615         new stringbuilder class.
5616         * marshal.c: Change marshalling to support the new layout of 
5617         string builder.
5618         * appdomain.c: increased version number because new layout of
5619         string builder.
5621 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
5623         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
5624         assembly name as an string instead of an AssemblyName, since it is
5625         easier to extract info from it.
5627         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
5628         the culture subdirectories too. Fixes #52231.
5630 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5632         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
5633         It takes 2 new parameters with an optional name for the method to look
5634         for and case ignoring info.
5636         * threadpool.c: removed unused variable.
5638 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5640         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
5641         It takes 2 new parameters with an optional name for the property to look
5642         for and case ignoring info.
5643         Fixes bug #52753.
5645 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
5647         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
5648         Fix #52451.
5650 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5652         * appdomain.c:
5653         * assembly.c: escape the uri before passing it to g_filename_from_uri.
5654         Fixes bug #52630.
5656 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
5658         * reflection.c: Add support for more than one unmanaged resource.
5660         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
5661         in field->def_value, as done in all other cases.
5663         * reflection.c (mono_reflection_get_custom_attrs): Add support for
5664         TypeBuilders.
5666         * reflection.c (mono_reflection_create_runtime_class): Remove 
5667         errorneous assignment to klass->element_class, since it is already
5668         done in mono_reflection_setup_internal_class.
5670 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5672         * gc.c: added missing LeaveCriticalSection.
5673         * icall.c: indented a couple of lines.
5674         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
5675         if we call EndInvoke inside a callback. Fixes bug #52601.
5677 2004-01-07  Martin Baulig  <martin@ximian.com>
5679         * mono-debug-debugger.h
5680         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
5682 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
5684         * appdomain.c: Use messages in NotImplementedException.
5686         * exception.c (mono_get_exception_not_implemented): Now this takes
5687         a message argument.
5689         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
5690         exception instead of g_asserting an aborting when something is not
5691         implemented.
5693         Add some inline docs.
5695 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
5697         * reflection.h: Update after changes to object layout.
5699         * reflection.c: Implement saving of unmanaged aka win32 resources.
5701         * appdomain.c: Bump version number.
5703         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
5704         Handle missing domains gracefully.
5706 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
5708         * file-io.c : On Windows, there are much more invalid_path_chars.
5710 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
5712         * class.h, object.c: prepare for GetType () speedup.
5714 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
5716         * profiler.c: workaround for --profile null reference exception on
5717           cygwin. Patch by Patrik Torstensson.
5719 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
5721         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
5722         make work for unaligned access.
5724 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
5726         * class.c: small cleanup (class->fields [i] -> field).
5727         * image.c: check address of metadata is valid.
5729 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
5731         * assembly.h assembly.c (mono_assembly_loaded): New public function to
5732         search the list of loaded assemblies.
5734         * reflection.c (mono_reflection_type_from_name): Use 
5735         mono_assembly_loaded instead of mono_image_loaded.
5737         * reflection.c: Fix warnings.
5739 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
5741         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
5742         is dynamic. This is needed since an assembly can contain both dynamic and
5743         non-dynamic images.
5745         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
5746         assembly->dynamic.
5748         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
5750         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
5751         to store modules loaded using AddModule.
5753         * reflection.c (mono_image_fill_file_table): Generalize this so it works
5754         on Modules.
5756         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
5758         * reflection.c (mono_image_fill_export_table_from_module): New function to
5759         fill out the EXPORTEDTYPES table from a module.
5761         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
5762         into a separate function. Also handle loaded non-dynamic modules.
5764         * reflection.c (mono_image_basic_init): Fix memory allocation.
5766         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5768         * assembly.c (mono_assembly_load_references): Make this public.
5770 2003-12-19  Martin Baulig  <martin@ximian.com>
5772         * class.c (mono_class_initialize_generic): Made this static, take
5773         a `MonoGenericInst *' instead of a `MonoClass *'.
5774         (mono_class_from_generic): Call mono_class_initialize_generic()
5775         unless we're already initialized or being called from
5776         do_mono_metadata_parse_generic_inst().
5778         * class.h (MonoGenericInst): Added `initialized' and
5779         `init_pending' flags.
5781         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
5782         `mono_class_init (gklass)' or mono_class_initialize_generic()
5783         here; set `generic_inst->init_pending' while parsing the
5784         `type_argv'.
5786 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
5788         * locales.c: include string.h for memxxx prototypes
5790 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
5792         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
5793         constructor when accessing literal fields.
5795 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
5797         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5799         * reflection.c (assembly_add_resource_manifest): New function to fill
5800         the MANIFESTRESOURCE table.
5802         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
5804         * reflection.h: Update to changes in class layout.
5806         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
5807         Reenable call to mono_runtime_is_shutting_down ().
5809         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
5810         determine if the runtime is shutting down.
5812 2003-12-16  Jackson Harper <jackson@ximian.com>
5814         * icall.c: comment out call to mono_runtime_is_shutting_down to
5815         fix build.
5816         
5817 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
5819         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
5820         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
5822 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
5824         * reflection.c: move definition of swap_with_size
5825         to before its first call
5827 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
5829         * appdomain.c (mono_runtime_is_shutting_down): New public function.
5831         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
5832         icall.
5834         * object.c: Fix warnings.
5836         * icall.c (ves_icall_Type_Get...): Only consider inherited static
5837         members if FlattenHierarchy is set.
5839         * reflection.c (mono_image_add_decl_security): New function to emit
5840         declarative security.
5842         * reflection.h reflection.c: Add support for declarative security.
5844         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
5845         
5846 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
5848         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
5849         
5850         * appdomain.c verify.c: Moved corlib version checking into its own
5851         function in appdomain.c since it needs to create vtables etc.
5853 2003-12-13  Patrik Torstensson <p@rxc.se>
5855         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
5856         instead of unwrapped server.
5858 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
5860         * verify.c (check_corlib): Fix field index.
5862 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
5864         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
5865         GetGacPath icall.
5867 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
5869         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
5870         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
5871         cope with sizeof(size_t) != sizeof(guint32).
5873 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5875         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
5876         in case of failure.
5878 2003-12-10  Mark Crichton <crichton@gimp.org>
5880         * icall.c: removed the GetNonZeroBytes.  We now handle this case
5881         in managed code.
5883         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
5885 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
5887         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
5888         marked as deleted.
5890 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
5892         * verify.c (check_corlib): Handle the case when the version field is 
5893         initialized by a static constructor.
5895 2003-12-08  Patrik Torstensson  <p@rxc.se>
5897     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
5899 2003-12-08  Martin Baulig  <martin@ximian.com>
5901         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
5902         a MonoReflectionGenericParameter, also take the parameter index
5903         and name as arguments.
5904         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
5905         (ves_icall_MonoGenericParam_initialize): New interncall.
5906         (ves_icall_Type_make_byref_type): New interncall.
5908         * reflection.h (MonoReflectionGenericParam): Derive from
5909         MonoReflectionType, not just from MonoObject.  Added `refobj' and
5910         `index' fields.
5912         * reflection.c (mono_reflection_define_generic_parameter): Create
5913         and return a new MonoReflectionGenericParam; don't initialize the
5914         constraints here.
5915         (mono_reflection_initialize_generic_parameter): New public method;
5916         initializes the constraints and creates the `param->pklass'.
5918 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
5920         * reflection.h reflection.c: Use the new fields 'num_types', 
5921         'num_fields' and 'num_methods' to track the number of types etc.
5923         * verify.c (check_corlib): Check corlib version number.
5925 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
5927         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
5928         function works on all methods.
5930 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
5932         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
5933         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
5934         the custom_type_info flag of the transparent proxy.
5935         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
5936         objects that supports IRemotingTypeInfo.
5937         * object.h: Added custom_type_info field in transparent proxy.
5939 2003-12-06  Martin Baulig  <martin@ximian.com>
5941         * class.c (mono_class_create_from_generic): Removed.
5942         (mono_class_from_generic): Check `ginst->klass' before doing
5943         anything else.  This is important to fully support "recursive"
5944         generic types.
5946         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
5947         empty `generic_inst->klass' before doing anything else.
5949 2003-12-06  Dick Porter  <dick@ximian.com>
5951         * verify.c: 
5952         * object.h:
5953         * icall.c:
5954         * locales.c: Use C structs to access class fields.  Don't do a
5955         conversion between MonoString and UChar because both are
5956         platform-endian UTF-16.  Compare now takes startindex and count
5957         parameters.  Add a char overload for IndexOf.  Speed up the
5958         invariant string IndexOf.
5960 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
5962         * Makefile.am (monosn_LDADD): Fix parallel build.
5964 2003-12-04  Martin Baulig  <martin@ximian.com>
5966         * icall.c
5967         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
5968         (ves_icall_Type_make_array_type): New interncall.       
5970 2003-12-04  Martin Baulig  <martin@ximian.com>
5972         * locales.c: also change it in the !HAVE_ICU case.
5974 2003-12-04  Dick Porter  <dick@ximian.com>
5976         * icall.c:
5977         * locales.c: construct_compareinfo is now in CompareInfo, not
5978         CultureInfo.
5980 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
5982         * image.c (mono_image_load_file_for_image): Cache loaded images in the
5983         image->files array.
5985         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
5986         table as well.
5988         * assembly.c (mono_assembly_load_references): Only load references
5989         once.
5991         * class.c (mono_class_from_name): Avoid linear search of the 
5992         EXPORTEDTYPE table.
5994         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
5996 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
5998         * image.h (MonoImage): Add 'field_cache' field.
6000         * loader.c (mono_field_from_token): Cache field lookups.
6001         
6002         * reflection.c (mono_module_get_object): Fix name property.
6004         * icall.c (ves_icall_get_enum_info): Update after changes to 
6005         mono_metadata_get_constant_index ().
6007         * icall.c: Get rid of get_type_info icall, use a separate icall for
6008         each type property to avoid needless memory allocations. Fixes #51514.
6010         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
6011         to avoid needless binary searches.
6013         * class.c (class_compute_field_layout): Move the initialization of
6014         field->def_value to mono_class_vtable ().
6016         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
6017         non-corlib types.
6019         * object.c (mono_object_allocate): Make it inline.
6021         * object.c (mono_object_allocate_spec): Make it inline.
6022         
6023 2003-12-02  Dick Porter  <dick@ximian.com>
6025         * locales.c (create_NumberFormat): NumberFormatInfo construction.
6026         Patch by Mohammad DAMT (mdamt@cdl2000.com).
6028 2003-12-01  Dick Porter  <dick@ximian.com>
6030         * threads.c: Fix signature and call in CreateMutex and
6031         CreateEvent.
6033 2003-12-01  Dick Porter  <dick@ximian.com>
6035         * icall.c: 
6036         * locales.c: Implement string compares and searching
6038         * object.h: Add extra Thread field
6040 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
6042         * reflection.c (fixup_method): Add support for MonoCMethod.
6044 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
6046         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
6048         * reflection.c (assembly_name_to_aname): Allow extra characters in
6049         assembly names. Fixes #51468.
6051 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
6053         * exception.c (mono_exception_from_name_domain): New helper function.
6055         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
6056         exception object in the correct domain.
6058         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
6059         formatting + make a copy a the input data.
6061         * loader.c (mono_get_method_from_token): Methods which contain
6062         native code do not have entries in the ImplMap.
6064         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
6065         Thanks to Gonzalo for spotting this.
6066         
6067         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
6068         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
6070         * assembly.h (mono_assembly_load_from): Split the second part of 
6071         assembly loading into a new public function.
6073         * exception.h (mono_get_exception_bad_image_format): New function.
6075 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
6077         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
6078         Enumerate all modules inside a dynamic assembly. Fixes #51293.
6079         
6080         * icall.c: Add new icall for creating dynamic methods.
6082         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
6084         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
6086         * reflection.c (mono_reflection_create_dynamic_method): New icall to
6087         create a dynamic method.
6089         * reflection.c (resolve_object): New helper function.
6091         * reflection.c: Generalize ReflectionMethodBuilder and the functions
6092         which manipulate it so they can also work on dynamic methods.
6094         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
6095         creating the MonoReflectionMethodAux structure if it is not needed.
6096         
6097         * reflection.h verify.c: Update after changes to object layout.
6099         * reflection.c (method_builder_encode_signature): Fix compilation on
6100         gcc 2.95.x.
6102 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
6104         * appdomain.h: Added support for context static fields. Added static_data
6105           field to MonoAppContext and renamed thread_static_fields to a more
6106           generic special_static_fields in MonoAppDomain, since it can now contain
6107           context static fields.
6108         * domain.c: Updated hashtable name.
6109         * object.c: Replaced field_is_thread_static() for a more generic
6110           field_is_special_static() which also checks for context static attribute.
6111           In mono_class_vtable(), added support for static context fields.
6112         * threads.c: Changed methods that manage thread static fields to more
6113           generic methods so they can be reused both for thread and context static
6114           data.
6115         * threads.h: Declared some new methods.
6117 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
6119         * reflection.h: Update after changes to the managed types.
6121         * reflection.c (encode_custom_modifiers): New helper function.
6123         * reflection.c (method_encode_signature): Emit custom modifiers.
6125         * reflection.c (field_encode_signature): Emit custom modifiers.
6127 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
6129         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
6131         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
6132         implementation.
6134         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
6135         icall.
6137         * object.c (mono_field_get_value_object): New function.
6139         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
6140         specific.
6142 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
6144         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
6145         return a preallocated out-of-memory exception instance.
6147         * object.c (out_of_memory): Use the new function.
6149         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
6150         flag is before the custom modifiers. Fixes #49802.
6152 2003-11-16  Martin Baulig  <martin@ximian.com>
6154         * class.c (mono_class_is_open_constructed_type): Implemented the
6155         MONO_TYPE_GENERICINST case.
6157 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
6159         * assembly.c (mono_assembly_fill_assembly_name): New function to
6160         fill out the MonoAssemblyName structure.
6161         (mono_assembly_open): Use the new function.
6163         * icall.c (fill_reflection_assembly_name): New helper function.
6165         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
6166         new function.
6168         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
6170 2003-11-15  Martin Baulig  <martin@ximian.com>
6172         * class.c (mono_class_is_open_constructed_type): New public
6173         function; checks whether a type is an open constructed type,
6174         ie. whether it still contains type parameters.
6175         (mono_class_inflate_generic_type): If we're a type parameter and
6176         the inflated type is also a MONO_TYPE_(M)VAR, return the original
6177         type.
6179         * class.h (MonoGenericInst): Added `guint32 is_open'.
6181         * loader.c (method_from_methodspec): Check whether we're an open
6182         or closed constructed type and set `ginst->is_open'.
6184         * reflection.c (mono_reflection_bind_generic_parameters): Check
6185         whether we're an open or closed constructed type and set
6186         `ginst->is_open'.
6187         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
6188         from open constructed types.
6190 2003-11-15  Martin Baulig  <martin@ximian.com>
6192         * reflection.c (mono_reflection_bind_generic_parameters): If we're
6193         a generic instance (instead of a generic type declaration) with
6194         unbound generic parameters, bind them to our actual types.
6196 2003-11-14  Martin Baulig  <martin@ximian.com>
6198         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
6200         * reflection.c (mono_reflection_bind_generic_parameters): If we're
6201         an interface type, populate `res->interfaces' with instantiated
6202         versions of all the interfaces we inherit.
6204 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
6206         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
6207         when MONO_PATH is set but doesn't contain the install dir.
6209 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6211         * icall.c:
6212         (ves_icall_Type_GetInterfaces): don't return an interface twice when
6213         it's also implemented in base classes. Fixes bug #50927.
6215 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
6217         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
6218         if this method is called from a finalizer. Fixes #50913.
6220 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
6222         * threads.c: Implement VolatileRead/VolatileWrite
6224         * icall.c: Add new icalls for VolatileRead/VolatileWrite
6226 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
6228         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
6229         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
6230         2.95.3.
6232         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
6233         from Peter Ross (pro@missioncriticalit.com).
6234         
6235 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
6237         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
6239 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
6241         * assembly.c (mono_assembly_load_references): Disable check because it
6242         triggers on older corlibs which lots of people have.
6244 2003-11-12  Jackson Harper  <jackson@ximian.com>
6246         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
6247         load corlib.dll if mscorlib.dll is not found.
6248         * assembly.h: Remove corlib name define.
6249         * class.c:
6250         * domain.c:
6251         * image.c: Change corlib name to mscorlib.
6252         
6253 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
6255         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
6257 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
6259         * appdomain.h: Added loader_optimization here to sync with the C#
6260         code, and add disallow_binding_redirects field.
6262 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
6264         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
6266         * reflection.c (mono_image_build_metadata): Fix crash on modules
6267         with no types.
6269         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
6271         * icall.c (ves_icall_get_method_info): Return callingConvention as
6272         well.
6274         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
6275         namespaces from the EXPORTEDTYPE table as well.
6277         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
6278         from all modules inside the assembly.
6279         
6280 2003-11-11  Martin Baulig  <martin@ximian.com>
6282         * reflection.c (mono_reflection_bind_generic_parameters): Make
6283         this work for interfaces.
6285 2003-11-11  Martin Baulig  <martin@ximian.com>
6287         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
6289 2003-11-11  Martin Baulig  <martin@ximian.com>
6291         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
6292         "MonoInflatedMethod" and "MonoInflatedCtor".
6294 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
6296         * reflection.c (resolution_scope_from_image): Use the assembly table
6297         from the manifest module, since other modules don't have it.
6299         * debug-helpers.c (mono_type_full_name): New helper function.
6301         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
6303         * image.c (mono_image_load_file_for_image): New public function which
6304         is a replacement for the load_file_for_image in class.c.
6306         * assembly.c (mono_assembly_load_module): A wrapper for the function
6307         above which does assembly association and reference loading too.
6309         * class.c (mono_class_from_name): Call mono_assembly_load_module.
6311 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6313         * appdomain.c: not all of the attributes for the full assembly name
6314         are required and the order doesn't matter. Fixes bug #50787.
6316 2003-11-10  Dick Porter  <dick@ximian.com>
6318         * locales.c: Use platform-endian UTF16
6320 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
6322         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
6323         
6324 2003-11-10  Martin Baulig  <martin@ximian.com>
6326         * metadata.c
6327         (mono_metadata_load_generic_params): Make this actually work.
6329         * reflection.c (mono_reflection_bind_generic_parameters): If our
6330         parent is a generic instance, pass all the `types' to it, no
6331         matter whether it has the same number of type parameters or not.
6333 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
6335         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
6337         * assembly.c (mono_assembly_load_references): Move the image<->assembly
6338         assignment code to this function so it gets called recursively for all
6339         modules.
6341         * image.c (load_modules): Remove the assembly assignment since it is
6342         now done by mono_assembly_load_references.
6343         
6344         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
6345         Add 'module' argument.
6346         (mono_module_get_types): New helper function.
6347         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
6349 2003-11-08  Martin Baulig  <martin@ximian.com>
6351         * class.c (mono_class_inflate_generic_method): Interface method
6352         don't have a header.
6354         * reflection.c (mono_image_get_methodspec_token): Take an
6355         additional `MonoGenericInst *' argument instead of reading it from
6356         the header; this is necessary to support interfaces.
6357         (mono_image_create_token): Pass the `MonoGenericInst *' from the
6358         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
6359         (inflated_method_get_object): Take an additional `MonoGenericInst *'
6360         argument.
6362         * reflection.h (MonoReflectionInflatedMethod): Added
6363         `MonoGenericInst *ginst'.
6365 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
6367         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
6369 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
6371         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
6373 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
6375         * reflection.c 
6376         (reflection_methodbuilder_from_method_builder):
6377         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
6378         initialize a ReflectionMethodBuilder structure.
6379         (mono_image_get_methodbuilder_token):
6380         (mono_image_get_ctorbuilder_token): New functions to emit memberref
6381         tokens which point to types in another module inside the same assembly.
6383         * reflection.c: Use the new helper functions.
6384         
6385         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
6387         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
6388         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
6390         * reflection.c (resolution_scope_from_image): Emit a moduleref if
6391         neccesary.
6393         * reflection.c (mono_image_build_metadata): Emit metadata only for the
6394         current module. Emit the manifest only for the main module.
6396         * reflection.c (mono_image_create_token): Add assertion when a 
6397         memberref needs to be created.
6399         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
6401         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
6402         larger buffer for the custom attribute blob. Fixes #50637.
6403         
6404 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6406         * threadpool.c: notify listener on async processing handles after
6407         invoking the async callback. Thanks to Zoltan.
6409 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
6411         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
6412         avoid code duplication.
6414         * reflection.h (MonoDynamicImage): New type which is currently unused,
6415         but will be used through the ref.emit code in place of 
6416         MonoDynamicAssembly.
6418         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
6419         object layout.
6421         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
6422         a MonoDynamicImage instead of just a MonoImage.
6423         
6424         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
6425         icalls to ModuleBuilder but keep their semantics, so they will work
6426         with moduleb->assemblyb. This will change later.
6427         
6428 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
6430         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
6431         object layout.
6433         * reflection.c (mono_image_build_metadata): Avoid creation of a default
6434         main module, since it is now done by the managed code.
6436 2003-11-03  Martin Baulig  <martin@ximian.com>
6438         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
6439         `ginst->klass' here.
6440         (method_encode_methodspec): Don't use the `ginst->generic_method's
6441         klass if it's a generic instance, use `ginst->klass' in this case.
6443 2003-11-03  Martin Baulig  <martin@ximian.com>
6445         * reflection.c (mono_image_get_generic_method_param_info):
6446         Removed, use mono_image_get_generic_param_info() instead.
6447         (mono_image_get_type_info): Write the GenericParam table before
6448         the Method table.  This is neccessary because in the GenericParam
6449         table, type parameters of the class (ie. '!0' etc.) must come
6450         before the ones from its generic methods (ie. '!!0' etc).
6452 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
6454         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
6456 2003-11-02  Martin Baulig  <martin@ximian.com>
6458         * reflection.c (create_generic_typespec): Take a
6459         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
6460         the generic parameters from it.
6462 2003-11-02  Martin Baulig  <martin@ximian.com>
6464         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
6465         instead of a `MonoClassField *' since we just need the type.
6466         (create_generic_typespec): New static function.  Creates a
6467         TypeSpec token for a generic type declaration.
6468         (mono_image_get_generic_field_token): New static function.
6469         (mono_image_create_token): If we're a FieldBuilder in a generic
6470         type declaration, call mono_image_get_generic_field_token() to get
6471         the token.
6473 2003-11-02  Martin Baulig  <martin@ximian.com>
6475         * reflection.h
6476         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
6477         `MonoReflectionGenericInst *declaring_type' and
6478         `MonoReflectionGenericInst *reflected_type' fields.
6480         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
6481         `MonoReflectionGenericInst *declaring_type' and a
6482         `MonoReflectionGenericInst *reflected_type' argument instead of a
6483         single `MonoReflectionGenericInst *type' one.  Set
6484         `res->declaring_type' and `res->reflected_type' from them.
6485         (mono_reflection_inflate_field): Likewise.      
6487 2003-11-02  Martin Baulig  <martin@ximian.com>
6489         * class.c (mono_class_setup_vtable): Don't store generic methods
6490         in the vtable.  
6492 2003-11-02  Martin Baulig  <martin@ximian.com>
6494         * reflection.h (MonoReflectionGenericInst): Added
6495         `MonoReflectionType *declaring_type'.
6497         * reflection.c (mono_reflection_bind_generic_parameters): Use
6498         `if (tb->parent)' instead of `klass->parent'.
6500 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
6502         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
6503         with an empty ASSEMBLY table.
6505         * reflection.c (mono_image_build_metadata): Avoid using the same loop
6506         variable in the inner and outer loops.
6508 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
6510         * metadata.h (mono_metadata_make_token): Put parentheses around macro
6511         argument.
6513         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
6514         
6515         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
6516         icalls. Instead, do everything in managed code. This is needed since
6517         it is hard to restore the original domain etc. in unmanaged code in the
6518         presence of undeniable exceptions.
6520         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
6521         New icalls to push and pop appdomain refs.
6523 2003-10-31  Martin Baulig  <martin@ximian.com>
6525         * class.c (inflate_generic_type): Renamed to
6526         mono_class_inflate_generic_type() and made it public.
6528         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
6529         New interncall.
6531         * loader.c (mono_field_from_memberref): Also set the retklass for
6532         typespecs.
6534         * fielder.c (mono_image_get_inflated_field_token): New static
6535         method; creates a metadata token for an inflated field.
6536         (mono_image_create_token, fixup_method): Added support for
6537         "MonoInflatedField".
6538         (fieldbuilder_to_mono_class_field): New static function.
6539         (mono_reflection_inflate_field): New public function.
6541         * reflection.h
6542         (MonoReflectionGenericInst): Added `MonoArray *fields'.
6543         (MonoReflectionInflatedField): New typedef.     
6545 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
6547         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
6548         for Solaris and other platforms without s6_addr16
6550 2003-10-30  Martin Baulig  <martin@ximian.com>
6552         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
6553         argument instead of two.
6554         (mono_class_inflate_generic_signature): Likewise.
6555         (inflate_generic_header): Likewise.
6556         (mono_class_inflate_generic_method): Likewise.  In addition, if
6557         `ginst->klass' is set, it becomes the new `method->klass'.
6559         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
6560         field.
6562         * reflection.c (encode_generic_method_sig): Write a 0xa as the
6563         first byte. [FIXME]
6564         (method_encode_methodspec): If we have generic parameters, create
6565         a MethodSpec instead of a MethodRef.
6566         (fixup_method): Added support for "MonoInflatedMethod" and
6567         "MonoInflatedCtor".
6568         (mono_image_create_token): Added support for "MonoInflatedMethod"
6569         and "MonoInflatedCtor".
6570         (inflated_method_get_object): New static function; returns a
6571         managed "System.Reflection.MonoInflatedMethod" object.
6572         (mono_reflection_bind_generic_method_parameters): Return a
6573         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
6574         (mono_reflection_inflate_method_or_ctor): Likewise.
6575         (mono_image_get_generic_method_param_info): Initialize unused
6576         fields to zero.
6577         (mono_image_get_generic_param_info): Likewise.
6579         * reflection.h (MonoReflectionInflatedMethod): New public
6580         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
6581         "S.R.MonoInflatedCtor" classes.
6583         * loader.c (method_from_memberref): If we're a TypeSpec and it
6584         resolves to a generic instance, inflate the method.
6586 2003-10-28  Dick Porter  <dick@ximian.com>
6588         * object.c (mono_runtime_run_main): Convert command-line arguments
6589         into utf8, falling back to the user's locale encoding to do so.
6591 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
6593         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
6594         at this time.
6596         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
6598         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
6599         up icalls at method definition time. Partially fixes #33569.
6601 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
6603         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
6604         marshalling of arrays. Fixes #50116.
6606         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
6608         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
6609         points to a vtable in the dying appdomain.
6611         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
6612         listeners into unmanaged code inside the lock.
6614         * object.c (mono_class_vtable): Turn off typed allocation in non-root
6615         domains and add some comments.
6617 2003-10-25  Martin Baulig  <martin@ximian.com>
6619         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
6621         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
6623         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
6624         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
6625         currently parsing.  Create the generic class and store it in
6626         `generic_inst->klass' before parsing the type arguments.  This is
6627         required to support "recursive" definitions; see mcs/tests/gen-23.cs
6628         for an example.
6629         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
6630         to support recursive typespec entries.
6632         * class.c (mono_class_setup_parent): If our parent is a generic
6633         instance, we may get called before it has its name set.
6634         (mono_class_from_generic): Splitted into
6635         mono_class_create_from_generic() and mono_class_initialize_generic().
6637 2003-10-25  Martin Baulig  <martin@ximian.com>
6639         * icall.c (ves_icall_Type_BindGenericParameters): Return a
6640         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
6641         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
6642         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
6644         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
6645         (create_typespec): Likewise.
6646         (mono_reflection_bind_generic_parameters): Return a
6647         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
6648         (mono_reflection_inflate_method_or_ctor): New public function.
6650         * reflection.h (MonoReflectionGenericInst): New typedef.        
6652 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
6654         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
6655         inside the domain lock. Fixes #49993.
6656         
6657         * object.c (mono_class_vtable): When typed allocation is used, 
6658         allocate vtables in the GC heap instead of in the mempool, since the
6659         vtables contain GC descriptors which are used by the collector even
6660         after the domain owning the mempool is unloaded.
6662         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
6664         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
6665         reflect what it does. Also invalidate mempools instead of freeing
6666         them if a define is set.
6668         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
6669         of the appdomain.
6670         
6671         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
6672         hold the finalizable objects in this domain.
6674         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
6675         appdomain.
6677         * appdomain.c (mono_domain_set): New function to set the current
6678         appdomain, but only if it is not being unloaded.
6680         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
6681         appdomain which is being unloaded.
6682         
6683         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
6684         unloading of the root appdomain.
6686         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
6687         icall to execute a method in another appdomain. Intended as a 
6688         replacement for InternalSetDomain, which can confuse the code 
6689         generation in the JIT.
6691         * appdomain.c (mono_domain_is_unloading): New function to determine
6692         whenever an appdomain is unloading.
6694         * appdomain.c (mono_domain_unload): New function to correctly unload
6695         an appdomain.
6697         * assembly.c (mono_assembly_load_references): Check that an assembly
6698         does not references itself.
6700         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
6701         domain manually, it asks the finalizer thread to do it, then waits for
6702         the result. Also added a timeout.
6704         * icall.c: Register the new icalls.
6706         * threads.h threads.c: Export the mono_gc_stop_world and 
6707         mono_gc_start_world functions.
6708         
6709         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
6710         function to fill out the mempool with 0x2a.
6712 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
6714         * reflection.h (MonoReflectionMethodAux): New structure to store
6715         information which is rarely used, thus is not in the MonoMethod
6716         structure.
6718         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
6719         store the aux info.
6721         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
6722         and marshalling info into the aux structure.
6724         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
6725         from the aux structure.
6727         * loader.c (mono_method_get_param_names): Retrieve the param names from
6728         the aux structure.
6729         
6730 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
6732         * exception.h exception.c: Add AppDomainUnloadedException && fix 
6733         warning.
6735 2003-10-21  Dick Porter  <dick@ximian.com>
6737         * socket-io.c
6738         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
6739         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
6741 2003-10-21  Martin Baulig  <martin@ximian.com>
6743         * reflection.c (mono_reflection_bind_generic_parameters):
6744         `klass->parent' is NULL for interfaces.
6746 2003-10-21  Martin Baulig  <martin@ximian.com>
6748         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
6750 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
6752         * exception.c (mono_exception_from_name_msg): New helper function for
6753         creating exceptions and initializing their message field.
6755         * exception.c: Simplify functions using the new helper.
6757         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
6758         New function.
6760         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
6761         mono_raise_exception, since otherwise gcc doesn't generate the function
6762         epilog for raise_exception, confusing the stack unwinding in the JIT.
6763         Fixes #45043.
6765         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
6766         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
6767         Fixes #49499.
6769 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6771         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
6772         utf8.
6774 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
6776         * icall.c: Removed GetUninitializedObject method because
6777           AllocateUninitializedClassInstance does the same.
6779 2003-10-18  Martin Baulig  <martin@ximian.com>
6781         * class.c (inflate_generic_signature): Renamed to
6782         mono_class_inflate_generic_signature() and made it public.
6783         (my_mono_class_from_generic_parameter): New static function; if we
6784         don't already have the generic parameter's MonoClass, create a
6785         very simple one which is just used internally in the runtime and
6786         not passed back to managed code.
6788         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
6790         * metadata.h (MonoMethodSignature): Moved the
6791         `MonoGenericParam *gen_params' to the MonoMethodHeader.
6792         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
6794         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
6795         ves_icall_MonoMethod_GetGenericArguments(); this is now an
6796         interncall on the MonoMethod class, not on MethodInfo.
6797         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
6798         calling mono_reflection_bind_generic_method_parameters() directly.
6800         * loader.c (mono_method_get_signature): If this is a MethodSpec;
6801         return the already computed `method->signature'.
6802         (method_from_methodspec): New static function to load a method
6803         from a MethodSpec entry.
6804         (mono_get_method_from_token): Call the new method_from_methodspec()
6805         for MethodSpec tokens.  
6806         (mono_get_method_from_token): If we're a generic method, load the
6807         type parameters.
6809         * reflection.c (mono_image_get_memberref_token): Allow
6810         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
6811         table.
6812         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
6813         (mono_image_create_token): First check whether it's a generic
6814         method (so we'd need to create a MethodSpec), then do the other
6815         two alternatives.
6816         (mono_reflection_bind_generic_method_parameters): Return a
6817         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
6818         called directly from the interncall.
6820 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
6822         * reflection.c (load_public_key): Move loading of the public key
6823         into managed code.
6825         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
6827         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
6828         fields.
6830         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
6831         culture, hash_alg and public_key. Fixes #49555.
6833 2003-10-17  Martin Baulig  <martin@ximian.com>
6835         * class.h (MonoGenericInst): Moved this declaration here and added
6836         `MonoMethod *generic_method'.
6838         * icall.c
6839         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
6840         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
6842         * metadata.c (mono_metadata_type_equal): Two types of
6843         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
6844         index; ie. don't compare the address of the `MonoGenericParam'
6845         structure.
6846         (mono_metadata_load_generic_params): Removed the `MonoMethod
6847         *method' argument.
6849         * metadata.h (MonoGenericInst): Moved declaration to class.h.
6850         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
6852         * reflection.c (method_encode_signature): Encode the number of
6853         generic parameters.
6854         (encode_generic_method_sig): New static function.
6855         (method_encode_methodspec): New static function; creates an entry
6856         in the MethodSpec table for a generic method.
6857         (mono_image_get_methodspec_token): New static function.
6858         (mono_image_create_token): Call mono_image_get_methodspec_token()
6859         for generic methods.
6860         (mono_reflection_bind_generic_method_parameters): New public
6861         function.  Instantiates a generic method.
6863 2003-10-16  Martin Baulig  <martin@ximian.com>
6865         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
6866         *gen_params' here from MonoMethodHeader.
6868         * metadata.c (mono_metadata_parse_method_signature): If we have
6869         generic parameters, initialize `method->gen_params' and then set
6870         the correct `type->data.generic_param' in all the parameters.
6872 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
6874         * threads.c (mono_threads_get_default_stacksize): New function to 
6875         return the default stacksize.
6877         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
6878         termination of the finalizer thread, since the previous method had
6879         race conditions. Fixes #49628.
6881         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
6882         as for the other managed threads.
6884 2003-10-16  Martin Baulig  <martin@ximian.com>
6886         * class.c (inflate_generic_signature): Copy `generic_param_count'
6887         and `gen_params'.
6889         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
6890         New interncall.
6892         * metadata.c (mono_metadata_parse_method_signature): Actually set
6893         the `method->generic_param_count' here.
6894         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
6896 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
6898         * object.h: Add a new field to TypedRef to simplify the implementation
6899         of the REFANY opcodes in the JIT.
6901         * icall.c: Make use of the new field.
6903         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
6904         dynamically.
6906 2003-10-15  Martin Baulig  <martin@ximian.com>
6908         * class.c (mono_class_from_gen_param): Renamed to
6909         mono_class_from_generic_parameter() and moved most of the
6910         functionality from mono_reflection_define_generic_parameter()
6911         here; ie. we create a "real" class here.
6912         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
6913         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
6914         previously been called.
6916         * class.h (MonoGenericParam): Moved the declaration of this struct
6917         here from metadata.h and added `MonoMethod *method'.
6919         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
6920         interncall.
6922         * loader.c (mono_get_method_from_token): If we have any generic
6923         parameters, call mono_metadata_load_generic_params() to read them
6924         from the MONO_TABLE_GENERICPAR.
6926         * metadata.c (mono_metadata_load_generic_params): Added
6927         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
6929         * metadata.h (MonoMethodSignature): Replaced
6930         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
6931         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
6933         * reflection.c (mono_reflection_define_generic_parameter): Moved
6934         most of the functionality into the new
6935         mono_class_from_generic_parameter(); set the `method' field if
6936         we're a method parameter.       
6938 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
6940         * marshal.c (emit_struct_conv): if native size is 0
6941         emit no code.
6943 2003-10-14  Martin Baulig  <martin@ximian.com>
6945         * icall.c: The generics API has changed in the spec since it was
6946         added to System.Type; these modifications make it match the spec
6947         again.
6948         (ves_icall_Type_GetGenericParameters): Renamed to
6949         `ves_icall_Type_GetGenericArguments'.
6950         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
6951         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
6952         `ves_icall_MonoType_get_HasGenericArguments'.
6953         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
6954         `ves_icall_MonoType_get_IsGenericParameter'.
6955         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
6956         this is no interncall anymore.
6957         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
6958         `ves_icall_TypeBuilder_get_IsGenericParameter'.
6960 2003-10-14  Martin Baulig  <martin@ximian.com>
6962         * reflection.c (mono_reflection_bind_generic_parameters): Also
6963         inflate generic methods if we're reading the class from IL.
6965 2003-10-13  Martin Baulig  <martin@ximian.com>
6967         * reflection.c (mono_reflection_define_generic_parameter): This
6968         method isn't called directly from the icall anymore; take a
6969         `MonoReflectionAssemblyBuilder *' so we can use this for type and
6970         method generic parameters.
6971         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
6972         (method_builder_encode_signature): Encode generic parameters.
6973         (mono_image_get_method_info): Write generic params to the
6974         MONO_TABLE_GENERICPARAM table.
6976         * reflection.h (MonoReflectionMethodBuilder): Added
6977         `MonoArray *generic_params'.
6979         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
6981         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
6982         wrapper for mono_reflection_define_generic_parameter().
6983         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
6985 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
6987         * marshal.h: Add missing function to fix build.
6989         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
6990         the SetLastError pinvoke attribute.
6992         * marshal.c (mono_marshal_set_last_error): New helper function called
6993         by the generated code.
6994         
6995         * marshal.c (mono_mb_emit_branch): New helper function.
6997         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
6999         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
7000         classes as parameters and return values of delegates. Fixes #29256. 
7002 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
7004         * locales.c: use gint32 in non HAVE_ICU case
7006 2003-10-11  Martin Baulig  <martin@ximian.com>
7008         * mono-debug.c (mono_debug_add_method): Added a workaround for
7009         bug #48591.
7011 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
7013         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
7014         delegates passed to native code must use the STDCALL calling 
7015         convention. Fixes #35987.
7017 2003-10-10  Martin Baulig  <martin@ximian.com>
7019         * class.c (inflate_generic_type): If we're inflating for a generic
7020         type instance (and not for a generic method), return
7021         MONO_TYPE_MVAR unchanged.
7023 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7025         * string-icalls.c: Join ignores null strings in the source array.
7026         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
7027         * threads.c: GetAvailableTheads is slightly more accurate.
7029 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
7031         * threads.h threads.c : add mono_threads_set_default_stacksize
7032         and pass default to CreateThread calls.
7034 2003-10-09  Dick Porter  <dick@ximian.com>
7036         * icall.c:
7037         * locales.h:
7038         * locales.c: Internal calls for constructing CultureInfo and
7039         related objects from libicu (if its available.)
7041 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
7043         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
7045 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7047         * threadpool.c: added an argument to async_invoke_thread that is the
7048         item to process, pass the MonoAsyncResult to the thread start function
7049         when creating a new thread. This way we don't need to acquire any lock
7050         when we're creating a new thread. Readded a semaphore for faster
7051         response times (instead of that Sleep i added).
7053 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
7055         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
7056         get daylight change dates better on Windows, fix handling
7057         of platforms without tm_gmtoff.
7059 2003-10-06  Martin Baulig  <martin@ximian.com>
7061         * class.c (inflate_generic_method): Renamed to
7062         mono_class_inflate_generic_method() and made public.
7063         (mono_class_init): Don't inflate the generic methods here.
7064         (mono_class_from_generic): Added `gboolean inflate_methods'
7065         argument.  Inflate the methods here.
7067         * loader.c (mono_method_get_param_names): Ignore instances of
7068         generic types for the moment.
7070         * reflection.c (fixup_method): Added support for inflated methods.
7071         (mono_image_create_token): Use mono_image_get_methodref_token()
7072         for inflated methods.
7073         (mono_custom_attrs_from_param): Ignore instances of generic types
7074         for the moment.
7075         (mono_reflection_bind_generic_parameters): New public function.
7076         Moved all the functionality from
7077         ves_icall_Type_BindGenericParameters() here and added support for
7078         dynamic types.
7079         (mono_reflection_define_generic_parameter): Initialize
7080         `klass->methods' here.
7082         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
7083         functionality into mono_reflection_define_generic_parameter().
7084         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
7085         TypeBuilder, return that TypeBuilder.
7087 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7089         * appdomain.c: removed mono_delegate_semaphore.
7091         * threadpool.c:
7092         (mono_thread_pool_add): moved hash table creation inside and the thread 
7093         creation outside of the critical region.
7094         (mono_thread_pool_finish): removed obsolete code.
7095         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
7096         continue or exit the thread depending on the queue.
7098 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
7100         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
7101         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
7102         handle more bool marshalling options
7104 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
7106         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
7107         arrays of structs. Also add a more descriptive error message when
7108         a structure member is marshalled as LPArray.
7110 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
7112         * marshal.c (mono_marshal_get_native_wrapper): Add support for
7113         marshalling arrays of complex types. Fixes #29098. Also remove an
7114         usused and incomplete function.
7116 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
7118         * gc.c: report heap_size - free_bytes as total memory allocated
7119         (bug#49362).
7121 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
7123         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
7124         fix timezone handling problems on Windows.
7125         
7126         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
7127         asserts when the year is outside the range handled by ms the functions.
7129         * class.c (setup_interface_offsets): If the class is an interface,
7130         fill out its interface_offsets slot.
7132 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7134         * threadpool.c: mark threadpool threads as background.
7136 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
7138         * decimal.c - define DECINLINE to nothing if not using GCC
7140 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
7142         * assembly.c: More refcount fixes.
7144 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7146         * string-icalls.c: if we're not trimming, return the same string.
7147         When not splitting, don't create a new string.
7149 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7151         * image.c:
7152         (mono_image_open): increment the ref_count inside the critical section.
7154 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
7156         * image.c (mono_image_open): Fix reference counting bug.
7158 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
7160         * marshal.c (mono_marshal_type_size) struct alignment changed for 
7161         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
7162         64bits. Avoid leak in mono_marshal_get_native_wrapper when
7163         mono_lookup_pinvoke_call throws.        
7165 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
7167         * reflection.c (mono_reflection_parse_type): Fix #49114.
7169         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
7170         temporary workaround for cygwin header problem.
7172         * object.c (mono_object_isinst): Synchronize this with the code
7173         generated by the JIT for casts.
7175 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
7177         * reflection.c (encode_type): Fix #38332.
7179 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
7181         * marshal.c (mono_marshal_method_from_wrapper): New function to return
7182         the original method from the wrapper method.
7184 2003-09-25  Martin Baulig  <martin@ximian.com>
7186         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
7187         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
7188         (ves_icall_Type_get_IsGenericInstance): New interncall.
7190 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
7192         * object.c: fix cast warning in big endian code.
7194 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
7196         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
7197         
7198 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7200         * assembly.c: don't call check_env from mono_assembly_load. It's
7201         already done once in mono_assemblies_init and may cause headaches when
7202         multiple threads are loading assemblies.
7204 2003-09-19  Martin Baulig  <martin@ximian.com>
7206         * reflection.c (mono_reflection_define_generic_parameter): Don't
7207         allocate `klass->methods', set `klass->flags' to
7208         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
7210 2003-09-18  Martin Baulig  <martin@ximian.com>
7212         * class.c (mono_class_init): Don't create `class->methods' if it's
7213         already initialized.
7215         * metadata.c (mono_metadata_load_generic_params): Make this
7216         actually work.
7218         * reflection.c (mono_reflection_define_generic_parameter): Set
7219         parent class and interfaces from the constraints.
7221         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
7222         to keep this struct in sync with the declaration in TypeBuilder.cs.
7224 2003-09-17  Martin Baulig  <martin@ximian.com>
7226         * metadata.h (MonoType): Replaced the data's `int type_param'
7227         field with `MonoGenericParam *generic_param'.
7228         (MonoGenericParam): Added `MonoClass *klass'.
7230         * class.c (mono_class_from_gen_param): Removed the
7231         `MonoImage *image' and `int type_num' arguments.
7233         * metadata.c (mono_metadata_parse_generic_param): New static
7234         method; creates a MonoGenericParam which just contains the index.
7235         (do_mono_metadata_parse_type): Call
7236         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
7237         MONO_TYPE_MVAR.
7239         * reflection.c (mono_image_typedef_or_ref): Generic type
7240         parameters may be in the same assembly, but never use a typedef
7241         for them.
7242         (mono_reflection_define_generic_parameter): We're now creating a
7243         "real" class for the type parameter; it's now safe to call
7244         mono_class_from_mono_type() on the class'es type, it'll do the
7245         right thing.
7247 2003-09-16  Martin Baulig  <martin@ximian.com>
7249         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
7250         `symfile->range_entry_size' and `symfile->class_entry_size' here;
7251         the `symfile' data structure must be fully initialized before it
7252         gets added to the table.
7254 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
7256         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
7258         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
7259         class init trampolines.
7261 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
7263         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
7264         to the built-in profiler to turn off time and allocation profiling
7265         respectively.
7267 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
7269         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
7270         g_direct_equal.
7272         * debug-helpers.c (mono_method_full_name): Print the wrapper type
7273         in human readable form.
7275 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
7277         * reflection.c icall.c: Fixed warnings.
7279         * image.c (load_class_names): Use a temporary hash table to hold the
7280         namespaces in order to avoid doing many string comparisons.
7282         * image.h: Fix typo.
7284         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
7285         Pass NULL instead of g_direct_equal to the GHashTable constructor 
7286         since the NULL case is short-circuited inside g_hash_table_lookup, 
7287         leading to better performance.  
7289         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
7290         obtain the first custom attribute for a given index. Depends on the
7291         CustomAttribute table being sorted by the parent field.
7293         * reflection.c (mono_custom_attrs_from_index): Use the new function 
7294         for better performance.
7296 2003-09-07  Martin Baulig  <martin@ximian.com>
7298         * class.c (mono_class_init): If we're a generic instance, inflate
7299         all our methods instead of loading them from the image.
7300         (mono_class_from_generic): Set `class->methods = gklass->methods'.
7302 2003-09-07  Martin Baulig  <martin@ximian.com>
7304         * mono-debug-debugger.c: Added support for constructors.
7306 2003-09-06  Martin Baulig  <martin@ximian.com>
7308         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
7309         New interncall.
7311         * reflection.c (mono_reflection_setup_generic_class): Call
7312         ensure_runtime_vtable() to create the vtable.
7314 2003-09-05  Martin Baulig  <martin@ximian.com>
7316         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
7317         MONO_TYPE_MVAR.
7319 2003-09-04  Martin Baulig  <martin@ximian.com>
7321         * reflection.c (mono_reflection_define_generic_parameter): Generic
7322         parameters start with zero.
7324 2003-09-04  Martin Baulig  <martin@ximian.com>
7326         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
7328         * reflection.h (MonoReflectionGenericParam): New typedef.
7329         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
7330         the generic parameters from the managed TypeBuilder.
7332         * reflection.c (mono_reflection_define_generic_parameter): New function.
7333         (mono_reflection_create_runtime_class): Encode generic parameters.
7334         (mono_reflection_setup_generic_class): New function; this is
7335         called after adding adding all generic params to the TypeBuilder.
7336         (encode_type): Added MONO_TYPE_VAR.
7338 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
7340         * class.h class.c (mono_class_needs_cctor_run): Moved this method
7341         here from the JIT.
7343         * assembly.h assembly.c: Moved the AOT loading code into an assembly
7344         load hook.
7346 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
7348         * reflection.h reflection.c class.h class.c: Delete duplicate 
7349         definition of mono_type_get_name () from reflection.c and export the
7350         one in class.c.
7352         * class.c: Class loading fixes from Bernie Solomon 
7353         (bernard@ugsolutions.com).
7355         * reflection.c: Endianness fixes from Bernie Solomon 
7356         (bernard@ugsolutions.com).
7357         
7358 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
7360         * assembly.h assembly.c: Define a file format version for AOT
7361         libraries.
7362         
7363         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
7365         * appdomain.h (MonoJitInfo): New field to determine whenever the
7366         code is domain neutral.
7367         
7368 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
7370         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
7372 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
7374         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
7375         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
7376         Avoid caching the result since strings must be domain specific. Fixes
7377         #48050.
7379 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
7381         * marshal.c (mono_marshal_init): Make this callable multiple times
7382         since it is hard to find a correct place to call it.
7384         * object.c (mono_runtime_class_init): Execute static constructors in
7385         the correct appdomain.
7387         * image.c (build_guid_table): Handle the case when multiple images have
7388         the same GUID.
7390 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7392         * icall.c: added a couple of icalls for System.Web.
7394 2003-08-28  Martin Baulig  <martin@ximian.com>
7396         * icall.c (ves_icall_Type_BindGenericParameters): Use
7397         `klass->generic_inst' instead of `&klass->byval_arg' in the
7398         mono_type_get_object() call.  The returned type must be
7399         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
7401 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
7403         * NOTES: New file.
7405         * object.c (mono_class_proxy_vtable): Make it thread safe.
7407         * pedump.c: Fix warning.
7409         * object.c appdomain.h: Get rid of metadata_section. 
7410         It is no longer needed and it was causing deadlocks with domain->lock.
7412         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
7414 2003-08-26  Martin Baulig  <martin@ximian.com>
7416         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
7418 2003-08-26  Martin Baulig  <martin@ximian.com>
7420         * pedump.c (main): Call mono_metadata_init(),
7421         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
7422         and mono_loader_init().
7424 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
7426         * loader.h: Add missing include to fix build.
7428         * image.h: mono_image_load_references is no more.
7430         * assembly.c: Reworked assembly loading to make it really thread safe.
7431         After these changes, the assembly returned by mono_assembly_open is
7432         fully initialized, i.e. all its references assemblies are loaded.
7434         * assembly.c (mono_image_load_references): Renamed to 
7435         mono_assembly_load_references, and made private, since clients no
7436         longer need to call it.
7438         * class.c: Removed calls to mono_assembly_load_references, since it was
7439         a source of deadlocks.
7441         * loader.h loader.c class.h class.c: Protect data structures using a 
7442         new lock, the loader lock.
7444         * class.c (mono_class_setup_vtable): Create temporary hash tables and
7445         GPtrArrays only when needed.
7447         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
7448         into empty structures by mcs. Fixes pinvoke7.cs.
7449         
7450         * domain.c (mono_init): Call a new initialization function.
7452         * appdomain.c (mono_runtime_init): Call the new initializer function
7453         of the marshal module.
7455         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
7456         inserted into empty structures by mcs. Fixes pinvoke7.cs.
7458         * marshal.h marshal.c: Added locks around the wrapper caches to make
7459         this module thread safe.
7461         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
7462         this argument. Fixes pinvoke1.exe.
7464 2003-08-25  Lluis Sanchez <lluis@ximian.com>
7466         * object.h: Added call_type field to MonoMethodMessage and the corresponding
7467         enumeration of values. Removed fields to store remote call output values in
7468         MonoAsyncResult. Not needed any more.
7469         * object.c: Initialize call_type and async_result fields in mono_message_init.
7470         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
7471         dispatching the message.
7472         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
7473         async call to finish. To do it use a message with EndInvoke call type.
7475 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
7477         * loader.h loader.c (mono_method_hash_marhal_info): New function which
7478         determines whenever a method has marshalling info.
7480 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7482         * assembly.c: fix the build on windows.
7484 2003-08-22 Lluis Sanchez <lluis@ximian.com>
7486         * object.cs: Fixed bug #47785.
7488 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
7490         * string-icalls.c (StringReplace): If their are no occurances of
7491         the old string found return a reference to the supplied
7492         string. This saves some memory and matches MS behavoir.
7493         
7494 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7496         * socket-io.c: fixed compilation for systems that define AF_INET6
7497         and don't define SOL_IP/SOL_IPV6.
7499 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
7501         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
7502         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
7504         * rawbuffer.c rawbuffer.h: Make this module thread safe.
7506         * domain.c: Make this module thread safe.
7508         * domain.c (mono_init): Call new initialization function.
7510         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
7511         reference types too. Fixes #38812.
7513         * image.c (mono_image_init): Fixed warnings.
7515         * class.c (mono_class_from_typeref): Handle assembly load failure
7516         correctly.
7518         * appdomain.c (add_assemblies_to_domain): Handle the case when
7519         the references of an assembly are not yet loaded.
7521         * metadata.c image.c assembly.c: Moved initialization of global
7522         variables to a separate function called at startup since lazy 
7523         initialization of these variables is not thread safe.
7524         
7525         * image.c assembly.c: Made this module thread safe by adding locks in 
7526         the appropriate places.
7528         * domain.c (mono_init): Call the new initialization functions of the
7529         three modules.
7531 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
7533         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
7534           make a direct call. It is proxy's work to make the call asynchronous.
7535           mono_delegate_end_invoke(): If the targe is a proxy, just collect
7536           the return values.
7537         * object.cs: mono_method_call_message_new(): read AsyncResult and
7538           state object from parameters list, if this info is requested.
7539         * object.h: Added fields to store remote call output values in
7540           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
7542 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
7544         * object.h: add needed fields to MonoThread.
7545         * threads.c, threads.h: allow registering a function to cleanup data
7546         allocated per thread by the JIT.
7548 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
7550         * loader.h: portability fix by Bernie Solomon
7551         * <bernard@ugsolutions.com>.
7553 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
7555         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
7556         return a MonoArray. This simplifies the code and also ensures that
7557         the cache allways contains an object reference as a value.
7559         * icall.c (ves_icall_get_parameter_info): Simplified using the new
7560         function.
7562 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7564         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
7565         fixes a problem with byte ordering when getting the address family for
7566         a socket.
7568 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
7570         * .cvsignore: Added monosn.
7572         * reflection.h reflection.c loader.c: Added support for parameter
7573         marshalling to dynamically created types. Fixes #47295.
7575 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
7577         * rand.c: remove useless warnings.
7579 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
7581         * class.c: implemented ldtoken for methods and fieldrefs.
7583 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7585         * threadpool.c: when mono_async_invoke was called, no one took care of
7586         monitoring the queue. So if the method invoked took some time and we
7587         got new async invoke requests after 500 ms (the thread created waited
7588         that long in WaitForSingleObject), the new async invoke was not called
7589         until the previous one finished.
7591         This is fixed now. Thanks to Totte for helping with it.
7593 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7595         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
7597 2003-08-11  Martin Baulig  <martin@ximian.com>
7599         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
7601 2003-08-06  Martin Baulig  <martin@ximian.com>
7603         * mono-debug-debugger.c: Added support for static fields,
7604         properties and methods.
7606 2003-08-06  Martin Baulig  <martin@ximian.com>
7608         * mono-debug-debugger.c: Don't store the MonoString's vtable to
7609         make this work for applications with multiple application domains.
7611 2003-08-04  Martin Baulig  <martin@ximian.com>
7613         * mono-debug-debugger.c: Completely reworked the type support; the
7614         most important thing is that we're now just using one single
7615         `MonoType' instance per type.
7617 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
7619         * mono-endian.h, mono-endian.c, icall.c: Added icall
7620         ves_icall_System_Double_AssertEndianity to assert double word endianity
7621         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
7623 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
7625         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
7626         support, icalls and fixes.
7628 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
7630         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
7631         classes that are a punctuation character in .NET is not the same a
7632         g_unichar_ispunct.
7634 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
7636         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
7638 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
7640         * icall.c: Add new MemCopy internalcall.
7641         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
7642         Simplified code; It is not necessary to handle all the cases here,
7643         as the C# code takes care of it.  Only handle the case of the name
7644         resource embedded into the assembly.
7646         Changed signature to return the data pointer and the size of the
7647         data. 
7649 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
7651         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
7652         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
7654 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
7656         * socket-io.c: ignore EINTR error in select.
7658 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
7660         * class.h, class.c: removed unused subclasses field in MonoClass.
7662 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
7664         * icall.c: improve fix of get_base_definition(). If the parent class
7665           doesn't have the mehod, look at the parent of the parent.
7666         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
7667           to check if a parameter is an in or out parameter
7668           (PARAM_ATTRIBUTE_IN is not set by default).
7669           mono_method_return_message_restore(): Use mono_class_value_size to
7670           get the size of a value type. mono_type_stack_size (parameterType)
7671           does not return the correct value if parameterType is byRef.
7672           mono_load_remote_field(), mono_load_remote_field_new(),
7673           mono_store_remote_field(), mono_store_remote_field_new():
7674           raise exception if the remote call returns an exception.
7676 2003-07-28  Martin Baulig  <martin@ximian.com>
7678         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
7679         method.  This is a wrapper around mono_runtime_invoke() which
7680         boxes the instance object if neccessary.
7682 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
7684         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
7685         metadata.h, row-indexes.h, verify.c: first cut of generics support.
7687 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
7689         * icall.c: disable mcs bug workaround.
7691 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
7693         * object.c (mono_runtime_class_init): Take the metadata_section
7694         mutex before obtaining the domain mutex.
7696         * appdomain.h: Added definition of metadata_section mutex here. 
7698         * object.c: define metadata_mutex here.
7700 2003-07-24  Ravi Pratap  <ravi@ximian.com>
7702         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
7703         fixed.
7705 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
7707         * reflection.c: Fix bug #46669
7709 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7711         * exception.c:
7712         * exception.h:
7713         * icall.c:
7714         * object.h: fill in the type name for TypeLoadException.
7716 2003-07-23  Ravi Pratap  <ravi@ximian.com>
7718         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
7719         relationship between TypeBuilders while compiling corlib) and bug
7720         45993 (Array types returned from the runtime while compiling
7721         corlib were from the loaded corlib).
7723 2003-07-22  Martin Baulig  <martin@ximian.com>
7725         * mono-debug-debugger.c: Reworked the type support a bit more;
7726         distinguish between types and classes.
7728 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
7730         * icall.c: add IsArrayImpl icall.
7732 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
7734         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
7735         initializing real_size only once. Also fix bug #46602.
7737 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
7739         * object.c: Renamed mono_metadata_section to metadata_section.
7741 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
7743         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
7744           empty array if the type is an array. Fixed.
7745           ves_icall_MonoMethod_get_base_definition: if the base method
7746           is abstract, get the MethodInfo from the list of methods of
7747           the class.
7748         * reflection.c: ParameterInfo.PositionImpl should be zero-based
7749           and it was 1-based. Fixed in mono_param_get_objects.
7751 2003-07-20  Martin Baulig  <martin@ximian.com>
7753         * mono-debug.h: Set version number to 31.
7754         (mono_debug_init): Added `MonoDomain *' argument.
7756         * mono-debug-debugger.c: Reworked the type support; explicitly
7757         tell the debugger about builtin types; pass the `klass' address to
7758         the debugger.
7760 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
7762         * image.c: Allow new metadata tables to be loaded without a
7763         warning. Also update the warning message to give the new constant value.
7764                 
7765 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
7767         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
7768         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
7769         array type representation changes.
7771 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
7773         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
7774         on Environment.Exit () call.
7776 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
7778         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
7779         requires a matching corlib.
7781 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
7783         * Changelog: My editor decided to add a CR to each line. Sorry about that.
7784           Committed again without the CRs.
7785         
7786 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
7788         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
7789           getting it from the "this" socket instance. Did not work
7790           if the socket is a subclass of Socket.
7791           Also fixed bug #35371.
7793 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
7795         * metadata.c: fixed size for TypedByRef.
7796         * loader.c: when searching for a method, consider the vararg amrker.
7797         * unicode.c, decimal.c: constify some arrays.
7799 2003-07-15  Dick Porter  <dick@ximian.com>
7801         * socket-io.c: Fixed compilation for gcc < 3.2.
7803         Fixed compilation for machines that don't have AF_INET6 (thanks to
7804         Bernie Solomon <bernard@ugsolutions.com> for that part.)
7806         Fixed compile warnings.
7807         
7808         Fixed formatting and line endings.
7810 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
7812         * socket-io.h:
7813         * socket-io.c: Added IPv6 support.
7815 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
7817         * class.c (mono_class_is_assignable_from): New function to implement
7818         the is_assignable_from logic. Used by mono_object_isinst, 
7819         Type::IsAssignableFrom () and the interpreter.
7821         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
7822         Object, even interfaces.
7823         
7824         * object.c (mono_object_isinst): Implement in terms of 
7825         is_assignable_from.
7827         * icall.c (ves_icall_type_is_assignable_from): New icall.
7829 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
7831         * domain.c (foreach_domain): fix compiler warning.
7833 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
7835         * image.c (load_metadata_ptrs): use g_strndup because strndup is
7836         not available on all plattforms
7838 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
7840         * image.h image.c: Store the metadata version string in MonoImage.
7841         * icall.c: New icall to retrieve the image version.
7842         * reflection.c (create_dynamic_image): Fill in the image version field
7843         * reflection.c (build_compressed_metadata): Use the image version
7844         from the image structure.
7846 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7848         * appdomain.c: modified comment.
7849         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
7850         That will be its last iteration when mono_gc_cleanup is called from
7851         mono_runtime_cleanup and before the domain is unloaded.
7853         Fixes bug #45962.
7855 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
7857         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
7858         attributes.
7860 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
7862         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
7863         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
7864         Bernie Solomon <bernard@ugsolutions.com>.
7866 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
7868         * object.c, object.h: provide mono_object_new_fast() for faster
7869         allocation in some special cases.
7871 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
7873         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
7874         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
7876 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
7878         * threadpool.c: fix leaks.
7880 2003-07-01  Dick Porter  <dick@ximian.com>
7882         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
7883         using MonoGHashTables.  Fixes threadpool bug posted to list.
7885 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
7887         * image.h, image.c: added support to load an assembly from a byte array.
7888         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
7889         assembly bundle support.
7891 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
7893         * threadpool.c (mono_thread_pool_add): keep a reference to the
7894         AsyncResult to prevent GC
7896 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
7898         * class.c: leak fix.
7900 2003-06-25  Dick Porter  <dick@ximian.com>
7902         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
7903         for the async object, the WaitHandle object will close the handle.
7904         Fixes bug 45321.
7906 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
7908         * class.c: in mono_array_class_get (), lookup from the hash with the
7909         same type we insert: this works around a bug in
7910         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
7911         lluis. The real fix will have to wait for after the release.
7913 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
7915         * icall.c: fix memory leak when getting type members.
7917 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
7919         * reflection.c: added more pubtoken special cases.
7921 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
7923         * class.c: handle field offset correctly when class size
7924         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
7926 2003-06-20  Martin Baulig  <martin@ximian.com>
7928         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
7929         *image' field.
7931 2003-06-20  Martin Baulig  <martin@ximian.com>
7933         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
7935 2003-06-20  Martin Baulig  <martin@ximian.com>
7937         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
7938         just distinguish between variables in registers and variables at
7939         an offset relative to a register.
7941 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7943         * icall.c: #ifdef out latest changes until mcs is fixed.
7945 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
7947         * icall.c: return members in metadata order.
7949 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
7951         * icall.c: avoid infinite loop in GetTimeZoneData.
7953 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
7955         * icall.c: added Marshal.Prelink/All icalls.
7957 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
7959         * object.c, object.h: fix warnings and do some overflow checking
7960         when creating arrays.
7962 2003-06-17  Dick Porter  <dick@ximian.com>
7964         * file-io.h:
7965         * file-io.c: File attributes need to be tweaked slightly when
7966         passed from the managed to the w32 world.
7968 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
7969         * profiler.h profiler-private.h profiler.c: Rework last patch
7970         based on suggestion by Paolo.
7971         
7972 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
7974         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
7975         instruction level coverage data collection.
7976         * profiler.h profiler.c (: Added new callback function which can be
7977         used by the profiler to limit which functions should have coverage
7978         instrumentation.
7979         * profiler.c (mono_profiler_load): Call g_module_build_path to
7980         generate the file name of the profiler library.
7982 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
7984         * profiler.c, profiler.h, profiler-private.h: added basic block 
7985         coverage profiling API.
7987 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
7989         * reflection.c (mono_reflection_create_runtime_class): Add support
7990         for events in dynamically generated code.
7992         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
7993         not allocated.
7995 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
7997         * icall.c: when getting timezone info, return reasonable values if we
7998         can't get the actual data.
8000 2003-06-14  Dick Porter  <dick@ximian.com>
8002         * threads.c (start_wrapper): Remove the reference to the thread
8003         object in the TLS data, so the thread object can be finalized.
8004         This won't be reached if the thread threw an uncaught exception,
8005         so those thread handles will stay referenced :-( (This is due to
8006         missing support for scanning thread-specific data in the Boehm GC
8007         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
8009 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
8011         * reflection.c: ensure streams and tables are first allocated with
8012         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
8014 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
8016         * icall.c: fixed GetElementType for byrefs (bug# 44792).
8018 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
8020         * reflection.c (mono_reflection_create_runtime_class): Add support for
8021         properties to dynamically created classes.
8022         * reflection.c: Fix a few places where non-MonoObjects were inserted
8023         into the tokens hashtable.
8025 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
8027         * object.c: some support to handle out of memory exceptions.
8029 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
8031         * marshal.c (mono_marshal_get_native_wrapper): support reference
8032         return types
8034 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
8036         * object.h, object.c: more portability stuff from Bernie Solomon.
8037         Unexport mono_object_allocate(). Added mono_object_unbox ().
8038         Set exitcode when an unhandled exception is thrown.
8040 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
8042         * marshal.c (mono_marshal_get_native_wrapper): use custom
8043         marshaler for return types.
8045 2003-06-10  Dick Porter  <dick@ximian.com>
8047         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
8048         ip_mreq is available
8050 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
8052         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
8053         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
8054         by Bernie Solomon <bernard@ugsolutions.com>.
8056 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
8058         * gc.c (mono_gc_init): Avoid error message on shutdown when
8059         GC_DONT_GC=1 is used.
8061         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
8062         New icall to return the GUID of a module.
8064 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
8066         * class.c: ensure instance size always includes the parent's size
8067         even whem class size is set explicitly (fixes bug#44294).
8069 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
8071         * profiler.h, profiler.c: made the simple profiler thread-safe,
8072         get more accurate timing info. Allow the loading of an
8073         externally-developed profiler module.
8075 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
8077         * marshal.c (mono_marshal_get_native_wrapper): improved
8078         class/byref arguments.
8079         (mono_marshal_get_native_wrapper): better string marshaling support.
8081 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
8083         * class.c: ensure .pack and .size are handled correctly and
8084         simplified layout of static fields.
8086 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
8088         * appdomain.c
8089         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
8091         * loader.c (mono_lookup_pinvoke_call): look for modules in the
8092         current directory (fix bug 44008)
8094 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
8096         * marshal.c (mono_marshal_get_native_wrapper): started support for
8097         custom marshalers.
8098         (mono_delegate_to_ftnptr): consider marshalling specifications
8100 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
8102         * reflection.c, reflection.h: emit custom marshal info.
8104 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8106         * object.c: free the GError.
8107         * icall.c: added CloseEvent_internal.
8108         * threads.[ch]:
8109         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
8110         call.
8112 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
8114         * loader.c (mono_method_get_signature): Add support for dynamic
8115         assemblies.
8117 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
8119         * reflection.c: fixed bug #43905.
8121 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
8123         * class.c, domain.c, icall.c, metadata.h, object.h: support for
8124         handling TypedReference and ArgIterator.
8125         * loader.c, loader.h: added function to get signature at call site.
8127 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
8129         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
8130         data readonly. Buglets and warning fixes. Some MethodSpec support.
8132 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
8134         * class.h, class.c, object.c: remove relative numbering support.
8136 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
8138         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
8139         free the string, until we get a chance to fix Gtk#
8141 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8143         * marshal.c: revert last patch.
8145 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
8147         * icall.c: updates for new mono_class_vtable() not calling
8148         the type constructor anymore.
8150 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
8152         * object.h, object.c: separate vtable creation from type
8153         initialization. Make running the .cctor thread safe.
8155 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
8157         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
8159 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
8161         * loader.c (mono_get_method): consider calling convention
8163 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
8165         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
8166         to return the invisible global type for a module.
8168         * reflection.c (mono_image_build_metadata): Emit global fields too.
8170 2003-05-20  Peter Williams  <peterw@ximian.com>
8172         * loader.c (mono_lookup_internal_call): Add a few newlines.
8174 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
8176         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
8177         literal strings.
8179         * appdomain.c (set_domain_search_path): Recalculate search path when
8180         AppDomainSetup.PrivateBinPath changes.
8182         * object.c (mono_class_compute_gc_descriptor): It turns out some
8183         parts of the class libs (like System.Thread) holds pointers to
8184         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
8185         to treat native int a pointer type here.
8186         
8187 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
8189         * appdomain.h, domain.c: add hashtable for jump target resolution.
8191 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
8193         * reflection.h reflection.c icall.c: Added new icalls 
8194         GetManifestResourceInfoInternal, GetModulesInternal and support
8195         infrastructure.
8197 2003-05-16  Dick Porter  <dick@ximian.com>
8199         * icall.c:
8200         * file-io.h:
8201         * file-io.c: Implement System.IO.MonoIO::GetTempPath
8203 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
8205         * object.c: mono_store_remote_field: little fix to previous patch.
8207 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
8209         * class.c: add constructors to array classes.
8210         * icall.c: special case array construction for InternalInvoke (),
8212 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
8214         * class.h class.c reflection.c object.c: Added support for field
8215         defaults in dynamically generated classes.
8217 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
8219         * reflection.c: properly encode charset for ddlimport.
8221 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
8223         * threads.c: allow compiling without GC.
8225 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
8227         * appdomain.h, object.c, object.h, threads.c, threads.h: added
8228         handling of thread static data.
8230 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
8232         * reflection.h, reflection.c: added mono_custom_attrs_free ().
8234 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
8236         * class.c (mono_array_class_get): always set the serializable flags
8237         (mono_array_class_get): always set the SEALED attribute for array types
8239 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
8241         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
8242         attributes (fix for bug 42021).
8244 2003-05-12  Dick Porter  <dick@ximian.com>
8246         * gc.c: Don't run finalizers when the finalizer thread is
8247         finishing up, because the default domain has already been
8248         destroyed.
8250 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
8252         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
8253         value is null, we should throw an exception.   This is slightly
8254         different than the other conventions used for the constructor.
8256 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8258         * socket-io.c: fixed windows build.
8260 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8262         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
8264 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
8266         * object.c (mono_string_new_wrapper): Compatibility fix for MS
8267         compilers.
8269 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
8271         * class.c (mono_class_layout_fields): Add experimental GC aware
8272         auto layout facility. Requires class library changes to work correctly.
8274         (mono_class_setup_vtable): Avoid overriding explicit interface
8275         method implementations. Fixes iface3.exe test.
8277         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
8278         object reference.
8279         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
8280         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
8282         * metadata.h: Add new type classification macro which determines
8283         whenever the type holds an object reference.
8285 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
8287         * marshal.c (mono_marshal_get_native_wrapper): cleanups
8289 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
8291         * gc.c (finalizer_thread): Work around a GC bug.
8293 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
8295         * marshal.c (emit_struct_conv): allow unions
8297         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
8299 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
8301         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
8303 2003-05-06  Martin Baulig  <martin@ximian.com>
8305         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
8307 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8309         * socket-io.c:
8310         (Select_internal): allow NULLs, don't create arrays if not needed.
8311         Coupled with Socket.cs changes.
8313         * threadpool.c:
8314         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
8315         register a finalizer for it that will close the semaphore handle. This
8316         fixes the leak and make Lupus' test run with > 4080 loops.
8318 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
8320         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
8321         Jerome Laban (bug #42287)
8323 2003-05-02  Martin Baulig  <martin@ximian.com>
8325         * debug-mono-symfile.h
8326         (MonoSymbolFile): Moved declaration into mono-debug.h.
8327         (MonoDebugMethodJitInfo): Likewise.
8328         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
8329         argument.
8330         (_mono_debug_address_from_il_offset): Take a
8331         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
8333         * mono-debug.h
8334         (MonoDebugDomainData): New struct.
8335         (mono_debug_get_domain_data): New function.
8336         (mono_debug_add_method): Take an additional `MonoDomain *'
8337         argument.
8338         (mono_debug_source_location_from_address): Likewise.
8339         (mono_debug_il_offset_from_address): Likewise.
8340         (mono_debug_address_from_il_offset): Likewise.
8342 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
8344         * reflection.c: one more check for null type in custom attrs.
8346 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8348         * reflection.c: avoid warning (comparison is always false due to limited
8349         range of data type).
8351 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8353         * icall.c: throw an exception in Type.GetField if the argument 'name'
8354         is NULL.
8356 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
8358         * reflection.c: fixed handling of enums in named arguments to custom
8359         attributes (bug #42123).
8361 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
8363         * reflection.c: use the right array element type and handle
8364         a null for a Type argument, too.
8366 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
8368         * reflection.c: handle arrays as arguments to custom attributes.
8370 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
8372         * reflection.c: handle a string value in a custom attr
8373         ctor that takes an object.
8375 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
8377         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
8378         (fix bug #42063)
8380 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
8382         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
8384 2003-04-27  Martin Baulig  <martin@ximian.com>
8386         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
8387         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
8388         MONO_DEBUGGER_EVENT_BREAKPOINT.
8389         (mono_breakpoint_trampoline_code): Removed.
8390         (mono_debugger_event_handler): The last argument is now a
8391         `guint32'.
8392         (mono_debugger_insert_breakpoint_full): Removed the
8393         `use_trampoline' argument.
8394         (mono_debugger_method_has_breakpoint): Likewise.
8395         (mono_debugger_trampoline_breakpoint_callback): Renamed to
8396         mono_debugger_breakpoint_callback(); take the method and
8397         breakpoint number as arguments.
8399 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
8401         * metadata.c: fix off by one when loading parameters attributes.
8403 2003-04-24  Martin Baulig  <martin@ximian.com>
8405         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
8407 2003-04-24  Martin Baulig  <martin@ximian.com>
8409         * mono-debug-debugger.c: Moved all code which interacts with the
8410         Mono Debugger here.
8412         * debug-mono-symfile.c: This code now just deals with the symbol
8413         file itself, the debugger code is now in mono-debug-debugger.c.
8415 2003-04-23  Martin Baulig  <martin@ximian.com>
8417         * mono-debug.c (mono_debug_source_location_from_il_offset):
8418         New method; like mono_debug_source_location_from_address(), but
8419         takes an IL offset instead of a machine address.
8421 2003-04-23  Martin Baulig  <martin@ximian.com>
8423         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
8424         `line' field; this is now computed by the debugger.
8426 2003-04-23  Martin Baulig  <martin@ximian.com>
8428         * mono-debug.[ch]: New files.  This is the new debugging interface.
8430         * mono-debug-debugger.[ch]: New files.  Moved all code which
8431         interacts with the Mono Debugger here.
8433 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
8435         * domain.c (mono_init): initialize mono_defaults.monitor_class
8437 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
8439         * reflection.c (method_encode_code): Add a spicy exception to help
8440         future compiler authors.
8442 2003-04-21  Martin Baulig  <martin@ximian.com>
8444         * icall.c
8445         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
8446         Make this work with relative pathnames; g_filename_to_uri() needs
8447         an absolute filename.
8449 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
8451         * icall.c: Track name changes in Object and ValueType.
8453 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
8455         * metadata.c (mono_type_stack_size): size should be a multiple of
8456         sizeof (gpointer)
8458 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8460         * gc.c:
8461         (internal_domain_finalize): moved into mono_domain_finalize. No need
8462         to create another thread because the finalizers will be run in the
8463         finalizer thread.
8464         
8465         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
8466         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
8467         to be run (MS does this too).
8469 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
8471         * object.c (mono_class_compute_gc_descriptor): Update comment.
8473         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
8475         * image.h: Add synchronized wrapper cache.
8477         * image.c (do_mono_image_open): Initialize cache.
8479         * reflection.c (create_dynamic_mono_image): Initialize cache.
8481 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8483         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
8484         ves_icall_System_Buffer_ByteLengthInternal.
8486 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
8488         * reflection.c: setup klass->nested_in earlier. Allow
8489         a dash in the assembly name.
8491 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
8493         * metadata.c (mono_type_to_unmanaged): dont access
8494         type->data.klass for MONO_TYPE_OBJECT
8495         (mono_type_to_unmanaged): consider System.Delegate class
8497 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
8499         * class.c: just setup supertypes in the proper place instead of
8500         initializing the full element class for arrays.
8502 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
8504         * class.c: ensure the element class of arrays is initialized.
8505         Setup the supertype info for array classes, too.
8507 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
8509         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
8511 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8513         * Makefile.am: re-added -m option when running cygpath. This way,
8514         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
8515         separator.
8516         * mono-config.c: same codepath for locating mono config file for WIN32
8517         and the rest.
8518         * assembly.c: if mono_assembly_setrootdir is called, don't override
8519         the value set.
8521 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8523         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
8524         MONO_ASSEMBLIES variable.
8526 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
8528         * icall.c: added Assembly::GetNamespaces() icall.
8530 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8532         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
8534 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
8536         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
8537         * object.c: fixed bug in the construction of vtable for proxies
8539 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
8541         * object.c (mono_array_new): Mark mono_array_new as an icall.
8543 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8545         * class.c: fixed test for public method when overriding interfaces.
8546         Closes bug #40970.
8548 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
8550         * appdomain.h, domain.c: added mono_domain_foreach() to
8551         be able to access the currently loaded appdomains.
8552         * object.c: make string interning work across sppdomains.
8553         Mark some functions for use as icalls.
8555 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
8557         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
8559         * reflection.h reflection.c: Allocate long living data using 
8560         GC_MALLOC_ATOMIC so the collector does not need to scan it.
8562         * reflection.c: Double the allocation size in streams instead of
8563         increasing it, to prevent unneccesary copying on large assemblies.
8564         
8565         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
8566         creation if the assembly does not have the Run flag set.
8568 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
8570         * class.h: avoid the C++ keywords in header files (Jerome Laban
8571         spotted and fixed this).
8573 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8575         * object.c:
8576         (mono_unhandled_exception): fill in the arguments for the
8577         UnhandledException event. Only trigger that event for the default
8578         domain (as MS does).
8580 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
8582         * object.c: Improve typed allocation stuff based on suggestions from
8583         Paolo. Also turn it on if the GC library supports it.
8585 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
8587         * object.c object.h class.h: Added experimental typed allocation
8588         facility using the interfaces in gc_gcj.h.
8590         * os/gc_wrapper.h: Added new include files.
8591         
8592 2003-04-03  Martin Baulig  <martin@ximian.com>
8594         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
8595         which is not yet enabled by default.
8597         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
8598         functions.
8599         (mono_gc_lock, mono_gc_unlock): New static functions.
8601         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
8602         functions; stop/start the world for the garbage collector.  This
8603         is using the windows API; we need to complete the SuspendThread()/
8604         ResumeThread() implementation in the io-layer to make this work on Unix.
8605         (mono_gc_push_all_stacks): New public function; tells the garbage
8606         collector about the stack pointers from all managed threads.
8608 2003-04-03  Martin Baulig  <martin@ximian.com>
8610         * object.h (MonoThread): Added `gpointer stack_ptr'.
8612         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
8614 2003-04-03  Martin Baulig  <martin@ximian.com>
8616         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
8618 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
8620         * reflection.c (typebuilder_setup_fields): Initialize field.first and
8621         field.last.
8623 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
8625         * loader.c (mono_lookup_internal_call): Report the corlib that is
8626         out of sync.
8628 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
8630         * icall.c (ves_icall_type_GetTypeCode): fixed check for
8631         System.DBNull (it's class not valuetype).
8633 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
8635         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
8636         if the array method was already assigned a token (fixes bug#40646).
8638 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
8640         * reflection.c (mono_reflection_get_type): Attempt type resolve even
8641         if no assembly is given.
8643 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
8645         * metadata.h: Added the new tables.
8647         * row-indexes.h: Added definitions for new tables.
8649         * metadata.c: Add schemas for new tables, and add support for
8650         computing the sizes of them.
8652         * class.c: Update for handling the new type cases.
8654 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
8656         * metadata.h (MONO_TYPE_IS_VOID): new macro
8658 2003-03-31  Martin Baulig  <martin@ximian.com>
8660         * threads.h (MonoThreadCallbacks): Added `thread_created'.
8662         * threads.c (mono_thread_new_init): Call `thread_created' in the
8663         mono_thread_callbacks.
8665 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
8667         * loader.h: added marshalbyrefobject_class to mono_defaults
8668         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
8669         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
8670           generation of output parameters.
8671           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
8672         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
8673           contextbound and the target object belongs to the context of the caller.
8674         * object.h: added context and unwrapped_server variables in MonoRealProxy.
8675         * object.c: Implemented support for interfaces and abstract classes
8676           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
8677           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
8679 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
8681         * class.h class.c (mono_class_is_subclass_of): New function.
8682         
8683         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
8684         routines for most common case (calls from ArrayList::ToArray).
8686         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
8687         routine so programs which call Environment::Exit() can be profiled.
8689         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
8690         Added MONO_ARCH_SAVE_REGS.
8692         * icall.c (ves_icall_type_is_subtype_of): Use new function.
8694 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
8696         * blob.h: Add a couple of new MonoType types definitions.
8698         * tabledefs.h: Add a couple of new call convs.
8700 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
8702         * reflection.h (MonoReflectionDynamicAssembly): track changes in
8703         the layout of the class.
8705         * reflection.c (alloc_table): double the size on overflow to avoid
8706         unnecessary copying.
8708         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
8709         avoid filling out metadata tables and blobs. Also set mb->ilgen to
8710         null so it can be garbage collected.
8711         
8712 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
8714         * reflection.c (mono_reflection_get_type): Return the resolved type
8715         only if it is in the assembly we searched.
8717         * reflection.c (ensure_runtime_vtable): Initialize method slots.
8719         * class.c (mono_class_setup_vtable): Set the slot of the overriding
8720         method.
8722 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8724         * appdomain.c:
8725         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
8726         the right one is 'file:///blah', but MS allows it.
8727         * assembly.c:
8728         (mono_assembly_open): allow 'file://blah'
8730         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
8732 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
8734         * socket-io.c: fixes bug #40310.
8736 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
8738         * reflection.c (mono_reflection_parse_type): handle deeply nested
8739         types correctly.
8741         * reflection.c (mono_image_create_token): Use unique token values
8742         since they will be put into a hash table.
8744         * class.c (mono_class_setup_vtable): If a method occurs in more than
8745         one place in the vtable, and it gets overriden, then change the
8746         other occurances too.
8748         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
8749         object as return type.
8751 2003-03-22  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
8753         * icall.c: Deleted "ToString" implementation for double and float
8754         because they are full implemented in managed code.
8756 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
8758         * reflection.c, reflection.h: implemented and exported functions
8759         to retrieve info about custom attributes.
8761 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8763         * appdomain.c: moved Uri handling to assembly.c
8764         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
8765         work when using a file Uri in *nix and windows.
8767         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
8768         GetReferencedAssemblies.
8770 2003-03-18  Dick Porter  <dick@ximian.com>
8772         * icall.c: Rename a couple of internal calls
8774         * threads.c: Set the thread state to Stopped when a thread exits.
8775         Fixes bug 39377.
8777 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
8779         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
8780         New icall.
8782         * object.c (mono_class_vtable): fix warning.
8784 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
8786         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
8788         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
8789         memory.
8790         (method_encode_clauses): Create exception info structures in the right
8791         order.
8792         (mono_reflection_setup_internal_class): Initialize supertypes field.
8794         * class.c object.c: Handle interfaces which implement other interfaces 
8795         correctly.
8797         * class.h class.c: Move the supertypes array initialization code into 
8798         a separate function so it can be used for dynamic types too. Also call
8799         it earlier, in mono_class_init(), since it can be used before the
8800         type is initialized.
8802 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8804         * Makefile.am:
8805         * assembly.c:
8806         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
8808         * appdomain.c:
8809         * appdomain.h:
8810         * marshal.c:
8811         * object.c: remove warnings.
8813 2003-03-13  Martin Baulig  <martin@ximian.com>
8815         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
8816         (MonoDebugLexicalBlockEntry): New types.
8818         * debug-mono-symfile.c
8819         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
8821 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8823         * process.c: ret can be any non-zero value accroding to MS doc.
8825 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
8827         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
8828         fixing a warning for a miss-used prototype, would have cause
8829         random memory corruption.
8831 2003-03-07  Martin Baulig  <martin@ximian.com>
8833         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
8834         getting really annoying ....
8836 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
8838         * reflection.c (fixup_method): added support for array methods.
8840 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
8842         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
8843         (pointed out by Michael Adams).
8845 2003-03-04  Dick Porter  <dick@ximian.com>
8847         * icall.c: Temporarily reverted the Double and Single ToString()
8848         change, because it broke nunit.
8850 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
8852         * object.h, threads.h: make include files compatible with C++
8853         (patch by Jerome Laban <jlaban@wanadoo.fr>).
8855 2003-03-04  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
8857         * icall.c: Erased ToString helper functions for Double and Single.
8858         Now, that implementations ar all in managed code (Double and Single
8859         Formatters).
8861 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
8863         * appdomain.c: Added method for initializing the default context of
8864         a domain. Added internal call for getting the default context.
8865         * appdomain.h: Added context variable in MonoDomain struct.
8866         * domain.c: mono_domain_set also sets the default context of the domain
8867         * icall.c: Mapped internal method InternalGetDefaultContext.
8868         * object.c: mono_object_get_virtual_method returns always a remoting
8869         wrapper if the object is a transparent proxy.
8870         mono_runtime_invoke_array: when creating an object by calling the
8871         constructor, if the created object is a proxy, then the constructor should
8872         be called using the a remoting wrapper.
8874 2003-03-03  Dick Porter  <dick@ximian.com>
8876         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
8877         variable so it compiles on solaris.  Problem spotted by
8878         Christopher Taylor <ct@cs.clemson.edu>
8880 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8882         * appdomain.c:
8883         (get_info_from_assembly_name): don't leak value.
8885         * icall.c:
8886         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
8887         result.
8889 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
8891         * assembly.c: export mono_image_load_references ().
8892         * class.c: handle function pointers. mono_class_from_name() now
8893         supports nested type names directly.
8895 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
8897         * reflection.h reflection.c: Encode already created dynamic methods 
8898         and fields correctly as a DEF instead of a REF.
8900         * reflection.c: Get rid of the force_ref argument to 
8901         mono_image_typedef_or_ref since it was wrong in the first place.
8903         * string-icalls.c: add error checking to string constructors according
8904         to the MSDN docs.
8906         * reflection.c: Emit types in the order their TypeBuilders were 
8907         created. Previously, a new table index was assigned to each type before
8908         the tables were emitted. This was wrong because the signature blob
8909         might already refer to a type by its original table index.
8911 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
8913         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
8914         change.
8915         
8916 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8918         * Makefile.am: make assemblies dir have \ instead of / on windows.
8920 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
8922         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
8923         iterate over the NESTEDCLASS table using a linear search since the
8924         table is not guaranteed to be sorted by the secondary key.
8926         * class.c (mono_class_create_from_typedef): fixed up call to
8927         mono_metadata_nesting_typedef.
8928         
8929 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
8931         * marshal.c (mono_string_to_byvalstr): clear the memory as
8932         suggested by Jerome Laban <jlaban@wanadoo.fr>
8934 2003-02-26  Dick Porter  <dick@ximian.com>
8936         * process.c: Cope with padding in .rsrc blocks
8938 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
8940         * metadata.h: reverted the filter_len change, it breaks reflection
8941         
8942 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
8944         * metadata.h: added a new field to store the filter_len
8945         
8947 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
8949         * reflection.c: handle custom attributes for types and members
8950         created with Reflection.Emit (bug#38422).
8952 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
8954         * reflection.c: define RTSpecialName automatically for constructors for
8955         compatibility with MS.NET.
8957         * reflection.c (mono_reflection_create_runtime_class): initialize
8958         nested_in field of dynamically created classes.
8960 2003-02-22  Martin Baulig  <martin@ximian.com>
8962         * debug-mono-symfile.h: Incremented version number.
8964 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
8966         * object.h icall.c process.c: fix warnings.
8968 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
8970         * appdomain.h appdomain.c:
8971         (mono_domain_try_type_resolve): split the 
8972         name_or_tb argument into a name and a tb argument.
8973         (mono_domain_has_type_resolve): new function to check whenever the
8974         application has registered a TypeResolve event handler.
8975         
8976         * icall.c reflection.h reflection.c: move the type resolve logic into
8977         mono_reflection_get_type () so it will be invoked when 
8978         Assembly::GetType () is called.
8980         * reflection.c:
8981         (mono_reflection_get_type): renamed to get_type_internal.
8982         (mono_reflection_get_type): fixed type name generation so it works 
8983         for nested types too.
8984         (mono_reflection_get_type): call has_type_resolve () to avoid the 
8985         costly type name generation if there is no resolve event handler.
8987 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
8989         * class.c, image.c: load exported types from file references.
8991 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
8993         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
8994           used to cache the managed methods used to create proxies and make 
8995           remote invocation of methods.
8996         * class.h: Added in MonoVTable a flag to indicate that a class needs 
8997           to be remotely created.
8998         * object.c: Modified the method mono_class_vtable(). It now initializes 
8999           the remote flag of the vtable. Modified mono_object_new_specific(), 
9000           so now it checks the remote flag.
9001         * icall.c: Added a couple of internal methods, one for enabling instance 
9002           creation interception for a type, and one for creating objects bypassing
9003           the remote check.
9005 2003-02-18  Martin Baulig  <martin@ximian.com>
9007         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
9008         New interncall to get a method's metadata token.
9010         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
9011         New interncall for the debugger.
9013 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
9015         * class.c (mono_class_setup_vtable): allocate supertype array
9017 2003-02-18  Martin Baulig  <martin@ximian.com>
9019         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
9021 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9023         * reflection.c:
9024         (assembly_name_to_aname): jump over unknown properties (i've found
9025         something like: 'type, assembly, version=xxx, custom=null, public...',
9026         so now will ignore custom=null and still get the rest of the values).
9028 2003-02-17  Dick Porter  <dick@ximian.com>
9030         * threads.c: Have Thread.Start() wait for a semaphore to signal
9031         that the thread has set up all its local data.  This fixes bug
9032         34323, where Abort() raced the new thread's TLS data.
9034         Also removes the handle_store() call from start_wrapper, because
9035         threads are now always created suspended and there is no longer a
9036         race between the parent and child threads to store the info.
9038 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
9040         * image.c: explain the #- heap issue in a message, hopefully
9041         avoiding FAQs on mono-list.
9043 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9045         * icall.c:
9046         (GetEntryAssembly): if the domain has not invoked
9047         AppDomain.ExecuteAssembly yet, return the assembly of the default
9048         AppDomain.
9050 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
9052         * class.c (mono_ldtoken): make it work in dynamic assemblies.
9054 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
9056         * metadata.c, reflection.c: simple speedup to type hash
9057         and equals code.
9059 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
9061         * image.c, image.h, class.c, assembly.c: move module loading
9062         to MonoImage. When loading metadata, consider alignemnet from
9063         the start of metadata, not from the metadata address in memory.
9065 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
9067         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
9068         AssemblyBuilder objects. Factored out custom attribute creation into
9069         a separate function.
9070         (create_custom_attr): new function to create custom attributes.
9072 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
9074         * Makefile.am: Got tired of typing the full pathname to pedump.
9075         Until there is another option, am installing this.
9077 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
9079         * class.c (class_compute_field_layout): always set field->parent 
9080         (mono_ldtoken): use mono_defaults.fieldhandle_class;
9082 2003-02-11  Dick Porter  <dick@ximian.com>
9084         * threads-types.h:
9085         * monitor.c: Rewrote Monitor, making lock much faster and
9086         Pulse/Wait work as specified.  Also uses much fewer handles, and only
9087         creates them as needed.
9089         * exception.c: Added SynchronizationLockException
9091         * threads.c: Deleted old Monitor implementation.  The new one is
9092         in a new file.
9094 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
9096         * class.c: handled TypedReference type code. Set the correct size for
9097         class data. Setup interface_offsets for interface classes, too.
9099 2003-02-09  Martin Baulig  <martin@ximian.com>
9101         * debug-mono-symfile.h: Reflect latest symbol writer changes.
9103 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
9105         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
9106         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
9107         * object.c: fixed mono_object_get_virtual_method () for interfaces.
9108         * verify.c: check for code that runs after the end of the method.
9110 2003-02-08  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
9112         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
9113         "System.Math::Round2".
9114         * sysmath.h: Added Floor, Round and Round2 definitions.
9115         * sysmath.c: Modified certain functions that were not 100% compliant
9116         with MS.NET (math precision) and added the implementation of Floor,
9117         Round and Round2.
9119 2003-02-07  Martin Baulig  <martin@ximian.com>
9121         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
9123 2003-02-07  Martin Baulig  <martin@ximian.com>
9125         * debug-mono-symfile.c: Reflected latest symwriter changes.
9126         (mono_debug_create_mono_symbol_file): Removed.
9127         (mono_debug_open_mono_symbol_file): Take an argument which
9128         specifies whether to create a dynamic symbol file.
9130 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
9132         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
9134 2003-02-05  Martin Baulig  <martin@ximian.com>
9136         * reflection.c (mono_image_build_metadata): Make this public,
9137         protect it against being called multiple times, don't create
9138         resources and don't build the compressed metadata here.
9139         (mono_image_create_pefile): Do this here.
9141         * icall.c
9142         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
9144 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9146         * socket-io.c: fixed bug #36322.
9148 2003-02-06  Piers Haken <piersh@friskit.com>
9150         * appdomain.[ch]:
9151         * class.h:
9152         * debug-mono-symfile.c:
9153         * icall.c:
9154         * loader.c:
9155         * mono-config.c:
9156         * monosn.c:
9157         * reflection.c:
9158         * socket-io.c: warning cleanups
9160 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
9162         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
9163         function. works like remoting invoke, but does a check for the Proxy first.
9165 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
9167         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
9169 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
9171         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
9172         array of pointers.
9173         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
9174         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
9176         * object.c (mono_store_remote_field_new): used by the new jit
9177         instead of mono_store_remote_field
9178         (mono_load_remote_field_new): used by the new jit
9179         instead of mono_load_remote_field
9181 2003-02-05  Patrik Torstensson
9183         * appdomain.c: changed unload to take the domain id instead
9184         of domain
9185         
9186         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
9189 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9191         * appdomain.c: don't look for assemblies in ApplicationBase if
9192         PrivateBinPathProbe is set.
9194 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9196         * object.c: make the first argument in main_args contain the absolute
9197         path to the assembly. Fixes bug #37511.
9199 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9201         * icall.c: get correct UTC offset for countries not using daylight
9202         time saving. Fixes bug #30030.
9204 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9206         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
9207         and 1 are the family).
9209 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
9211         * icall.c (ves_icall_InternalExecute): removed wrong assertion
9213         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
9215 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
9217         * reflection.c: added support for SignatureHelper tokens, which is
9218         needed by the Calli opcode.
9220         * reflection.h: track changes to SignatureHelper class.
9222         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
9224 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9226         * appdomain.c: fixed loading assemblies from PrivateBinPath.
9228 2003-02-03  Patrik Torstensson
9229         * appdomain.[c|h], domain.c : 
9230          - Added support for getting a domain via domain id
9231          - Support for setting and getting domain from System.AppDomain 
9232            (used in cross appdomain channel)
9233          - Added support for get/set for a MonoAppContext on a thread 
9234            (Context class in System.Runtime.Remoting.Contexts),
9235          - Removed hack in Get/SetData and ExecuteAssembly.
9236         
9237         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
9238         the managed world to get control when a proxy is created.
9240         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
9241         
9242 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
9244         * icall.c
9245         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
9246         Populate the codebase field as well.
9248 2003-02-02  Martin Baulig  <martin@ximian.com>
9250         * debug-mono-symfile.c
9251         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
9252         (mono_debug_symfile_add_method): Allow interncalls.
9254 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9256         * icall.c: throw parse exception if strtod fails or the string is empty.
9258 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
9260         * marshal.c: handle object type separately from defined
9261         class types.
9263 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
9265         * marshal.c: handle NATIVE_LPSTR for strings when it's
9266         explicitly specified.
9268 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
9270         * reflection.c, reflection.h, icall.c: setup the reflection
9271         handle cache for ModuleBuilders and AssemblyBuilders.
9273 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
9275         * reflection.c (reflection_methodbuilder_to_mono_method): set
9276         pinvoke flag
9278 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9280         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
9282 2003-01-29  Dick Porter  <dick@ximian.com>
9284         * threads.c: No need for the fake_thread kludge now that Thread
9285         doesn't run a class constructor
9286         
9287 2003-01-29  Dick Porter  <dick@ximian.com>
9289         * threads.c: Use g_direct_hash instead of the rather bogus
9290         g_int_hash
9292 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
9294         * marshal.c (mono_marshal_get_native_wrapper): add check for null
9295         (fix pinvoke12.exe)
9296         (mono_marshal_get_struct_to_ptr): generate valid IL code
9297         (mono_marshal_get_ptr_to_struct): generate valid IL code
9298         (*): correctly set sig->pinvoke, we need to memdup the signature
9299         to do that
9301 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
9303         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
9304         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
9306 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
9308         * profiler.c: provide more callers information.
9310 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
9312         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
9314         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
9316         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
9318 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9320         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
9321         exception instead of going into an infinite loop on dates which it 
9322         can't yet handle.
9324         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
9325         out-of-range exception if needed.
9327         * class.c (mono_class_setup_vtable): allow a virtual method to provide
9328         an implementation for an interface method and to override an inherited
9329         method at the same time. 
9330         Imagine a scenario when a virtual method is used to override a
9331         virtual abstract method in a parent class, and this same method 
9332         provides an implementation for an method inherited from an interface. 
9333         In this case, the interface resolution code will set im->slot, which 
9334         means that the virtual method override pass will skip this method 
9335         which means a pointer to the abstract method inherited from the parent
9336         will remain in the vtable of this non-abstract class.
9338         * class.c: (mono_class_setup_vtable): continue search for a real 
9339         method if only an abstract method is found.     
9341 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
9343         * reflection.c: add size to encoding for ByValStr and ByValArray
9344         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
9346 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9348         * class.c (mono_class_setup_vtable): pass the override info as an
9349         argument.
9351         * class.c (mono_class_setup_vtable): set the slot of overriding methods
9352         correctly.
9353         
9354         * reflection.c (ensure_runtime_vtable); add support for method 
9355         overrides.
9356         
9357 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9359         * reflection.c (resolution_scope_from_image): Hack to work to work with
9360         dynamic assemblies.
9362         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
9363         added a 'force_ref' argument to force this function to allways return 
9364         a TypeRef. This is needed by mono_image_get_memberref_token ().
9365         
9366 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9368         * reflection.c (mono_image_get_type_info): interfaces really don't have
9369         a parent.
9371         * reflection.c (mono_image_basic_init): fill out missing fields of
9372         image structure.
9374         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
9375         dynamic assemblies. This is required so dynamic assemblies show up in
9376         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
9377         Type::GetType() etc. This is consistent with MS behaviour.
9379         * image.c image.h reflection.c: add newly created classes to the name 
9380         cache so mono_class_get () will find them.      
9382 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9384         First part of changes to get IKVM.NET running under mono.
9385         
9386         * appdomain.h, appdomain.c: added new function 
9387         mono_domain_try_type_resolve() which will emit TypeResolve events. 
9388         This function will call AppDomain::DoTypeResolve to do the actual work.
9390         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
9391         moved existing code dealing with dynamic tokens to a new function 
9392         called mono_reflection_lookup_dynamic_token (). This function will 
9393         raise TypeResolve events when appropriate. Since reflection.c is not 
9394         part of libmetadata, a new hook function called 
9395         mono_lookup_dynamic_token() is added to class.c which will call this.
9397         * assembly.h assembly.c: make the invoke_load_hook function public,
9398         so it can be called for dynamic assemblies.
9400         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
9402         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
9403         type isn't found.
9405         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
9406         MonoGHashTable, since it contains pointers to objects which the GC 
9407         needs to track.
9409         * assembly.c (search_loaded): remove unused variable.
9410         
9411 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
9413         * object.c: fixed issue exposed by gcc-generated IL programs
9414         that use RVA data for pointers.
9416 2003-01-25  Martin Baulig  <martin@ximian.com>
9418         * threads.c (start_wrapper): Moved the initialization of
9419         `start_func' above the mono_new_thread_init() call to which we
9420         pass it as argument.
9422 2003-01-24  Martin Baulig  <martin@ximian.com>
9424         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
9425         the MonoThread pointer.
9427 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
9429         * icall.c: Rename `PowImpl' to Pow.
9431 2003-01-23  Dick Porter  <dick@ximian.com>
9433         * threads.c (start_wrapper): Create a Thread object if needed, so
9434         the Main() thread can do the class initialisation in a subthread
9435         that has been set up to allow managed code execution.
9437         Pass the thread ID instead of the MonoThread pointer to the thread
9438         start and attach callbacks.  This change is required, because the
9439         jit thread start callback must be called _before_ the Thread
9440         object can be created.
9441         
9442         (mono_thread_init): Removed much object creation code that is no
9443         longer needed.  No managed code is called from here now.
9445         * object.c (mono_runtime_exec_managed_code): Create a subthread
9446         for Main, and call back to the runtime to use it.
9447         Set the exit code when Main exits.
9449         * gc.c: Make sure domain finalisation happens in a subthread.
9450         Re-enable threaded GC, fixing bug 31333 (again).
9452         * environment.c: System.Environment internall calls (so far just
9453         ExitCode is here, the others are still in icall.c)
9455         * appdomain.c (mono_runtime_cleanup): All threads running managed
9456         code should have finished before mono_runtime_cleanup() is
9457         reached, so no need to clean up threads.
9459 2003-01-22  Martin Baulig  <martin@ximian.com>
9461         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
9462         `gpointer func' arguments.      
9463         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
9464         but added `MonoThread *thread' argument.
9465         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
9467         * threads.c (mono_new_thread_init): Added `gpointer func' argument
9468         and pass it to the mono_thread_start_cb callback.
9469         (mono_install_thread_callbacks): New public function to install a
9470         set of callbacks which are set by the debugger.
9471         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
9473 2003-01-22  Martin Baulig  <martin@ximian.com>
9475         * Makefile.am: Install debug-mono-symfile.h.
9477 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
9479         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
9481 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
9483         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
9484         * class.c (mono_ptr_class_get): correctly set access levels of pointers
9485         (mono_array_class_get): correctly set access levels of arrays
9487 2003-01-20      Patrik Torstensson
9488         * image.h (MonoAssemblyName): changed major, minor, build, revision
9489         from signed to unsigned.
9491 2003-01-20  sean kasun <skasun@azstarnet.com>
9493         * reflection.c (load_cattr_value): Now this handles
9494         MONO_TYPE_SZARRAY.  Fixes bug #35629
9496 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
9498         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
9499         integer value
9501 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9503         * decimal.c: fixed bug #26056.
9505 2003-01-17  Martin Baulig  <martin@ximian.com>
9507         * gc.c: Raise an ExecutionEngineException instead of using g_error().
9509 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9511         * exception.[ch]:
9512         (mono_get_exception_type_initialization): new function.
9514         * object.c: throw a TypeInitializationException when an exception is
9515         thrown invoking the class constructor.
9517 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9519         * reflection.c: fixed attribute reading.
9521 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9523         * icall.c:
9524         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
9525         provided, look for the type in the calling assembly and then in
9526         mscorlib; if the assembly name is provided, only try that one.
9528 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
9530         * object.c: register the vtable before there is a chance it's
9531         queried again recursively.
9533 2003-01-13  Duncan Mak  <duncan@ximian.com>
9535         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
9536         gc-internal.h. 
9537         
9538 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
9540         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
9542 2003-01-11  Martin Baulig  <martin@ximian.com>
9544         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
9545         this to 20 for the release.
9547 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
9549         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
9551         * loader.c (mono_method_get_marshal_info): bug fix
9553         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
9554         structures with explicit layout
9556 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
9558         * profiler.c: made the output more readable (and sorted). 
9559         Added caller information for the allocation profiler.
9561 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
9563         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
9565 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9567         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
9568         to get value types.
9569         
9570 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
9572         * object.c, profiler.h, profiler.c, profiler-private.h:
9573         Added object allocation profiler.
9575 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
9577         * reflection.h, reflection.c: handle global methods.
9578         Compress blob entries.
9580 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
9582         * marshal.c: fix compilation.
9584 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
9586         * loader.c (mono_method_get_marshal_info): impl.
9588         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
9590 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9592         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
9593         for reference types.
9595 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
9597         * loader.c: fixed off by one error in loaded parameter names.
9599 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
9601         * marshal.c (mono_marshal_get_icall_wrapper): like
9602         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
9603         instead of a MonoMethod.
9605 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9607         * decimal.c: fixed bug #36537.
9609 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
9611         * marshal.c: throw a missing method exception if a
9612         P/Invoke method is not found.
9614 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
9616         * icall.c: allow a null this for constructors.
9618 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
9620         * icall.c: raise the proper exceptions if the arguments to the
9621         internal Invoke are incorrect.
9623 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
9625         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
9627 2003-01-03  Martin Baulig  <martin@ximian.com>
9629         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
9631 2002-12-31  Martin Baulig  <martin@ximian.com>
9633         * debug-mono-symfile.c: Completely rewrote the type section.
9634         Instead of using individual malloc()ed fields, we use one big
9635         continuous memory area and offsets into this area.
9636         See the comments in the source code for details.
9638 2002-12-30  Martin Baulig  <martin@ximian.com>
9640         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
9642 2002-12-30  Martin Baulig  <martin@ximian.com>
9644         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
9645         line number table in this data blob instead of using an external
9646         pointer.
9648 2002-12-28  Martin Baulig  <martin@ximian.com>
9650         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
9652 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
9654         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
9655         as a boxed return type.
9657 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
9659         * appdomain.c
9660         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
9661         g_build_filename to properly get separators on the filename created.
9663         * object.h: Small change, introduce MonoMarshalByRefObject to
9664         track the layout of that structure in the C# universe as we make
9665         changes there.
9667 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
9669         * object.c: removed assert to allow static fields on interfaces.
9670         * loader.c: a TypeSpec may be used for any type, not just arrays.
9672 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
9674         * class.c, class.h: added mono_class_array_element_size ().
9675         Ignore static methods in interfaces.
9677 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9679         * threads.c: fixed the build under cygwin.
9681 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
9683         * reflection.c: handle nullref constants. Allocate keys for
9684         reflection handles with the GC.
9686 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
9688         * threads.c, threads.h: added mono_thread_get_abort_signal()
9689         to get a suitable signal for thread abort.
9691 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
9693         * metadata.c: fix handling of ExportedType table.
9695 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9697         * icall.c: added WriteWindowsDebugString internal call.
9699 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9701         * reflection.h: added fields to match C# implementation.
9703 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9705         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
9707 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
9709         * gc.h, gc-internal.h: Rename header for GC internal calls to
9710         gc-internal.h from gc.h as to not clash with Boehm GC having its
9711         header installed as <gc.h> in outside include paths.
9712         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
9713         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
9715 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9717         * icall.c: assign minor, build and revision in FillName.
9719 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
9721         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
9722         Added support for running code generated by Reflection.Emit.
9724 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9726         * appdomain.c: check for NULL argument in LoadFrom.
9728 2002-12-10  Dick Porter  <dick@ximian.com>
9730         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
9732 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9734         * appdomain.c: fix buglet when building exe file name.  Handle full
9735         assembly name (needed after latest changes to AssemblyName).
9736         * image.c:
9737         (mono_image_close): free some hashtables.
9739 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
9741         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
9742         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
9743         on some systems (redhat 7.3) 
9745 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
9747         * threads.c: delete the critical section of a sync block,
9748         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
9750 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
9752         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
9754 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9756         * appdomain.[ch]: handle the assembly preload event to try loading the
9757         assemblies using the paths we have in the current domain.
9759         * assembly.[ch]: created an assembly preload hook that is called to try
9760         loading the assembly by other means that the ones provided here.
9762         * domain.c: initialize the domain search path.
9764         From now on, assemblies (TODO: except corlib and System) are loaded
9765         according to these rules when using mono_assembly_load ():
9767                 1. It tries to load the assembly from the ApplicationBase
9768                 of the current domain appending .dll and .exe (TODO: have to
9769                 try loading from name/name.dll and name/name.exe).
9771                 2. It tries the search path specified in PrivateBinPath for the
9772                 current domain (if any).
9774                 3. Previous behavior.
9776 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
9778         * icall.c: implemented GetInterfaceMap() related icall.
9779         * domain.c, loader.h: load MethodInfo in mono_defaults.
9781 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
9783         * gc.c: disable the finalizer thread for now, untill all the issues
9784         with it are resolved.
9786 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
9788         * string-icalls.c: handle embedded nulls in string ctor when the
9789         length is specified.
9791 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
9793         * class.c: look for explicit interface implementation in parent
9794         classes, too.
9796 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
9798         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
9800 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
9802         * gc.c: protect handles with a critical section.
9804 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9806         * icall.c:
9807         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
9808         parameters. If no assembly specified, try getting the type from all
9809         the assemblies in the current domain, else, load the assembly and get
9810         the type from it.
9812 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9814         * marshal.c: applied patch from Aleksey Demakov that fixes
9815         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
9817 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9819         * icall.c: fixed get_location.
9821 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
9823         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
9824         declarations to make it work with older gcc. 
9826         * loader.c (mono_get_method): set signature->pinvoke for native calls
9828 2002-11-20  Dick Porter  <dick@ximian.com>
9830         * threads.c (mono_thread_init): Set the main thread's handle
9832 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
9834         * gc.c: allow compilation without GC support. Changed to match the
9835         mono coding style.
9837 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
9839         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
9841 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
9843         * reflection.c: set a public key token on the core assemblies.
9845 2002-11-18  Dick Porter  <dick@ximian.com>
9847         * threads.c: Split out some thread initialisation so that other
9848         files can set the start callback function.
9850         * gc.c: Run finalisers in a separate thread, to avoid stack
9851         overflow.  Fixes bug 31333.
9853         * appdomain.c: Set up GC finalisation thread.
9855         * reflection.c: 
9856         * object.c: 
9857         * domain.c: Use gc.h macros for GC_malloc
9858         
9859 2002-11-15  Dick Porter  <dick@ximian.com>
9861         * threadpool.c: 
9862         * threads.c:
9863         * appdomain.c: Removed mono_runtime_init_with_attach(),
9864         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
9865         merging the extra parameter with the existing function.  Removed
9866         unneeded code in mono_thread_attach().
9868 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
9870         * image.c (mono_image_loaded_by_guid): a method to get loaded
9871         images by guid. 
9872         (load_metadata_ptrs): we store the guid as string.
9874 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
9876         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
9878         * metadata.c (mono_guid_to_string): imported method form Zoltan
9879         Varga (slightly modified)
9881         * assembly.c (mono_assembly_open): load precompiled code
9883         * loader.h (MonoMethod): we store the method token for use in the
9884         aot compiler. 
9886 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9888         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
9889         the hook function called when an assembly is loaded.
9890         
9891         * domain.c: Modified file.
9892         (mono_domain_assembly_load): removed hash table insertion of assemblies.
9894         Fixes bug #33196.
9896 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
9898         * reflection.c: Map PEFileKind to the value expected by the WinNT
9899         image loader. 
9901 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9903         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
9904         Read until the buffer is filled completely.
9906 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9908         * icall.c: implemented MonoType.InternalGetEvent ().
9910 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9912         * appdomain.c: implemented InitAppDomainSetup. Delayed
9913         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
9914         the entry_assembly.
9916         * assembly.c: base_dir is now an absolute path ending with
9917         G_DIR_SEPARATOR.
9919         * icall.c: modified get_location according to the above changes.
9921         * object.c: init AppDomain.SetupInformation for the default domain after
9922         we have the entry assembly.
9924         * domain.c: when unloading a domain, setup = NULL.
9926 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
9928         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
9930 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
9932         * object.h, object.c: introduced mono_object_get_virtual_method ()
9933         to lookup the method invoked on an object when a callvirt is done on
9934         a method.
9935         * icall.c: make MethodInfo::Invoke() always do a virtual call.
9937 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9939         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
9940         current domain when loaded an assembly and failed to load it.
9942         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
9944 2002-10-31  Dick Porter  <dick@ximian.com>
9946         * icall.c: 
9947         * file-io.h: 
9948         * file-io.c: Return the error status in a parameter, as the
9949         GetLastError() value has long since been blown away if we try and
9950         look it up in a subsequent internal call invocation.  Delete the
9951         GetLastError() internal call, because it's useless.
9953 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
9955         * class.[ch]: added cast_class to fix bug 29517
9957 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
9959         * marshal.c: create valid IL code in the filter clause:
9960         the new JIT is less forgiving:-)
9962 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9964         * icall.c: removed get_property internal call.
9966 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
9968         * appdomain.h domain.c: Added an ID to appdomains.
9969         
9970         * threads.c threads.h icall.c: Implement icall
9971         Thread:GetDomainID(), and remove unused icall 
9972         CurrentThreadDomain_internal.
9974 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9976         * icall.c: Don't recurse through the base types in GetConstructor.
9977         Fixes bug #32063. 
9979 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
9981         * mempool.h, mempool.c: added mono_mempool_empty() and
9982         mono_mempool_stats().
9984 2002-10-23  Dick Porter  <dick@ximian.com>
9986         * file-io.c: 
9987         * file-io.h: 
9988         * icall.c: Added MonoIO.GetFileType internal call
9990 2002-10-17  Dick Porter  <dick@ximian.com>
9992         * appdomain.c (mono_runtime_cleanup): Don't signal the async
9993         delegate semaphore before waiting for all threads to finish,
9994         because new threads can also call async delegates.  Fixes bug
9995         32004.
9997         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
9998         of 3 seconds, in case another async job is queued.  (This part is
9999         needed because the bug fix reintroduced the 3s exit lag.)  This
10000         makes the mono_runtime_shutdown flag superfluous.
10002 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
10004         * reflection.c: include ehader size in method section headers.
10005         Really check for suplicated modules entries.
10007 2002-10-17  Martin Baulig  <martin@gnome.org>
10009         * debug-mono-symfile.c: Added back support for locals.
10011 2002-10-14  Martin Baulig  <martin@gnome.org>
10013         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
10014         MONO_TYPE_VOID.
10016 2002-10-14  Martin Baulig  <martin@gnome.org>
10018         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
10019         mono_class_get() instead of looking in the class cache. 
10021 2002-10-13  Martin Baulig  <martin@gnome.org>
10023         * debug-mono-symfile.c: Set version number to 28, include the
10024         signature in method names.
10026 2002-10-13  Martin Baulig  <martin@gnome.org>
10028         * debug-mono-symfile.h: Set version number to 27.
10030 2002-10-11  Martin Baulig  <martin@gnome.org>
10032         * gc.c: Don't register/unregister NULL pointers as disappearing links.
10034 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
10036         * metadata.c, metadata.h: added helper function to allocate signatures.
10038 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10040         * icall.c: added internal call to get the location of machine.config.
10042 2002-10-08  Martin Baulig  <martin@gnome.org>
10044         * debug-mono-symfile.c: Ignore classes with a pending init for the
10045         moment.
10047 2002-10-03  Dick Porter  <dick@ximian.com>
10049         * threads.c: Freebsd pthread_t is a pointer
10051 2002-10-03  Dick Porter  <dick@ximian.com>
10053         * socket-io.c: Implemented GetHostName_internal
10055 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10057         * mono-config.c:
10058         (mono_config_parse_file): don't leak the text.
10060 2002-10-02  Martin Baulig  <martin@gnome.org>
10062         * debug-mono-symfile.c: Added support for methods.
10064 2002-10-01  Martin Baulig  <martin@gnome.org>
10066         * debug-mono-symfile.c: Don't emit methods and line numbers for
10067         the dynamic symbol file, just write the type table.  We can easily
10068         have an external helper program which creates a symbol file for an
10069         IL file.        
10071 2002-10-01  Dick Porter  <dick@ximian.com>
10073         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
10074         Only add the handle to the cleanup array when we're about to
10075         launch the thread.  Bug 31425 deadlocked when the test was run on
10076         mono under w32.
10078 2002-10-01  Martin Baulig  <martin@gnome.org>
10080         * debug-mono-symfile.c: Added support for properties.
10082 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
10084         * reflection.c: unaligned store fix from Mark Crichton
10085         <crichton@gimp.org>.
10087 2002-09-27  Martin Baulig  <martin@gnome.org>
10089         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
10090         New interncall.
10092 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
10094         * assembly.h, assembly.c: use a sane API to hook into the assembly
10095         loading process instead of a useless special-purpouse hack
10096         (ngen needs a hook, too, for example).
10098 2002-09-27  Dick Porter  <dick@ximian.com>
10100         * threads.c (mono_thread_init): Call GetCurrentProcess() so
10101         io-layer can set up some process handle info.  Not needed on w32,
10102         but doesn't hurt either.
10104         * process.c: Pass the program name in the second parameter to
10105         CreateProcess, so the path is searched.  Include the working
10106         directory. Implemented process name, process enumeration, and some
10107         process detail internal calls.
10108         
10109         * icall.c: Added internal calls for process lookup, and some
10110         process details
10112 2002-09-26  Martin Baulig  <martin@gnome.org>
10114         * assembly.c (mono_install_open_assembly_hook): New global
10115         function to install a function to be invoked each time a new
10116         assembly is loaded.
10117         (mono_assembly_open): Run this callback function if set.
10119         * debug-mono-symfile.c: Put back line numbers for the dynamic
10120         symbol file and also record the .il file as source file.  This
10121         allows us to install the temporary symbol file as `file.dbg' just
10122         like a compiler-generated one.
10124 2002-09-26  Nick Zigarovich <nick@chemlab.org>
10126         * Corrected typo in gc.c (BOHEM vs BOEHM).
10128 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10130         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
10131         GetProperties. Also avoid calling g_slist_length in GetProperties and
10132         GetMethods.
10134 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
10136         * reflection.c: avoid unaligned stores (bug spotted by
10137         Mark Crichton  <crichton@gimp.org>).
10139 2002-09-25  Martin Baulig  <martin@gnome.org>
10141         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
10142         instead of guint64 for addresses and added prologue/epilogue info.
10144 2002-09-25  Martin Baulig  <martin@gnome.org>
10146         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
10147         store line number info.  For the dynamic symbol file, we only need
10148         to provide the JIT generated dynamic line number info for the dynamic
10149         symbol file.
10151 2002-09-25  Martin Baulig  <martin@gnome.org>
10153         * debug-mono-symfile.h: Incremented version number.
10155 2002-09-24  Martin Baulig  <martin@gnome.org>
10157         * class.c (mono_debugger_class_init_func): New global function
10158         pointer variable.
10159         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
10160         call it.
10162         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
10163         function.  This is called via the mono_debugger_class_init_func
10164         hook to add all types to the dynamic type table.
10165         (ves_icall_MonoDebugger_GetType): New interncall to get a class
10166         from its metadata token.
10168         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
10169         New interncall for the debugger.
10171 2002-09-24  Nick Drochak <ndrochak@gol.com>
10173         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
10174         before using it in case it is null.
10175         
10176 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10178         * metadata.c: allow custom modifiers in local var signatures
10179         (bug spotted by Zoltan Varga).
10181 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
10183         * class.c: deal with the <Module> class that may have a NULL vtable.
10184         Eliminate warnings.
10186 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
10188         * image.c, image.h: more strong name helpers.
10189         * monosn.c: more work: convert pem keys to cryptoapi format.
10191 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
10193         * string-icalls.c: speedup IndexOf.
10195 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
10197         * icall.c: updates from Zoltan.2.Varga@nokia.com.
10199 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
10201         * icall.c: cleanup: use mono_object_domain ().
10203 2002-09-23  Martin Baulig  <martin@gnome.org>
10205         * debug-mono-symfile.c: Improved type support.
10207 2002-09-22  Martin Baulig  <martin@gnome.org>
10209         * debug-mono-symfile.c: Added support for reference types and strings.
10211 2002-09-22  Martin Baulig  <martin@gnome.org>
10213         * debug-mono-symfile.c: Started to work on the type table.
10215 2002-09-21  Martin Baulig  <martin@gnome.org>
10217         * debug-mono-symfile.c: Largely reworked the symbol table format.
10218         The symbol table is now incrementally updated each time a new
10219         method is added.  We're now also using our own magic and version
10220         so that you don't need to recompile all your classes if the
10221         dynamic table changes.
10222         (mono_debug_update_mono_symbol_file): Removed.
10223         (mono_debug_symfile_add_method): New function to add a method.
10225 2002-09-21  Martin Baulig  <martin@gnome.org>
10227         * icall.c
10228         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
10229         New interncall.
10231         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
10232         New interncall to get a method from its metadata token.
10234 2002-09-21  Martin Baulig  <martin@gnome.org>
10236         * debug-mono-symfile.c: Create type table.
10238 2002-09-20  Martin Baulig  <martin@gnome.org>
10240         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
10242 2002-09-20  Martin Baulig  <martin@gnome.org>
10244         * debug-mono-symfile.c: Provide information about params and locals.
10246 2002-09-20  Martin Baulig  <martin@gnome.org>
10248         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
10249         New interncall.
10251         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
10252         interncall to get a method from its metadata token.
10254 2002-09-20  Martin Baulig  <martin@gnome.org>
10256         * debug-mono-symfile.c: Added a few checks for method->header
10257         being non-NULL.  This should never happen, but for the moment
10258         let's use a g_warning() rather than a g_assert().
10260 2002-09-19  Mark Crichton  <crichton@gimp.org>
10262         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
10263         even if support for it isn't present.  Added an #ifdef to fix this.
10265         * socket-io.c: Added checks back for Solaris support.
10267 2002-09-19  Martin Baulig  <martin@gnome.org>
10269         * debug-mono-symfile.c (read_string, write_string): Reflect latest
10270         changes in the symbol file format.
10272 2002-09-18  Martin Baulig  <martin@gnome.org>
10274         * debug-mono-symfile.c: Set version number to 21.
10276 2002-09-18  Dick Porter  <dick@ximian.com>
10278         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
10279         on netbsd.  Fixes bug 30051.
10281 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10283         * reflection.c:
10284         (set_version_from_string): little fix.
10286 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
10288         * monosn.c, Makefile.am: added strong name utility.
10289         * reflection.h, reflection.c: implemented delayed signing,
10290         locale, version and hash id assembly attributes.
10292 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
10294         * loader.c, metadata.c: load param attributes in signatures.
10296 2002-09-16  Martin Baulig  <martin@gnome.org>
10298         * debug-mono-symfile.c: Added string table with all method names.
10300 2002-09-14  Martin Baulig  <martin@gnome.org>
10302         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
10303         fast method lookup.
10305 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
10307         * reflection.c: record the public key token of referenced assemblies.
10309 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
10311         * image.c, image.h: added functions to get the strong name and the
10312         public key of an assembly.
10313         * pedump.c: use them.
10315 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
10317         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
10319 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
10321         * marshal.c (mono_marshal_get_managed_wrapper): Added
10322         MONO_TYPE_BOOLEAN 
10324 2002-09-11  Martin Baulig  <martin@gnome.org>
10326         * gc.c: Call GC_unregister_disappearing_link() on all links when
10327         finalizing them, this is necessary to aviod a crash in boehm's
10328         finalize handler.
10330 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10332         * gc.c: handle GetTarget for finalized objects spotted and fixed by
10333         nick@chemlab.org.
10335 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
10337         * icall.c: implemented MonoType::Module.
10338         * reflection.c, reflection.h: mono_module_get_object () from
10339         Tomi Pakarinen <tomi.pakarinen@welho.com>.
10341 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
10343         * icall.c: ignore overridden methods in GetMethods ().
10344         Fix for FieldInfo::SetValue().
10345         * object.c: handle float/double in runtime invoke.
10347 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
10349         * object.c: allow a constructor to be called again on an object.
10351 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
10353         * class.h, class.c: move field layout code to it's own function and
10354         export it. Get an interface id earlier. Move fields in MonoClass
10355         so they are more cache friendly and align the bitfields.
10356         * loader.c: temporary handle get_param_names() for a runtime method.
10357         * reflection.c, reflection.h: more code to handle runtime creation of
10358         types.
10360 2002-09-09  Martin Baulig  <martin@gnome.org>
10362         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
10363         signature with the pinvoke field being set for the actual call.
10365 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10367         * icall.c: removed some unused icalls. Start of map of glib charsets
10368         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
10370 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
10372         * debug-helpers.c: break infinite loop (found and fixed by
10373         Holger Arnold <harnold@gmx.de>).
10375 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
10377         * icall.c: target may be null in create_delegate.
10379 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
10381         * marshal.c: handle a boolean return type.
10383 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
10385         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
10387 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
10389         * gc.c: fix weakreferences.
10391 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
10393         * icall.c: added icall to get default codepage.
10395 2002-09-03  Dick Porter  <dick@ximian.com>
10397         * threads.h: 
10398         * threads.c: Use MonoThread instead of MonoObject where
10399         apropriate.
10401         Store running thread objects in a hash table, so that we have all
10402         the info to hand when waiting for them to finish
10403         (means we don't need OpenThread() any more, so mingw builds should
10404         be fully functional again.)
10406         * verify.c:
10407         * object.h: Added thread ID to MonoThread
10409 2002-09-03  Martin Baulig  <martin@gnome.org>
10411         * icall.c (System.Reflection.Assembly::get_location): New interncall.
10413 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10415         * icall.c: fixed leak in get_temp_path. Thanks lupus.
10417 2002-09-03  Martin Baulig  <martin@gnome.org>
10419         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
10420         argument to store the end address of the disassembled instruction.
10422         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
10423         here from debug-symfile.h.
10424         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
10425         JIT into this struct.
10426         (MonoSymbolFile): Added `char *image_file' field.
10427         (MonoDebugGetMethodFunc): Removed.
10428         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
10429         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
10430         (mono_debug_find_method): New method.
10432         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
10433         create a full symbol file.
10434         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
10435         and static symbol files.
10436         (mono_debug_find_method): The symbol file keeps an internal method hash,
10437         call this to get a MonoDebugMethodInfo from a MonoMethod.
10439         * debug-symfile.[ch]: Removed.
10441 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
10443         * image.c (do_mono_image_open): Remove linker version check.
10445 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
10447         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
10448         wrappers for instance methods.
10449         
10450 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10452         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
10454 2002-08-28  Dick Porter  <dick@ximian.com>
10456         * Makefile.am: Export HOST_CC for w32 builds
10458 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
10460         * file-io.c process.c: MonoString are null terminated, no
10461         need for mono_string_to_utf16() anymore.
10463 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10465         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
10467 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
10469         * icall.c, reflection.h: speedup System.MonoType.
10471 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
10473         * reflection.c: allow null as the value of a string argument in
10474         custom attributes constructors.
10476 2002-08-27  Martin Baulig  <martin@gnome.org>
10478         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
10479         `trampoline_address' field.
10481 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
10483         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
10484         check (fixes bug #29486) 
10486 2002-08-27  Martin Baulig  <martin@gnome.org>
10488         * debug-mono-symfile.c: Changed the file format in a way that allows us
10489         open it read-only and to use a specially malloced area for all the
10490         dynamic data.  We can now also generate a symbol file on-the-fly if we're
10491         debugging IL code and there is no MCS generated symbol file for it.
10493 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
10495         * object.c: added a define for a good string and array
10496         creation speedup (not enabled by default because we need to deal with
10497         the synch stuff).
10499 2002-08-26  Martin Baulig  <martin@gnome.org>
10501         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
10502         function to create a dynamic symbol file.  This is used by the
10503         debugger to create a symbol file for IL code on-the-fly.
10505 2002-08-26  Martin Baulig  <martin@gnome.org>
10507         * loader.c (mono_lookup_pinvoke_call): Include the error message
10508         from g_module_error() in the error message.
10510 2002-08-24  Martin Baulig  <martin@gnome.org>
10512         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
10513         function to update the symbol file.  The symbol file is mmap()ed
10514         writable, but private.  This allows us to install the symbol file
10515         together with the assembly.
10517 2002-08-24  Martin Baulig  <martin@gnome.org>
10519         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
10520         but they can read the new symbol file format which mcs is now creating.
10522         * debug-symfile.c (mono_debug_find_source_location): Moved to
10523         debug-mono-symfile.c; this is now operating on the new symbol file.
10525 2002-08-23  Martin Baulig  <martin@gnome.org>
10527         * debug-helpers.c (mono_method_desc_from_method): New function to get
10528         a MonoMethodDesc from a MonoMethod.
10530 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
10532         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
10533         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
10535 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
10537         * string-icalls.[ch]: make helper methods static.
10539 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10541         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
10542         types to it and to SetValueInternal.
10544         * object.c: Moved handle_enum label to its proper place. This was the
10545         f... bug! ;-)
10547         This time i compiled mcs and gtk-sharp and they both work.
10549 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10551         * icall.c: reverted partially my previous patch until 
10552         object.c:set_value handles enums correcly.
10554 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10556         * icall.c:
10557         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
10558         (ves_icall_System_Environment_get_MachineName): removed warning when
10559         compiling under cygwin.
10561 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
10563         * object.c: fixed field_get_value() for reference types.
10565 2002-08-22  Dick Porter  <dick@ximian.com>
10567         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
10568         Don't free a buffer while it's still needed.  Patch from Jonathan
10569         Liger <Jonathan.liger@wanadoo.fr>
10571 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
10573         * icall.c (ves_icall_System_Environment_get_Platform): Add new
10574         internal call.
10576 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
10578         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
10579         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
10581         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
10582         we call unmanaged code which throws exceptions.
10584 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10586         * appdomain.h: added per-domain entry_assembly.
10587         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
10588         arguments.
10589         * icall.c: Assembly::GetEntryAssembly icall.
10590         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
10591         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
10593 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10595         * appdomain.h, gc.c: added mono_domain_finalize ().
10597 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10599         * object.c:
10600         (mono_print_unhandled_exception): changed g_warning by g_printerr
10601         because g_log has a 1024 characters limit (yeah, i got a big stack
10602         trace). Don't print exception name, that should be in ToString 
10603         returned string.
10605 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10607         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
10608         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
10610 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10612         * object.c:
10613         (mono_print_unhandled_exception): after previous commit, i realized
10614         that MS calls ToString on the exception. I changed this function to
10615         do that. This way we get stack_trace for free.
10617 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10619         * object.c:
10620         (mono_print_unhandled_exception): invoke Message property instead of
10621         getting 'message' field from Exception. Don't allocate memory for
10622         'trace' and 'message' if not needed.
10624 2002-08-18  Dick Porter  <dick@ximian.com>
10626         * unicode.c: Fix asserts to match Encoder.cs checks
10628 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10630         * marshal.c: fix unaligned store issue and a few wrong
10631         opcode argument types.
10633 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10635         * icall.c: added GetUninitializedObjectInternal internal call.
10637 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
10639         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
10640         to the right domain.
10642 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
10644         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
10646         * class.c (class_compute_field_layout): set blittable to false for Strings
10648         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
10650 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10652         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
10653         first chunk of code to create types at runtime. Code to
10654         handle ReflectedType/DeclaringType. Make reflection handles
10655         domain specific.
10657 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
10659         * class.c: set correct name in arrays.
10661 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
10663         * appdomain.c (mono_domain_transfer_object): make it work with
10664         valuetypes. bug fixes.
10666 2002-08-12  Dick Porter  <dick@ximian.com>
10668         * object.h: Rename some parameters to avoid c++ keywords (Patch
10669         from Joseph Wenninger <kde@jowenn.at>)
10671 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
10673         * icall.c: added icall to implement Assembly.GetFile*.
10675 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
10677         * reflection.h, reflection.c: code to embed managed resources.
10679 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
10681         * class.c: move all the type size stuff into
10682         class_compute_field_layout().
10684 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10686         * class.c: ensure enums have always the correct instance size.
10687         * unicode.c: remove wrong assert.
10689 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
10691         * assembly.c: fix mem corruption issue.
10692         * image.h, image.c: added mono_image_get_resource () to access
10693         managed resources.
10694         * icall.c: implemented Assembly.EntryPoint property and some
10695         Managed Resources related internalcalls.
10698 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
10700         * image.c, image.h: impemented mono_image_get_entry_point ().
10701         * appdomain.c: use mono_image_get_entry_point.
10703 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10705         * reflection.c: support the object type argument when loading
10706         custom attributes.
10708 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
10710         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
10711         String as return type.
10713 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
10715         * reflection.c: fix encoding of named args for custom attrs to match
10716         the ms implementation. Read them back when instantiating custom
10717         attributes.
10719 2002-08-02  Radek Doulik  <rodo@ximian.com>
10721         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
10722         by Dietmar as quick fix
10723         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
10724         16 as stack size, used on more places as quick fix before Dietmar
10725         will fix it properly
10727 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
10729         * object.h, object.c: added accessors for fields and properties.
10731 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10733         * class.c, class.h: made mono_class_get_field_from_name ()
10734         loop on parent types.
10735         Added mono_class_get_property_from_name ().
10737 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
10739         * class.c, class.h: move the code to setup the type vtable in its own
10740         function so that it can be reused also for types created at runtime.
10741         Eliminate the "class" identifier from the header file.
10742         * reflection.c: setup the vtable for enums so that we can create
10743         objects for use in SetConstant ().
10745 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
10747         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
10748         instead of the delegate itself as this pointer (bug #28383)
10750 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
10752         * marshal.c (mono_marshal_get_managed_wrapper): added return type
10753         conversions.
10755 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10757         * loader.c: don't set the pinvoke bit on icalls.
10759 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
10761         * debug-helpers.c (mono_method_full_name): only print a number to
10762         indicate wrapper type (so that the output is more readable in traces).
10764 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
10766         * class.c (mono_class_init): include method override patch from Paolo
10768 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
10770         * icall.c: fixed GetTypeCode().
10772 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
10774         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
10775         use real delegate invoke function to make it work with multicast
10776         delegates (fix bug# 28291).
10778 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
10780         * object.c: load constant strings.
10782 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10784         * reflection.c: no magic numbers.
10785         * tabledefs.h: security action enum.
10787 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
10789         * assembly.c: fix possible memory corruption.
10791 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
10793         * reflection.h, reflection.c: added support for linking resources.
10794         * verify.c: check we have an updated corlib.
10796 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
10798         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
10799         string arrays.
10800         (mono_marshal_string_array): null terminate unmanaged string arrays.
10801         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
10803 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
10805         * icall.c: Type.GetType () can now return also types from the
10806         calling assembly.
10808 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
10810         * loader.h, loader.c: stack walking support.
10811         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
10812         GetCallingAssembly.
10814 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
10816         * marshal.c: added optimisations for blittable types 
10818         * class.c (mono_array_class_get): do not set blittable attribute on arrays
10819         (mono_class_setup_mono_type): set blittable attribute for single
10820         and double.
10822         * marshal.c (mono_string_utf8_to_builder): impl.
10823         (mono_string_builder_to_utf8): impl.
10824         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
10826 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
10828         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
10829         (mono_marshal_get_managed_wrapper): impl. byref types
10831 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10833         * icall.c:
10834         (search_method): don't display debug message. 
10836 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
10838         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
10840 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
10842         * appdomain.c: set the missing filename when throwing exception.
10844 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
10846         * metadata.c (mono_type_size): code cleanup
10847         (mono_type_stack_size): removed some test code
10849 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
10851         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
10852         mono_get_exception_file_not_found now.
10854         * exception.c (mono_exception_from_name_two_strings): New version
10855         that will call a constructor with two string arguments. 
10856         (mono_get_exception_file_not_found): New helper routine, used to
10857         report file-not-found errors.
10859 2002-07-20  Dick Porter  <dick@ximian.com>
10861         * process.h:
10862         * process.c: Pass file handles to CreateProcess
10863         
10864         * icall.c:
10865         * file-io.h:
10866         * file-io.c: Implemented CreatePipe
10868 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
10870         * metadata.c (mono_get_param_info): set alignment for value types
10872 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10874         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
10875         Constify mono_domain_assembly_open().
10876         * loader.c: handle null namespace in icalls.
10878 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
10880         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
10881         (emit_str_to_ptr_conv): marshal object as structs
10883         * metadata.c (mono_type_to_unmanaged): marshal object as structs
10885         * marshal.c (mono_marshal_get_runtime_invoke): support value types
10887 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
10889         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
10890         (mono_marshal_get_native_wrapper): we an now return value types
10892 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10894         * verify.c: more checks implemented.
10896 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
10898         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
10899         (fix bug #27695)
10900         (mono_marshal_get_native_wrapper): allow byref arguments
10901         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
10902         impl. PtrToStringXXX methods
10903         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
10904         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
10905         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
10906         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
10907         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
10909 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10911         * reflection.c: fix buglet in parsing an assembly name.
10913 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
10915         * marshal.c (emit_ptr_to_str_conv): first impl.
10917 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
10919         * object.c, class.h: cache the vtable in the class as suggested by
10920         vargaz@freemail.hu (Zoltan Varga).
10922 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10924         * class.h, loader.c: added mono_field_from_token().
10925         * verify.c: first cut of type checking code.
10927 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
10929         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
10931 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
10933         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
10934         (fix bug #27782)
10935         (mono_marshal_get_remoting_invoke): impl.
10936         (mono_delegate_begin_invoke): impl.
10937         (mono_mb_emit_save_args): impl.
10938         (mono_delegate_end_invoke): impl.
10939         (mono_marshal_get_delegate_begin_invoke):
10940         (mono_marshal_get_delegate_end_invoke):
10941         (mono_marshal_get_delegate_invoke): generate a special name for
10942         those methods (including the signature) and associate them whith
10943         the delegate class. 
10945 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
10947         * reflection.[ch]: 
10948         (mono_reflection_type_from_name): now it has a MonoImage parameter
10949         which is used as the default image to search the type in. If the image
10950         is NULL or getting the type from it fails, it defaults to corlib.
10952         * icall.c: changed 1 call to mono_reflection_type_from_name to match
10953         new parameter.
10955 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10957         * reflection.c: update the parameter table index.
10959 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
10961         * domain.c: don't include the mark byte in the string hash.
10963 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
10965         * icall.cs: icall for Type.GetTypeCode ().
10966         * verify: a couple of fixes and disabled local initialization checks.
10968 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
10970         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
10972         * debug-helpers.c (mono_method_full_name): print the type of the
10973         runtime wrapper
10975         * metadata.c (mono_signature_hash): a hash function for signatures
10976         (mono_signature_hash): better hash algorithm
10978         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
10980         * debug-helpers.c (mono_method_full_name): this can now generate
10981         method names with signatures
10983         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
10984         method dont have this pointers.
10986 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
10988         * reflection.c: fixup typebuilder tokens.
10989         * image.c: fix buglet.
10990         * marshal.h: remove whitespace.
10991         * metadata.h, metadata.c: reinstate code that was removed.
10992         * verify.c: handle catch directives and fix another couple of bugs.
10994 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
10996         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
10997         (mono_marshal_get_native_wrapper): make it comp. with the old code
10998         (mono_marshal_get_native_wrapper): support boolean
10999         (mono_marshal_get_managed_wrapper): support more types
11001 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
11003         * class.c (class_compute_field_layout): compute class->blittable attribute.
11005 2002-07-09  Dick Porter  <dick@ximian.com>
11007         * threads.c: Make the thread cleaning up cope with threads that
11008         call ExitThread()
11010 2002-07-08  Radek Doulik  <rodo@ximian.com>
11012         * reflection.c (method_encode_code): use non-translated values to
11013         compute finally_start, this fixes exception handling on ppc, yay!
11015         * decimal.h (struct signscale): fix endianess
11017 2002-07-07  Radek Doulik  <rodo@ximian.com>
11019         * reflection.c: swap box_val and not val
11021 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
11023         * reflection.c, reflection.h: handle full assembly info in type name.
11024         Handle Type arguments when loading custom attributes.
11025         * icall.c: updated to use new mono_reflection_type_from_name () method.
11027 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11029         * loader.c:
11030         (method_from_memberref): also print assembly name when method not found.
11032 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11034         * icall.c:
11035         (ves_icall_TypeGetProperties): fixed bug #27473. 
11037 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11039         * reflection.c: display image name and token when cannot find the
11040         .ctor for an attribute.
11042 2002-07-05  Martin Baulig  <martin@gnome.org>
11044         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
11046 2002-07-04  Dick Porter  <dick@ximian.com>
11048         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
11049         compile on mingw.  This will cause mingw builds to not wait for
11050         subthreads to terminate after the main thread does.  I've lodged a
11051         bug with the mingw developers for them to wrap OpenThread().
11053 2002-07-03  Dick Porter  <dick@ximian.com>
11055         * threads.c: Store thread IDs instead of handles, because
11056         GetCurrentThread() returns a pseudohandle and therefore stores
11057         useless values.  mono_thread_cleanup() continues checking the
11058         array of threads until it is empty, to cope with subthreads
11059         spawning new threads after the main thread has finished.
11061         * profiler.h:
11062         * profiler.c:
11063         * profiler-private.h: Pass the thread ID to thread profiler
11064         functions, instead of a handle
11066 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
11068         * verify.c: fixes to make it more usable.
11069         * pedump.c: added --verify code to verify IL code in an assembly.
11071 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11073         * reflection.c: turn errors into warnings to allow compiling corlib.
11075 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
11077         * reflection.c: add special cases to compile corlib.
11079 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
11081         * reflection.c: handle properties with only a set method.
11083 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
11085         * opcodes.h: add enum with opcodes in opval order.
11087 2002-07-01  Dick Porter  <dick@ximian.com>
11088         
11089         * object.h:
11090         * object.c (mono_runtime_run_main): Removed unneeded argument
11092 2002-06-28  Martin Baulig  <martin@gnome.org>
11094         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
11096 2002-06-27  Dick Porter  <dick@ximian.com>
11098         * threads.c: Store the handle in both the parent thread and in the
11099         subthread, to minimise the time between starting a new thread and
11100         storing its ID.
11102 2002-06-26  Dick Porter  <dick@ximian.com>
11104         * appdomain.c (mono_runtime_cleanup): Close the socket library
11105         after all the threads have finished, not before
11107 2002-06-26  Martin Baulig  <martin@gnome.org>
11109         * debug-symfile.c (mono_debug_find_source_location): Added
11110         `guint32 *line_number' argument.  If it's not NULL, store the line number
11111         there and return the file name without the line number.
11113 2002-06-25  Dick Porter  <dick@ximian.com>
11115         * icall.c:
11116         * process.h:
11117         * process.c: Process forking and other support functions
11119 2002-06-25  Dick Porter  <dick@ximian.com>
11121         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
11122         things dont happen when the image is closed.
11123         (mono_image_lookup_resource): Walk the resource section looking
11124         for a particular entry
11126         * cil-coff.h: PE resource section decoding
11128 2002-06-25  Dick Porter  <dick@ximian.com>
11129         
11130         * assembly.h:
11131         * assembly.c: 
11132         (mono_assembly_foreach): Accessor functions to walk the list of
11133         loaded assemblies
11134         (mono_assembly_set_main):
11135         (mono_assembly_get_main): Process methods need to know which
11136         assembly is the "main" one
11138         * object.c (mono_runtime_run_main): Record the main assembly
11140         * debug-helpers.c: Fix typo
11142 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
11144         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
11145         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
11147 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
11149         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
11151 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
11153         * image.c (do_mono_image_open): Initialize reference count,
11154         otherwise we leak the MonoImage.
11156 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
11158         * reflection.c: small tweak to handle self-hosting.
11160 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
11162         * reflection.c: fix type name parse code.
11164 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
11166         * reflection.c: break out of the loop.
11167         * image.c: special case corlib.
11169 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11171         * reflection.c: add all the custom attrs at the end to ensure the
11172         ctors have been properly initialized when the attributes are defined
11173         in the current assembly.
11175 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
11177         * reflection.c: handle correctly multiple-nested types.
11179 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
11181         * row-indexes.h: fix typos.
11182         * reflection.c: adjust for typos and fix method_def_or_ref
11183         encoding in MethodImpl table.
11185 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
11187         * reflection.c: fix entry point patching (thanks Serge!).
11189 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
11191         * verify.c: add check for System.Exception
11193 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
11195         * image.c, class.c: minifix for code just c&p'ed.
11196         * reflection.c: warning fix.
11197         * object.h, loader.h, domain.c: load also StringBuilder.
11199 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
11201         * marshal.h, marshal.c: some support code to handle complex marshaling.
11203 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11205         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
11206         Better signatures with vtable error dump.
11208 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
11210         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
11212 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
11214         * icall.c (ves_icall_Type_GetField): impl.
11216 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11218         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
11219         to retrieve a marshal description blob for a field or param.
11221 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
11223         * reflection.h, reflection.c: change order of nested type emission
11224         to avoid table corruption. The NestedTypes table is sorted.
11225         * icall.c: change order of GetConstructor results to workaround mcs bug.
11227 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
11229         * reflection.h, reflection.c: handle field and param marshal
11230         information.
11232 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
11234         * icall.c, marshal.c marshal.h: more Marshal class implementation.
11236 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
11238         * reflection.c: fix call convention.
11240 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
11242         * reflection.h, reflection.c: mono_image_get_memberref_token()
11243         takes a type instead of a class, now. Added
11244         mono_image_get_array_token() to create tokens for the special
11245         multi-dim array methods.
11247 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
11249         * assembly.c: handle modules (no assembly table). Split
11250         loading references in its own function.
11251         * class.c: handle moduleref resolution scope.
11252         * image.c, image.h: cache module name in image.
11254 2002-06-07  Martin Baulig  <martin@gnome.org>
11256         * reflection.c (mono_image_get_type_info): Only add a class layout entry
11257         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
11259 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
11261         * icall.c: more signature fixes that used uint instead of int.
11263 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11265         * reflection.c: fixed signature of field refs.
11267 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11269         * class.c, reflection.c: handle typerefs of nested types
11270         (both on read and when writing files).
11272 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
11274         * icall.c: fix method signatures that tried to workaround the previous
11275         typo, d'oh!
11277 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
11279         * debug-helpers.c: fix typo.
11281 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
11283         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
11284         rewrote the PE/COFF writing code (our programs are understood by the
11285         ms runtime, now).
11287 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
11289         * gc.c, gc.h, icall.c: weakreference support.
11291 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
11293         * Makefile.am, mono-config.c: use $(sysconfdir).
11295 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
11297         * icall.c: changed default precision of Double.ToString() to 15.
11298         Fixed memory leak. Unified with Single.ToString.
11300 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
11302         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
11304 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
11306         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
11307         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
11308         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
11309         and myself.
11311 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11313         * debug-symfile.c, sysmath.c: yet more compilation fixes.
11315 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11317         * reflection.c, socket-io.c: more compilation fixes.
11319 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
11321         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
11322         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
11323         unicode.c: warning and compiler compatibility fixes.
11325 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
11327         * class.h, metadata.c: fixed warnings/compilation errors.
11329 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
11331         * Makefile.am, mono-config.c, mono-config.h: configuration file
11332         support routines.
11333         * loader.c, loader.h: make Dll mapping configurable at runtime in the
11334         config file. Export methods to insert and lookup mappings.
11336 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
11338         * reflection.c: handle types and boxed objects in custom attr
11339         constructors.
11341 2002-05-30  Martin Baulig  <martin@gnome.org>
11343         * debug-symfile.c
11344         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
11346 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
11348         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
11349         to lookup the implmap row for a P/Invoke method.
11350         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
11351         P/Invoke method from the runtime on an as needed basis.
11353 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
11355         * metadata.c (mono_metadata_parse_signature): impl.
11357 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11359         * class.c: handle .pack directive.
11361 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
11363         * object.c: initialize static fields with RVA data.
11365 2002-05-25  Martin Baulig  <martin@gnome.org>
11367         * debug-symfile.c
11368         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
11370 2002-05-24  Martin Baulig  <martin@gnome.org>
11372         * debug-symfile.c
11373         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
11374         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
11375         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
11377 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
11379         * object.c: special case string ctros in invoke.
11380         * gc.c: silly whitespace changes.
11382 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
11384         * threadpool.[ch]: impl. a threadpool that can
11385         be used by mint and mono.
11387 2002-05-22  Martin Baulig  <martin@gnome.org>
11389         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
11390         The first argument is now a `MonoReflectionModuleBuilder *', the return
11391         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
11392         `methods' field to get the method builder.  The `token' argument is the
11393         unfixed token.
11395         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
11396         invalid characters instead of g_assert_not_reached()ing.  This seems
11397         to be the behaviour of mscorlib.
11399 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
11401         * object.c (mono_runtime_invoke_array): applied patch from Rachel
11402         Hestilow to fix bug #25104
11404 2002-05-21  Martin Baulig  <martin@gnome.org>
11406         * debug-symfile.c (mono_debug_find_source_location): New function.
11407         Looks up an IL offset in the line number table and returns the source
11408         location as a string.
11410 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11412         * icall.c:
11413         (mono_double_ToStringImpl): changed %f by %g until we have something
11414         better.
11416 2002-05-21  Nick Drochak  <ndrochak@gol.com>
11418         * icall.c : Use different name for Math.Pow's icall.  Needed to check
11419         parameters first in C#.
11421 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11423         * icall.c, reflection.h: added icall to get info about an event.
11425 2002-05-20  Radek Doulik  <rodo@ximian.com>
11427         * object.c (mono_value_box): don't use memcpy for boxing on BIG
11428         endian
11429         (mono_value_box): don't use memcpy for small sizes on
11430         architectures with unaligned access
11432 2002-05-20  Martin Baulig  <martin@gnome.org>
11434         * reflection.c (mono_reflection_setup_internal_class): Don't crash
11435         if `tb->parent == NULL'.
11436         (mono_reflection_create_internal_class): New function.  This is
11437         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
11438         for enum types.
11440         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
11441         New interncall.
11443 2002-05-19  Martin Baulig  <martin@gnome.org>
11445         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
11446         argument to get the length, don't default to the array length.
11448 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
11450         * assembly.c (mono_assembly_setrootdir): New function used to
11451         override the MONO_ASSEMBLIES directory.
11453 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
11455         * icall.c: ValueType_GetHashCode() initialize local var.
11457 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
11459         * reflection.c: sort custom attributes table.
11461 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
11463         * reflection.c: support named args in custom attributes (write support).
11465 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
11467         * reflection.c: fix finally position calculation.
11469 2002-05-15  Radek Doulik  <rodo@ximian.com>
11471         * reflection.c: fixed endianess at many places
11473         * icall.c (ves_icall_InitializeArray): comment out debug msg
11475 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
11477         * object.c (mono_unhandled_exception): new function to handle
11478         unhandled exceptions.
11479         (mono_unhandled_exception): call the UnhandledException event.
11480         (mono_runtime_delegate_invoke): impl.
11482 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
11484         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
11485         returns the RVA, not the direct pointer to the data. Handle the case
11486         when the class size is fixed.
11488 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
11490         * reflection.c: fix some endianess issues.
11492 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
11494         * object.c (mono_runtime_invoke): is now able to catch exceptions.
11496         * threads.c (mono_thread_init): added a callback which is invoked
11497         at thread start.
11499 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
11500         
11501         * icall.c: make GetHashCode return non-negative values.
11503 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
11505         * object.c, icall.c, gc.c: revert to address-based hashcode.
11507 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
11509         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
11511 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
11513         * icall.c, class.c: special case <Module>.
11515 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
11517         * icall.c: fix bug in GetNow().
11519 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
11521         * object.c (mono_runtime_class_init): make sure that we call all
11522         static class constructors.
11524 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
11526         * reflection.c: sort methodsemantics table.
11528 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
11530         * reflection.h, reflection.c: honour init locals setting.
11532 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
11534         * icall.c: copied Double ToStringImpl for Single ToStringImpl
11536 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
11538         * reflection.c: support ContructorBuilders in attribute blob creation.
11540 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11542         * reflection.c: some changes to build a binary that can be run
11543         directly in windows.
11545 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
11547         * loader.c: print a big message when an icall can't be found.
11549 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11551         * string-icalls.c: fix bug 24248.
11553 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
11555         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
11556         icall.c, reflection.h: separate assembly loading by pathname and by
11557         assembly name. Use the MONO_PATH env var to search for assemblies.
11559 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
11561         * assembly.c, image.h: add some support for assemblies
11562         with multiple modules.
11563         * class.c, class.h: export mono_class_from_typeref().
11564         * loader.c: remove duplicated code and use mono_class_from_typeref(),
11565         instead.
11567 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
11569         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
11570         documentation says (the ECMA one is correct).
11572 2002-05-02  Dick Porter  <dick@ximian.com>
11574         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
11575         Don't name the synchronisation mutex.
11577 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
11579         * rand.c
11580         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
11581         Make the prototypes match.
11582         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
11583         Same.
11585         * icall.c
11586         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
11587         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
11588         all systems have tm.tm_zone, so use strftime() with %Z to print
11589         the timezone abreviation into a temp string.
11591         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
11592         rather than mono_array_addr() on a MonoString on Big Endian
11593         machines.
11595 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
11597         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
11598         fix bug 24041
11600 2002-04-30  Dick Porter  <dick@ximian.com>
11602         * socket-io.c: Cope with SOCKET being an integer rather than a
11603         pointer now.
11605         * threads.c: Added Thread_free_internal, to deal with thread
11606         handle cleanup.  Moved calls to handle_store() and handle_remove()
11607         to start_wrapper(), so each can only be called once.  Allocate
11608         synchronisation blocks with GC_malloc(), and use GC finalisation
11609         to close the handles.
11611         * icall.c: added System.Threading.Thread::Thread_free_internal
11613 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
11615         * icall.c: support Environment.Exit, CommandLineArgs().
11617 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
11619         * object.c, object.h: added mono_runtime_run_main () and
11620         mono_runtime_get_main_args () for use in System.Environment.
11622 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
11624         * gc.c: fix thinko, enable actual finalization since the jit is now
11625         fixed.
11627 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11629         * gc.c, object.c: take into account that an object may be offset wrt the address
11630         returned by GC_malloc().
11632 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
11634         * image.c: handle files without entries in the assembly table (modules).
11636 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
11638         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
11639         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
11640         allowed to be null when it's System.Object class setup.
11642 2002-04-27  Martin Baulig  <martin@gnome.org>
11644         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
11645         if `tb->parent == NULL' rather than crashing.
11647 2002-04-28  Nick Drochak  <ndrochak@gol.com>
11649         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
11650         calling acos() where asin() should have been called.
11652 2002-04-26  Martin Baulig  <martin@gnome.org>
11654         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
11655         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
11656         there's a subdirectory called `System', but we don't want to read that
11657         subdirectory as an assembly.
11659 2002-04-25  Martin Baulig  <martin@gnome.org>
11661         * debug-symfile.c: Reflect latest MonoString changes.
11663 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
11665         * rand.c, rand.h: instance method icalls need to have an explicit
11666         this pointer as first argument in the C implementation.
11668 2002-04-25  Nick Drochak <ndrochak@gol.com>
11670         * icall.c: Fix typo in map for GetNonZeroBytes
11672 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11674         * string-icalls.c : String does now passes unit tests without any 
11675         errors, the following changes has been made:
11676         
11677         Implemented replace methods.
11678         Renaming of methods to (try) follow the standard.
11679         Fixed compare ordinal
11680         Made all memory allocated directly to function instead of via icall function.
11681         Small performance fix in is_in_array function
11682                         
11683  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
11685         c (mono_string_Internal_ctor_charp_int_int):
11686         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
11687         sindex < 0, throw ArgumentOutOfRangeException instead of
11688         ArgumentNullException.
11690         Added new check for length == 0, however
11691         I need to make it return String.Empty from the C code.
11692         
11693         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
11694         that calculate the length for us here.
11695         
11696         (mono_string_Internal_ctor_sbytep_int_int): Replaced
11697         mono_string_new_utf16 with mono_string_new, since value is utf8.
11699 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11701         * object.c: register the object for finalization if needed.
11702         Allocate one more char in the string for the terminating 0 char.
11704 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
11706         * class.c, class.h, image.c: check if a type implemenst a destructor.
11707         Use the proper key for array class lookups.
11708         * icall.c: register the icalls in the System.GC class.
11709         * gc.c, gc.h: GC-related functions and icalls.
11711 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11713         * icall.c:
11714         * socket-io.c:
11715         * unicode.c: free some strings gotten from mono_string_to_utf8 and
11716         changed a couple of free () by g_free ().
11718         * decimal.c: one-liner in the comments for decimal2string ().
11720 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11722         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
11724 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11726         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
11727         * object.c (mono_runtime_invoke_array) : handle null in params
11729 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11731         * string-icalls.c: fixed bug in split (one off bug)
11733 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11735         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
11736         * icalls.c: added String::Equals as internal method
11738 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11740         * threads.c: fixed bug in the double interlocked functions
11742 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
11744         * threads.c: implemented all of the new interlocked icalls.
11745         * string-icalls.c: fix a bug in insert.
11746         * icalls.c: added the icalls for interlocked, removed old string functions.
11747         
11748 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
11750         * loader.c: fix off-by-one error when reading argument names.
11752 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11754         * profiler.c: win32 counter implementation (untested).
11755         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
11756         (the latter needs testing and more complete impl. from win32 folks).
11758 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
11760         * object.c: mono_array_new_full workaround mono_array_class_get
11761         problem.
11763 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11765         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
11766         * object.h (mono_string_chars): Changed casting type.
11768 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11770         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
11771                            method signatures to use gunichar2 instead of gint16.
11773 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
11775         * object.h, object.c: domain-specific versions of mono_object_new and
11776         mono_array_new.
11778 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
11780         * object.c: changed String layout
11782         * string-icalls.c (mono_string_Internal_ctor_chara): added
11783         internal string constructors.
11785 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
11787         * threads.c: pass 'this' to the thread start routine.
11789 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11791         * string-icalls.c: fix IndexOf and LastIndexOf. Now
11792         InternalCompareStr don't call twice mono_string_cmp_char for the last
11793         character. Improved performance in mono_string_cmp_char.
11795 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
11797         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
11798         code into its own library: libmonoruntime.
11800 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
11802         * object.h, object.c: changed array format so that szarrays do not
11803         require a bounds structure.
11804         * icall.c, appdomain.c: support for new szarray format.
11806 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
11808         * metadata.c: compare also the retuns type when comparing signatures:
11809         we didn't do this as an optimization since really overloaded methods
11810         must differ also in the arguments, but this doesn't work with
11811         low-level IL code (or when using explicit conversion operators: see
11812         bug#23498 for an example).
11814 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
11816         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
11818 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
11820         * icall.c: make MonoType::GetElementType its own icall.
11822 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
11824         * icall.c: remove MonoMethod_get_Name().
11825         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
11826         object.
11828 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11830         * string-icalls.c: optimized a few methods.
11832 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11834         * icall.c: added all new string internal calls
11835         * string-icalls.c: added, new string internal call implementation.
11836         * object.c: added mono_string_new_size for allocating a string a size
11838 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
11840         * object.c (mono_object_isinst): use the same code as in the
11841         optimized x86 version.
11843 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11845         * profiler.c: TSC-based timer code (faster and more accurate).
11846         Not hooked up in configure, yet (set USE_X86TSC to 1).
11848 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
11850         * profiler.c, profiler.h: track time spent compiling methods.
11851         * threads.c: track thread creation/destruction.
11853 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
11855         * profiler.c, profiler.h, profiler-private.h: profiling interface
11856         and sample implementation. Moved here so that it can be used also by
11857         the jit.
11859 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
11861         * reflection.c, reflection.h: keep types and other handles separate in
11862         the hash tables for referred tokens. Add guid for modules.
11864 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
11866         * assembly.c: fix bugs found with valgrind.
11867         * metadata.h, metadata.c: added mono_metadata_guid_heap().
11869 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
11871         * threads: added icall support for getting current domain for
11872                    the thread.
11874 2002-04-13  Martin Baulig  <martin@gnome.org>
11876         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
11877         (MonoDebugVarInfo): Added `index' field for register based addresses.
11878         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
11879         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
11880         `MonoDebugVarInfo *params' and `guint32 this_offset' with
11881         `MonoDebugVarInfo *this_var'.
11883         * debug-symfile.c (relocate_variable): New static function to write
11884         a location description for a local variable or method parameter.
11886 2002-04-12  Martin Baulig  <martin@gnome.org>
11888         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
11889         stack offset and begin/end scope address of a local variable.
11890         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
11891         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
11892         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
11894         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
11895         Added new relocation types for start/end scope of a local variable.
11897 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11899         * object.h: add mono_object_domain() macro.
11900         * reflection.c: handle typespecs.
11901         * icall.c: MonoMethod::get_Name() implementation.
11903 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11905         * icall.c: String::GetHashCode() icall implementation.
11907 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11909         * icall.c: String::IndexOfAny icall.
11910         * object.c, object.h: make array->max_length more useful.
11911         Intrduced mono_object_class() and mono_string_length() macros.
11913 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11915         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
11916         instead of g_unichar_isdigit.
11918 2002-04-11  Nick Drochak  <ndrochak@gol.com>
11920         * icall.c: Implement a simple Double.ToString().
11922 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
11924         * appdomain.h: only io-layer.h is supposed to be included.
11925         * icall.c: explicitly import environ. Fix warning.
11927 2002-04-10  Nick Drochak  <ndrochak@gol.com>
11929         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
11930                 return true even if it's not Daylight Savings time.
11931                 Only return false for the case where the function isn't
11932                 implemented for a plaform (read Windows).
11934 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11936         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
11937         data with a mutex.
11939 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
11941         * mempool.c (mono_mempool_alloc): only use g_malloc when
11942         absolutely necessary.
11944 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
11946         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
11948         * class.c (mono_class_vtable): use domain mempool to allocate vtable
11949         (mono_class_proxy_vtable): use domain mempool
11951 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
11953         * appdomain.h, appdomain.c: split initialization that requires the
11954         execution engine support into mono_runtime_init().
11956 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
11958         * class.c (mono_class_init): don't include vtable inside MonoClass
11959         to save some memory, gather some statistics.
11960         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
11962 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
11964         * icall.c: internalcall implementation for ValueType.Equals().
11966 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
11968         * object.c (mono_message_init): moved 
11969         (mono_runtime_exec_main): new arch. independent impl.
11970         (mono_runtime_invoke_array): new method - like
11971         mono_runtime_invoke, but you can pass an array of objects.
11972         (mono_remoting_invoke): new arch. independent impl.
11973         (mono_message_invoke): new arch. independent impl.
11974         (mono_runtime_class_init): new arch. independent impl.
11975         (mono_runtime_object_init): new arch. independent impl.
11977 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11979         * metadata.c, object.c, reflection.c: documented the exported
11980         functions.
11982 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
11984         * icall.c: simpler code to pass the assembly builder data to corlib.
11985         Implement GetNestedTypes() internalcall.
11987 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
11989         * class.c: warn if a type can't be loaded.
11991 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
11993         * image.h: typedef MonoImageOpenStatus
11994         * types.h: removed unused file
11995         
11996 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
11998         * icall.c: Enum_ToObject accepts enum value arguments.
12000 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
12002         * class.c: move initialization of properties, events and nested
12003         classes, so that they happen for interfaces, too.
12005 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
12007         * icall.c: cleanup some ugly casts in Array_SetValue*.
12009 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
12011         * icall.c: the values array fro enums is of the correct type, now.
12012         Implement (correctly) getFullName instead of assQualifiedName for
12013         MonoType.
12014         * reflection.h, reflection.c: added mono_type_get_name ().
12016 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
12018         * assembly.c, image.h: for each MonoImage, record from wich assembly
12019         it was loaded.
12020         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
12021         Make Type.Assembly work.
12023 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
12025         * debug-symfile.h: use char* instead of gpointer to avoid
12026         unnecessary casts.
12028         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
12030         * icall.c (ves_icall_InternalExecute): impl. FielSetter
12031         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
12033 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
12035         * icall.c (mono_message_init): impl. (code cleanup)
12036         (ves_icall_InternalExecute): impl. FieldGetter
12038         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
12039         defined we call all (non-static)methods through the vtable. 
12041 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
12043         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
12044         finalizer even though the memory is still referenced (and the chunk of
12045         memory is not freed).
12047 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
12049         * assembly.c: fix brokeness.
12051 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
12053         * class.c: kill some warnings. Check explicit interface method
12054         implementation also without considering the namespace.
12055         Load also literal strings in static class data.
12057 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
12059         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
12060         (default_assembly_name_resolver): Make the resolver take the
12061         "base" directory where the assembly was originally defined, so we
12062         can load DLLs that are in the same directory as the assembly that
12063         is being referenced.
12065 2002-03-28  Dick Porter  <dick@ximian.com>
12067         * file-io.h: 
12068         * file-io.c:
12069         * socket-io.c: 
12070         * unicode.h: 
12071         * unicode.c: Warning cleanups
12073 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
12075         * object.h, reflection.h: use the correct type instead of MonoObject.
12077 2002-03-28  Martin Baulig  <martin@gnome.org>
12079         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
12080         (mono_debug_update_symbol_file): Initialize classes if necessary.
12082 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
12084         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
12085         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
12087 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
12089         * assembly.h: fix function prototype.
12090         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
12091         * mono-endian.h: use const cast.
12093 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
12095         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
12097 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
12099         * loader.c: don't assert when a typeref can't be loaded, give
12100         a chance to the runtime to trow an exception instead.
12101         * loader.h: fix warning.
12103 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
12105         * class.c (mono_class_proxy_vtable): added proxy support
12107 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
12109         * icall.c: removed last of PAL calls, added System.Environment
12110         * file-io.h, file-io.c: MonoIO implementation
12111         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
12113 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
12115         * appdomain.c: do not use the byte marker in ldstr table lookup.
12116         * debug-helpers.c: allow two ':' to separate class and method name.
12117         * object.c: allocate arrays bounds with the GC, too.
12118         * verify: add a few more checks.
12120 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
12122         * reflection.c: output also literal strings. Allocate parameter data
12123         with GC_malloc() (thanks, Martin, for catching this!).
12125 2002-03-26  Martin Baulig  <martin@gnome.org>
12127         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
12128         include the `this' offset in the `param_offsets'.
12130 2002-03-25  Martin Baulig  <martin@gnome.org>
12132         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
12133         mono_debug_get_class() function to get the classes. Added new
12134         relocation types for arrays and strings.
12135         (mono_debug_get_class): New static function to search in all
12136         referenced assemblies for a metadata token.
12138         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
12140 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
12142         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
12143         hold gc-allocated objects. Make the string heap a stream like the
12144         others. Removed duplicated code when writing stream info.
12145         Added asserts to catch possible buffer overflows. Set the sorted map
12146         for tables that need sorting. Added some documentation.
12148 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
12150         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
12151         for interned strings and vtables.
12153 2002-03-24  Martin Baulig  <martin@gnome.org>
12155         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
12156         it in the array since it was created with g_slist_prepend().
12158 2002-03-24  Martin Baulig  <martin@gnome.org>
12160         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
12161         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
12162         (mono_debug_method_from_token): Renamed to
12163         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
12164         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
12166         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
12167         relocation types.
12169         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
12171 2002-03-24  Martin Baulig  <martin@gnome.org>
12173         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
12174         (mono_debug_method_from_token): New func.
12176         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
12177         New interncall, calls mono_debug_local_type_from_signature().
12178         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
12179         calls mono_debug_method_from_token().
12181 2002-03-23  Martin Baulig  <martin@gnome.org>
12183         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
12184         specifies the number of bytes to be converted, not the array size.
12185         Return the number of chars, not the number of bytes.
12186         (ves_icall_iconv_get_chars): The `byteCount' argument
12187         specifies the number of bytes to be converted, not the array size.
12189 2002-03-23  Martin Baulig  <martin@gnome.org>
12191         * reflection.h (MonoReflectionSigHelper): New type.
12193         * reflection.c (mono_reflection_sighelper_get_signature_local),
12194         (mono_reflection_sighelper_get_signature_local): New functions.
12196         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
12197         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
12198         interncalls.
12200 2002-03-23  Martin Baulig  <martin@gnome.org>
12202         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
12203         is_writeable is set.
12204         (mono_raw_buffer_update): New function to write the modified map
12205         back to disk.
12207         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
12209         * debug-symfile.c (mono_debug_update_symbol_file): Call
12210         mono_raw_buffer_update() when done writing.
12212 2002-03-23  Martin Baulig  <martin@gnome.org>
12214         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
12216         * debug-symfile.c: Added support for arguments and local variables.
12218 2002-03-23  Dick Porter  <dick@ximian.com>
12220         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
12221         protected by ifdefs, hence breaking the w32 build.
12223 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12225         * object.c: implement is_interned() the right way.
12227 2002-03-21  Martin Baulig  <martin@gnome.org>
12229         * debug-symfile.[ch]: New files to handle debugging information
12230         files. There's also support to dynamically update these symbol
12231         files to include machine dependent information.
12233 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
12235         * threads.c (mono_thread_create): new function to create thread
12236         from C
12238 2002-03-20  Martin Baulig  <martin@gnome.org>
12240         * icall.c (ves_icall_InternalInvoke): Create a new object if the
12241         method is a constructor.
12242         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
12243         points to ves_icall_InternalInvoke().
12245 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
12247         * file-io.c: Flush shouldn't throw exceptions.
12249 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
12251         * file-io.c: FileStream flush support; FileSetLength now
12252         restores file pointer.
12254 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
12256         * class.c: set image for pointer classes.
12258 2002/03/19  Nick Drochak <ndrochak@gol.com>
12260         * sysmath.c: Forgot one.
12262 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
12264         * sysmath.c: Avoid redefining existing names.
12266 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
12268         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
12269         handled by runtime as icall rather than dllimport from libm.so
12270         * file-io.c, file-io.h: fixed handle argument type.
12272 2002-03-18  Dick Porter  <dick@ximian.com>
12274         * reflection.c (mono_image_get_type_info): rename interface to
12275         iface, because of "#define interface struct" on windows.
12277 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
12279         * class.c, class.h: rename and export mono_ptr_class_get().
12280         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
12281         * reflection.c, reflection.h, icall.c: better/saner type name
12282         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
12283         method signatures.
12285 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
12287         * class.c (mono_class_init): removed hardcoded GHC_SLOT
12289         * icall.c (ves_icall_InternalInvoke): impl.
12291 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
12293         * reflection.c: output the interface map table, too.
12295 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
12297         * class.c (class_compute_field_layout): separate computation of 
12298         static field layout
12300 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
12302         * icall.c: added System.Buffer support.
12303         * file-io.c: moved file icalls from PAL to FileStream.
12305 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
12307         * icall.c (ves_icall_System_Object_GetHashCode): impl.
12309 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
12311         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
12313 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
12315         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
12317 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
12319         * debug-helpers.{c,h}: moved here from monograph some useful functions
12320         to locate a method by name/signature in a class or image. Included
12321         also a small and flexible IL disassembler.
12323 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
12325         * reflection.c: fixup tokens in methods with small header size, too.
12327 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
12329         * object.c (mono_string_to_utf8): remove assert(!error), instead
12330         print a warning. 
12332 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
12334         * icall.c: update to the new mono_Array_class_get interface.
12336 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
12338         * appdomain.c, object.c: Boehm-GC enable.
12339         * icall.c: make get_data_chunk() support split data requests.
12340         Ensure a class is initialized in more cases. Return only the first
12341         property found in GetProperties() or the compiler gets confused. 
12342         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
12343         * reflection.h, reflection.c: add fixup mechanism for field and method
12344         tokens. Initialize assembly->typeref in a single place. Output
12345         properties after events. Support custom attributes for events, too.
12346         Typo fix for paramter custom attrs.
12348 2002-03-07  Martin Baulig  <martin@gnome.org>
12350         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
12352 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
12354         * class.c (mono_array_class_get): fix. for multi. dim. arrays
12356 2002-03-06  Martin Baulig  <martin@gnome.org>
12358         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
12359         non-zero lower bounds. See testcases #F10-#F13.
12361 2002-03-05  Martin Baulig  <martin@gnome.org>
12363         * exception.c (mono_get_exception_argument_out_of_range): New exception.
12365         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
12366         ves_icall_System_Array_GetValue(), only calculate the absolute array position
12367         here.
12368         (ves_icall_System_Array_SetValue): Likewise.
12369         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
12370         as argument and does the actual work. This function is used when copying a
12371         multi-dimensional array.
12372         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
12373         now do all the widening conversions of value types.
12374         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
12376 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12378         * class.c: remove some magic numbers and use the smbolic names,
12379         instead. Added init_events() to load event info at class init time.
12380         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
12381         and mono_metadata_methods_from_event().
12382         * reflection.h, reflection.c: added support for writing out the evnets
12383         related information.
12385 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
12387         * reflection.h, icall.c: use a different method (GetInterfaces)
12388         to gather interface info and add isbyref, isprimitive and
12389         ispointer to the ves_icall_get_type_info() return value.
12391 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
12393         * class.h: stared adding support for events.
12394         * icall.c: split find_members implementation. Added debug icall to get
12395         the address of an object.
12396         * reflection.c: handle TypeBuilders in mono_type_get_object().
12398 2002-03-01  Martin Baulig  <martin@gnome.org>
12400         * icall.c (ves_icall_System_Array_GetLength): This must throw an
12401         ArgumentOutOfRangeException(), not an ArgumentException().
12402         (ves_icall_System_Array_GetLowerBound): Likewise.
12403         (ves_icall_System_Array_GetValue): Improved argument checking.
12404         (ves_icall_System_Array_SetValue): Improved argument checking.
12406 2002-03-01  Martin Baulig  <martin@gnome.org>
12408         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
12409         called with invalid arguments rather than just dying with g_assert().
12410         (ves_icall_System_Array_SetValue): Likewise.
12411         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
12412         raise a NotImplementedException instead.
12413         (ves_icall_System_Array_GetLength): Added argument checking.
12414         (ves_icall_System_Array_GetLowerBound): Added argument checking.
12416 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
12418         * object.h (mono_assert): new macros mono_assert and
12419         mono_assert_not_reached
12421 2002-02-28  Martin Baulig  <martin@gnome.org>
12423         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
12424         and "System::String::IsInterned" to "System::String::_IsInterned".
12426 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
12428         * icall.c: remove hacks for typebuilder. Added icall to create a
12429         modified type from a tybebuilder.
12430         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
12431         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
12432         to create a backing MonoClass for a TypeBuilder.
12434 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12436         * class.c, class.h: more refactoring of class init.
12437         Export mono_class_setup_mono_type() and mono_class_setup_parent().
12439 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
12441         * marshal.c, marshal.h: start of marshaling interface.
12443 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
12445         * icall.c: fix order in assembly qualified name icall.
12447 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
12449         * class.c: do not free str, since we store it in the hash table.
12450         * reflection.h: add label field to MonoILExceptionInfo.
12451         * reflection.c: handle references to more than one assembly. Handle
12452         case when there isn't a module created in the assembly.
12454 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
12456         * class.c: Fix typo. Start refactoring of class init code.
12458 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
12460         * appdomain.c: exit with 1 on error.
12461         * class.c: we already have the name in MonoClassField.
12462         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
12463         MonoStreamHeader instead of an offset of image->raw_metadata.
12465 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
12467         * appdomain.c (mono_init): Be even more descriptive about the error.
12469 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
12471         * appdomain.c: give the user an informative message when corlib can't
12472         be loaded.
12474 2002-02-26  Martin Baulig  <martin@gnome.org>
12476         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
12477         New icall to get the time zone data.
12479 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12481         * reflection.c: set virtual and raw size of section correctly.
12482         * threads.c: transfer domain information to newly created threads.
12484 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
12486         * class.c: when instancing a class in a domain, load the default
12487         vaules for static fields from the constant table. Fix System.Enum to
12488         not be an enum.
12489         * icall.c: implement Object::GetType() internalcall. Implemented
12490         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
12491         Fixed checking of binding flags in find_members().
12492         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
12493         * reflection.c: handle enumerations when writing to the constant
12494         table. Use a different object cache for types.
12497 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
12499         * object.c (mono_object_isinst): fix for arrays
12501         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
12503 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
12505         * object.c: don't use mprotect ()  and fix intern pool hash table
12506         lookup for big endian systems.
12508 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
12510         * icall.c: change type_is_subtype_of () signature.
12512 2002-02-21  Mark Crichton  <crichton@gimp.org>
12514         * rand.c, rand.h: Added random number generator for
12515         System.Security.Cryptography classes.
12517         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
12519         * icall.c: Added System.Security.Cryptography calls.
12521 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
12523         * class.c, icall.c, metadata.c: better support for pointer types.
12524         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
12525         * reflection.c: Add support for getting custom attrs for properties
12526         and simplify some code.
12528 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
12530         * icall.c: change getToken () and add custom attribute GetBlob()helper
12531         method.
12532         * reflection.h: add custom attrs array to the reflection builder structures.
12533         * reflection.c: encode and emit custom attributes for all the relevant
12534         reflection objects. Cache fieldref and methodref tokens. Change
12535         mono_image_create_token() interface to take a MonoDynamicAssembly.
12536         More complete custom attributes decoder. Load custom attributes for
12537         Assembly, Field, Method and Constructor objects, too. Make the
12538         returned array an Attribute[] one, not object[]. Added
12539         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
12540         custom attribute constructor.
12542 2002-02-20  Dick Porter  <dick@ximian.com>
12544         * icall.c:
12545         * rawbuffer.c:
12546         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
12547         problem code out for now).
12549 2002-02-19  Radek Doulik  <rodo@ximian.com>
12551         * object.c (mono_ldstr): use hash table to avoid multiple swapping
12553 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
12555         * icall.c: register the GetCustomAttributes method.
12556         * object.c, object.h: add mono_string_new_len ().
12557         * reflection.h, reflection.c: added mono_runtime_invoke(),
12558         mono_install_runtime_invoke(). Added
12559         mono_reflection_get_custom_attrs () to load custom attributes and
12560         create the attribute objects.
12562 2002-02-19  Dick Porter  <dick@ximian.com>
12563         * threads-dummy-types.c:
12564         * threads-dummy-types.h:
12565         * threads-dummy.c:
12566         * threads-dummy.h:
12567         * threads-pthread-types.c:
12568         * threads-pthread-types.h:
12569         * threads-pthread.c:
12570         * threads-pthread.h:  Deleted obsolete files
12572 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
12574         * class.c (mono_class_vtable): runtime init the class when we
12575         allocate static class data.
12577         * icall.c (ves_icall_System_Array_SetValue): check for null values.
12579         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
12580         and String - but we will need generic marshalling support in the
12581         future. 
12582         (mono_init): set the domain name in a ms compatible way
12584         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
12585         String[].
12587 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
12589         * object.c (mono_array_clone): use alloca() instead of g_malloc  
12590         for sizes
12592         * appdomain.c (mono_domain_unload): impl.
12594 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
12596         * appdomain.c, object.c: fix intern pool implementation.
12597         * class.c: fix alignment code.
12599 2002-02-16  Radek Doulik  <rodo@ximian.com>
12601         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
12602         and s2 > s1, just copy lower bytes to be compatible with little
12603         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
12604         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
12606         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
12607         force big_endian to be 1 for big endian machines 
12608         (ves_icall_iconv_new_decoder): ditto
12610 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
12612         * socket-io.c (convert_sockopt_level_and_name): If the system
12613         doesn't define SOL_IP or SOL_TCP, get them by hand using
12614         getprotobyname() and caching the values (because this could be a
12615         slow operation).
12616         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
12617         Use the appropriate struct when the system does support it. Ie,
12618         not all systems have struct ip_mreqn so use struct ip_mreq when
12619         appropriate.
12621 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
12623         * reflection.c: handle finally clauses.
12625 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
12627         * socket-io.c: use g_snprintf() instead of snprintf.
12629 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
12631         * reflection.c (mono_param_get_objects): Cast second argument to
12632         mono_method_get_param_names to a const char** to silence the
12633         compiler warning.
12635         * appdomain.c (mono_domain_assembly_open): Put parens around the
12636         truth statement in the for-loop.
12638         * unicode.c (iconv_convert): Got rid of a compiler warning about
12639         int i being unused when the system has a new iconv.
12640         (iconv_get_length): Same.
12642         * image.c (load_class_names): Cast the second argument to
12643         g_hash_table_insert() to char* to hush compiler warnings about the
12644         arg being a const.
12645         (mono_image_open): Same here.
12647         * socket-io.c: Don't conditionally include sys/filio.h or
12648         sys/sockio.h here anymore since we now get them from
12649         io-layer/io-layer.h
12650         (inet_pton): If the system doesn't support inet_aton, implement
12651         using inet_addr and also #define INADDR_NONE if it isn't defined
12652         by the system.
12654 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
12656         * metadata.c, metadata.h: added function to get packing and size info
12657         of a typedef.
12658         * reflection.h, reflection.c: handle field RVA data. Save info about
12659         the table layout if needed. Assign typedef indexes to all the types
12660         before dumping the info about them to avoid forward reference problems.
12662 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
12664         * socket-io.c (convert_sockopt_level_and_name): ifdef
12665         SO_ACCEPTCONN because it is not defined on my system (old debian)
12667 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
12669         * opcode.c: use stddef.h to get NULL.
12671 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
12673         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
12674         for FIONBIO, FIONREAD and SIOCATMARK.
12675         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
12676         define INADDR_NONE and besides, inet_addr() is deprecated and
12677         should not be used. Use inet_pton() instead - it also has the
12678         added bonus that it can easily handle IPv6 addresses as well.
12679         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
12681 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
12683         * decimal.c: remove _MSC_VER conditional.
12685 2002-02-13  Dick Porter  <dick@ximian.com>
12687         * socket-io.c: 
12688         * icall.c: Internal calls for Blocking, Select, Shutdown,
12689         GetSocketOption and SetSocketOption
12691 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12693         * assembly.cs: better resolver: use it instead of some kludgy
12694         code.
12696 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
12698         * reflection.c: the best way to speed-up the compiler is to avoid
12699         infinite loops.
12701 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
12703         * class.c (mono_class_vtable): changed the object layout
12704         (obj->vtable->class). 
12705         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
12707 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12709         * assembly.c: look for assemblies in the assembly dir, too.
12711 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
12713         * class.c: fix thinko in mono_class_from_type().
12715 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12717         * exception.h, exception.c: added TypeLoadException.
12718         * object.h, object.c: added mono_array_clone ().
12719         * icall.c: handle throwOnError in AssemblyGetType().
12720         Added Array.Clone().
12721         * opcode.h, opcode.c: use a single value for the opcode val.
12722         Compile fix for non-gcc compilers.
12724 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
12726         * opcodes.c, opcodes.h: export interesting info about opcodes.
12728 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
12730         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
12731         icalls. 
12733         * class.c (class_compute_field_layout): set element_class for enums
12734         (mono_class_create_from_typedef): set element_class for normal classes
12736         * icall.c (ves_icall_System_Enum_get_value): impl.
12738         * class.c (mono_class_create_from_typedef): do not set valuetype
12739         flag for System.ValueType and System.Enum
12741 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
12743         * unicode.c (iconv_convert): fix big endian problem.
12745 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
12747         * class.c: add asserts if we are ever going to scribble over memory.
12748         * socket-io.c: not all systems have AF_IRDA defined.
12750 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
12752         * class.c (class_compute_field_layout): do not consider static
12753         fields to compute alignment
12755 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
12757         * appdomain.c (mono_appdomain_get): impl.
12758         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
12760 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
12762         * icall.c: ignore "file://" prefix when loading an assembly.
12764 2002-01-23  Dick Porter  <dick@ximian.com>
12766         * socket-io.c:
12767         * icall.c:
12768         * Makefile.am: Added socket support
12770 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
12772         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
12773         code back.  This should return the assemblies that are loaded by
12774         the runtime on behalf of an application domain. 
12776         The current implementation is still broken, it just returns every
12777         assembly loaded, but until we get real applications domain this
12778         will do.
12780 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
12782         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
12783         AppDomain object.
12785 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
12787         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
12788         the mono_class_from_name lookup.
12789         (ves_icall_get_parameter_info): ditto.
12790         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
12791         method.
12792         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
12794 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
12796         * class.c: load also nested classes on class init.
12797         System.ValueType instance methods gets passed boxed
12798         values, unless methods in derived classed that get a pointer to the
12799         data.
12800         * icall.c: use better name parsing code in GetType().
12801         * image.c, image.h: add mono_image_loaded ().
12802         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
12803         * reflection.c, reflection.h: added mono_reflection_parse_type().
12805 2002-01-22  Veronica De Santis <veron78@interfree.it>
12807         * icall.c : Added mapping of internal calls for Manual and Auto reset events
12808         * threads.c : Added the implementation of internal calls for events
12809         * threads.h : Added prototypes of internal calls for events
12810         
12811 2002-01-21  Radek Doulik  <rodo@ximian.com>
12813         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
12815 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
12817         * class.c (mono_class_init): set min_align to 1 (instead of 0)
12818         (mono_class_value_size): use min_align
12820 2002-01-20  Dick Porter  <dick@ximian.com>
12822         * threads.h:
12823         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
12824         so it compiles on w32.
12826 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
12828         * metadata.c (mono_type_stack_size): impl.
12830         * class.c (mono_class_get_field): impl. memberref token
12832 2002-01-16 Veronica De Santis <veron78@@interfree.it>
12834         * icall.h : Added the internal calls mapping for CreateMutex_internal
12835                     and ReleaseMutex_internal.
12836         * threads.h : Added the prototype of mutexes internal calls.
12837         * threads.c : Added the implementations of mutexes internal calls.
12839 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
12841         * metaparse.h: removed unused file.
12842         * reflection.c, reflection.h: added stream_data_align () function 
12843         to align data in streams and keep stream aligned. Add support for
12844         exception support in method headers.
12846 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
12848         * unicode.c: make iconv_convert () return the number of bytess written
12849         in the output buffer.
12851 2002-01-15  Dick Porter  <dick@ximian.com>
12852         * threads.c: Make the runtime's idea of infinite timeouts coincide
12853         with the class library's
12855         Fix a particularly egregious bug in mono_thread_cleanup(). That
12856         code was so utterly bogus it must have been written on a Monday.
12858 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
12860         * reflection.h: add subtypes field to TypeBuilder.
12861         * reflection.c: encode constants for literal fields.
12862         Handle subtypes. Fix user string token (and add a zero byte)
12863         at the end.
12864         
12865 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
12867         * class.c (mono_class_init): bug fix: assign slot numbers for
12868         abstract methods.
12870 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
12872         * reflection.c: don't try to output a code RVA for abstract methods.
12873         Small fixes for method header format. Output parameter info to the
12874         ParamDef table. Save method overriding info to MethodImpl table.
12875         Fix property support. Allow typedef.extends to be a type in the
12876         building assembly.
12877         * verify.c: fix off-by-one error.
12879 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
12881         * class.c: fix mono_class_from_mono_type () for szarray types.
12882         Remove unused cache check in mono_class_from_type_spec().
12883         * icall.c: *type_from_name () functions handle simple arrays and byref.
12884         * reflection.c: handle byref and szarray types. Handle methods without
12885         body (gets P/Invoke compilation working). Handle types and fields in
12886         get_token ().
12887         * reflection.h: add rank to MonoTypeInfo.
12889 2002-01-10  Dick Porter  <dick@ximian.com>
12891         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
12892         internal calls
12894 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
12896         * icall.c: initialize class in type_from_handle ().
12897         Loop also in parent classes for get_method ().
12898         * reflection.c: properly encode class and valuetype types.
12899         Start on encoding TypeBuilder types. Handle fieldrefs.
12900         Use correct length when registering a user string.
12901         Handle ConstructorBuilder and MonoMethod in get_token ().
12902         Make mono_type_get_object () aware of cached types.
12903         * object.c: back out change to mono_string_new ().
12905 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
12906         * object.c: mono_string_new should return a NULL when the string 
12907         passed in is NULL -- not try to deference it.
12908         
12909 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
12911         * icall.c: hack to make IsSubType work for TypeBuilders.
12912         * reflection.c: emit constructors before methods.
12913         Retrieve param names in mono_param_get_objects().
12915 2002/01/05  Nick Drochak  <ndrochak@gol.com>
12917         * Makefile.am: fix list of headers and sources so automake 1.5
12918         doesn't complain. Removed \# at end of list.
12920 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
12922         * reflection.c: get token for a method ref. Set return type of
12923         constructor to void.
12924         * loader.c: debug message.
12925         * class.c: typo fix.
12927 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
12929         * icall.c: fix array init with rank > 1. FindMembers
12930         loops in parent class as well.
12931         * image.c: do not insert nested types in name cache.
12932         * reflection.c: warning fix.
12933         * reflection.h: add override method (for interface impl).
12935 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
12937         * metadata.c: fix customattr decoding.
12939 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
12941         * rawbuffer.cs: Added native Win32 implementation, avoids using
12942         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
12944 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
12946         * class.c: make the low-level routines handle the cache.
12948 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
12950         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
12952 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
12954         * class.c: fix mono_array_element_size() for objects.
12955         * class.h, class.c: add properties to MonoClass and load them
12956         at init time.
12957         * icall.c: check with isinst() when assigning a value to an array
12958         instead of requiring the classes to match exactly.
12959         Implemented icall for System.Type::GetType().
12960         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
12961         enums. Handle bindingflags when looking for methods and fields.
12962         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
12963         and mono_metadata_methods_from_property().
12964         * reflection.h, reflection.c: added structures for propreties,
12965         parameters and enums. Implemented mono_property_get_object() and
12966         mono_param_get_objects().
12968 2001-12-18  Dick Porter  <dick@ximian.com>
12970         * file-io.c: Use mono_string_to_utf16() instead of
12971         mono_string_chars()
12973         * object.c: Added mono_string_to_utf16(), which copies the non
12974         NULL-terminated MonoString into a new double-null-terminated
12975         buffer.
12977 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
12979         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
12981 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
12983         * file-io.c: raise exceptions if handle is invalid.
12985 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
12987         * assembly.c: yet another check for mscorlib.
12988         * class.c, class.h: load nesting info for classes.
12989         * icall.c: many new functions to support the Reflection classes.
12990         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
12991         * reflection.h, reflection.c: mono_image_create_token(),
12992         mono_assembly_get_object(), mono_type_get_object(),
12993         mono_method_get_object(), mono_field_get_object(): methods to return
12994         objects that parallel the C representation of assemblies, types,
12995         methods, fields.
12997 2001-12-11  Dick Porter  <dick@ximian.com>
12999         * icall.c:
13000         * file-io.c: Internal calls for file IO.
13002 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
13004         * tabledefs.h: missing FileAttributes.
13005         * verify.h, verify.c: use is_valid_string () to simplify and check for
13006         valid strings more correctly. Fix warnings and speeling.
13007         Check more tables: Filed, File, ModuleRef, StandAloneSig.
13008         Check code: branches, maxstack, method calls.
13010 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
13012         * object.c (mono_object_allocate): removed static, so that the jit
13013         can allocate value types.
13015         * icall.c (ves_icall_System_DateTime_GetNow): impl.
13017 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
13019         * class.c: init enum types right away and register the
13020         token->MonoClass map in mono_class_create_from_typedef ().
13021         * verify.h, verify.c: first cut of the verifier.
13022         * pedump.c: add --verify switch to verify metadata tables.
13023         * tabledefs.h: add some missing enums.
13025 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
13027         * class.c (mono_install_runtime_class_init): impl.
13028         (mono_class_init): renamed mono_class_metadata_init to
13029         mono_class_init, also removed the metadata_inited flag
13031         * object.c (mono_object_isinst): use faster algorithm
13033 2001-11-30  Radek Doulik  <rodo@ximian.com>
13035         * mono-endian.h: reverted last change
13036         added function prototypes
13038         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
13039         add mono-endian.c back
13041         * mono-endian.c: returned back, as Paolo pointed out, it's needed
13042         for unaligned access, I've mistaked it with endianess. I am
13043         sorry.
13044         (mono_read16): fix reverted endianess
13045         (mono_read64): ditto
13046         (mono_read32): ditto
13048 2001-11-30  Dick Porter  <dick@ximian.com>
13050         * exception.c: Implement mono_exception_from_name()
13052 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
13054         * metadata.h, metadata.c: remove params_size and locals_size and their
13055         calculation from the metadata code: they are only usefult to the
13056         interp.
13058 2001-11-29  Radek Doulik  <rodo@ximian.com>
13060         * object.c (mono_ldstr): swap bytes here, it's probably not the
13061         best place, but works for me now, I'll redo it once I know mono
13062         better, also note that I add PROT_WRITE and don't reset back, also
13063         note that it's only affects big endians, so x86 should be OK
13065         * mono-endian.h (read16): use just glib macros for both endians
13067         * mono-endian.c: removed as glib macros are used in in
13068         mono-endian.h so we don't need to care about endianess for read
13069         macros as glib does that for us already
13071 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
13073         * class.h, class.h: take minimum alignment into consideration so
13074         that the fields of a class remain aligned also when in an array.
13076 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
13078         * loader.h, loader.c: add mono_method_get_param_names().
13079         * class.c: 0-init class fields.
13081 2001-11-26  Dick Porter  <dick@ximian.com>
13083         * icall.c:
13084         * threads-types.h:
13085         * threads.c: New file that handles System.Threading on all platforms
13087         * object.c: 
13088         * object.h: Remove the synchronisation struct from MonoObject,
13089         replace it with a pointer that gets initialised on demand
13091         * Makefile.am: Replace all the system-specific threading code with
13092         a single file that uses the new wrapper library
13094 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
13096         * class.c, class.h: add mono_install_trampoline() so that the runtime
13097         can register a function to create a trampoline: removes the ugly
13098         requirement that a runtime needed to export arch_create_jit_trampoline.
13099         * object.h, object.c: added mono_install_handler() so that the runtime
13100         can install an handler for exceptions generated in C code (with
13101         mono_raise_exception()). Added C struct for System.Delegate.
13102         * pedump.c: removed arch_create_jit_trampoline.
13103         * reflection.c: some cleanups to allow registering user strings and
13104         later getting a token for methodrefs and fieldrefs before the assembly
13105         is built.
13106         * row-indexes.h: updates and fixes from the new ECMA specs.
13108 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
13110         * class.h, class.c: add enum_basetype field to MonoClass.
13111         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
13112         to get index in the constant table reated to a field, param or
13113         property.
13114         * reflection.h, reflection.c: handle constructors. Set public-key and
13115         version number of the built assembly to 0.
13116         * row-indexes.h: update from new ECMA spec.
13118 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
13120         * class.h, class.c: add a max_interface_id to MonoClass.
13121         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
13122         since it's used to do that. Added mono_type_type_from_obj().
13123         Make GetType() return NULL instead of segfaulting if the type was not
13124         found. Handle simple arrays in assQualifiedName.
13125         * object.h: add a struct to represent an Exception.
13126         * reflection.c: output call convention in method signature.
13127         Add code to support P/Invoke methods and fixed offsets for fields.
13129 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
13131         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
13132         the value.
13133         * icall.c: use mono_array_addr instead of array->vector: fixes the
13134         reflection image writing.
13135         * reflection.c: init call convention byte to 0 in method signature.
13136         Encode the property signature. Don't output property-related methods
13137         twice. Really process the properties for a type (don't cast a field to
13138         a property, my mom always told me that).
13139         Fix 64 bit issues in pointer alignment in a different and more
13140         readable way.
13142 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
13144         * loader.h: Removed type class from MonoDefaults, added monotype
13146         * loader.c: Loaded MonoType, removed loading of Type
13148         * icall.c (my_mono_new_object): Now returns a System.MonoType,
13149         and fills in System.Type._impl with a RuntimeTypeHandle rather
13150         than the actual MonoClass *
13152         (ves_icall_type_from_handle): change from type_class to
13153         monotype_class
13155         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
13156         implemented
13158         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
13159         implemented
13161         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
13163         (ves_icall_System_Reflection_Assembly_GetType): implemented
13165         (ves_icall_System_MonoType_assQualifiedName): implemented
13167         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
13169 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
13171         * assembly.c (mono_assembly_open): Implement a cache for the
13172         assemblies. 
13174         (mono_assembly_close): only destroy the assembly when the last
13175         reference is gone.
13176         
13177 2001-11-09  Dick Porter  <dick@ximian.com>
13179         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
13181 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
13183         * class.c (mono_class_metadata_init): bug fix: compute the right slot
13185 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
13187         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
13188         from Martin Weindel.
13189         * object.h: add mono_string_chars ().
13191 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
13193         * reflection.c (build_compressed_metadata): Eliminates warnings
13194         and uses 64-bit clean code.
13196         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
13197         (mono_type_equal): Change signature to eliminate warnings.
13199 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
13201         * icall.c, loader.c: remove the internalcall array constructors.
13202         Changes to match the new MonoArray structure.
13203         * object.h, object.c: an array object doesn't allocate an extra
13204         vector. Add mono_array_new_full () to create jagged arrays easily.
13206 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
13208         * metadata.h, metadata.c: add mono_metadata_field_info () to
13209         retreive all the info about a field from vairous tables.
13210         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
13211         * class.h, class.c: augment MonoClassField with more info.
13212         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
13213         policy and load a field's RVA if needed.
13215 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
13217         * class.c (mono_class_metadata_init): create a trampoline for all
13218         virtual functions instead of actually compiling them.
13220 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
13222         * class.h, class.c: include name in MonoClassField.
13223         * class.c: fix fundamental type of System.Object and System.String.
13224         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
13225         tokens in ldtoken.
13226         * icall.c: remove internalcalls for the Reflection stuff that is now
13227         done in C# code.
13228         * loader.c: mono_field_from_memberref () implementation.
13229         * mono-endian.c: thinko (s/struct/union/g).
13230         * object.c, object.h: make the mono_string_* prototypes actually use
13231         MonoString instead of MonoObject.
13232         * reflection.c, reflection.h: updates for changes in the reflection
13233         code in corlib: we use C structures that map to the actual C# classes.
13234         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
13235         fat method header if needed and use the info from the ILGenerator for
13236         methods. Handle fields in types. Misc fixes.
13238 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
13240         * class.c (mono_class_metadata_init): bug fix: always allocate
13241         space for static class data
13243 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
13245         * class.c (mono_compute_relative_numbering): use relative
13246         numbering to support fast runtime type checks.
13248 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
13250         * class.c (mono_class_create_from_typeref): added debugging output
13251         to print class name when MonoDummy is returned instead of real class
13253 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
13255         * class.c (mono_class_metadata_init): interface offset table now
13256         contains pointers into the vtable - this is more efficient for the jit
13258 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
13260         * class.c (mono_class_metadata_init): use a temporary vtable (the
13261         old algorithm only worked for the interpreter, but not for the jit)
13263 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
13265         * loader.c (method_from_memberref): use mono_class_get to get the
13266         class of an array instead of using System.Array directly.
13267         (mono_get_method): also add MEMBERREF methods to the method cache
13268         which usefull for arrays.
13270 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
13272         * pedump.c (arch_compile_method): added to compute vtable entry
13274         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
13275         number of interfaces.
13276         
13277         * class.h: merged MonoArrayClass into MonoClass
13279         * class.c (mono_class_create_from_typedef): compute the vtable size and
13280         allocate space to include the vtable inside MonoClass
13281         (mono_class_metadata_init): initialize the vtable
13283 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
13285         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
13286         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
13287         * image.c: endian fixes by Laurent Rioux.
13288         * object.h, object.c: rename MonoStringObject to MonoString and
13289         MonoArrayObject to MonoArray. Change some function names to conform to
13290         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
13291         guint16* as first argument, so don't use char*.
13292         Provide macros to do the interesting things on arrays in a portable way.
13293         * threads-pthread.c: updates for the API changes and #include <sched.h>
13294         (required for sched_yield()).
13295         * icall.c: updates for the API changes above.
13296         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
13297         platforms that need them.
13299 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
13301         * class.c: set the correct type for all the fundamental
13302         type when loading the class.
13304 2001-10-05  Dick Porter  <dick@ximian.com>
13306         * threads-pthread.c (pthread_mutex_timedlock): Simple
13307         compatibility version for C libraries that lack this call.
13309 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
13311         * class.c: MonoTypes stored in MonoClass are stored as
13312         fundamental MonoTypes when the class represents a
13313         fundamental type (System.Int32, ...).
13314         The TypeHandle return by ldtoken is a MonoType*.
13315         * icall.c: ves_icall_get_data_chunk () write out all the
13316         PE/COFF stuff. Implement ves_icall_define_method (),
13317         ves_icall_set_method_body (), ves_icall_type_from_handle ().
13318         * image.c: properly skip unknown streams.
13319         * loader.h, loader.c: add type_class to mono_defaults.
13320         * metadata.c, metadata.h: export compute_size () as
13321         mono_metadata_compute_size () with a better interface.
13322         Typo and C&P fixes.
13323         * pedump.c: don't try to print the entry point RVA if there is no entry point.
13324         * reflection.c, reflection.h: many cleanups, fixes, output method
13325         signatures and headers, typedef and typeref info, compress the metadata
13326         tables, output all the heap streams, cli header etc.
13327         * row-indexes.h: typo fixes.
13329 2001-10-04  Dick Porter  <dick@ximian.com>
13331         * object.h: Add a synchronisation mutex struct to MonoObject
13333         * object.c (mono_new_object): Initialise the object
13334         synchronisation mutexes
13336         * icall.c: System.Threading.Monitor internal calls
13337         
13338         * threads-pthread.h:
13339         * threads-pthread.c: System.Threading.Monitor internal calls
13341         * threads-types.h: New file, includes the system-specific thread
13342         structures
13343         
13344         * threads-pthread-types.h:
13345         * threads-pthread-types.c: New files, handle pthread-specific
13346         synchronisation types
13348         * threads-dummy-types.h: 
13349         * threads-dummy-types.c: New files of dummy support for
13350         thread-specific types
13352         * metadata.c:
13353         * image.c:
13354         * pedump.c: include mono-endian.h not endian.h
13355         
13356         * Makefile.am: More threads files.
13357         Name mono-endian.h not endian.h
13359 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
13361         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
13362         stuff and implement a few more bits.
13363         * icall.c: a field needs to be dereferenced twice. Do not use the same
13364         name for two variables in the same scope.
13365         * image.c, image.h: cleanups.
13367 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
13369         * class.c (mono_class_metadata_init): bug fix: compute the right size
13371 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
13373         * icall.c: implemented some of the Reflection internalcalls.
13374         * image.c, image.h: start writing out the PE/COFF image.
13375         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
13376         that does the reverse than decode_blob_size ().
13377         * object.c: use mono_metadata_encode_value (). Move here
13378         temporary implementation of mono_string_to_utf8 ().
13379         * rawbuffer.c: make malloc_map static.
13381 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
13383         * metadata.c: fix type comparison for arrays.
13384         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
13385         Added a couple of new classes to monodefaults.
13386         * icall.c: added a couple of Reflection-related internalcalls.
13387         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
13388         Added a byval_arg MonoType to MonoClass.
13390 2001-09-28  Dick Porter  <dick@ximian.com>
13392         * icall.c:
13393         * threads-pthread.h: 
13394         * threads-pthread.c: Implemented internal calls for
13395         LocalDataStoreSlot operations.  Applied mutexes around all shared
13396         data.  Reworked the thread creation and Start() operations to
13397         avoid a race condition.
13398         
13399         * threads-dummy.h:
13400         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
13402 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
13404         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
13406 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
13408         * class.c, loader.c: warn and return NULL instead of erroring out.
13409         * icall.c: added System.AppDomain::getCurDomain().
13410         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
13412 2001-09-25  Dick Porter  <dick@ximian.com>
13414         * threads-pthread.h:
13415         * threads-pthread.c: Implemented timed thread joining and added
13416         System.Threading.Thread::Join_internal internal call
13418         * icall.c: Added System.Threading.Thread::Join_internal internal call
13420         * threads-dummy.h:
13421         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
13423 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
13425         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
13426         mono_string_intern () to implement the semantics of the ldstr opcode
13427         and the interning of System.Strings.
13428         * icall.c: provide hooks to make String::IsIntern and String::Intern
13429         internalcalls.
13431 2001-09-23  Dick Porter  <dick@ximian.com>
13433         * threads-dummy.c: 
13434         * threads-dummy.h: New files of dummy threading routines
13436         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
13437         support code based on system specifics
13439         Rename PTHREAD_LIBS to THREAD_LIBS
13440         
13441 2001-09-23  Dick Porter  <dick@ximian.com>
13443         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
13444         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
13445         internal calls.
13446         (mono_thread_init): Set up a Thread object instance to return when
13447         the main thread calls Thread.CurrentThread
13448         (mono_thread_cleanup): Wait for all subthreads to exit
13450         * icall.c: New internal calls for System.Threading.Thread::Sleep
13451         (including Schedule) and CurrentThread
13453         * threads.h: New file, to insulate thread-specific stuff from the
13454         rest of the code
13456 2001-09-21  Dick Porter  <dick@ximian.com>
13458         * threads-pthread.h: 
13459         * threads-pthread.c: New file, for handling pthreads-style
13460         threading support.  Start() now starts a new thread and executes
13461         the ThreadStart delegate instance.
13463         * icall.c: Added the internalcall for
13464         System.Threading.Thread::Start_internal
13466         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
13468 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
13470         * loader.c: work around the different signatures for delegates
13471         constructors csc generates in compiled code vs the ones compiled in mscorlib.
13473 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
13475         * class.h, class.c: add mono_class_get_field_from_name ().
13476         * *: Fix C comments and other ANSI C issues.
13478 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
13480         * endian.h, assembly.c: fix some endianness issues.
13482 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
13484         * loader.h, load.c: add delegate_class to mono_defaults.
13485         Handle runtime provided methods in mono_get_method ().
13487 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
13489         * loader.c (mono_get_method): use pinvoke for internal call
13491         * icall.c: use pinvoke for internal call
13493         * loader.c (method_from_memberref): set the method name
13495 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
13497         * metadata.c: help the compiler generate better code for
13498         mono_class_from_mono_type ().
13500 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
13502         * class.c (mono_class_metadata_init): delayed computing of the
13503         class size to mono_class_metadata_init ()
13505 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
13507         * class.c, class.h: add an interfaces member to MonoClass.
13508         * image.c, image.h: add assembly_name field to MonoImage
13509         from the assembly table.
13510         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
13512 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
13514         * class.c: Handle Array in mono_class_from_mono_type ().
13515         * metadata.c, pedump.c: some endian fixes.
13517 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
13519         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
13520         * metadata.c: fix small problem introduced with the latest commit.
13522 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
13524         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
13525         We don't need a MonoMetadata pointer anymore to compare signatures in
13526         mono_metadata_signature_equal (), update callers.
13527         Reduced memory usage an number of allocations for MonoMethodHeader and
13528         MonoMethodSignature.
13530 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
13532         * metadata.c: added compare for szarray.
13534 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
13536         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
13537         and add a couple more types to it and mono_defaults. Give an hint on
13538         classes that need implementing in our corlib and are referenced
13539         in mscorlib.
13541 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
13543         * class.h, class.c: keep track if a class is also an Enum.
13544         * loader.c: Implement a couple more types for use in libffi
13545         marshalling. Gives better diagnostics when failing to dlopen
13546         a library. Set method->klass for P/Invoke methods, too.
13548 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
13550         * class.c, class.h: add a MonoType this_arg to MonoClass that
13551         represents a pointer to an object of the class' type that
13552         can be used by the interpreter and later the type cache.
13553         Add best guess alignment info for valuetype objects.
13555 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
13557         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
13558         into MonoType: one less level of indirection and allocation and
13559         simplifies quite a bit of code. Added cache for MonoTypes that are
13560         used frequently, so that we don't need to allocate them all the time.
13562 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
13564         * class.c (mono_class_create_from_typedef): System.Enum is also a
13565         value type, although it does not derive from System.ValueType
13566         (maybe a bug in the ms compiler?)
13568         * metadata.c (mono_type_size): return the right size for value types
13570         * loader.c (mono_get_method): only initialize method header if not abstract
13572         * class.c (mono_class_from_mono_type): use mono_default values. 
13574 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
13576         * *: use MonoClass pointers instead of <type_tokens>
13577         
13578         * class.h: new flag: metadata_inited.
13580         * class.c (mono_class_metadata_init): impl.
13581         (mono_class_instance_size): impl.
13582         (mono_class_data_size): impl.
13584 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
13586         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
13587         MonoClass now has the name and name_space fields. 
13588         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
13589         mono_get_method () takes and optional MonoClass as argument.
13590         Removed mono_typedef_from_name() and added mono_class_token_from_name()
13591         instead that takes advantage of a map from class names to typedef
13592         tokens in MonoImage.
13594 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
13596         * metadata.c: zero is not a valid alignment boundary.
13597         Merge MONO_TYPE_VOID in default decoding code.
13599 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
13601         * image.h: merged MonoMetadata into MonoImage
13603         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
13604         identify the type of elements.
13606 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
13608         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
13609         * cil-coff.h: split MonoMSDOSHeader and add size info.
13610         * image.c: add some consistency checks.
13611         * metadata.c: fix row size computation: one programmer
13612         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
13613         add explanation for the locator routine.
13614         Fix decoding of size in method header.
13615         
13616 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
13618         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
13619         (g_concat_dir_and_file): Bring g_concat_dir_and_file
13620         function from gnome-libs.  This uses the right path separator
13621         based on the OS, and also works around a bug in some systems where
13622         a double slash is not allowed. 
13623         (default_assembly_name_resolver): Use g_concat_dir_and_file
13624         (mono_assembly_open): ditto.
13626 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
13628         * metadata.c (mono_metadata_signature_equal): impl.
13630         * *: void is now a realy MonoType (instead of using NULL)
13631         
13632         * metadata.c (do_mono_metadata_parse_type): use
13633         mono_metadata_parse_type to parse void value.
13635 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
13637         * metadata.c, metadata.h: in the signature and method header store
13638         only the space required for holding the loca vars and incoming arguments.
13640 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
13642         * metadata.c (do_mono_metadata_parse_type): treat void like any
13643         other type (instead of assigning NULL);
13645 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
13647         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
13649 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
13651         * image.c (do_mono_image_open): added a cache for arrays.
13653 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
13655         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
13656         decode a single column from a row in a metadata table and changes
13657         to take advantage of it in the typedef locator (gives a nice speed up).
13658         Store offset info for function params.
13660 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
13662         * image.h (MONO_IMAGE_IS_CORLIB): removed 
13664 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
13666         * assembly.c: how could mono_assembly_close () had ever worked?
13667         * metadata.c, metadata.h: provide offset info for local vars.
13668         Implement mono_type_size () to take care of alignment as well
13669         as size (it was mono_field_type_size in cli/class.c before).
13671 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
13673         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
13675         * assembly.h (CORLIB_NAME): set to corlib.dll
13677         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
13679 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
13681         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
13682         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
13683         tokentype.h: massive namespace cleanup.
13685 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
13687         * metadata.h, metadata.c: decode exception clauses when parsing method header.
13689 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
13691         * metadata.c (mono_metadata_free_type): added check for type !=
13692         NULL (void) before calling mono_metadata_free_type()
13694 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
13696         * metadata.h, row_indexes.h: added header with enumerations to use
13697         to index in the columns from tables in metadata and to decode coded
13698         tokens: we should start using this instead of embedding magic numbers
13699         all over the code.
13701 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
13703         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
13704         Move metadata_t info from cli_image_info_t to MonoImage, where
13705         it's easily accessible. Changed all the uses accordingly.
13706         Added the method and class caches to MonoImage.
13707         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
13708         and mono_metadata_decode_value () signature to be more consistent
13709         with the other parse functions (and simplify code). Taken advantage
13710         of zero-length array allocation with GCC. Removed reduntant (and
13711         wrong) MonoFieldType struct and use MonoParam instead. Changed
13712         mono_metadata_parse_field_type () to use common code for parsing.
13713         Added mono_metadata_typedef_from_field () and
13714         mono_metadata_typedef_from_method () to lookup a typedef index from a
13715         field or method token.
13716         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
13718 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
13720         * metadata.c (mono_metadata_parse_field_type): Implement. 
13721         (do_mono_metadata_parse_type): Split engine from
13722         mono_metadata_parse_type, so that we can create smaller structures
13723         for things that just have one pointer to the MonoType (look at
13724         the MonoFieldType)
13726 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
13728         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
13729         as Jan Gray found out, it is incorrect. 
13731 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
13733         * assembly.c: Implement asssembly loading.  This loads an image
13734         and loads all the referenced assemblies.  Come to think of it, we
13735         could always do lazy loading of the assemblies. 
13737         * image.c (mono_image_open): Keep loaded images in a hashtable.
13739         * image.h (MonoImage): Add reference count.
13741 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
13743         * assembly.c (mono_assembly_open): Keep track of the file name in
13744         case the assembly has no ASSEMBLY table.
13746         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
13747         from get.c here.
13749 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
13751         * metadata.c, metadata.h: decode local vars in method header
13752         parse function. Change callers accordingly.
13754 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
13756         * metadata.h, cil-coff.h: protect against multiple inclusion.
13757         Added some new structures to hold information decoded from metadata:
13758         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
13759         and relevant decoding/free functions.
13760         * metadata.c: implement decoding functions. Add warning for out of bounds
13761         index in mono_metadata_locate(). Implement mono_get_method () to retreive
13762         all the info about a method signature and invocation. Remove check on
13763         uninitialized local var in parse_mh() and fix memory leak.
13765 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
13767         * metadata.h: More macros.
13769         * tokentype.h: New file.
13771 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
13773         * assembly.c: added a consistency check and initialize
13774         some structures with g_new0().
13775         * metadata.c: fixed a couple more bugs in table size computation
13776         and add other checks for out-of bound access to metadata.
13778 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
13780         * metatada.c: fix bugs computing table sizes. Spew a
13781         warning when index in string heap is out of bounds.
13783 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
13785         * metadata.h: Add a couple of macros to manipulate tokens. 
13787 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
13789         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
13790         cli_section_tables).
13792 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
13794         * metadata.c (mono_metadata_user_string): New function, provides
13795         access to the UserString heap. 
13797 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
13799         * metadata.c: Add inline documentation.
13801 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
13803         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
13804         files. 
13806 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
13808         * typeattr.h: New file, TypeAttribute flags. 
13810 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
13812         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
13813         mono_assembly_ensure_section): Section loading code.
13814         (load_section_tables): Load the sections.
13816         * mono/metadata/metadata.c (mono_metadata_locate_token,
13817         mono_metadata_locate): Functions to locate the information
13818         definition given a token or a table and an index.
13819         (mono_metadata_compute_table_bases): New.
13820         (compute_size): New function to compute the sizes of the various
13821         tables.
13823         * mono/metadata/metadata.h: Finish listing the different index
13824         types. 
13826         * mono/metadata/pedump.c: Improve to dump new information.
13828 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
13830         * mono/metadata/metadata.c: Entered all the tables matching
13831         Beta2. 
13833         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2