* marshal.c: Iter usage.
[mono-project.git] / mono / metadata / ChangeLog
blob9c341dd3182b47121103d80c6964754904234bac
1 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
3         * marshal.c: Iter usage.
5         * icall.c: Iter usage.
7         * object.c: Use iters.
9         * debug-helpers.c: More iters
11 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
13         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
14         under win32.
15         
16 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
18         * mono-debug-debugger.c: use iters
20         * class.c, class-internals.h: mono_class_setup_events is static
21         now
23         * All callers: use iters
25 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
27         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
28         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
30 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
32         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
34         * marshal.h: Add prototypes for ldfld/stfld_remote.
36         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
37         this is called during startup.
38         
39 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
41         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
42         MonoThreadsSync struct private in monitor.c. Changed the way
43         MonoThreadsSync is allocated so it's faster and there is no
44         need to keep track of it with a finalizer and it uses less memory.
45         This also finally allows us to allocate mono objects as ptrfree when
46         there are no reference fields.
48 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
50         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
51         disappearing link to the GC interface and use them to simplify
52         the gchandles code.
54 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
56         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
57         stfld_remote which call mono_load/store_field_new. This allows methods
58         calling ldfld/stfld wrappers to be AOTed.
60         * console-io.c: Include sys/filio.h under solaris.
61         
62         * console-io.c: Include curses.h if needed correctly.
64 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
65         
66         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
67         method->klass as well.
69         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
71         * class.c (mono_class_init): Switch on lazy initialization of 
72         methods.
74         * class.c (mono_class_get_finalizer): Handle the case when the 
75         finalizer is inherited.
77 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
79         * console-io.c: <curses.h> is needed by term.h on solaris.
81 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
83         * icall.c, class-internals.h, monodiet.c, class.c: Remove
84         mono_class_setup_properties where possible. Remove this ftn from
85         the header file, and make it static.
87 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
89         * loader.c: Add missing setup_... call.
91         * class.c: Add missing setup_... calls.
93         * class.c (mono_class_init): Switch on lazy initialization of 
94         the generic vtable.
95         
96         * class.c (mono_class_init): Fix generics broken by the recent changes.
98         * monodiet.c (handle_type): Add missing setup_... calls.
100         * class.c: Back out garbage in previous patch.
101         
102         * class.c: Add missing setup_... calls.
104         * class.c (mono_class_get_method_from_name_flags): Avoid calling
105         mono_class_setup_methods () if possible.
107         * class-internals.h (MonoClass): Add 'has_cctor' flag.
109         * class-internals.h (MonoCachedClassInfo): New structure.
111         * class.c: Initialize properties and events fields of MonoClass lazily.
113         * class.c: Add infrastructure for lazily initializing the methods and
114         vtable fields of MonoClass. Not yet used.
116         * class.c (mono_class_get_finalizer): New helper function.
118         * class.c: Add infrastructure for loading some class related data from
119         an AOT file.
121         * object.c: Add infrastructure for initializing the vtable from data
122         in the AOT file.
124         * gc.c (run_finalize): Use mono_class_get_finalizer ().
126         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
127         appropriate initialization function before accessing parts of the
128         MonoClass structure.
130         * marshal.c: Fix warnings.
131         
132         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
134         * mono-debug-debugger.c (get_exception_message): Use 
135         mono_class_get_method_from_name_flags ().
137 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
139         * reflection.c, appdomain.c: Replace a few manual searches that
140         Zoltan missed. (Paolo approved this part of my initial patch).
142 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
144         * profiler.c: disable recording statistical events at report time.
146 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
148         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
149         to byteswap arrays of enum values, too (bug #72080).
151 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
153         * appdomain.c (set_domain_search_path): Allow this to be called if
154         domain->setup is not yet set.
156         * loader.c (mono_method_get_index): New helper function.
158         * loader.c reflection.c: Use mono_method_get_index ().
160         * class.c (mono_class_get_method_from_name_flags): New helper method.
162         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
163         this.
165         * class.c (mono_class_get_cctor): New helper method.
167         * string-icalls.c object.c class.c marshal.c reflection.c: Use
168         mono_class_get_method () to look up methods.
170 2005-02-01  Miguel de Icaza  <miguel@novell.com>
172         * console-io.c: Fix the build, this should work on Windows.
174 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
176         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
177         be set to null to keep things valid
179 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
181         * icall.c: added Console 2.0 icalls.
182         * Makefile.am: added console-io.[ch]
183         * console-io.[ch]: internal calls for Console 2.0 API.
185 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
187         * class.c: make sure we consider all the interfaces
188         when calculating max_interface_id (bug found by
189         Jeroen Frijters running ikvm).
191 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
193         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
194         valuetype fields to null.
196         * object.c (set_value): Ditto. Fixes #71669.    
198 2005-01-31  Martin Baulig  <martin@ximian.com>
200         * metadata.c (mono_metadata_has_generic_params): New public
201         function; checks whether something is a generic method.
203 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
205         * appdomain.c: fix infinite recursion when adding assemblies.
207 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
209         * object.c: Fix small typo to return all items for Environment.
210         GetCommandLineArgs.
212 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
214         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
215         reflection.c: more domain and assembly-unload related fixes
216         and memory leaks plugs.
218 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
220         * 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.
222 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
224         * loader.c (mono_method_signature): Make this method lazy
225         (mono_get_method_from_token): Don't computate the signature here.
227         Doing this saves quite a bit of memory. I got 90 kb on starting up
228         monodoc. It should also save some disk reads on startup.
230         * *: MonoMethod->signature might be NULL now. You *MUST* use
231         mono_method_signature.
233 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
235         * object.c (mono_runtime_get_main_args): Return an array from the
236         current domain here. Fixes #71938.
238 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
240         * monitor.c: formatting changes to comply with the
241         mono coding style and remove #ifdefs from the code.
243 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
245         * metadata.c, private.h: remove some unneeded data
246         and use a more compact representation for table schemas.
248 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
250         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
251         to get a better distribution in hash tables.
252         * *.c: use mono_aligned_addr_hash() where appropriate.
253         * assembly.c: make var static.
255 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
257         * domain-internals.h: Put MonoJitInfo on a diet.
259         * domain.c: Fix a warning.
261 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
263         * gc.c: rework the gc handles code to reuse handles
264         when freed.
266 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
268         * domain.c: fixed long standing bug in mono_string_equal() which
269         was brought to light with the ldstr changes.
271 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
273         * reflection.c: Remove warning by adding missing include for marshal.h
275 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
277         * domain.c, object.c: change the ldstr_table to hold
278         MonoString* as keys: makes the runtime isinterned lookup
279         faster and simplifies memory management.
281 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
283         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
284         possible to add imperative security checks before calling the icall.
285         * reflection.c: Return security attributes on the original MonoMethod
286         (and not the wrapped one). This fix permissions on icalls.
288 2005-01-25  Dick Porter  <dick@ximian.com>
290         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
291         the check for mktime() support actually test the mktime() return
292         value.  "Fixes" bug 71682, though the output is still different to
293         MS.
295 2005-01-25  Martin Baulig  <martin@ximian.com>
297         * class.c (mono_class_is_assignable_from): Make this work for
298         generic instances.
300 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
302         * marshal.c (mono_string_utf8_to_builder)
303         (mono_string_builder_to_utf16): We might not have ownership of the
304         string. In thise case, we need to create a new buffer.
306         * object-internals.h (mono_stringbuilder_capacity): sb->str might
307         be null, in which case, use the default capacity.
309 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
311         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
312         GC events to the profiler.
314 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
316         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
317         if you don't want the GC to run.
319 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
321         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
322         start providing a GC API and keeping different implementations in
323         their own file.
324         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
326 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
328         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
329         mmap rather than allocating a huge buffer.
330         (mono_debug_close_mono_symbol_file): Free the buffer allocated
331         above.
333 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
335         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
336         and CheckExecutionRights.
337         * reflection.c|h: Keep the index of the declarative security to be 
338         used, instead of the pointer, when AOT compiler is used. Also add 
339         class initialization when requesting demands.
340         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
341         CheckExecutionRights. Both properties are now FALSE by default, and
342         unmodifiable, unless the --security option is used.
344 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
346         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
347         reflection.c: properly refcount images and assemblies, many leaks fixed.
349 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
351         * threadpool.c: increase the timeout for threads in the thread pool to
352         10s.  Fixes bug #67159.
354 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
356         * class-internals.h: Sun's compiler insists on explicit
357         signed on bit fields to handle then correctly.
359 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
361         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
362         Make the size of the array fit only the number of invalid path
363         chars that we have.
365         * class.c (_mono_class_get): Improve the error reporting when a
366         class referenced is not found, to assist debugging. 
368 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
370         * threads.c: fix off-by-one error.
371         * domain.c: free data allocated in the domain.
373 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
375         * reflection.c (mono_method_body_get_object): Fill out exception info
376         as well.
378         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
379         structure.
380         
381 2005-01-19  Martin Baulig  <martin@ximian.com>
383         * loader.c (mono_get_method_constrained): Make this work again.
385 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
387         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
388         guint16 to match the managed side.
390         * reflection.c (mono_reflection_body_get_object): Fill out local
391         variables array.
393         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
394         as well.
396         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
397         'local_var_sig_token'.
399 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
401         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
402         System.Drawing.
404         * reflection.c (mono_method_body_get_object): Handle abstract and
405         runtime methods.
407 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
409         * marshal.c, loader.c, class-internals.h, reflection.c:
410         store the emthod data for a wrapper in an array instead of a list.
412 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
414         * marshal.c: change the code to allocate memory more
415         conservatively for method wrappers.
417 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
419         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
420         fields from MonoClass to the marshal info structure where they belong.
422 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
424         * class.c, object.c, class-internals.h, marshal.c: rearrange
425         some fields and tweak some types to lower memory usage.
427 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
429         * threads.c (signal_thread_state_change): Handle the case when the
430         target thread is the current thread.
432         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
434         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
435         emit_ptr_to_object_conv. 
437         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
438         marshalling. Fixes #71352.
440 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
442         * metadata.h, blob.h: move table enum to blob.h so it can be included
443         in any header.
444         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
445         cut the size of MonoImage/MonoDynamicImage.
447 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
449         * profiler.c (mono_profiler_install_simple): Fix default arguments.
451 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
453         * reflection.c, reflection.h, icall.c: add a function to check
454         if an attribute type is defined for a metadata object.
456 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
458         * object-internals.h: Added some needed fields from StringBuilder class.
459         * marshal.c: Set the maxCapacity when creating a StringBuilder.
461 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
463         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
464         threads before shutting down the runtime.
466         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
468 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
470         * object-internal.h, threads.c: implement stacksize and 
471         parameterized thread start functionality (requires
472         matching corlib). Marked broken code for later removal.
474 2005-01-12  Martin Baulig  <martin@ximian.com>
476         * class-internals.h (MonoGenericClass): Moved the `initialized'
477         flag to MonoDynamicGenericClass, removed `init_pending'.
478         (MonoGenericInst): Added `is_reference' flag.
480 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
482         * reflection.c (mono_image_create_pefile): Only set the pe_offset
483         inside the MSDOS header. Fixes #71201.
485         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
486         gc thread.
487         (mono_domain_finalize): Ditto.
489 2005-01-12  Martin Baulig  <martin@ximian.com>
491         * class.c (mono_get_shared_generic_class): Use the cache for
492         non-dynamic generic classes.
494         * class-internals.h (mono_class_create_generic_2): Removed
495         function prototype, this function is now static inside class.c.
497         * class.c (mono_class_create_generic_2): Made this static, only
498         call it from mono_class_init() and mono_class_setup_parent().
499         (collect_implemented_interfaces_aux): Call mono_class_init() on
500         the interfaces we collect.
501         (mono_class_setup_vtable): Call mono_class_init (class->parent).
503 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
505         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
506         it a real thread handle.
508         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
509         MonoJitExceptionInfo, since each catch clause needs its own variable.
510         
511 2005-01-11  Dick Porter  <dick@ximian.com>
513         * image.c (mono_pe_file_open): New variant on mono_image_open()
514         that does not set up the CLI metadata; used for FileVersionInfo so
515         it can get the data for windows binaries too.
516         
517         * process.c (process_read_string_block): Don't read off the end of
518         the StringTable block.
520         These both fix bug 70766.
522 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
524         * gc.c: set some fields to NULL at GC cleanup time.
525         * threads.c: if we quit the main thread, call exit ().
527 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
529         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
531 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
533         * threads.h, threads.c, object.c: added accessor and settor for
534         main_thread. Handle it specially when exiting from it: wait
535         for other foreground threads to exit.
537 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
539         * process.c, verify.c: remove some bloat.
541 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
543         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
544         the calling convention to cdecl under win32.
546 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
548         * object.c (mono_object_get_size): New function to get the size of
549         an object instance.
551         * profiler.c (simple_allocation): Use above.
553 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
555         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
556         ves_icall_System_AppDomain_getRootDomain (as it's not required to
557         get an appdomain by it's id and we can't assume the root's id is 0).
558         * domain-internals.h: Change the function prototype to match.
559         * icall.c: Change the icall table for AppDomain.
561 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
563         * locales.c (string_invariant_compare_char): Only compute
564         GUnicodeTypes in the case where we need them.  Test for ordinality
565         first and return if so.
567         From the commit:
569                 /*
570                  * FIXME: here we must use the information from c1type and c2type
571                  * to find out the proper collation, even on the InvariantCulture, the
572                  * sorting is not done by computing the unicode values, but their
573                  * actual sort order.
574                  */
576 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
578         * loader.c: for P/Invoke methods, allow the "Internal" shared
579         library name to refer to the calling process symbol namespace.
581 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
583         * Makefile.am: Add the security manager to the build.
584         * security-manager.c|h: New. Initialization of the security manager.
586 2005-01-07  Dick Porter  <dick@ximian.com>
588         * threads.c: 
589         * monitor.c: Update thread state during Monitor and WaitHandle
590         waits.  Fixes bug 71031.
592 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
594         * reflection.c (property_encode_signature): Correctly handle when the
595         property has no methods.
597 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
599         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
600         
601         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
602         fields from mb, not rmb. Fixes #71017.
604         * marshal.c (emit_ptr_to_str_conv): Add support for 
605         ByValTStr -> string conversion. Fixes #71015.
607         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
609         * mempool.c (mono_mempool_contains_addr): New helper function.
611 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
613         * metadata.c (mono_metadata_compute_size): Fix size calculation of
614         HasSematics encoded fields.
615         
616         * metadata.c (mono_type_to_unmanaged): Improve error message for 
617         invalid string marshalling.
619         * metadata.c: Fix warnings.
620         
621 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
623         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
624         profiler support.
626 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
628         * domain.c object.c domain-internals.h: Revert part of r38077 since the
629         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
630         tests.
632 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
634         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
635         so methods containing these can be AOTed.
637 2005-01-03  Martin Baulig  <martin@ximian.com>
639         * loader.c (find_method): Removed the hack for generic instances.
640         (method_from_memberref): If our parent is a generic instance, pass
641         its generic type definition to find_method() and then inflate the
642         method.
643         (mono_get_method_constrained): Pass the generic type definition to
644         find_method() and inflate the method later.
646         * class-internals.h (MonoStats): Added `generic_class_count'.
648         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
649         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
651         * reflection.c (mono_custom_attrs_from_params): Don't ignore
652         generic type definitions.
654 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
656         * loader.c icall.c: Fix warnings.
658 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
660         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
661         blittable types. Fixes #70864.
663 2004-12-29  Martin Baulig  <martin@ximian.com>
665         * icall.c
666         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
668         * reflection.c (mono_method_get_object): Create a
669         "System.Reflection.MonoGenericMethod" for inflated methods; don't
670         call mono_get_inflated_method().
672         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
674 2004-12-27  Martin Baulig  <martin@ximian.com>
676         * class-internals.h (MonoMethod): Added `is_inflated' flag.
677         (MonoMethodInflated): Added `inflated' field.
679         * class.c (mono_class_inflate_generic_method): Don't really
680         inflate the method here; just set the `is_inflated' flag in the
681         MonoMethod.
682         (mono_class_get_inflated_method): Actually inflate the method here
683         if it's not already inflated; we use the MonoMethodInflated's new
684         `inflated' field as a cache.
686 2004-12-26  Martin Baulig  <martin@ximian.com>
688         * class.c
689         (inflate_generic_class): Moved some code out of inflate_generic_type().
690         (mono_class_inflate_generic_method): If we're already inflated,
691         inflate the context and use the declaring method; ie. make sure
692         the declaring method of an inflated method is always the generic
693         method definition.
694         (mono_class_create_from_typedef): Create
695         `class->generic_container->context->gclass'.
697 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
699         * metadata-internals.h, marshal.c, reflection.c: More
700         MonoGHashTable->GHashTable.
702         * domain-internals.h, class.c: Change MonoGHashTable's into
703         GHashTables for some cases where no gc stuff is used
705         All users: update apis
707 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
709         * metadata.c (builtin_types): Make this `const'. Makes this get
710         put into the shareable section.
711         (mono_metadata_init): Casts to make gcc happy.
713 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
715         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
717 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
719         * icall.c: Added an internal call to retrieve the position and length
720         of assembly-level declarative security attributes (RequestMinimum, 
721         RequestOptional and RequestRefuse). This is used by the Assembly class
722         to re-create the corresponding permission sets.
724 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
726         * marshal.c: fix the stelemref wrapper to be type correct
727         (and faster).
729 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
731         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
732         to do key & 0x7fffffff. Hashtable already does this. It just
733         results in longer code.
735 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
737         * appdomain.c: Bump corlib version.
738         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
739         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
740         * reflection.c|h: Add functions to get declarative security infos
741         (blob position and length) for assemblies, classes and methods.
743 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
745         * reflection.c: sort the constant table (bug #70693).
747 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
749         * object-internals.h, threads.c, domain.c: add accessors for
750         the MonoThread and MonoDomain tls keys.
752 2004-12-18  Martin Baulig  <martin@ximian.com>
754         * class.c (inflate_generic_type): If we're inflating a generic
755         instance, set `ngclass->context->container = context->container';
756         ie. the container we inflated into.
758         * metadata.c (mono_metadata_parse_generic_param): Reflect above
759         inflate_generic_type() changes.
761 2004-12-17  Martin Baulig  <martin@ximian.com>
763         * class-internals.h
764         (MonoGenericClass): Replaced `MonoType *generic_type' with
765         `MonoClass *generic_class'.  Removed `dynamic_info'; if
766         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
767         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
769 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
771         * exception.c (mono_exception_from_token): New helper function.
773 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
775         * assembly.c (mono_assembly_load_with_partial_name): Call 
776         mono_assembly_loaded before invoking the preload hooks. Fixes
777         #70564.
779         * object-internals.h (MonoThread): Change culture_info and 
780         ui_culture_info into an array.
782         * threads.c: Cache culture info objects from more than one appdomain.
784         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
785         current UI culture.
787 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
789         * threads.h threads.c appdomain.c: Clear the culture_info field of
790         all threads during unloading if they point to an object in the dying
791         appdomain.
793 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
795         * culture-info.h (TextInfoEntry): New struct
796         * object-internals.h: sync with managed
797         * locales.c: fill the `text_info_data' field
798         * culture-info-tables.h: update
800 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
802         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
803         collector.
805 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
807         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
808         (ves_icall_ModuleBuilder_getMethodToken): Ditto
810 2004-12-12  Martin Baulig  <martin@ximian.com>
812         * mono-debug-debugger.c (write_type): If we're an enum and the
813         builtin types have already been initialized, call mono_class_init().
815 2004-12-11  Martin Baulig  <martin@ximian.com>
817         * metadata.c (mono_metadata_load_generic_params): Added
818         `MonoGenericContainer *parent_container' argument; automatically
819         compute `container->is_method'; pass the correct owner to
820         get_constraints().      
822         * reflection.c (compare_genericparam): Sort the GenericParam table
823         according to increasing owners. 
825 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
827         * profiler.c: allow disabling the default profiler.
829 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
831         * decimal.c, icall.c: allow disabling System.Decimal support.
833 2004-12-09  Marek Safar <marek.safar@seznam.cz>
835         * reflection.c: Add support for null attribute arguments.
837 2004-12-09  Martin Baulig  <martin@ximian.com>
839         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
840         names to get rid of compiler warnings.
842 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
844         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
845         mono_marshal_load_type_info (). Fixes #69625.
846         (mono_marshal_get_ptr_to_struct): Likewise.
848 2004-12-08  Martin Baulig  <martin@ximian.com>
850         * mono-debug.h: Bumped version number to 47.
852         * mono-debug-debugger.c
853         (mono_debugger_event_handler, mono_debugger_event): Take two
854         guint64 arguments insteed of a gpointer and a guint32.  
856 2004-12-08  Martin Baulig  <martin@ximian.com>
858         * debug-mono-symfile.h
859         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
860         `address' to `native_offset'.
862 2004-12-08  Martin Baulig  <martin@ximian.com>
864         * class.c (mono_class_create_from_typespec): Only inflate if we
865         either have `context->gclass' or `context->gmethod'.
867 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
869         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
871         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
873         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
875         * reflection.c (mono_assembly_get_object): Remove the workaround put
876         in for the release.
877         
878         * appdomain.c: Use the corlib_internal field from MonoAssembly.
880         * appdomain.c: Bump corlib version.
882         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
883         be visible in other appdomains.
885 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
887         * threads.c: Interlocked inc and dec for longs were messed up,
888         use a KISS based impl for this. Fixes 70234
890 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
892         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
894 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
896         * icall.c: fix to follow policy not to allow struct
897         arguments in icalls.
899 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
901         * process.c: make the patch that handles spaces in file paths work
902         on mono/windows too.
904 2004-12-06  Martin Baulig  <martin@ximian.com>
906         * class.c (mono_class_create_generic): Call
907         mono_class_setup_supertypes() if we're dynamic.
908         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
910 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
912         * object-internals.h: Add new fields to MonoThread.
914         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
916         * icall.c threads-types.h threads.c: Add new icalls.
918         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
920         * object-internals.h (MonoReflectionAssembly): Sync object layout with
921         managed side.
923         * appdomain.c: Bump corlib version.
925         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
926         internal assemblies. Fixes #69181.
928 2004-12-05  Martin Baulig  <martin@ximian.com>
930         * class.c (mono_class_inflate_generic_signature): Make this a
931         no-op if `context' is NULL or we don't have any type parameters;
932         also copy `sentinelpos'.        
934 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
936         * image.c: Add unbox_wrapper_cache.
938         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
940         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
941         function generator.
942         
943         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
944         Fixes #70173.
946         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
947         
948 2004-12-04  Martin Baulig  <martin@ximian.com>
950         * loader.c (mono_method_get_signature_full): New public function;
951         like mono_method_get_signature(), but with an additional
952         `MonoGenericContext *' argument.
954         * class.c (mono_class_inflate_generic_signature): Formerly known
955         as inflate_generic_signature(); make this public.
957 2004-12-04  Martin Baulig  <martin@ximian.com>
959         * metadata.c
960         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
961         instead of a `MonoGenericContainer *'.  
962         (mono_metadata_parse_array_full): Likewise.
963         (mono_metadata_parse_signature_full): Likewise.
964         (mono_metadata_parse_method_signature_full): Likewise.
965         (mono_metadata_parse_generic_inst): Likewise.
966         (mono_metadata_parse_generic_param): Likewise.
967         (mono_metadata_parse_mh_full): Likewise.
968         (mono_type_create_from_typespec_full): Likewise.
970 2004-12-03  Martin Baulig  <martin@ximian.com>
972         * class-internals.h (MonoGenericContainer): Replaced the
973         `MonoGenericContext * pointer with a `MonoGenericContext'
974         structure and made it the first element.
976 2004-12-03  Martin Baulig  <martin@ximian.com>
978         * class.c
979         (inflate_generic_type): Set the `context->container' when creating
980         a new MonoGenericContext.
981         (mono_class_inflate_generic_method): Likewise.
982         (mono_class_create_from_typespec): Just use `context->container'
983         to get the container.
985         * loader.c (method_from_methodspec): Set `context->parent' from
986         `context->container' - and if that's a method container, use its
987         parent.  Also set the `context->container' when creating a new
988         MonoGenericContext.
989         (mono_get_method_from_token): Use just `context->container' to get
990         the container.
992         * metadata.c (do_mono_metadata_parse_generic_class): Also set
993         `gclass->context->container'.
995         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
996         the `context->container' when creating a new MonoGenericContext.
998 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
1000         * reflection.c (compare_genericparam): Sort params with identical
1001         owner by their number. Fixes gen-111 on sparc.
1003 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
1005         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
1006         around the domain changes.
1008         * appdomain.c (mono_domain_unload): Handle the case when the thread
1009         calling Unload is itself being aborted during unloading. Fixes #70022.
1011         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
1013         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
1014         checkpoint_func as an icall so it gets a wrapper.
1015         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
1016         in the cross-appdomain wrappers too.
1018         * threads.c (mono_thread_has_appdomain_ref): Make this public.
1020         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
1022         * reflection.c: Fix some memory leaks.
1023         
1024 2004-12-02  Martin Baulig  <martin@ximian.com>
1026         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
1028         * metadata.c (generic_class_cache): New static hashtable.
1029         (mono_metadata_lookup_generic_class): New public method.
1031 2004-12-02  Martin Baulig  <martin@ximian.com>
1033         * class.c (mono_class_create_from_typedef): Call
1034         mono_class_setup_parent() and mono_class_create_mono_type() before
1035         parsing the interfaces.
1037 2004-12-02  Martin Baulig  <martin@ximian.com>
1039         * metadata.c (generic_inst_cache): New static hashtable.
1040         (mono_metadata_lookup_generic_inst): New public function.
1041         (mono_metadata_inflate_generic_inst): New public function.
1042         (mono_metadata_parse_generic_inst): New public function.
1043         (do_mono_metadata_parse_generic_class): Use the new
1044         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
1045         since this'll also use the cache.
1047         * reflection.c (mono_reflection_bind_generic_method_parameters):
1048         Use mono_metadata_lookup_generic_inst() to use the new cache.
1050         * class.c (inflate_mono_type): Use
1051         mono_metadata_inflate_generic_inst() to inflate a generic
1052         instance; this'll also use the new cache.
1054         * loader.c (method_from_methodspec): Use
1055         mono_metadata_parse_generic_inst() and
1056         mono_metadata_inflate_generic_inst() rather than parsing it
1057         manually, so we can use the new cache.
1059 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
1061         * threads.c (wait_for_tids): Do not incorrectly free threads when 
1062         the wait times out.
1064 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
1066         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
1067         iter->args based on whether parameters are passed in registers (i.e.
1068         MONO_ARCH_REGPARMS is defined)
1070 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
1072         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
1073         the exception message. Fixes #70070.
1074         (method_from_methodspec): Fix warnings.
1076 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1078         * process.c: (complete_path) return the path quoted
1080 2004-12-01  Martin Baulig  <martin@ximian.com>
1082         * class-internals.h (MonoGenericInst): New structure.
1083         (MonoGenericClass): Replaced `type_argc', `type_argv' and
1084         `is_open' with `MonoGenericInst *inst'.
1085         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
1086         `is_open' with `MonoGenericInst *inst'.
1088 2004-11-30  Martin Baulig  <martin@ximian.com>
1090         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
1092         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
1093         to `generic_class_cache'.
1095         * metadata.c
1096         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
1097         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
1098         (mono_generic_inst_is_valuetype): Renamed to
1099         mono_generic_class_is_valuetype().
1101         * class-internals.h
1102         (MonoGenericInst): Renamed to MonoGenericClass.
1103         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
1104         (MonoClass): Renamed `generic_inst' to `generic_class'.
1105         (MonoGenericContext): Renamed `ginst' to `gclass'.
1107         * object-internals.h
1108         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
1110         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
1111         mono_reflection_generic_class_initialize().
1113         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
1114         now known as "System.Reflection.MonoGenericClass".
1115         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
1117 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
1119         * class-internals.h: Added a flag field to MonoClass to cache the
1120         declarative security attributes actions associated with the class.
1121         * domain-internals.h: Added booleans to MonoJitInfo to cache the
1122         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
1123         applicable to the JITted method.
1124         * reflection.c|h: Added functions to extract (as flags) which security
1125         actions are available (declaratively) for a method, class or assembly.
1126         * metadata.c|h: Added functions to search the declarative security
1127         table in the metadata.
1128         
1129 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
1131         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
1132         EXPORTEDTYPES are already in the class name cache, so there is no
1133         need to add extra code here to look at them. Just removes a bit of
1134         cruft.
1136         (ves_icall_System_Environment_get_TickCount): No need for #if
1137         WINDOWS. We already have the code in io-layer.
1139 2004-11-28  Martin Baulig  <martin@ximian.com>
1141         * loader.c
1142         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
1143         Fixes gen-112.cs.
1145 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
1147         * assembly.c (do_mono_assembly_open): Instead of having a
1148         conditional WITH_BUNDLE, incorporate support for bundles here, by
1149         having a global `bundles' variable holding a pointer to the actual
1150         bundles. 
1152         (mono_register_bundled_assemblies): New API call used by the
1153         bundle code. 
1155         See mkbundle.1 for details.
1156         
1157 2004-11-27  Martin Baulig  <martin@ximian.com>
1159         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
1160         the vtable for generic methods.
1162 2004-11-26  Martin Baulig  <martin@ximian.com>
1164         * metadata.c
1165         (mono_metadata_generic_method_hash): New public function.
1166         (mono_metadata_generic_method_equal): Likewise.
1168         * class-internals.h
1169         (MonoGenericContainer): Added `GHashTable *method_hash'.
1171         * reflection.c (ReflectionMethodBuilder): Added
1172         `MonoGenericContainer *generic_container'.
1173         (reflection_methodbuilder_to_mono_method): Don't create a new
1174         MonoGenericContainer each time we're called.
1175         (mono_reflection_bind_generic_method_parameters): Use
1176         `container->method_hash' to cache the results so we don't create a
1177         different method if we're called several times with the same
1178         arguments.
1180         * loader.c (method_from_methodspec): Use the new
1181         `container->method_hash' here, too.
1183 2004-11-26  Martin Baulig  <martin@ximian.com>
1185         * class.c (inflate_generic_signature): Correctly compute
1186         `res->has_type_parameters'.
1187         (mono_class_vtable): Use the `has_type_parameters' flag to
1188         determine whether we're a generic method.
1190         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
1192 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
1194         * object.c (mono_runtime_run_main): Fix a small memory leak.
1196 2004-11-25  Martin Baulig  <martin@ximian.com>
1198         * class.c (set_generic_param_owner): Fixed the loop.
1200 2004-11-25  Martin Baulig  <martin@ximian.com>
1202         * object.c (mono_class_vtable): Don't create any JIT wrappers for
1203         generic methods.
1205 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
1207         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
1208         names. Fixes #69787.
1210 2004-11-24  Martin Baulig  <martin@ximian.com>
1212         * class.c (mono_class_create_generic_2): If we don't have a
1213         `ginst->parent', inflate `gklass->parent' to get our parent.
1215 2004-11-24  Martin Baulig  <martin@ximian.com>
1217         * reflection.c (compare_genericparam): Correctly sort the
1218         GenericParam table; fixes #69779.
1220 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
1222         * reflection.c: When writing a PE file, don't create a huge
1223         buffer in memory. Just write the arrays we have to the file.
1224         This reduces memory usage.
1226         * metadata-internals.h: MonoDynamicStream pefile is no longer used
1227         globally.
1229 2004-11-17  Martin Baulig  <martin@ximian.com>
1231         * class.c (mono_class_init): Don't setup `class->parent' for
1232         dynamic instances; moved this to mono_class_generic_2().
1233         (mono_class_create_generic): Also set `klass->inited' for dynamic
1234         generic instances.
1235         (mono_class_create_generic_2): Don't do anything for dynamic
1236         generic instances.  Set `klass->parent' here and also call
1237         mono_class_setup_parent() here. 
1239         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
1240         `MonoType *parent' argument; set `ginst->parent' before calling
1241         mono_class_create_generic_2(), so we set the correct parent.
1243 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
1245         * reflection.c: allow getting attributes from ModuleBuilder
1246         (used by ikvm).
1248 2004-11-17  Martin Baulig  <martin@ximian.com>
1250         * class.c (mono_class_create_from_typedef): If a type parameter is
1251         inherited from an outer class, set its owner to that class.
1253 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
1255         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
1256           for (int*) written size. This fixes bug #69592.
1258 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
1260         * icall.c: Added IsAuthenticodePresnet internal call.
1261         * image.c|h: New function that check a MonoImage for an Authenticode
1262         signature in the certificate PE data directory.
1263         * security.c|h: New internal call to ask the runtime if an 
1264         Authenticode signature seems referenced in the PE header.
1266 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
1268         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
1270         * reflection.c (mono_image_create_pefile): Free the assembly streams
1271         after writing out the assembly file.
1273         * object.c (mono_runtime_run_main): Fix small memory leak.
1275         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
1276         property access modifiers. Fixes #69389.
1278 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
1280         * domain.c, object.c, object-internals.h, domain-internals.h,
1281         object.h, marshal.c: keep dynamic code info per domain.
1283 2004-11-15  Martin Baulig  <martin@ximian.com>
1285         * class.c (mono_type_get_name_recurse): Put type arguments in
1286         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
1287         see bug #68387.
1289 2004-11-15  Martin Baulig  <martin@ximian.com>
1291         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
1292         (mono_class_setup_vtable): When computing `the_cname' for a
1293         generic instance, don't include the namespace since we'd otherwise
1294         add it twice.
1296 2004-11-15  Martin Baulig  <martin@ximian.com>
1298         * class.c (mono_class_create_generic): Changed return type to void.
1299         (mono_class_create_generic_2): New public function; setup
1300         `class->method', `class->field' and `class->interfaces' here
1301         instead of in mono_class_init().
1303         * class.h (mono_class_create_generic): Moved to class-internals.h.
1305 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
1307         * reflection.c (mono_image_create_pefile): take a file HANDLE.
1308         rather than writing to memory, write to this file. Right now,
1309         we are just writting into a buffer, and copying that. However
1310         we can avoid the buffer later.
1312         (mono_dynamic_stream_reset): new function
1314         * icall.c, object-internals.h: update for the above.
1316 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
1318         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
1319         have been using gc'd memory. First it is slower, unlikely
1320         the comment in the source code said, secondly, it increases
1321         our footprint to do it in the gc.
1323         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
1324         the method so that it does not have to copy to managed code.
1326 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
1328         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
1330 2004-11-12  Martin Baulig  <martin@localhost>
1332         * reflection.c (mono_image_create_token): Allow generic method
1333         definitions here, since they may appear in an `.override'; see
1334         gen-98/gen-99 for an example.
1336 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
1338         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
1339         #69365.
1341         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
1342         descriptive.
1344 2004-11-11  Martin Baulig  <martin@ximian.com>
1346         * class.c (mono_class_setup_vtable): In an explicit interface
1347         implementation, the method name now includes the arity.
1349 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
1351         * object.c (mono_array_full_copy): Fix warning.
1353 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
1355         * appdomain.c: Removed look_for_method_by_name(). Use the new method
1356         mono_class_get_method_from_name() instead.
1357         
1358         * class-internals.h: Added two new types of wrappers. 
1359         Added MonoRemotingTarget enum. Added new trampoline function type, which
1360         takes an additional MonoRemotingTarget value as parameter, so it is
1361         possible to request a trampoline for a specific target.
1362         
1363         * class.c: Added new mono_class_get_method_from_name() method.
1364         
1365         * class.h: In MonoRemoteClass, we can have now to vtables, one for
1366         general remoting sinks and one specific for cross domain calls.
1367         
1368         * debug-helpers.c: Added new wrapper names.
1369         
1370         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
1371         of a remote class.
1372         
1373         * image.c: Porperly delete value objects form the remoting invoke hashtable.
1374         
1375         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
1376         with several other methods (mono_marshal_get_xappdomain_dispatch,
1377         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
1378         and others) can generate a fast remoting wrapper for cross domain calls.
1379         More information can be found in docs/remoting.
1380         Other changes: Removed mono_find_method_by_name, and used
1381         mono_class_get_method_from_name instead.
1382         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
1383         is stored in the remoting invoke hashtable.
1384         
1385         * marshal.h: published the new method for getting the xdomain wrapper,
1386         and also added a method for getting the adequate wrapper for a given
1387         method and target.
1388         
1389         * object-internals.h, object.c: Added a couple of methods for capying and
1390         cloning arrays.
1391         Modified mono_install_remoting_trampoline, which takes the new remoting
1392         trampoline that has a remoting target as parameter.
1393         mono_class_proxy_vtable now also takes a remoting target as parameter, and
1394         will return the most suitable vtable for the target.
1395         Added mono_remote_class_vtable, which returns the vtable of a remote class
1396         (which can be the normal remoting vtable or the xdomain vtable).
1397         
1398         * threads.c: the xdomain invoke and dispatch wrappers must also be
1399         protected against interruptions.
1401 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1403         * icall.c: use memmove in BlockCopyInternal when the source and
1404         destination arrays are the same.
1406 2004-11-09  Martin Baulig  <martin@ximian.com>
1408         * class-internals.h (MonoGenericContainer): Removed `method' and
1409         `signature', replaced them with `is_method' and `is_signature'
1410         flags.  Added `context'.
1412         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
1413         instead of a `MonoGenericContainer *'.
1415         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
1416         for dynamic type parameters.
1417         (mono_metadata_load_generic_params): Setup `container->context'.
1419         * reflection.c (mono_reflection_setup_generic_class): Setup
1420         `tb->generic_container->context'.
1421         (do_mono_reflection_bind_generic_parameters): Use
1422         mono_class_inflate_generic_type() to correctly inflate types,
1423         rather than using our own hack just for MONO_TYPE_VAR.
1425 2004-11-09  Martin Baulig  <martin@ximian.com>
1427         * class.c (mono_class_inflate_generic_method): Small fix; don't
1428         crash here.
1430         * icall.c
1431         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
1432         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
1433         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
1434         (ves_icall_Type_BindGenericParameters): Likewise.
1435         (ves_icall_Type_get_IsGenericInstance): Likewise.
1436         (ves_icall_Type_GetGenericParameterPosition): Likewise.
1437         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
1438         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
1439         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
1441 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
1443         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
1444         assembly versions and public key tokens. Fixes #69113.
1446 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
1448         * metadata.c: fix bug introduced with the type cache changes
1449         on 2004-11-06.
1451 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
1453         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
1454         the MonoClass pointer instead of the token in exception clauses.
1455         * reflection.c: updates for the above and make the code not depend
1456         on the structure of MonoExceptionClause.
1458 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
1460         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
1461         Add support for dynamic assemblies. Fixes #69114.
1463         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
1465 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
1467         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
1468         since most only those methods use it. the code member of
1469         MonoMethodPInvoke was dead, so that can be removed too. Also,
1470         remove inline_count (again, not used), and move slot so that it
1471         can share bits with some other flags. This saves 8 bytes in the
1472         structure and gives us about 50 kb back for mcs helloworld.cs
1474         * *.[ch]: Do naming changes for the above.
1476         * loader.c (mono_method_get_header): Lazily init the header
1477         on first access.
1478         (mono_get_method_from_token): don't init the header here
1479         (mono_free_method): the header may never be allocated
1481         Overall, this saves 150 kb of unmanaged allocations
1482         for mcs helloworld.cs. That accounts for 10% of the unmanaged
1483         memory at runtime.
1484         
1485         * loader.c, loader.h (mono_method_get_header): new accessor.
1487         * *.[ch]: use the above method. Prepares us to lazily load
1488         the header.
1490         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
1491         three warnings, which are actual bugs (see 69206).
1493         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
1494         unused. Saves a cool 4 bytes / method.
1496 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
1498         * metadata.c (builtin_types): Add types for System.Object here.
1499         (mono_metadata_parse_type_full): Cache MonoType*'s that are
1500         for a class or valuetype from klass->this_arg or klass->byval_arg.
1502         On mcs for a hello world, this gets us down from 21836 MonoType's
1503         to 14560.
1505         (mono_metadata_free_type): Account for the above change.
1507 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
1509         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
1510         exception instead of asserting if name is null.
1511         (ves_icall_System_AppDomain_GetData): Ditto.
1513 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
1515         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
1516         EnumBuilder.
1518         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
1519         Return NULL when the domain does not have entry_assembly set.
1521         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
1522         Add a 'resource_modules' argument.
1523         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
1525         * reflection.c (mono_reflection_create_runtime_class): Move setting
1526         of wastypebuilder here, so mono_get_type_object () returns a MonoType
1527         for enums too.
1529         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
1530         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
1531         Throw an ArgumentNullException if 'ptr' is null.
1533         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
1534         assemblies here. Fixes #69020.
1536 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
1538         * reflection.c (build_compressed_metadata): Fix the previous patch for
1539         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
1540         the stack.
1542 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
1544         * assembly.c (mono_assembly_names_equal): Allow a match if one of
1545         the cultures is false. Fixes #69090.
1547         * reflection.c (build_compressed_metadata): Fix invalid memory read 
1548         detected by valgrind.
1549         
1550         * reflection.c (mono_reflection_get_type): Avoid triggering a 
1551         TypeResolve multiple times for the same type. Fixes #65577.
1553 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
1555         * marshal.c: Avoid using ldftn to call managed functions. It is
1556         much slower than just a call.
1558         * reflection.c (mono_module_get_object): free the basename we
1559         allocate here from glib.
1560         
1561         * reflection.c (ensure_runtime_vtable): make sure to free
1562         overrides.  Also, we were allocating an array of MonoMethod not an
1563         array of MonoMethod*.
1565         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
1567         * image.c (mono_image_close): free image->guid here.
1569 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
1571         * reflection.c: Fix some spec conformance issues with the PE file
1572         structures so mcs compiled apps run on the Net 2.0 beta.
1574 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
1576         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
1577         Implement this. Fixes #67264.
1579         * debug-helpers.h debug-helpers.c marshal.c: Move 
1580         mono_find_method_by_name to debug-helpers.c.
1582 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
1584         * object.c (mono_release_type_locks): type_initialization_hash is
1585         a GHashTable.
1587         * reflection.c object.c object-internals.h: Fix warnings.
1589         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
1590         without accessors. Fixes #61561.
1592         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
1593         application base from the root domain if not set. Fixes #65641.
1594         (mono_runtime_init): Fix warning.
1596 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1598         * appdomain.c: call mono_thread_pool_init.
1599         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
1600         of worker threads based on the number of CPUs and the environment
1601         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
1602         for non-windows (windows) systems.
1604 2004-10-27  Chris Toshok  <toshok@ximian.com>
1606         * mono-debug-debugger.c (write_class): don't call mono_class_init
1607         here, as even with the check for (!klass->init_pending), we get
1608         into a situation where we're hitting cycles in class
1609         initialization.  Fixes #68816.
1611 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
1613         * image.c: Avoid overwriting values in the loaded_images_hash when an
1614         assembly is loaded multiple times. Fixes #61152.
1616         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
1617         so multiple satellite assemblies for the same name can be loaded.
1618         Fixes #68259.
1620         * mono_domain_assembly_preload: Actually return the loaded assembly, 
1621         not NULL.
1623         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
1624         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
1626         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
1627         pending finalizers are not invoked after the appdomain has been 
1628         unloaded. Fixes #67862.
1630 2004-10-22  Martin Baulig  <martin@ximian.com>
1632         * mono-debug-debugger.c
1633         (mono_debugger_runtime_invoke): Don't box valuetypes.
1635 2004-10-22  Chris Toshok  <toshok@ximian.com>
1637         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
1638         don't hide private methods.
1640 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
1642         * icall.c: Allows the runtime to "share" (when known) the public key
1643         token of an assembly. This avoid the need to recalculate the token 
1644         (from the public key) in managed code.
1646 2004-10-21  Chris Toshok  <toshok@ximian.com>
1648         * debug-helpers.c (append_class_name): argh, revert last patch.
1649         
1650 2004-10-21  Chris Toshok  <toshok@ximian.com>
1652         * debug-helpers.c (append_class_name): use '+' as the delimiter,
1653         not '/', so that it matches what the debugger uses to look up
1654         methods.
1656 2004-10-21  Martin Baulig  <martin@ximian.com>
1658         * mono-debug-debugger.c (mono_debugger_throw_exception): New
1659         public method; this is called each time an exception is thrown and
1660         allows the debugger to use exception catch points.
1662 2004-10-21  Martin Baulig  <martin@ximian.com>
1664         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
1665         the stack pointer and the exception object in some struct and pass
1666         that to the debugger.
1668 2004-10-21  Chris Toshok  <toshok@ximian.com>
1670         * mono-debug-debugger.c (do_write_class): add instance/static
1671         event support.  We don't expose "raise" or "other" yet.
1672         (event_is_static): new method.
1674 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
1676         * mono-debug-debugger.c
1677         (mono_debugger_handle_exception): Remove
1678         bogus return value for fussy compilers.
1680 2004-10-20  Martin Baulig  <martin@ximian.com>
1682         * mono-debug-debugger.c
1683         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
1684         (mono_debugger_handled_exception): Likewise.
1686 2004-10-20  Martin Baulig  <martin@ximian.com>
1688         * mono-debug-debugger.h (MonoDebuggerEvent): Added
1689         MONO_DEBUGGER_EVENT_EXCEPTION.
1691         * mono-debug-debugger.c (mono_debugger_handle_exception): New
1692         public function to send the debugger a notification for an
1693         exception and inform it about a catch/finally clause.
1695 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
1697         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
1698         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
1699         fix 2.95 build. 
1701         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
1703 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
1705         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
1706         marshalled as [In,Out]. Fixes #58325.
1708 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
1710         * reflection.c (mono_method_body_get_object): Implement some fields.
1712 2004-10-12  Martin Baulig  <martin@ximian.com>
1714         * reflection.c (mono_reflection_bind_generic_parameters): Small
1715         fix, correctly retrieve our parent from a generic instance.
1717 2004-10-12  Martin Baulig  <martin@ximian.com>
1719         * metadata.c (mono_metadata_generic_param_equal): We always have
1720         an owner.
1722         * class.c
1723         (mono_class_from_generic_parameter): We need to have an owner.
1724         (my_mono_class_from_generic_parameter): Likewise.
1726         * reflection.c (mono_reflection_setup_generic_class): Renamed to
1727         mono_reflection_create_generic_class() and added a new
1728         mono_reflection_setup_generic_class().  
1729         (mono_reflection_initialize_generic_param): If we're a nested
1730         generic type and inherited from the containing class, set our
1731         owner to the outer class.
1733 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
1735         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
1737         * reflection.c (mono_method_body_get_object): New function to create
1738         a MethodBody object.
1740         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
1742 2004-10-11  Martin Baulig  <martin@ximian.com>
1744         * metadata.c (_mono_metadata_type_equal): Renamed to
1745         do_mono_metadata_type_equal() and made static.
1747 2004-10-11  Martin Baulig  <martin@ximian.com>
1749         * appdomain.c: Bump corlib version number to 28.
1751 2004-10-10  Martin Baulig  <martin@ximian.com>
1753         * class-internals.h
1754         (MonoGenericInst): Added `MonoGenericContainer *container'.
1755         (MonoGenericMethod): Likewise.
1756         (MonoGenericContext): Likewise.
1757         (MonoGenericParam): Added `MonoGenericContainer *owner'.
1759         * metadata.c
1760         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
1761         (do_mono_metadata_parse_generic_inst): Likewise.
1762         (mono_metadata_parse_type_full): New public method.  This is the actual
1763         mono_metadata_parse_type() implementation - with an additional
1764         `MonoGenericContainer *' argument.
1765         (mono_metadata_parse_array_full): Likewise.
1766         (mono_metadata_parse_signature_full): Likewise.
1767         (mono_metadata_parse_method_signature_full): Likewise.
1768         (mono_metadata_parse_mh_full): Likewise.
1769         (mono_type_create_from_typespec): Likewise.
1770         (mono_metadata_interfaces_from_typedef_full): New public method;
1771         this is similar to the other _full() methods, but we take a
1772         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
1773         (mono_metadata_parse_generic_param): Take an additional
1774         `MonoGenericContainer *' argument and lookup the MonoGenericParam
1775         from that container.
1776         (mono_metadata_generic_param_equal): New static method to compare
1777         two type parameters.
1778         (_mono_metadata_type_equal): New static method; takes an
1779         additional `gboolean signature_only' argument - if true, we don't
1780         compare the owners of generic parameters.
1781         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
1782         with a TRUE argument - do a signature-only comparision.
1784         * loader.c: Use the new _full() methods and pass the
1785         MonoGenericContainer to them.
1787         * object-internals.h (MonoReflectionTypeBuilder): Added
1788         `MonoGenericContainer *generic_container' field.
1789         (MonoReflectionMethodBuilder): Likewise.
1791 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
1793         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
1794         case initial images of dynamic assemblies.
1796         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
1798         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
1800         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
1801         length of event->other array.
1802         (typebuilder_setup_events): Ditto.
1804         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
1805         'assembly_by_name' and add an 'assemblies' list.
1807         * assembly.h assembly.c: Add a new search hook for determining whenever
1808         an assembly is already loaded. Use this instead of searching in the
1809         loaded_assemblies list.
1811         * domain.c appdomain.c: Implement the new search hook so loaded 
1812         assemblies are now scoped by appdomain. Fixes #67727.
1814 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
1816         * threads.c (mono_thread_attach): Initialize synch_lock field so
1817         mono_thread_detach works again.
1819         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
1820         'lib' too. Fixes #63130.
1822 2004-10-06  Jackson Harper  <jackson@ximian.com>
1824         * culture-info-tables.h: regenerated.
1826 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
1828         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
1829         implemented by other interfaces in the result. Fixes #65764.
1830         
1831         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
1832         Handle unloadable modules without crashing.
1834         * image.c (load_modules): Revert the previous patch since modules must
1835         have a fixed index inside the array.
1836         
1837         * image.c (load_modules): Don't include native modules in the modules
1838         array.
1840 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
1842         * reflection.h: Add param_defaults field.
1844         * reflection.c: Add support for parameter defaults in dynamic methods.
1845         Fixes #64595.
1847         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
1848         an empty string when a type has no namespace. Fixes #64230.
1850 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
1852         * tabledefs.h: Added "internal" security actions to support non-CAS
1853         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
1854         Note: they do not seems to be used anymore in 2.0 (new metadata format)
1856 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
1858         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
1859         constructor of abstract class. Fixes #61689.
1861 2004-10-04  Martin Baulig  <martin@ximian.com>
1863         * class-internals.h (MonoGenericContainer): New type.
1864         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
1865         `MonoGenericContainer *generic_container'.
1866         (MonoClass): Replaced `gen_params' and `num_gen_params' with
1867         `MonoGenericContainer *generic_container'.
1869         * metadata.c (mono_metadata_load_generic_params): Return a
1870         `MonoGenericContainer *' instead of a `MonoGenericParam *';
1871         removed the `num' argument.
1873 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
1875         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
1876         for dynamic images.
1878         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
1879         machine fields.
1881         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
1883         * reflection.c: Save pe_kind and machine values into the generated
1884         image file.
1886         * appdomain.c: Bump corlib version number.
1888         * object-internals.h: Reorganize layout of LocalBuilder.
1890         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
1891         New helper function.
1893         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
1894         created MonoType for dynamic types. Fixes #66180.
1896 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
1898         * threadpool.c: the ares hashtable needs a critical section around it.
1899         this prevents some nasty segfaults
1901 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
1903         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
1904         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
1905         bug 67324).
1906         
1907 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
1909         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
1910         
1911 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
1913         * image.c: Always canonicalize image file names, to avoid loading
1914         the same assembly twice when referenced using a relative path.
1916 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
1918         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
1920         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
1922         * marshal.c: Fix warnings.
1924 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
1926         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
1927         attempting to marshal the delegate_trampoline as the method_addr.
1928         This patch has a static hashtable of marshalled delegates so that 
1929         we can map delegate_trampoline addresses back to delegates.  This
1930         allows a delegate passed to managed code to be passed back into native
1931         code.  Fixes #67039
1933 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
1935         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
1937         * reflection.c (method_encode_code): Align method headers properly.
1938         Fixes #66025.
1940 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
1942         * marshal.c: In the runtime invoke wrapper, reset the abort
1943         exception if it is cached. This avoids the automatic rethrowal of 
1944         the exception after the catch of the wrapper. Also check for pending
1945         interruptions before calling the managed method. This is done using
1946         the new method emit_thread_force_interrupt_checkpoint, since the
1947         normal checkpoint method is ignored when running the invoke wrapper.
1948         * object.c: If the abort exception is rethrown, set the abort_exc
1949         field of the thread, so it will be rethrown aftere every catch.
1950         * threadpool.c: Only run an interruption checkpoint if what has been
1951         requested is a stop of the thread (aborts will be ignored).
1952         * threads.c: By default, a thread will now never be interrumped while
1953         running the runtime invoke wrapper (this ensures that runtime_invoke
1954         will always return to the caller if an exception pointer is provided).
1955         There is a new special method mono_thread_force_interruption_checkpoint()
1956         to force an interruption checkpoint even if running a protected
1957         wrapper, which is used by the same runtime invoke wrapper to do a check
1958         at a safe point.
1960 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
1962         * object.c, object-internals.h: Implemented mono_release_type_locks,
1963         which releases the cctor locks held by a thread.
1964         * threads.c, threads.h: In thread_cleanup, release cctor locks held
1965         by a thread. Added mono_thread_exit() method to be used to safely stop
1966         a thread.
1968 2004-09-28  Raja R Harinath  <rharinath@novell.com>
1970         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
1971         Move null check before dereference.  Avoid indexing beyond the end
1972         of the 'modules' array.
1974 2004-09-28  Raja R Harinath  <rharinath@novell.com>
1976         * metadata-internals.h (MonoImage): Add module_count field.
1977         * image.c (load_modules): Set image->module_count.
1978         (mono_image_load_file_for_image): Use image->module_count.
1979         * reflection.c (mono_image_load_module): Append to image->modules array 
1980         of dynamic assembly.
1981         (mono_module_get_object): Fix loop to actually increment index.
1982         Use image->module_count.
1983         * assembly.c (mono_assembly_load_references): Use image->module_count.
1984         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
1985         Likewise.
1987 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
1989         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
1990         Avoid assert on generic types.
1992 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
1994         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
1996         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
1998         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
1999         function to convert a MarshalSpec structure to its managed counterpart.
2001         * reflection.c: Fix warnings.
2002         
2003         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
2004         field.
2006         * icall.c (mono_create_icall_signature): Fix build.
2008 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
2010         * icall.c: Add MakePointType icall.
2012         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
2013         warnings.
2015 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2017         * threadpool.c: reuse allocated slots in the queue.
2019 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
2021         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
2023         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
2025         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
2026         previous change.
2028         * tabledefs.h: Add constants for pinvoke attributes BestFit and
2029         ThrowOnUnmappableChar.
2031         * icall.c (ves_icall_Type_GetPacking): New icall.
2033 2004-09-24  Martin Baulig  <martin@ximian.com>
2035         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
2037 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2039         * appdomain.c:
2040         (mono_domain_set): allow setting a domain that is being unloaded.
2041         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
2042         being unloaded.
2044 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
2046         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
2047         the GetCustomAttributes icall.
2049 2004-09-23  Martin Baulig  <martin@ximian.com>
2051         * object-internals.h (MonoReflectionGenericParam): Replaced
2052         'has_ctor_constraint', `has_reference_type' and `has_value_type'
2053         with `guint32 attrs'.
2055 2004-09-23  Martin Baulig  <martin@ximian.com>
2057         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
2059 2004-09-23  Martin Baulig  <martin@ximian.com>
2061         * object-internals.h (GenericParameterAttributes): New enum.
2063 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
2065         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
2066         
2067         * class.c (init_events): Fill out event->other field.
2069         * class.c: Fix warnings.
2071         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
2073 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
2075         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
2076         walk which doesn't supply the IL offset.
2078 2004-09-22  Martin Baulig  <martin@ximian.com>
2080         * reflection.c (mono_reflection_setup_internal_class): If we're
2081         System.ValueType, System.Object or System.Enum, set
2082         `klass->instance_size' and create the vtable.
2083         (mono_reflection_create_internal_class): If we're an enum type,
2084         get the base class from our current corlib.
2086 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
2088         * reflection.h (MonoResolveTokenError): New type.
2090         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
2091         icall.
2093         * icall.c: Add an 'error' argument to the ResolveToken icalls.
2095 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
2097         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
2098         Support also calling constructors, but only for already allocated objects.
2100 2004-09-17  Geoff Norton <gnorton@customerdna.com>
2102         * reflection.c (type_get_qualified_name): If the klass is null
2103         return the typename to avoid a NullRefEx.
2104         (encode_cattr_value): Get the qualified name of the boxed type,
2105         not the underlying enumtype.  Fixes #62984.
2107 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
2109         * marshal.c: Fix problems with previous checkin.
2111 2004-09-21    <vargaz@freemail.hu>
2113         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
2114         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
2116         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
2118 2004-09-21  Geoff Norton <gnorton@customerdna.com>
2120         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
2121         should only return a type for pointers, arrays, and passbyref types.
2122         Fixes bug #63841.
2124 2004-09-21  Martin Baulig  <martin@ximian.com>
2126         * domain.c (mono_debugger_check_runtime_version): New public
2127         function.
2129         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
2131 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
2133         * reflection.c: Added missing sort to the declarative security 
2134         attributes table. MS implementation stops seeing the attributes if the
2135         token number regress in the table (as shown by ildasm and permview).
2137 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
2139         * object-internals.h (MonoReflectionModule): Add 'token' field.
2140         
2141         * reflection.c (mono_reflection_get_token): Add support for Module
2142         and Assembly.
2143         (mono_module_get_object): Set 'token' field.
2144         (mono_module_file_get_object): Set 'token' field.
2146         * icall.c: Add new Assembly and Module icalls.
2148         * appdomain.c: Bump corlib version.
2150 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
2152         * loader.h loader.c class.h class.c: Add helper functions for obtaining
2153         tokens of metadata objects.
2155         * reflection.h reflection.c (mono_reflection_get_token): New function
2156         to obtain the token of a metadata object.
2158         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
2160 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
2162         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
2163         
2164         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
2166 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
2168         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
2169         * object-internals.h: Added 3 MonoArray* members to MonoReflection
2170         AssemblyBuilder to access the permissions set in the class lib.
2171         * reflection.c: Added security attributes encoding step in 
2172         mono_image_build_metadata.
2173         * tabledefs.h: Added new security actions defined in 2.0:
2174         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
2176 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
2178         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
2179         macro parameter.
2181 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
2183         * locales.c: nullify the ICU_collator member of CompareInfo when it is
2184           finalized. There where random SIGSEVs at program termination, when
2185           an object being finalized was trying to do a string comparison and
2186           the current culture was already finalized.
2188 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2190         * threads.c: call thread_cleanup before finishing the thread if we get
2191         there.
2193 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
2195         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
2196         assemblies from the parent. Fixes #65665.
2198 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
2200         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
2201         modifiers.
2203 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
2205         * reflection.h: add prototype for mono_get_dbnull_object
2206         * reflection.c: add prototypes for get_default_param_value_blobs 
2207         and mono_get_object_from_blob for fussier compilers
2209 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
2211         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
2212         false deadlock checks in class initialization.
2214 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
2216         * image.c (mono_image_addref): Fix comment.
2218         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
2219         possible.
2221 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
2223         * reflection.c (mono_param_get_objects): Modified to return
2224         ParameterInfo.DefaultValue object.
2226         (get_default_param_value_blobs):
2227         (mono_get_object_from_blob):
2228         (mono_get_dbnull_object): New helper routines. 
2230         * object.c (mono_get_constant_value_from_blob): New helper routine
2231         carved out from get_default_field_value ()
2233         * object-internals.h (mono_get_constant_value_from_blob): Added
2234         function declaration.
2236 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
2238         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
2239         referenced assemblies. Fixes #62135.
2241         * exception.h exception.c (mono_get_exception_file_not_found2): New
2242         helper function.
2244 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
2246         * class.h class.c: Add mono_type_get_underlying_type ().
2248 2004-09-09  Geoff Norton <gnorton@customerndna.com>
2250         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
2251         Fix GetTypes() to support dynamically created assemblies.
2253 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
2255         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
2256         
2257         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
2258         previous patch.
2260         * reflection.h reflection.c loader.c: Allow dynamic construction of
2261         pinvoke methods. Fixes #65571.
2262         
2263         * reflection.c (mono_reflection_get_type): Revert previous change since
2264         it causes regressions.
2266 2004-09-08  Martin Baulig  <martin@ximian.com>
2268         * class.c (class_compute_field_layout): Don't call
2269         mono_class_layout_fields() for open generic instances.
2271 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
2272         * threads.c appdomain.c: fix typo in GC macro
2274 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2276         * threads.c: don't call mono_thread_detach() in start_wrapper(),
2277         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
2279 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
2281         * image.c (mono_image_close): Applied patch from 
2282         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
2283         assembly is loaded multiple times from data.
2284         
2285         * image.c (mono_image_open): Fix warning.
2287 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
2289         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
2290         once. Fixes #58334.
2291         
2292         * reflection.c (mono_reflection_create_runtime_class): Initialize
2293         klass->nested_classes. Fixes #61224.
2295 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
2297         * threads.c: sched_yield() on exit, to allow threads to quit.
2299 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
2301         * object.c (mono_unhandled_exception): Remove leftover debug code.
2303 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
2305         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
2307 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
2309         * marshal.c (emit_marshal_array): Really null terminate string arrays.
2310         
2311         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
2313 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
2315         * marshal.c (emit_marshal_array): Null terminate string arrays.
2316         
2317         * marshal.c (raise_auto_layout_exception): Fix warning.
2319         * reflection.c (mono_param_get_objects): Initialize the default value
2320         with DBNull.Value, not null. Fixes #62123.
2322 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
2324         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
2325         throw an exception with a cute explanation.
2327 2004-09-06  Dick Porter  <dick@ximian.com>
2329         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
2330         Close the new process's thread handle, as we don't use it.  The
2331         handle stays around forever otherwise.
2333 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
2335         * object.c (arith_overflow): Fix warning.
2337         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
2338         calling conventions in method refs. Fixes #65352.
2340         * reflection.c: Fix warnings.
2342 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
2344         * icall.c: Add a new icall for Array.Clear
2346 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
2348         * object.c: When allocating an array, we have to throw
2349         an overflow exception if any of the lengths are < 0.
2351 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
2353         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
2354         properly. Also move implementation of string array marshalling to 
2355         managed code. Fixes #42316.
2357 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2359         * assembly.c: provide more information when loading an assembly fails.
2361 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2363         * filewatcher.c: don't expect the development fam package to be
2364         installed.
2366 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
2368         * marshal.c: Make a copy of the signature cookie since it will be
2369         freed by the caller.
2370         
2371         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
2373         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
2375         * metadata.c (mono_metadata_free_marshal_spec): New function to free
2376         marshal specs.
2378         * marshal.c: More refactoring.
2379         
2380         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
2381         smaller functions.
2383 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
2385         * object.c: In mono_message_invoke, fill the output parameter array after
2386           calling the managed method (it was done before the call). This fixes
2387           bug #59299.
2389 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
2391         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
2392         as well.
2394 2004-09-02  Martin Baulig  <martin@ximian.com>
2396         * class.c (mono_class_instance_size): Don't allow generic type
2397         definitions or open generic instances.
2398         (mono_class_array_element_size): If we're a value type, call
2399         mono_class_instance_size() on the original class.
2401         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
2402         handle generic instances.
2404         * mono-debug-debugger.c (write_type): Handle generic instances
2405         like classes.
2407 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
2409         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
2410         the allocation request fails. Fixes #65089.
2412         * object.c (mono_runtime_free_method): Do not call mono_free_method.
2413         
2414         * object.c (mono_runtime_free_method): New function to free a dynamic
2415         method.
2417         * marshal.c (mono_delegate_free_ftnptr): New function to free the
2418         delegate trampoline.
2420         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
2421         with hasthis as dynamic,
2423         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
2425         * domain.c (mono_jit_info_table_remove): New function to remove an
2426         entry from the jit info table.
2428         * class-internals.h (MonoMethod): Add 'dynamic' field.
2430         * loader.c: Fix warnings.
2432 2004-09-01  Martin Baulig  <martin@ximian.com>
2434         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
2435         instead of mono_debugger_lock() because the latter one is a no-op
2436         unless running in the debugger.
2438 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
2440         * class.c (class_compute_field_layout): Classes with auto-layout or
2441         reference fields are not blittable.
2442         
2443 2004-09-01  Dick Porter  <dick@ximian.com>
2445         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
2446         mono_image_get_filename() to get the assembly location.
2448         * icall.c:
2449         * metadata.h: Fix compile warnings
2451 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
2453         * class.c (class_compute_field_layout): System.Object is blittable.
2455         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
2456         as in/out. Fixes #59909.
2458 2004-09-01  Martin Baulig  <martin@ximian.com>
2460         * metadata.h (MONO_TYPE_ISREFERENCE): Call
2461         mono_metadata_generic_inst_is_valuetype() if we're a generic
2462         instance to check whether our underlying type is a reference type.
2464 2004-09-01  Martin Baulig  <martin@ximian.com>
2466         * metadata.c (mono_type_size): If we're a generic instance, call
2467         mono_class_value_size() for value types.
2469 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
2471         * marshal.c: Implement more custom marshalling functionality. Fixes
2472         #64915.
2474 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
2476         * mono-debug.c, debug-mono-symfile.c: add some locking love.
2478 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
2480         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
2482         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
2484         * icall.c: Fix some warnings.
2486         * threads.c (abort_appdomain_thread): Fix unref errors.
2487         (mono_thread_current): Fix THREAD_DEBUG define.
2489 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
2491         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
2493         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
2495 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
2497         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
2498         string arrays.
2500 2004-08-28  Martin Baulig  <martin@ximian.com>
2502         * metadata.c
2503         (mono_metadata_generic_inst_is_valuetype): New public function.
2505         * metadata.h (MONO_TYPE_ISSTRUCT): Call
2506         mono_metadata_generic_inst_is_valuetype() if we're a generic
2507         instance to check whether our underlying type is a valuetype.
2509 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
2511         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
2512         #63768.
2514 2004-08-25  Martin Baulig  <martin@ximian.com>
2516         * loader.c (mono_get_method_from_token): Abstract methods can also
2517         be generic and thus have type parameters.
2519         * metadata-internals.h
2520         (MonoDynamicImage): Added `GPtrArray *gen_params'.
2522         * reflection.c (mono_image_get_generic_param_info): Don't create a
2523         metadata row, just add an entry to the `gen_params' array.
2524         (build_compressed_metadata): Sort the `gen_params' array and then
2525         actually create the metadata.
2527 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2529         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
2531 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
2533         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
2535 2004-08-24  Martin Baulig  <martin@ximian.com>
2537         * class.cs (mono_class_is_subclass_of): Like an interface, a
2538         generic instance also derives from System.Object.
2540 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
2542         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
2543         custom modifiers to be in any order. Fixes #61990.
2545 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
2547         * object.c: Register mono_object_new_fast icall.
2548         
2549         * object.c (mono_class_get_allocation_ftn): Return to calling
2550         mono_object_new_fast, since it seems faster to compute the object 
2551         size in unmanaged code than passing it as a parameter.
2553         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
2555         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
2556         this function with Boehm as the oom handler, so we don't have to check
2557         the result of GC_malloc.
2559         * object.c: Remove checks for oom.
2561         * object.h object.c (mono_class_get_allocation_ftn): New function to
2562         return the icall which can be used to allocate an instance of a given
2563         class. 
2565         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
2567         * class-internals.h: Add 'enabled' field.
2569 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
2571         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
2573 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
2574         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
2575         value 0x0010.
2577 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
2579         * appdomain.c: use the Tls function for appdomain too,
2580         at Zoltan's request. Actually return in mono_context_get
2582         * appdomain.c, profiler.c, threads.c: use __thread
2584 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
2586         * appdomain.c threads.c: Call GC_CreateThread on windows.
2588         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
2589         multiple libraries since this don't work on windows.
2591 2004-08-18  Martin Baulig  <martin@ximian.com>
2593         * class-internals.h
2594         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
2595         MonoMethodHeader.
2597         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
2598         MonoMethodNormal since we also need it for abstract and interface
2599         methods.
2601         * reflection.c
2602         (build_compressed_metadata): Sort the GenericParam table.
2603         (mono_image_create_token): Added `gboolean create_methodspec'
2604         argument; this is false when generating a MethodImpl token.
2605         (reflection_methodbuilder_to_mono_method): Abstract and interface
2606         methods may also have generic parameters.
2608 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
2610         * appdomain.c: thread local alloc
2612 2004-08-17  Martin Baulig  <martin@ximian.com>
2614         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
2616         * icall.c
2617         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
2618         argument.
2620         * class.c (mono_type_get_full_name): New public function.
2621         (mono_type_get_name): Don't include the type arguments.
2623 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
2625         * Makefile.am: Build static versions of libmetadata and libmonoruntime
2626         for inclusion into the mono executable.
2628 2004-08-16  Martin Baulig  <martin@ximian.com>
2630         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
2631         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
2633 2004-08-14  Martin Baulig  <martin@ximian.com>
2635         * class.c (dup_type): Also copy the `byref' field.
2637 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
2639         * reflection.c (create_dynamic_mono_image): Revert the last change 
2640         since it breaks bootstrap.
2642 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
2644         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
2646         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
2647         not free them with g_free.
2649 2004-08-11  Martin Baulig  <martin@ximian.com>
2651         * reflection.c (mono_reflection_setup_internal_class): Also call
2652         mono_class_setup_mono_type() if we already have a `tb->type.type'.
2654 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
2656         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
2657         called during default (first) AppDomain creation. Keep track of
2658         Evidence when loading assemblies.
2660 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
2662         * opcodes.c, opcodes.h: reduce runtime relocations.
2664 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
2666         * culture-info.h, locales.c: fixes and chages to sue the new
2667         optimized format of the locale data.
2668         * culture-info-tables.h: regenerated.
2670 2004-08-06  Geoff Norton <gnorton@customerdna.com>
2671         
2672         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
2674 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
2676         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
2677         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
2678         * domain-internals.h: icall declaration.
2679         * icall.c: icall registration.
2680         * object-internals.h: New fields in MonoAssembly for CAS.
2682 2004-08-05  Duncan Mak  <duncan@ximian.com>
2684         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
2685         CEE_LDELEM_ANY.
2687 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
2689         * reflection.c: fix to deal with object[] arrays in custom ctors
2690         (bug #62550).
2692 2004-08-05  Martin Baulig  <martin@ximian.com>
2694         * class.c (mono_class_array_element_size): Added support for
2695         generic instances and correctly handle "recursive" types.
2697 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
2699         * assembly.c: Fix warnings.
2701 2004-08-04  Martin Baulig  <martin@ximian.com>
2703         * class.c
2704         (mono_type_get_name_recurse): Added `gboolean include_arity'
2705         argument specifying whether or not we should include the generic
2706         arity in the type name.
2707         (_mono_type_get_name): New static function.
2708         (mono_class_setup_vtable): If we're a generic instance, don't
2709         include the generic arity in the names of explicit method
2710         implementations.        
2712 2004-08-03  Martin Baulig  <martin@ximian.com>
2714         * class.c (mono_type_get_name_recurse): Enclose the generic type
2715         arguments in `<', '>'.
2717 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
2719         * gc.c: make GC warning messages use the trace API, they are just
2720         noise to most of the users.
2722 2004-08-03  Martin Baulig  <martin@ximian.com>
2724         * debug-mono-symfile.c (read_string): Correctly read the string.
2726 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
2728         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
2729         
2730         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
2731         icalls.
2732         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
2734 2004-07-30  Martin Baulig  <martin@ximian.com>
2736         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
2737         Reflect latest symbol writer changes.   
2739 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
2741         * object.c: always create an object if null is passed
2742         to Invoke() where a valuetype is expected.
2744 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
2746         * marshal.c (mono_marshal_init): make managed
2747         signatures match native ones better for 64bits.
2749 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2751         * appdomain.c: hack to build correctly the private bin path on windows.
2752         Fixes bug #61991.
2754 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
2756         * assembly.c: Load mscorlib from the correct framework directory
2757           (mono/<version>/mscorlib.dll).
2758         * appdomain.h: Added prototypes for new functions.
2759         * internals.h: Added some prototypes.
2760         * domain.c: When initializing the runtime, get from the executable and
2761           the configuration files the runtime version that the app supports.
2762           Added support methods for reading app.exe.config. Added list of versions
2763           supported by the JIT. Added two new methods: mono_init_from_assembly,
2764           which initializes the runtime and determines the required version from
2765           the provided exe file, and mono_init_version, which initializes
2766           the runtime using the provided version.
2767         * icall.c: Get machine.config from version-specific directory.
2768         * reflection.c: When generating an image, embed the version number
2769           of the current runtime.
2771 2004-07-28  Dick Porter  <dick@ximian.com>
2773         * socket-io.c
2774         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
2775         returned sockaddr size before creating the remote address object.
2776         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
2777         61608.
2779 2004-07-28  Dick Porter  <dick@ximian.com>
2781         * locales.c (string_invariant_compare_char): Fix invariant char
2782         compares between upper and lower cases.  Fixes bug 61458.
2784 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
2785         
2786         * marshal.c: actually cache stelem.ref wrappers.
2787         
2788 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
2790         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
2791         sections and remove the mono_cli_rva_map () function.
2793 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
2795         * debug-mono-symfile.c: fix one more endianess issue, from a patch
2796         by Geoff Norton (<gnorton@customerdna.com>).
2798 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
2800         * class.c: fix class loads for pointer types (typeof(int) !=
2801         typeof(int*)).
2803 2004-07-27  Martin Baulig  <martin@ximian.com>
2805         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
2806         reading the debugging information from an external ".mdb" file.
2808 2004-07-24  Martin Baulig  <martin@ximian.com>
2810         * reflection.c (mono_image_get_type_info): Only write a class
2811         layout entry if we actually have a size or a packing size.
2813 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
2815         * reflection.c (type_get_fully_qualified_name): 
2816         insert cast to get type checking of ?: with non-gcc compilers
2818 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
2820         * rand.c: use g_getenv for both lookups of
2821         MONO_EGD_SOCKET
2823 2004-07-17  Martin Baulig  <martin@ximian.com>
2825         * reflection.c (mono_reflection_bind_generic_method_parameters):
2826         Set `gmethod->reflection_info'.
2828 2004-07-17  Martin Baulig  <martin@ximian.com>
2830         * class.c (mono_class_create_from_typedef): Insert the newly
2831         created class into the hash table before computing the interfaces
2832         since we could be called recursively.
2834 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
2836         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
2837         function to implement stelem.ref in managed code
2838         * class-internals.h, debug-helpers.c: a new wrapper type
2839         for the above.
2841 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
2843         * gc.c: allow GC handles to work even when no GC is compiled in.
2844         Fix part of bug #61134 (GetAddrOfPinnedObject).
2846 2004-07-13  Peter Williams  <peter@newton.cx>
2848         * process.c (complete_path): Make sure we don't attempt to execute
2849         directories.
2851 2004-07-12  Geoff Norton <gnorton@customerdna.com>
2853         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
2854           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
2855           and will add/subtract the hour if needed
2857 2004-07-12  Martin Baulig  <martin@ximian.com>
2859         * reflection.c (mono_field_get_object): If we have
2860         `field->generic_info', take the attributes from
2861         `field->generic_info->generic_type'.    
2863 2004-07-12  Martin Baulig  <martin@ximian.com>
2865         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
2866         This function must be called before initializing the runtime.
2867         (mono_debug_init_1): New function; call this after initializing
2868         the runtime, but before loading the assembly.  It tells the
2869         debugger to load corlib and the builtin types.
2871         * mono-debug-debugger.c: Did some larger changes in the debugging
2872         code; support recursive class declarations, make sure we actually
2873         add all classes.
2875 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2877         * debug-helpers.c: undo my previous patch and fixed the real issue in
2878         ../mini/exceptions-x86.c
2880 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2882         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
2883         when no HOME env. variable was set and a NullRef was thrown in a .cctor
2884         called from other .cctors.
2886 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
2888         * loader.c: Removed the mono_loader_wine_init hack now that we are
2889         doing a managed version of Windows.Forms.
2891 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
2893         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
2894         threadpool.c, threads.c: remove static data from rootset.
2896 2004-07-09  Dick Porter  <dick@ximian.com>
2898         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
2899         Don't do any more processing if the matched length was 0.  It was
2900         increasing the size of the string before.  Fixes bug 61167.
2902 2004-07-09  Dick Porter  <dick@ximian.com>
2904         * socket-io.h:
2905         * socket-io.c
2906         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
2907         Add support for SO_PEERCRED if its available.
2909 2004-07-09  Peter Bartok <pbartok@novell.com>
2910         * loader.c: winelib.exe.so error message is now only displayed if
2911         MONO_DEBUG is set. To help us avoid questions when people are trying
2912         out the new Managed.Windows.Forms.
2914 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
2916         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
2917         for isinst and castclass wrappers.
2919         * class-internals.h icall.c: Move registration and lookup of JIT icalls
2920         to libmetadata from the JIT, so they could be used by the marshalling
2921         code and the interpreter.
2923         * marshal.c: Register marshalling related JIT icalls here instead of
2924         in mini.c. Use CEE_MONO_ICALL instead of the family of 
2925         CEE_MONO_PROC<x> opcodes to call marshalling functions.
2927         * metadata.h: Remove unneeded marshalling conversions.
2929         * opcodes.c: Update for new opcodes.
2930         
2931 2004-07-08  Martin Baulig  <martin@ximian.com>
2933         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
2934         (mono_debug_get_domain_data): Make this function static.
2936 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
2938         * gc.c, object.h: add nice GC handle API for embedders.
2940 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
2942         * reflection.c: more changes for the new api
2944         * object.c: When we reflect on a field w/ a constant value, it
2945         will not have a memory location, so we must access metadata. Also,
2946         allow easier reading of strings so that we can read them from
2947         the constant data.
2949         * class.c (mono_class_layout_fields): no need for literal fields here.
2951         * class-internals.h: api changes for const fields
2953         * icall.c (ves_icall_get_enum_info): use new apis for const fields
2955 2004-07-06  Martin Baulig  <martin@ximian.com>
2957         * mono-debug.h: Increment version number to 44.
2959         * mono-debug.c (mono_debug_add_wrapper): The second argument is
2960         now a gpointer, rewrote this whole method.
2962         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
2963         function.  Add information about the wrapper in a new "misc table".
2965         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
2966         for the new misc table.
2968 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
2970         * metadata-internals.h image.c: Add a cache for helper signatures.
2972         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
2974 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
2976         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
2977         delegates from a delegate. Fixes #61033.
2978         
2979         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
2980         marshalling of stringbuilder arrays. Fixes #59900.
2982 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
2984         * icall.c: Add EnumBuilder:setup_enum_type icall.
2986 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
2988         * icall.c: Added a new icall for the property version of
2989         OffsetOfStringData.
2991 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
2993         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
2994         it has a constant size across platforms.
2996         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
2997         stack trace.
2999 2004-06-29  Martin Baulig  <martin@ximian.com>
3001         * mono-debug.c (mono_debug_add_method): Protect the whole function
3002         in mono_debugger_lock(), not just parts of it.
3004 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
3006         * reflection.c: make sure padding bytes in heaps are zeroed.
3008 2004-06-24  David Waite  <mass@akuma.org>
3010         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
3011         image.c, loader.c, locales.c, marshal.c, metadata.c,
3012         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
3013         string-icalls.c, threads.c: change to C90-style comments from C99 /
3014         C++ -style
3016 2004-06-24  Dick Porter  <dick@ximian.com>
3018         * threads.c
3019         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
3020         return createdNew.  Fixes bug 60412.
3022         * threads-types.h: 
3023         * icall.c: Add createdNew parameter to CreateMutex icall
3025 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
3027         * reflection.c, object-internals.h: save default value in params.
3029 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3031         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
3032         no need to build a new path combining that with the application base.
3033         Fixes bug #60442.
3035 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
3037         * reflection.c: fixed minor standard compliance issues.
3039 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
3041         * reflection.c: fixed issue with encoding some custom attributes
3042         (arrays in properties and fields, bug #60411).
3044 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3046         * reflection.c: fix start address when copying the public key token.
3048 2004-06-23  Martin Baulig  <martin@ximian.com>
3050         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
3051         the `exc' object in a static object to put it into the GC's root set.
3053 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
3055         * reflection.c: make mono_reflection_setup_internal_class ()
3056         callable a second time to setup a new parent class.
3058 2004-06-23  Dick Porter  <dick@ximian.com>
3060         * threads.c: Check for WAIT_IO_COMPLETION return values.
3062 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
3064         * appdomain.c: Removed the g_free on the public key token. Now copy 
3065         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
3066         * assembly.c: Added public key token string value when loading 
3067         assemblies. Fix bug #60439.
3068         * icall.c: Added missing informations (like public key) in 
3069         GetReferencedAssemblies. Fix #60519.
3070         * image.h: Changed definition for public key token from const char*
3071         public_tok_value to guchar public_key_token [17];
3072         * reflection.c: Updated for changes to public key token.
3074 2004-06-22  Lluis Sanchez Gual
3076         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
3077         for the field in base classes.
3079 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
3081         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
3082         mark headers as not supported, they are installed only for use by the
3083         debugger.
3085 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
3087         * *.c, *.h: avoid namespace pollution in public headers.
3089 2004-06-21  Martin Baulig  <martin@ximian.com>
3091         * exception.c (mono_get_exception_security): It's in
3092         "System.Security", not in "System".
3094         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
3095         the exception classes.
3097 2004-06-21  Martin Baulig  <martin@ximian.com>
3099         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
3100         Protect the exception object from being finalized.
3102 2004-06-21  Martin Baulig  <martin@ximian.com>
3104         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
3105         public function.
3107 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
3109         * reflection.c: Load the assembly in mono_reflection_type_from_name,
3110         if it was not loaded before. Fix parts of #60439.
3112 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
3114         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
3115         code that was broken since Ben's change: wrappers are now
3116         dependent on the method signature only again.
3118 2004-06-21  Martin Baulig  <martin@ximian.com>
3120         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
3121         added interface support.
3123 2004-06-21  Martin Baulig  <martin@ximian.com>
3125         * class.c (mono_vtable_get_static_field_data): New public method.
3127 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
3129         * filewatcher.c : Windows build fix to be compliant with API changes.
3131 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
3133         * class.h, class.c: more accessors.
3134         * metadata.h, metadata.c: prepare for hiding MonoType and
3135         MonoMethodSignature: people should use the accessors from now on
3136         outside of the tree.
3138 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
3140         * *.c, *.h: more API cleanups.
3142 2004-06-18  Jackson Harper  <jackson@ximian.com>
3144         * assembly.c: Trace loading assemblies.
3145         * loader.c: Trace loading native libraries.
3146         * mono-config.c: Trace loading config files.
3147         
3148 2004-06-18  Dick Porter  <dick@ximian.com>
3150         * locales.c: Tell ICU the lengths of strings, it can cope with
3151         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
3153 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
3155         * image.c: swapped name/filename;
3157 2004-06-18  Martin Baulig  <martin@ximian.com>
3159         * mono-debug-debugger.c (write_class): Write the parent class at
3160         the end of the header.
3162 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
3164         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
3166 2004-06-17  Raja R Harinath  <rharinath@novell.com>
3168         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
3169         (bundle_obj): New conditional define.
3170         (BUILT_SOURCES): Remove.
3171         ($(bundle_srcs)): Make parallel-make safe.
3172         (libmonoruntime_la_LIBADD): Make unconditional.
3173         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
3174         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
3176 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
3178         * culture-info-tables.h: It was inconsistent with the latest
3179           supp info files.
3181 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
3183         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
3184         be loaded.
3186         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
3187         with gcc 2.95.
3189 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
3191         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
3192         cleaned up public header threads.h.
3194 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
3196         * Makefile.am, *.c, *.h: more API cleanups.
3198 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
3200         * Makefile.am: removed monosn from compilation.
3201         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
3202         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
3203         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
3204         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
3205         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
3206         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
3208 2004-06-15  Jackson Harper  <jackson@ximian.com>
3210         * assembly.c: Make locales lower case when searching the GAC for
3211         assemblies. gacutil will always make locales lowercase when
3212         installing so this effectively makes them case insensitive.
3213         
3214 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
3216         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
3217         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
3218           parameter which allows to choose whether the wait can be interrupted or 
3219           not. Also added the method mono_monitor_enter(), which locks the monitor
3220           using an infinite wait and without allowing interruption.
3221           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
3222           interrupted.
3223         * object.h: Added new fields in MonoThread. suspend_event holds the event
3224           used to susped/resume the thread. synch_lock is the lock object to use for
3225           modifying the thread state.
3226         * threads.c: Use the new synch_lock object for locking, instead of "this",
3227           which can generate deadlocks.
3228           Moved thread state change in Thread.Sleep and Thread.Join from managed
3229           to unmanaged code. This avoids a deadlock when the thread was suspended
3230           just after acquiring the thread lock.
3231           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
3232           Implemented Thread.Suspend using an event instead of ThreadSuspend,
3233           which is not fully implemented in the io-layer.
3234         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
3236 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
3238         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
3239         threads-types.h: more API cleanups.
3241 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
3243         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
3244         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
3245         threadpool.c, threads.c: first pass at the exported API cleanup.
3247 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
3249         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
3251 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3253         * icall.c: added internalGetHome.
3255 2004-06-14  Dick Porter  <dick@ximian.com>
3257         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
3258         possible to return successfully when '.' or '..' were the only
3259         entries in a directory, but were skipped.  The MonoIOStat was not
3260         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
3261         Fixes bug 59574.
3263 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
3265         * reflection.c: make binaries run on .Net 1.1 by default.
3267 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
3269         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
3271 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
3273         * marshal.c: keep track of struct size with explicit layout
3274         (bug #59979).
3276 2004-06-12  Martin Baulig  <martin@ximian.com>
3278         * mono-debug-debugger.c: Comment out a debugging g_message().
3280 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
3282         * reflection.c, reflection.h: do not free custom attrs that are cached.
3283         * icall.c: use braces to make code clearer.
3285 2004-06-11  Martin Baulig  <martin@ximian.com>
3287         * class.h (MonoInflatedField): New type.
3288         (MonoClassField): Replaced `MonoType *generic_type' with
3289         `MonoInflatedField *generic_info'.
3291         * icall.c
3292         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
3294 2004-06-11  Martin Baulig  <martin@ximian.com>
3296         * reflection.c (mono_image_create_method_token): Correctly encode
3297         varargs methods.
3299 2004-06-11  Martin Baulig  <martin@ximian.com>
3301         * metadata.c (mono_metadata_parse_method_signature): When parsing
3302         a MethodDef which has VarArgs, also set sentinelpos if we don't
3303         have any parameters.
3305 2004-06-11  Martin Baulig  <martin@ximian.com>
3307         * verify.c (mono_method_verify): In CEE_CALL, use
3308         mono_method_get_signature() to get the method's signature, unless
3309         we're a PInvoke method.
3311 2004-06-10  Jackson Harper  <jackson@ximian.com>
3313         * assembly.c: Use <path>/lib/mono/gac for the extra paths
3314         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
3315         logical name as the supplied path is just a prefix to the gac not
3316         the direct path to it.
3317         
3318 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
3320         * reflection.c: make the token for a created method match
3321         the token of the MethodBuilder it was created from
3322         (IKVM requires this behaviour now).
3324 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
3326         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
3327         reflection.c, socket-io.c: leak fixes.
3329 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
3331         * icall.c: handle sentinel pos in vararg methods in position different
3332         from 0.
3334 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3336         * culture-info-tables.h: freshly generated.
3338 2004-06-09  Martin Baulig  <martin@ximian.com>
3340         * loader.c (mono_get_method_constrained): Call `mono_class_init
3341         (constrained_class)'.   
3343 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
3345         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
3346         any methods. Fixes #59629.
3348 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
3350         * culture-info-tables.h: reflecting locale-builder updates.
3352 2004-06-08  Dick Porter  <dick@ximian.com>
3354         * object.h:
3355         * locales.c: Fixed compile warnings, including a real bug in
3356         CompareInfo_internal_compare.
3357         
3358 2004-06-08  Dick Porter  <dick@ximian.com>
3360         * locales.c
3361         (ves_icall_System_Globalization_CompareInfo_internal_index):
3362         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
3363         Double-check the resuls of usearches, because ICU currently
3364         ignores most of the collator settings here.  Fixes bug 59720.
3365         
3366 2004-06-08  Dick Porter  <dick@ximian.com>
3368         * locales.c
3369         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
3370         Fix memory leak and segfault-causing typo.  No idea how this one
3371         lasted so long without being noticed.
3373 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
3375         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
3376         any methods. Fixes #59629.
3378 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3380         * assembly.c:
3381         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
3382         own the critical section before). Removed dead code (that's done
3383         in the preload hook).
3385         (mono_assembly_load_with_partial_name): call the preload hook.
3387 2004-06-08  Martin Baulig  <martin@ximian.com>
3389         * metadata.c (mono_metadata_signature_alloc): Default
3390         `sentinelpos' to -1.
3392         * reflection.c (mono_image_get_array_token): Likewise.
3394 2004-06-08  Martin Baulig  <martin@ximian.com>
3396         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
3398         * metadata.c (mono_metadata_parse_method_signature): When parsing
3399         a MethodDef which has VarArgs, set sentinelpos.
3401         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
3402         `gint16' since we're using -1 for non-varargs methods.
3404         * reflection.c
3405         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
3406         (method_encode_signature): Added varargs support.
3407         (method_builder_encode_signature): Likewise.
3408         (mono_image_get_varargs_method_token): New static method.
3409         (mono_image_create_method_token): New public method; this is
3410         called via an icall instead of mono_image_create_token() when
3411         calling a varargs method.       
3413 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
3415         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
3417 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
3419         * culture-info-tables.h : Reflecting the latest locale-builder that
3420           fixed empty array representation ({} to {0}).
3422 2004-06-07  Jackson Harper  <jackson@ximian.com>
3424         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
3425         looking up extra gac paths. This allows MONO_GAC_PATH to act
3426         exactly like a prefix.
3427         
3428 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
3430         * reflection.c (mono_reflection_type_from_name): Make a copy of the
3431         type name before modifying it. Fixes #59405.
3433 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
3435         * culture-info.h: added fields for "all datetime patterns".
3436         * locales.c: (  ves_icall_System_Globalization_CultureInfo
3437           _construct_datetime_format ()): fill xxx_patterns fields.
3438         * object.h: added fields for "all datetime patterns" to
3439           MonoDateTimeFormatInfo.
3440         * culture-info-tables.h: reflecting locale-builder updates.
3442 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
3444         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
3445         the event has no add and remove methods. Fixes #59629.
3447 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
3449         * object.c: Fixed possible integer overflow when allocating large
3450         strings.
3452 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
3454         * culture-info-tables.h: reflecting locale-builder updates.
3456 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
3458         * culture-info-tables.h: reflecting locale-builder updates.
3460 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
3462         * culture-info-tables.h: reflecting locale-builder updates.
3464 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
3466         * threads.c: Made Thread.Sleep abortable.
3468 2004-06-02  Martin Baulig  <martin@ximian.com>
3470         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
3472         * debug-mono-symfile.h: Bumped symbol file version number to 37.
3474 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
3476         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
3478 2004-05-30  Jackson Harper  <jackson@ximian.com>
3480         * reflection.c: Do not hardcode assembly versions or public key
3481         tokens anymore. All of this except the corlib section was dead
3482         code anyways.
3483         
3484 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
3486         * object.c (mono_runtime_invoke_array): Automatically create boxed
3487         objects for byref valuetypes if needed. Fixes #59300.
3488         
3489         * object.c (mono_method_return_message_restore): Handle 
3490         MONO_TYPE_OBJECT as well.
3492 2004-05-28  Jackson Harper  <jackson@ximian.com>
3494         * reflection.c: The modified type encoding was causing build
3495         problems. Reverted for now.
3496         
3497 2004-05-28  Jackson Harper  <jackson@ximian.com>
3499         * reflection.c/h: Take an assembly ref so that we dont create
3500         fully qualified names when encoding types in the same assembly as
3501         the custom attribute being emitted.
3502         * appdomain.c: Increment version number.
3503         
3504 2004-05-26  Duncan Mak  <duncan@ximian.com>
3506         * icall.c
3507         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
3508         Set the full version number (major, minor, build, revision).
3510 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
3512         * marshal.c (emit_struct_conv): increment src/dst after blit
3513         (mono_marshal_get_managed_wrapper,
3514         mono_marshal_get_native_wrapper): make sure we have marshalling
3515         info before marshalling params (info computation affects
3516         blittable)
3518         * class.c (class_compute_field_layout): correctly deal with
3519         blittable
3520         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
3521         value types (as per what windows dows by default)
3522         (mono_class_setup_mono_type): System.ValueType is blittable
3523         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
3524         blittable
3526         * marshal.c (mono_marshal_load_type_info): flag types  as
3527         non-blittable if the native layout doesn't match the managed
3528         layout
3530 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3532         * appdomain.c: don't add stuff in the private search path that is
3533         above the application base. If application base is not set, there's
3534         no private search path.
3536 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
3538         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
3539         byref struct arguments in native->managed marshalling.
3541 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
3543         * marshal.c (mono_marshal_get_runtime_invoke): correctly
3544         cache methods using signature (special case for methods
3545         that are value type or string class)
3546         
3547         * image.c (mono_image_close): clean up allocated GSList's
3548         in runtime_invoke_cache.
3550 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3552         * mono-config.c: set the correct path for mono_cfg_dir on windows when
3553         there's no MONO_CFG_DIR environment variable defined.
3555 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3557         * threads.c: windows version must be >= 0x0500 to include OpenThread.
3559 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
3561         * threadpool.c: Really wait for 500ms after the async call, even if the wait
3562           is interrumped.
3563         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
3564           before waiting for it, and call CloseHandle after the wait to unref it.
3565           This will make sure that handles are not disposed too early.
3567 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3569         * appdomain.c:
3570         * appdomain.h:
3571         * icall.c: removed
3572         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
3573         needed now.
3575         * object.c: se the application_base only for the domain that runs
3576         Main. Fixes bug #59216,
3578 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3580         * appdomain.c:
3581         * object.c: only the domain in which Main is run have
3582         SetupInformation.ConfigurationFile set, so moved a few lines from
3583         appdomain.c to object.c.
3585 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3587         * appdomain.c: we tried to load [name].(dll|exe), but according
3588         to bug #57710, we must also try [culture]/[name].(dll|exe) and
3589         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
3590         There's a test case attached to bug #58922.
3592 2004-05-27  Dick Porter  <dick@ximian.com>
3594         * icall.c:
3595         * file-io.c: Implemented icalls for locking and unlocking regions
3596         in a file.
3597         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
3598         FALSE on error (fixes both compiler warning and real bug.)
3600 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
3602         * culture-info-tables.h: reflecting locale-builder updates.
3604           (Added missing ChangeLog entry for 05/26)
3606 2004-05-27  Jackson Harper  <jackson@ximian.com>
3608         * locales.c: Fix some cut and paste errors.
3609         
3610 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3612         * mono-config.c: set the correct path for config. directory on windows.
3614 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
3616         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
3617           on win32.
3619 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
3621         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
3622         from pinvoke functions.
3623         
3624         * marshal.c (mono_ftnptr_to_delegate): Implement this.
3626 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
3628         * culture-info-tables.h: reflecting locale-builder updates.
3630 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
3632         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
3633         #59086.
3635 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
3637         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
3638         * icall.c: Modified icalls for RNG.
3639         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
3640         Windows (CryptoAPI).
3642 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
3644         * locales.c: Fix build.
3646 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
3648         * culture-info-tables.h: reflecting locale-builder updates.
3650 2004-05-25  Jackson Harper  <jackson@ximian.com>
3652         * locales.c: When creating the current culture use the $LANGs
3653         specific culture. So DateTimeFormat and NumberFormat entries are created.
3654         
3655 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
3657         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
3658         a char array as parameter.
3660 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
3662         * image.c: In mono_image_open(), always use an absolute path name to
3663           look for already loaded images.
3665 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
3667         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
3668         missing in the windows build (like older cygwin include files).
3670 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
3672         * icall.c: Fixed check for possible integer overflow in Buffer_
3673         BlockCopy icall. Replaced comments style // by /* */.
3675 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
3677         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
3678         
3679         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
3680         check after MONO_VTADDR. Fixes pinvoke2.exe.
3682         * marshal.h marshal.c metadata.h: Add beginnings of support for
3683         ftnptr -> delegate marshalling.
3685 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
3687         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
3688         * threads.c: Fix warnings.
3690 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
3692         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
3693         * icall.c: Registered icalls for Suspend and Resume.
3694         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
3695           Thread.Abort.
3696         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
3697         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
3698         * process.c: Use WaitForSingleObjectEx.
3699         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
3700           checkpoints.
3701         * threads.c, threads.h: Make use of new Ex wait methods. Improved
3702           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
3703           for Suspend and Resume. Added new mono_thread_stop, used for stoping
3704           background threads. Added basic support for Abort in Windows.
3705           Start new threads using a managed delegate invoke wrapper. This wrapper
3706           has an interruption checkpoint that is needed since an interruption
3707           can be requested before the thread leaves the unmanaged code that starts 
3708           the thread.
3709         * marshal.c: Added interruption checkpoint after every native call, and
3710           also before managed calls for wrappers called from unmanaged code to
3711           go into managed code.
3712         * object.h: Added new field in MonoThread to keep track of interruption
3713           requests.
3715 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
3717         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
3718         calls.
3720 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3722         * appdomain.c:
3723         * assembly.c:
3724         * gc.c:
3725         * locales.c:
3726         * mono-config.c:
3727         * rand.c: getenv -> g_getenv (windows!)
3729         * process.c: complete_path is also used on non-windows platforms.
3731 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3733         * icall.c: new signature for Process_Start.
3735         * process.[ch]: new signature for Process_Start. If we're on windows
3736         and UseShellExecute is false, we have to search for the program by
3737         ourselves if we don't get a full path.
3739 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
3741         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
3742         marshalling and call CleanUpNativeData if needed. Fixes #58646.
3744 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3746         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
3747         Fixes bug #58373.
3749 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3751         * process.c: use double quotes to quote program name and arguments on
3752         windows. Fixes bug #58575.
3754 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3756         * file-io.c: don't return "." and ".." when using windows Find*File.
3758 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
3760         * marshal.c: Don't pass wrappers to message init because method 
3761         addressed used to lookup metadata. part of remoting[2|3] fix.
3763 2004-05-15  Jackson Harper  <jackson@ximian.com>
3765         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
3766         path is essentially the same as MONO_PATH except that it points to
3767         GACs instead of lib directories.
3768         * loader.h: The user gac is gone so we dont need function to
3769         enable/disable it.
3770         * mono-config.c: user gac option is now gone.
3771         
3772 2004-05-15  Jackson Harper  <jackson@ximian.com>
3774         * culture-info.h: Make defines more consistent, add calendar data
3775         to the culture info table.
3776         * culture-info-tables.h: Add basic calendar data. Basically
3777         everyone gets default gregorian until all the data is
3778         updated.
3779         * locales.c: Use the new consistent defines. Set calendar data for
3780         culture info objects.
3781         * object.h: add a field for calendar data to CultureInfo
3782         
3783 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
3785         * image.c: image->runtime_invoke_cache is keyed on signatures now.
3786         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
3787         a signature.
3788         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
3789         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
3790         an extra param that is the pointer of the method to invoke. The IL for
3791         the invoke method is no longer specific to the method, but to the
3792         signature of the method. Thus, we can share the same code for multiple
3793         methods. This reduces the number of methods that have to be compiled.
3795 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
3797         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
3799         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3801         * icall.c: Optimize Buffer.BlockCopy.
3803 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3805         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
3806         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
3807         quote). Changed them to "MMMM yyyy".
3809 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
3811         * rand.c
3812         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
3814 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
3816         * reflection.h: Updated after changes to managed structures.
3818         * appdomain.c: Bump corlib version.
3820 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3822         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
3823         windows.
3825 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3827         * Makefile.am: link to ../os/libmonoos.la on windows.
3829         * assembly.c:
3830                 -If MONO_DEBUG, warn about non-existing directories in
3831                 MONO_PATH.
3832                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
3833                 compile time variable.
3834                 -Removed init_default_path and call mono_set_rootdir from
3835                 libmonoos.a instead (windows only).
3837         * assembly.h: declare mono_assembly_getrootdir().
3839         * domain.c:
3840         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
3842         * loader.c: s/getenv/g_getenv/
3844 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
3846         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
3848         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
3850         * metadata.h: Add new marshalling conversions.
3852         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
3853         function.
3855         * reflection.c (mono_reflection_get_type): Lookup the type in all
3856         modules of a multi-module assembly. Fixes #58291.
3858 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
3860         * threads.c: Before aborting a background, set the StopRequested
3861         state.  This avoids throwing the Abort exception.
3862         In mono_thread_manage, don't continue with the shutdown until all
3863         aborted threads have actually stopped.
3865 2004-05-10  Jackson Harper  <jackson@ximian.com>
3867         * locales.c: Remove the modifier from culture names.
3868         
3869 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3871         * Makefile.am: monosn is not installed any more. It has been deprecated
3872         in favor of sn.
3874 2004-05-07  Jackson Harper  <jackson@ximian.com>
3876         * locales.c
3877         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
3878         Fix array construction, add bailout if the length is 0.
3880 2004-05-07  Dick Porter  <dick@ximian.com>
3882         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
3883         machine doesn't have a DNS entry.  Patch by Urs Muff
3884         (umuff@quark.com), fixes bug 57928.
3886 2004-05-06  Jackson Harper  <jackson@ximian.com>
3888         * reflection.c: Handle null PublicTokens properly. alloc mem for
3889         assembly names culture so we dont crash when freeing it.
3890         
3891 2004-05-06  Jackson Harper  <jackson@ximian.com>
3893         * assembly.c: Check the usergac when loading with partial names.
3894         
3895 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
3897         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
3898         does nothing for now (not required for Linux/Windows) but the class
3899         library can call it (and a newer or modified runtime could need it).
3900         * icall.c: Registred icall.
3902 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3904         * loader.c: prints a message on module loading error we set MONO_DEBUG
3905         environment variable.
3907 2004-05-05  Jackson Harper  <jackson@ximian.com>
3909         * appdomain.c: Handle PublicKeyToken=null properly.
3910         
3911 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
3913         * environment.c|h: Added icall ves_icall_System_Environment_
3914         GetOSVersionString to get the current OS version as a string.
3915         * icall.c: Registred icall.
3917 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
3919         * object.c: in mono_object_get_virtual_method(), take into account that
3920         non-virtual methods don't have a slot in the vtable. Check needed when
3921         the object is a proxy.
3923 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
3925         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
3926         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
3928         * object.c (mono_class_compute_gc_descriptor): Fix warning.
3930         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
3931         passed when a valuetype is expected.
3933         * object.c (mono_unhandled_exception): Only set the exit code if the
3934         exception happens in the main thread. Fixes thread5.exe.
3936         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
3937         invalid names. Fixes #58047.
3939 2004-05-03  Jackson Harper  <jackson@ximian.com>
3941         * assembly.c: This line was committed accidently and is unneeded.
3942         
3943 2004-05-03  Jackson Harper  <jackson@ximian.com>
3945         * icall.c: Add new icall for Assembly::LoadWithPartialName
3946         * assembly.c/.h: new function that probes the GAC to load partial
3947         assembly names by Paolo Molaro.
3948         
3949 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3951         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
3952         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
3953         (type_get_fully_qualified_name): Added PublicKeyToken when building a
3954         full type name.
3956 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3958         * appdomain.c: fixed check for 'neutral' culture and removed warning.
3959         * reflection.c: fix bug when parsing a full type name and Version is not
3960         the last thing in the string.
3962 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
3964         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
3965         crashes when it is freed.
3967 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3969         * assembly.c: print the compat warning to stderr.
3971 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
3973         * assembly.c (mono_assembly_load_references): Add a compatibility
3974         hack to run old applications that might be still referencing the
3975         3300-based assemblies, only do this for System.xxx.
3977 2004-05-01  Jackson Harper  <jackson@ximian.com>
3979         * appdomain.c: If the culture is neutral we set it to "".
3980         
3981 2004-04-29  Jackson Harper  <jackson@ximian.com>
3983         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
3985 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3987         * string-icalls.c: added low overhead function for copying chars
3988         * icall.c: added needed icall for the above function
3990 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3992         * icall.c: fix return value of get_global_assembly_cache.  Implemented
3993         Environment.GetLogicalDrives.
3995 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
3997         * rand.c: try and talk to egd or prngd
3998         for random bytes if opening devices fail.
4000 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
4002         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
4003         alignment for the type using the native alignment of its members 
4004         instead of using klass->min_align.
4006         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
4008 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4010         * file-io.c:
4011         * socket-io.c: added check for sys/aio.h.
4013 2004-04-28  Dick Porter  <dick@ximian.com>
4015         * threads.c: Don't abort a thread thats already aborting, when
4016         terminating everything.
4018 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4020         * icall.c: added 2 new async calls for Socket.
4022         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
4023         IO on *nix systems.
4025         * threadpool.c: removed unused variable.
4027 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
4029         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
4031 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
4033         * locales.c: put back string_invariant_tolower () and
4034         string_invariant_toupper ().
4036 2004-04-26 David Waite <mass@akuma.org>
4038         * file-io.h:
4039         * socket-io.h:
4040         * threads.h:
4041         * unicode.h: remove comma from end of enumeration declarations
4043 2004-04-26 David Waite <mass@akuma.org>
4045         * debug-mono-symfile.h:
4046         * decimal.c:
4047         * mono_debug.h:
4048         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
4051 2004-04-26  Jackson Harper  <jackson@ximian.com>
4053         * appdomain.c: Increment version number.
4054         
4055 2004-04-26  Jackson Harper  <jackson@ximian.com>
4057         * appdomain.c: Set assembly references public token value when
4058         PublicKeyToken is specified, not the hash_value. Free public token
4059         values when free assembly name data. Previously the public key
4060         token was hex decoded, however we are using hex encoded public key
4061         tokens, so this is not neccasary.
4062         * assembly.c: Lookup assemblies in the gac if their public token
4063         value is set. Add function to allow enabling user gac
4064         lookups. Specify whether or not the assembly was loaded from the
4065         GAC. Compare full assembly names when checking the cache for
4066         assemblies (Temporarily disabled see comment in code). Remove
4067         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
4068         specifies trace-loader they get extra info to stdout on the
4069         loading of assemblies.
4070         * image.h: Add a field for an assembly references public token
4071         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
4072         whether an assembly has been loaded from the GAC.
4073         * image.c: Remove a corlib -> mscorlib name mapping.
4074         * loader.h: Add function to enable/disable the user gac.
4075         * mono-config.c: Check if the usergac is enabled in the config
4076         file.
4077         * icall.c: New icall to determine whether or not an assembly has
4078         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
4079         * tabldefs.h: Add constant for assemblyref flag that specifies a
4080         full public key is used instead of a public token.
4081         * reflection.c: Remove mscorlib -> corlib mappings. Set
4082         PublicTokenValue instead of hash value. This value is a hex
4083         string so it does not need to be expanded.
4085 2004-04-26  Martin Baulig  <martin@ximian.com>
4087         * mono-debug-debugger.c (mono_debugger_initialize): Set
4088         `mono_debugger_initialized' before calling mono_debug_lock().
4090 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
4092         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
4093           InternalToUpper/InternalToLower.
4094         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
4095           removed invariant culture shortcut.  This is now done in managed code.
4096         * locales.c: (string_invariant_toupper/tolower) removed.
4098 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4100         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
4101         Added Poll internal call.
4103         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
4104         call for Poll. Select was too heavy for polling a single socket.
4106         * threadpool.[ch]: added mono_threadpool_cleanup.
4107         * threads.c: use it. Don't use Thread_Abort on windows.
4109 2004-04-23  Martin Baulig  <martin@ximian.com>
4111         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
4113 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
4115         * icall.c: Registred new icalls for key pair protection and added an
4116         icall for Environment.GetFolderPath on Windows.
4117         * security.c|h: Added new icalls for key pair protection.
4119 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4121         * socket-io.c: don't display the non-supported family warning for known
4122         families. Now this is not displayed on windows when checking support
4123         for IPv4/IPv6.
4125 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4127         * class.c: don't display the layout warning for static fields.
4129 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
4131         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
4132         * locales.c, locales.h: Added new icalls for culture-specific
4133         Char.ToLower and Char.ToUpper.
4135 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4137         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
4138         by David Waite.
4140 2004-04-20  Martin Baulig  <martin@ximian.com>
4142         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
4143         of the type name before passing it to mono_reflection_type_from_name().
4145 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
4147         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
4148         encodings here. Fixes #56965.
4150 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
4152         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
4153         fix test on strstr result not that I can see anything that
4154         relies on the result.
4156 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
4158         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
4159         Fixes #57081.
4161         * marshal.c (mono_marshal_get_string_encoding): New helper function.
4163         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
4164         function to determine which marshalling to use for strings. Fixes
4165         #56965.
4167         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
4169         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
4171 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
4173         * icall.c: #include mono-config.h
4175 2004-04-15  Jackson Harper  <jackson@ximian.com>
4177         * culture-info-tables.h: Fix date formats for en-US culture.
4178         
4179 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
4181         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
4182         ThreadPool.SetMinThreads.
4183         * threadpool.c: Implemented ThreadPool.GetMinThreads and
4184         ThreadPool.SetMinThreads.
4186 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
4188         * mono-config.c: also load the .config file in the directory
4189         where the assembly was found.
4191 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
4193         * assembly.c: load per-assembly config files.
4194         * icall.c: decrapified code to get the config dir and moved to
4195         mono-config.c.
4196         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
4197         per-assembly config files. When doing a dll map lookup give precedence
4198         to the per-assembly data.
4200 2004-04-14  Martin Baulig  <martin@ximian.com>
4202         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
4203         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
4204         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
4206         * mono-debugger-debugger.c: While the debugger is locked, remember
4207         whether the symbol tables have changes and send one single
4208         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
4210 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
4212         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
4214         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
4215         function.
4217         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
4218         account when marshalling string arrays. Fixes #56965.
4220 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
4222         * icall.c: Add new icalls mapping for security.
4223         * security.c|h: Add internal calls for WindowsIdentity,
4224         WindowsImpersonationContext and WindowsPrincipal.
4226 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
4228         * class.c: Added comment to ensure the System.MonoDummy class
4229         is removed when no longer necessary
4231 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
4233         * appdomain.c: Pass arguments to the bootstraping exceptions to
4234         minimize JITed methods at boot
4236         * metadata.c (mono_exception_from_name_two_strings): Allow for the
4237         second string to be null.
4239         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
4240         Change the protocol to minimize the JIT methods at startup.  Now
4241         it Returns the internal codepage, if the value of "int_code_page"
4242         is 1 at entry, and we can not compute a suitable code page
4243         number, returns the code page as a string.
4245 2004-04-13  Jackson Harper  <jackson@ximian.com>
4247         * culture-info-tables.h: Fix number of decimal digits for all
4248         english locales.
4250 2004-04-13  Jackson Harper  <jackson@ximian.com>
4252         * icall.c: Clairfy out of sync error message. It is not always
4253         your corlib that is out of sync.
4255 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
4257         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
4258         properties when only the set accessor is overriden. Fixes #55874.
4260 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
4262         * assembly.c (mono_assembly_load_references): Make this thread safe.
4263         Fixes #56327.
4265 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
4267         * monosn.c: Add missing initialization calls.
4269 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
4271         * locales.c:
4272         ves_icall_System_Globalization_CultureInfo_construct_number_format
4273         Fix g_assert so it compiles on fussier compilers re int/ptr
4274         mismatch
4276 2004-04-08  Dick Porter  <dick@ximian.com>
4278         * socket-io.h:
4279         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
4280         53992.  Also rearrange the code so that the internal calls return
4281         an error value and exceptions are thrown from managed code.
4283         * icall.c: Add type info to the socket icalls.
4285 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4287         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
4288         owes me a beer.
4290 2004-04-07  Martin Baulig  <martin@ximian.com>
4292         * class.c (mono_class_from_generic_parameter): Don't default
4293         `klass->parent' to `mono_defaults.object_type'.
4295 2004-04-07  Martin Baulig  <martin@ximian.com>
4297         * reflection.c (mono_reflection_initialize_generic_parameter): Set
4298         `param->pklass->reflection_info'.       
4300 2004-04-07  Jackson Harper  <jackson@ximian.com>
4302         * culture-info-tables.h: Fix date separator symbol.
4303         
4304 2004-04-07  Martin Baulig  <martin@ximian.com>
4306         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
4307         from System.Type to System.MonoType.
4309 2004-04-07  Martin Baulig  <martin@ximian.com>
4311         * reflection.h
4312         (MonoReflectionGenericParam): Added `has_reference_type' and
4313         `has_value_type' fields.
4315         * reflection.c (mono_image_get_generic_param_info): Encode the
4316         correct flags if we have the `class' or `struct' constraint.
4318 2004-04-07  Martin Baulig  <martin@ximian.com>
4320         * reflection.h
4321         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
4323 2004-04-07  Jackson Harper  <jackson@ximian.com>
4325         * appdomain.c: Revert extra patches, just wanted to bump the
4326         version number.
4327         
4328 2004-04-07  Jackson Harper  <jackson@ximian.com>
4330         * Makefile.am: Add culture-info private headers.
4331         * icall.c: Add new icalls for contructing locales.
4332         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
4333         * locales.h: Declare new culture info construction methods.
4334         * object.h: Add new fields used to avoid the CultureMap to
4335         MonoCultureInfo.
4336         * culture-info.h: Definition of structs used in the culture info
4337         tables.
4338         * culture-info-tables.h: Autogenerated tables that contain culture
4339         info data. This file was generated with the locale-builder tool.
4340         * appdomain.c: Incement corlib version number.
4341         
4342 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
4344         * appdomain.c: (mono_runtime_init) move mono_thread_init
4345         to before mono_object_new calls so critical sections
4346         are initialized before use.
4348 2004-04-07  Martin Baulig  <martin@ximian.com>
4350         * icall.c
4351         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
4352         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
4353         (ves_icall_MonoGenericParam_initialize): Removed.
4354         (monogenericparam_icalls): Removed.
4355         (generictypeparambuilder_icalls): Added new table for
4356         System.Reflection.Emit.GenericTypeParameterBuilder.
4358         * reflection.c
4359         (mono_reflection_define_generic_parameter): Removed.
4360         (mono_reflection_initialize_generic_parameter): This is now called
4361         from GenericTypeParameterBuilder's .ctor.
4363 2004-04-06  Martin Baulig  <martin@ximian.com>
4365         * class.c (mono_class_init): Don't inflate nested classes in a
4366         generic instance.
4367         (mono_type_get_name_recurse): Include the generic arguments for
4368         generic instances and generic type declarations.
4369         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
4370         (_mono_class_get_instantiation_name): Removed.
4371         (mono_class_create_generic): Always use `gklass->name' as our name.
4373         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
4375         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
4376         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
4377         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
4378         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
4379         closed generic methods here.
4381         * reflection.c
4382         (mono_reflection_generic_inst_get_nested_types): Removed.
4383         (inflate_mono_method): Copy the generic parameters from the
4384         MonoMethodHeader into out MonoGenericMethod.
4386 2004-04-06  Martin Baulig  <martin@ximian.com>
4388         * row-indexes.h
4389         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
4391         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
4393         * reflection.c (build_compressed_metadata): If we have any entries
4394         in the GenericParam, MethodSpec or GenericParamConstraint tables,
4395         set the header version to 1.1.
4397 2004-04-06  Martin Baulig  <martin@ximian.com>
4399         * class.c (mono_class_init): If we're a generic instance,
4400         initialize our nested classes, too.
4401         (_mono_class_get_instantiation_name): Deal with the new `!%d'
4402         suffix. 
4404 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4406         * process.c: quote the argument passed to the shell on windows.
4408 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
4410         * threads.c (mono_alloc_special_static_data): Allow this to be
4411         called during startup.
4413 2004-04-02  Martin Baulig  <martin@ximian.com>
4415         * icall.c
4416         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
4418 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
4420         * icall.c: Fix build.
4422 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
4424         * Makefile.am: Added security.c|h.
4425         * icall.c: Added icall for get_UserName;
4426         * security.c: New file for security related icalls. Added function
4427         get_UserName for System.Environment (fix #56144).
4428         * security.h: New. Header file for security.c
4430 2004-04-02  Dick Porter  <dick@ximian.com>
4432         * icall.c: Deleted the icalls that were obsoleted some time ago
4433         by the ICU string code, and which were mixed into the icall
4434         rearranging.  Fixes bug 55969.
4436         * string-icalls.h: 
4437         * string-icalls.c: Deleted the code that those icalls reference.
4439 2004-04-01  Martin Baulig  <martin@ximian.com>
4441         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
4443         * class.c (mono_class_from_generic_parameter): Don't set 
4444         TYPE_ATTRIBUTE_INTERFACE.
4445         (my_mono_class_from_generic_parameter): Likewise.
4447 2004-04-01  Martin Baulig  <martin@ximian.com>
4449         * loader.c (find_method): Added an optional `MonoClass *ic'
4450         argument to search in a specific interface.
4451         (mono_get_method_constrained): New public function.
4453 2004-04-01  Martin Baulig  <martin@ximian.com>
4455         * reflection.c (mono_image_get_generic_field_token): Use the
4456         `handleref' cache here.
4458 2004-04-01  Martin Baulig  <martin@ximian.com>
4460         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
4462         * reflection.c (create_generic_typespec): Use the `typespec' hash
4463         here, not the `typeref' one.    
4465 2004-04-01  Martin Baulig  <martin@ximian.com>
4467         * class.c (mono_class_inflate_generic_type): Moved the
4468         functionality into a new static inflate_generic_type() which
4469         returns NULL if it didn't do anything.  Only increment the
4470         `mono_stats.inflated_type_count' if we actually inflated
4471         something.
4472         (mono_class_get_full): Check the classes type to see whether we
4473         need to inflate it; also inflate MONO_TYPE_(M)VAR.
4475 2004-04-01  Jackson Harper  <jackson@ximian.com>
4477         * reflection.c: Set culture for assembly references.
4478         
4479 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
4481         * reflection.[ch], icall.[ch], Fix support for pinning variables.
4483 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4485         * assembly.c:
4486         (do_mono_assembly_open): the critical section also covers
4487         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
4489 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4491         * threads.c:
4492         (mono_manage_threads): abort the background threads when finishing.
4493         Fixes bug #47232.
4495 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4497         * gc.c: only close the done_event handle if there was no timeout.
4498         C-ified comments.
4500 2004-03-30  Martin Baulig  <martin@ximian.com>
4502         * icall.c (icall_entries): It's called "System.Activator", not
4503         "System.Activation".    
4505 2004-03-30  Martin Baulig  <martin@ximian.com>
4507         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
4508         (mono_class_create_from_typespec): Likewise.
4510 2004-03-30  Martin Baulig  <martin@ximian.com>
4512         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
4513         `has_ctor_constraint' and `initialized'.
4515 2004-03-30  Martin Baulig  <martin@ximian.com>
4517         * reflection.c (encode_new_constraint): New static function to add
4518         the constructor constraint attribute to a type parameter.
4519         (encode_constraints): Call encode_new_constraint() if necessary.
4521         * reflection.h
4522         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
4524         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
4525         
4526 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
4528         * reflection.c, icall.c: add support for pinning variables. 
4530 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
4532         * marshal.c (mono_marshal_get_managed_wrapper):
4533         init bool local with zero rather than null.
4535 2004-03-29  Martin Baulig  <martin@ximian.com>
4537         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
4538         the "official" behavior here.
4539         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
4541 2004-03-29  Martin Baulig  <martin@ximian.com>
4543         * icall.c: Reflect latest API changes.
4545 2004-03-29  Martin Baulig  <martin@ximian.com>
4547         * loader.c (mono_get_method_from_token): Also call
4548         mono_metadata_load_generic_params () for abstract and interface
4549         methods; replace the type arguments in the method signature with
4550         the ones which are loaded from the metadata.
4552 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
4554         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
4555         of the lock is not the current thread. MS.NET don't do it, in spite of
4556         what the documentation says. See bug #56157.
4558 2004-03-28  Martin Baulig  <martin@ximian.com>
4560         * class.c (mono_class_init): Don't call init_properties() and
4561         init_events() for generic instances; set `prop->parent' when
4562         inflating properties.
4564         * reflection.c (mono_generic_inst_get_object): Call
4565         `mono_class_init (ginst->klass)'.
4566         (mono_type_get_object): Only create a MonoGenericInst if your
4567         generic type is a TypeBuilder.
4568         (do_mono_reflection_bind_generic_parameters): Only set
4569         `ginst->is_dynamic' if our generic type is a TypeBuilder.
4571 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
4573         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
4574         Fixes #56091.
4576 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4578         * icall.c: added Kill_internal icall.
4579         * process.[ch]: added Kill_internal icall.
4581 2004-03-25  Martin Baulig  <martin@ximian.com>
4583         * class.h (MonoStats): Added `generic_instance_count',
4584         `inflated_method_count', `inflated_type_count' and
4585         `generics_metadata_size'.       
4587 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4589         * reflection.c: no warnings now.
4591 2004-03-25  Martin Baulig  <martin@ximian.com>
4593         * class.c (mono_class_get_full): New public function; does a
4594         mono_class_get(), but also takes a `MonoGenericContext *'.
4596         * loader.c (mono_field_from_memberref): Renamed to
4597         `field_from_memberref', made static and added `MonoGenericContext *'
4598         argument.
4599         (mono_field_from_token): Added `MonoGenericInst *' argument.
4600         (method_from_memberef): Likewise.
4601         (mono_get_method_from_token): Likewise.
4602         (mono_get_method_full): New public function; does a
4603         mono_get_method(), but also takes a `MonoGenericContext *'.
4605         * verify.c (mono_method_verify): Get the method's generic context
4606         and pass it to mono_field_from_token(), mono_get_method_full() and
4607         mono_class_get_full().
4609 2004-03-25  Martin Baulig  <martin@ximian.com>
4611         * class.c (mono_class_inflate_generic_type): Take a
4612         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
4613         `MonoGenericMethod *'.
4615 2004-03-25  Martin Baulig  <martin@ximian.com>
4617         * loader.h (MonoMethodInflated): Store the MonoGenericContext
4618         instead of the MonoGenericMethod here.
4620 2004-03-25  Martin Baulig  <martin@ximian.com>
4622         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
4623         each time we create a new MonoGenericInst, we also create a new
4624         context which points back to us.
4626         * class.c (inflate_method): Use `ginst->context' instead of
4627         creating a new context.
4629         * loader.c (method_from_memberref): Use
4630         `klass->generic_inst->context' instead of creating a new context.
4632 2004-03-25  Martin Baulig  <martin@ximian.com>
4634         * class.h (MonoGenericContext): New struct.
4635         (MonoGenericMethod): Removed `generic_inst'.
4637         * class.c (mono_class_inflate_generic_method): Take a
4638         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
4640 2004-03-25  Martin Baulig  <martin@ximian.com>
4642         * loader.h (MonoMethodInflated): New typedef.
4644         * metadata.h (MonoMethodSignature): Removed `gen_method', make
4645         `generic_param_count' consume just 30 bits, added `is_inflated'
4646         and `has_type_parameters' flags (one bit each).
4648         * class.c (mono_class_inflate_generic_method): Create a
4649         MonoMethodInflated instead of a MonoMethodNormal and set
4650         `is_inflated' in the method signature.
4652         * class.h (MonoGenericMethod): Removed `generic_method'.
4654 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
4656         * image.c: Make sure the name of a MonoImage is always an absolute path.
4657           This fixes bug #54415.
4659 2004-03-24  Martin Baulig  <martin@ximian.com>
4661         * class.c (mono_class_setup_vtable): If we're a generic instance,
4662         use our generic type's vtable size.
4664 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
4666         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
4667         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
4668         problems.
4670 2004-03-23  Martin Baulig  <martin@ximian.com>
4672         * class.h (MonoDynamicGenericInst): Added `int count_events' and
4673         `MonoEvent *events'.
4675         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
4676         (typebuilder_icalls): Added "get_event_info"; calls
4677         mono_reflection_event_builder_get_event_info(). 
4679         * reflection.c (mono_reflection_generic_inst_initialize): Added
4680         `MonoArray *events'.
4681         (mono_reflection_event_builder_get_event_info): New function.
4683 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
4685         * object.h: add mono_type_initialization_init
4687         * object.c (mono_runtime_class_init): 
4688         implement class constructor synchronization rules
4689         to cope with threading issues.  
4690         add mono_type_initialization_init
4692         * appdomain.c (mono_runtime_init): call 
4693         mono_type_initialization_init
4695         * class.h: removing initializing field from MonoVTable
4697 2004-03-23  Martin Baulig  <martin@ximian.com>
4699         * class.c (my_mono_class_from_generic_parameter): Use
4700         `param->name' if it's not NULL. 
4702 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
4704         * class.c: do not insert non-virtual methods in the vtable.
4705         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
4706         that means the method is non-virtual. This never would have
4707         happened before.
4709 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
4711         * profiler.c: Added lock for accessing coverage_hash.
4713 2004-03-22  Martin Baulig  <martin@ximian.com>
4715         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
4716         `method->method->signature->generic_param_count != 0' to make it
4717         work for interface methods.
4719 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4721         * process.c: quote the string passed to the shell using g_shell_quote.
4723 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4725         * threads.c:
4726         (mono_threads_manage): don't remove the finalizer thread and self
4727         from the threads hash table so that mono_thread_manage can be called
4728         more than once.
4730 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4732         * process.c: quote the arguments when UseShellExecute is true. Fixes
4733         bug #55790.
4735 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4737         * threads.c: set mono_thread_detach as a cleanup routine for every
4738         thread. This way it's always executed upon thread termination, either
4739         aborted or finished normally. No more xsp hangs!
4741 2004-03-17  Martin Baulig  <martin@ximian.com>
4743         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
4744         `int count_nested' and a `MonoType **nested'.
4746         * reflection.c (mono_reflection_bind_generic_parameters): Moved
4747         most of the functionality into a new static
4748         do_mono_reflection_bind_generic_parameters() and don't take a
4749         `MonoType *nested_in' argument any more.  Don't compute nested
4750         types here.
4751         (mono_reflection_generic_inst_get_nested_types): New public method
4752         to get nested types.
4754         * class.c (mono_class_create_generic): Set `klass->nested_in' if
4755         we're a nested class.
4757         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
4758         mono_reflection_generic_inst_get_nested_types() to compute the
4759         nested types.
4761 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
4763         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
4764         descriptive error message under windows.
4765         
4766 2004-03-17  Martin Baulig  <martin@ximian.com>
4768         * class.c (dup_type): Added `const MonoType *original' argument;
4769         copy the attrs from the original type.
4771 2004-03-17  Martin Baulig  <martin@ximian.com>
4773         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
4774         `m->generic_inst_cache' here.
4776 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
4778         * exception.h exception.c: Add stack_overflow_exception.
4780 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4782         * threadpool.c:
4783         (overlapped_callback): call SetEvent *after* invoking the callback.
4784         No need to call CloseHandle.
4786 2004-03-16  Martin Baulig  <martin@ximian.com>
4788         * reflection.c (mono_image_get_fieldref_token): Take a
4789         `MonoReflectionField *' instead of a `MonoClassField *' and a
4790         `MonoClass *'; store the `MonoReflectionField *' in the hash.
4792 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4794         * appdomain.c: don't add the culture to the filename we're looking for
4795         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
4797 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4799         * locales.c: don't ignore symbols when doing case insensitive compares.
4800         Thanks Dick! Fixes bug #54046.
4802         * threads.c: surround 'threads' usage with enter/leave in
4803         mono_thread_manage.
4805 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
4807         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
4808         implicitly marshalled as [Out]. Fixes #55450.
4810         (mono_marshal_get_runtime_invoke): Zero out the result if there is
4811         an exception.
4813 2004-03-16  Martin Baulig  <martin@ximian.com>
4815         * class.c (mono_class_from_generic_parameter): Use the actual
4816         parameter name. 
4818 2004-03-16  Martin Baulig  <martin@ximian.com>
4820         * reflection.c (type_get_signature_size): New static function.
4821         Compues the size of the type in a method signature.
4822         (method_get_signature_size): New static function; calls
4823         type_get_signature_size() to compute the actual size of the
4824         method's signature.
4825         (method_encode_signature): Use method_get_signature_size() to get
4826         the signature's size rather than using `nparams * 10'.
4828 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4830         * file-io.h: define here WapiOverlapped on windows. I don't want the
4831         regular OVERLAPPED one.
4833         * file-io.c:
4834         * threadpool.c: somehow, BindIoCompletionCallback is not found.
4835         Disabling AIO on windows.
4837 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4839         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
4840         bug #55385.
4842 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4844         * appdomain.c: upgraded corlib version.
4846         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
4847         and BeginWrite. Allow opening files for asynchrnous operations.
4849         * file-io.h: new struct that maps FileStreamAsyncResult.
4850         * icall.c: added new icalls.
4851         * process.[ch]: support setting child process environment variables
4852         and use the SHELL or COMSPEC when UseShellExecute is true.
4854         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
4855         callback for async. IO is here and also BindHandle.
4857         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
4858         from here.
4860 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
4862         * reflection.c (create_custom_attr): Allow len == 0.
4864         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
4865         computation on big-endian machines.
4867 2004-03-13  Martin Baulig  <martin@ximian.com>
4869         * class.h (MonoGenericInst): Added `int count_ifaces'.
4871         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
4872         `ginst->count_ifaces' instead `klass->interface_count' since we
4873         may get called before the vtable is created.
4875         * loader.c (mono_method_get_param_names): If we're a generic
4876         instance, return and don't initialize the class.
4878         * reflection.c (mono_reflection_setup_generic_class): Don't call
4879         ensure_runtime_vtable().
4880         (mono_reflection_bind_generic_parameters): Set
4881         `ginst->count_ifaces'.
4883 2004-03-11  Jackson Harper <jackson@ximian.com>
4885         * icall.c:
4886         * unicode.c:
4887         * unicode.h: Remove unused System.Char icalls.
4888         
4889 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
4891         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
4892         code when we P/Invoke the first library in Windows.Forms, instead
4893         of when we first open the assembly.
4895         * assembly.c: Drop the lookup from here.
4897 2004-03-10  Martin Baulig  <martin@ximian.com>
4899         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
4900         class for properties, fields and events.  Finally fixes #54945.
4902 2004-03-10  Martin Baulig  <martin@ximian.com>
4904         * metadata.c (mono_metadata_class_equal): New static function;
4905         checks whether two generic instances or two generic parameters are
4906         equal.
4907         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
4908         compare classes.        
4910 2004-03-10  Martin Baulig  <martin@ximian.com>
4912         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
4914         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
4915         argument and write it into the `reflection_info' field.
4917         * icall.c
4918         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
4919         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
4921 2004-03-09  Jackson Harper  <jackson@ximian.com>
4923         * char-conversions.h: use 8 bits for numeric data its all we need
4924         * icall.c: numeric data is only 8 bits now.
4926 2004-03-09  Martin Baulig  <martin@ximian.com>
4928         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
4930         * class.c (init_properties, init_events): Initialize the new
4931         `parent' field.
4933         * reflection.c (typebuilder_setup_properties): Likewise.
4934         (typebuilder_setup_events): Likewise.
4936         * reflection.h (MonoEventInfo): Replaced `parent with
4937         `declaring_type' and `reflected_type'.
4939         * icall.c (ves_icall_get_property_info): Distinguish between
4940         declaring and reflected type.
4941         (ves_icall_get_event_info): Likewise.
4943 2004-03-09  Martin Baulig  <martin@ximian.com>
4945         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
4946         (ves_icall_Type_GetField): Correctly set field->klass.
4948 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
4950         * loader.h: Fix warning.
4952 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
4954         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
4955         library routine if present.  Notice that it will still continue
4956         executing even if its missing, for those working on the Gtk#
4957         edition of Windows.Forms.
4959         * assembly.c (do_mono_assembly_open): If loading the
4960         System.Windows.Forms call mono_loader_wini_init.
4962 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
4964         * class.h: Added MonoRemoteClass struct.
4965         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
4966         function for MonoStrings.
4967         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
4968         Added internal call for getting the proxy type.
4969         * marshal.c: Get the type of transparent proxies from its remote_class.
4970         Added methods that generate the IL for type checks and casts:
4971         mono_marshal_get_isinst, mono_marshal_get_castclass, 
4972         mono_marshal_get_proxy_cancast.
4973         * marshal.h: Declaration of the previous new methods.
4974         * object.c: Added new moethods for creating and updating MonoRemoteClass
4975         instances: mono_remote_class, mono_upgrade_remote_class, 
4976         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
4977         * verify.c: FIx transparent_proxy_fields layout.
4978         * appdomain.c: Bump corlib version.
4980 2004-03-04  Jackson Harper  <jackson@ximian.com>
4982         * icall.c: Add icall to access char conversion tables.
4983         * char-conversions.h: Character conversion tables.
4984         * Makefile.am: Add char-conversions.h private header file.
4985         
4986 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
4988         * appdomain.c (unload_thread_main): Increase unloading timeout to
4989         10 sec as a temporary workaround for Nant problems.
4991 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
4993         * gc.c: Add checks for GC_enable and GC_disable.
4995         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
4996         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
4997         (bug #54988).
4998         
4999 2004-02-27  Martin Baulig  <martin@ximian.com>
5001         * reflection.c (mono_reflection_bind_generic_parameters): Take a
5002         `MonoReflectionType *' instead of a `MonoType *'.
5004 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
5006         * gc.c (run_finalize): Avoid finalizing the object representing the
5007         finalizer thread.
5008         (finalizer_thread): Fix warning.
5010 2004-02-25  Martin Baulig  <martin@ximian.com>
5012         * class.c (_mono_class_get_instantiation_name): Added `int offset'
5013         argument for nested types.
5014         (mono_class_create_generic): Added support for nested generictypes.
5016         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
5017         `GList *nested'.
5019         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
5021         * reflection.c (method_encode_signature): Increase the minimum
5022         value of `size' from 10 to 11.
5023         (mono_reflection_bind_generic_parameters): Take `int type_argc'
5024         and `MonoType **types' arguments instead of the `MonoArray
5025         *types'; added `MonoType *nested_in'.  Recursively instantiate
5026         nested classes. 
5028 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
5030         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
5031         stack_overflow_ex members which are used by exception handling.
5033         * appdomain.c (mono_runtime_init): Initialize the new members.
5035         * gc.c (mono_gc_enable): New helper function.
5036         * gc.c (mono_gc_disable): New helper function.
5038 2004-02-23  Martin Baulig  <martin@ximian.com>
5040         * icall.c: I must have been really stupid - make it actually work
5041         this time ;-)
5043 2004-02-23  Martin Baulig  <martin@ximian.com>
5045         * loader.c (method_from_memberref): Only inflate the method if
5046         it's in another klass.
5048 2004-02-23  Martin Baulig  <martin@ximian.com>
5050         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
5051         (mono_class_init): If we're a generic instance and an interface,
5052         compute `class->interface_id'; also create `class->interfaces'
5053         here and inflate them.
5055         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
5056         `ginst->is_open'.
5057         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
5059         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
5061 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
5063         * reflection.c (method_encode_code): Improved the error message
5064         generated by the exception.
5066 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5068         * icall.c: Martin did not do what he said in the ChangeLog for
5069         2004-02-18, but put back the changes for properties and events.
5070         Commenting those changes out again and adding comment to bug #54518.
5071         
5072         * process.c: removed warning.
5074 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
5076         * marshal.c (emit_struct_conv): Print an error message instead of
5077         asserting when a type does not have the StructLayout attribute.
5079 2004-02-20  Martin Baulig  <martin@ximian.com>
5081         * reflection.c (mono_type_get_object): Also use the cache for
5082         generic instances.
5083         (mono_reflection_bind_generic_parameters): Always compute
5084         `ginst->ifaces'.        
5086 2004-02-20  Martin Baulig  <martin@ximian.com>
5088         * class.h (MonoGenericMethod): Removed `klass'.
5090         * class.c (mono_class_inflate_generic_method): Added `MonoClass
5091         *klass' argument.
5093 2004-02-20  Martin Baulig  <martin@ximian.com>
5095         * reflection.c (method_encode_methodspec): Actually use the
5096         uninflated signature for the memberref.
5098 2004-02-20  Martin Baulig  <martin@ximian.com>
5100         * class.h (MonoGenericMethod): Removed `declaring'.
5102         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
5103         is NULL, compute it here.
5105 2004-02-20  Martin Baulig  <martin@ximian.com>
5107         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
5109         * metadata.c (mono_metadata_generic_inst_hash): New method.
5110         (mono_metadata_generic_inst_equal): New method.
5112         * reflection.c (mono_reflection_bind_generic_parameters): Use the
5113         `klass->image->generic_inst_cache' cache to avoid creating
5114         duplicate MonoGenericInst's.
5116         * class.c (mono_class_inflate_generic_type): Use the cache.
5118 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
5120         * object.c: fixed gc descriptor calculation for embedded valuetypes.
5122 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5124         * icall.c: added Socket.WSAIoctl icall.
5126         * socket-io.[ch]: implemented
5127         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
5129 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
5131         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
5133 2004-02-18  Urs C Muff  <umuff@quark.com>
5135         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
5136         this work on PPC and other big-endian architectures.
5138         * debug-mono-symfile.h: Prepended the names of all the `guint32'
5139         fields with an underscore to make sure they're only accessed by
5140         the read32() macro.
5142 2004-02-18  Martin Baulig  <martin@ximian.com>
5144         * icall.c: Put the klass->refclass changes back for methods and
5145         fields, but not for properties and events.  We're currently not
5146         distinguishing between DeclaringType and ReflectedType for
5147         properties and events, that's what caused the regressions.
5149 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5151         * object.c:
5152         (mono_async_result_new): the handle can be NULL.
5154         * threadpool.c: Use an event instead of a semaphore, don't initialize
5155         it until needed. This saves quite a few semaphores from being created
5156         when using the threadpool.
5158 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
5160         * object.c (mono_string_is_interned_lookup): Fix interning of long
5161         strings. Fixes #54473.
5163         * domain.c (ldstr_equal): Optimize if the two strings are equal.
5165         * icall.c: Revert the klass->refclass changes since they introduce
5166         regressions (bug #54518).
5168 2004-02-18  Martin Baulig  <martin@ximian.com>
5170         * class.c (mono_class_init): If we're a generic instance and don't
5171         come from a TypeBuilder, inflate our members here.
5172         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
5173         (mono_class_create_generic): New public method.
5174         (mono_class_initialize_generic): Removed.
5175         (get_instantiation_name): Renamed to
5176         _mono_class_get_instantiation_name() and made it public.
5178 2004-02-18  Martin Baulig  <martin@ximian.com>
5180         * class.c (mono_class_inflate_generic_type): Clear the new
5181         instance's `nginst->klass' when inflating a generic instance.
5182         (mono_class_is_subclass_of): Added (basic) support for generic
5183         instances.
5185 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
5187         * appdomain.h, domain.c: use a MonoCodeManager instead of a
5188         MonoMempool to hold compiled native code.
5190 2004-02-17  Martin Baulig  <martin@ximian.com>
5192         * class.h (MonoDynamicGenericInst): Added `count_properties' and
5193         `properties'.
5195         * reflection.c (mono_reflection_generic_inst_initialize): Added
5196         `MonoArray *properties' argument.
5198         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
5200 2004-02-17  Martin Baulig  <martin@ximian.com>
5202         * icall.c (ves_icall_Type_GetFields): Renamed to
5203         ves_icall_Type_GetFields_internal() and added a
5204         `MonoReflectionType *rtype' argument; pass it to
5205         mono_field_get_object() to set the field's "reflected" type.
5206         (ves_icall_Type_GetConstructors): Likewise.
5207         (ves_icall_Type_GetEvents): Likewise.
5208         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
5209         argument; pass it to mono_method_get_object() to set the method's
5210         "reflected" type.       
5212 2004-02-17  Martin Baulig  <martin@ximian.com>
5214         * class.h (MonoDynamicGenericInst): New type.
5215         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
5217         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
5218         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
5219         (ves_icall_MonoGenericInst_GetFields): New interncall.
5221         * class.c (mono_class_from_generic): Don't call
5222         mono_class_initialize_generic() if this is a dynamic instance;
5223         ie. it's being created from a TypeBuilder.
5224         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
5225         `class->byval_arg.type'.
5227         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
5228         to `inflate_method' and made static.
5229         (mono_reflection_inflate_field): Removed.
5230         (mono_reflection_generic_inst_initialize): New public method.
5232         * reflection.h (MonoReflectionGenericInst): Removed `methods',
5233         `ctors' and `fields'; added `initialized'.
5235 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
5237         * debug-helpers.c (mono_method_full_name): Fix output for empty
5238         namespaces.
5240 2004-02-12  Martin Baulig  <martin@ximian.com>
5242         * class.h (MonoClassField): Added `MonoType *generic_type'.
5244         * reflection.c (mono_image_get_fieldref_token): Added support for
5245         instantiated generic types.
5246         (field_encode_inflated_field): Removed.
5247         (mono_image_get_inflated_field_token): Removed.
5248         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
5250         * reflection.h (MonoReflectionInflatedField): Removed.
5252 2004-02-12  Martin Baulig  <martin@ximian.com>
5254         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
5255         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
5257         * reflection.c (mono_image_get_methodspec_token): Take a
5258         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
5259         (mono_image_create_token): Check whether we have a
5260         `method->signature->gen_method' and call
5261         mono_image_get_methodspec_token() if appropriate.
5262         (inflated_method_get_object): Removed.
5263         (mono_reflection_bind_generic_method_parameters): Return a
5264         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
5265         (mono_reflection_inflate_method_or_ctor): Likewise.
5267         * reflection.h (MonoReflectionInflatedMethod): Removed.
5269 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
5271         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
5272         for custom valuetype marshalling.
5274         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
5276 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5278         * icall.c: fixed WSAGetLastError_internal name.
5280 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
5282         * threads.c (mono_thread_attach): Allow this to be called multiple
5283         times for a thread.
5284         
5285         * threads.c (build_wait_tids): Do not wait for ourselves.
5287         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
5288         appdomain list is empty.
5290         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
5291         memory returned by mono_string_builder_to_utf16, since it points into
5292         managed memory. Thanks to Bernie Solomon for noticing this.
5294         * icall.c: Add AppDomainSetup icalls.
5296         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
5298         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
5299         types.
5301         * reflection.c (reflection_methodbuilder_to_mono_method): Save
5302         custom attributes to the method_aux struct. Also fix array indexes etc.
5304         * loader.c (mono_method_get_param_names): Make dynamic case work again.
5305         
5306 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
5308         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
5309         (both static and runtime) and reduce startup time.
5311 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
5313         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
5314         AsAny marshalling conversion instead of crashing.
5316         * marshal.c: Fix warnings.
5318 2004-02-09  Martin Baulig  <martin@ximian.com>
5320         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
5322         * reflection.h (MonoReflectionInflatedMethod): Removed the
5323         `declaring' field, it's now in the unmanaged MonoGenericMethod.
5325         * reflection.c (method_encode_methodspec): Removed the `method'
5326         argument; we get it from `gmethod->declaring'.
5327         (inflated_method_get_object): Removed the `declaring' argument.
5329 2004-02-09  Martin Baulig  <martin@ximian.com>
5331         * class.h (MonoGenericMethod): New type.
5332         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
5333         `generic_method'.
5335         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
5336         a `MonoGenericMethod *gen_method' one.
5338         * class.c (mono_class_inflate_generic_type): Take an additional
5339         `MonoGenericMethod * argument.  This is only non-NULL if we're
5340         inflating types for a generic method.   
5341         (mono_class_inflate_generic_signature): Renamed to
5342         inflate_generic_signature() and made static; take a
5343         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
5344         (inflate_generic_header): Take a `MonoGenericMethod *' argument
5345         instead of a `MonoGenericInst *' one.
5346         (mono_class_inflate_generic_method): Likewise.
5348         * reflection.c (encode_generic_method_sig): Take a
5349         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
5350         (method_encode_methodspec): Likewise.
5351         (inflated_method_get_object): Likewise. 
5353         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
5354         field with a `MonoGenericMethod *gmethod' one.  
5356 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
5358         * class.h (mono_class_has_parent): add parens to expansion
5359         so you can ! this.
5361 2004-02-08  Martin Baulig  <martin@ximian.com>
5363         * image.h (MonoImage): Removed `generics_cache'.
5365         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
5366         instead of a `MonoType *' argument; removed the `inflate_methods'
5367         argument.  Don't inflate methods here.
5369         * loader.c (find_method): If it's a generic instance, call
5370         mono_class_init() on the `sclass->generic_inst->generic_type'.
5372         * metadata.c (mono_type_size): Make this work on uninitialized
5373         generic instances; call it on the `ginst->generic_type's class.
5375         * reflection.c (mono_reflection_bind_generic_parameters): Call
5376         mono_class_from_generic() to create the `ginst->klass'.
5378 2004-02-08  Martin Baulig  <martin@ximian.com>
5380         * class.h (MonoClass): Changed type of `generic_inst' from
5381         `MonoType *' to `MonoGenericInst *'.
5383 2004-02-08  Martin Baulig  <martin@ximian.com>
5385         * icall.c (ves_icall_Type_BindGenericParameters): Just call
5386         mono_type_get_object(), this is now creating a `MonoGenericInst'
5387         for MONO_TYPE_GENERICINST.
5388         (ves_icall_MonoGenericInst_GetParentType): Likewise.
5389         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
5391         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
5392         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
5393         (inflated_method_get_object): Added `MonoClass *refclass' argument.
5394         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
5395         and reflected type.
5397         * reflection.h (MonoReflectionInflatedMethod): Removed
5398         `declaring_type' and `reflected_type'.
5400 2004-02-08  Martin Baulig  <martin@ximian.com>
5402         * class.h (MonoGenericInst): Added `MonoType *parent' and
5403         `MonoType **ifaces'.
5405         * reflection.h (MonoReflectionGenericInst): Removed `klass',
5406         `parent' and `interfaces'.
5408         * reflection.c (mono_reflection_bind_generic_parameters): Take a
5409         `MonoType *' argument and return a `MonoType *'.
5411         * icall.c
5412         (ves_icall_MonoGenericInst_GetParentType): New interncall.
5413         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
5415 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
5417         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
5418         valuetype marshalling.
5420 2004-02-06  Martin Baulig  <martin@ximian.com>
5422         * class.c
5423         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
5424         (my_mono_class_from_generic_parameter): Likewise.
5426 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
5428         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
5429         contents of the symbol files lazily.
5431         * object.h (MonoThread): Add 'name' and 'name_len' fields.
5433         * threads.h threads.c icall.c: New icalls for getting and setting the
5434         threads name.
5436 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
5438         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
5439         Raise an exception when the domain is not found.
5441 2004-02-03  Martin Baulig  <martin@ximian.com>
5443         * reflection.c (mono_image_get_methodspec_token): Use the
5444         uninflated signature; fixes gen-33.
5446 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
5448         * gc.c threads.c: Make the finalizer thread a normal managed thread so
5449         the finalizer code can use thread functionality.
5451         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
5452         the finalizer thread.
5454         * threads.c: Make some functions more robust.
5456         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
5458         * metadata.h: Add new marshalling conventions.
5460         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
5461         stringbuilder marshalling. Fixes #53700.
5463         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
5465         * reflection.c (mono_image_get_type_info): Save declarative security
5466         info.
5468         * reflection.c (mono_image_get_field_info): Handle uninitialized 
5469         unmanaged fields as well.
5471         * appdomain.c: Bump corlib version.
5473 2004-02-01  Martin Baulig  <martin@ximian.com>
5475         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
5476         method type arguments.  
5478 2004-01-30  Duncan Mak  <duncan@ximian.com>
5480         * marshal.h: Add prototype for
5481         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
5482         and
5483         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
5484         fix the build.
5486 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
5488         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
5489         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
5491 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
5493         * marshal.c (mono_marshal_get_native_wrapper): Add support for
5494         custom marshalling of valuetypes.
5496         * marshal.c: Fix some warnings.
5498 2004-01-29  Martin Baulig  <martin@ximian.com>
5500         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
5501         for generic method parameters.
5503         * reflection.c (method_encode_methodspec): Write the uninflated
5504         signature into the methodspec table.
5505         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
5506         is always the uninflated method.
5507         (reflection_methodbuilder_to_mono_method): Copy the generic
5508         parameters from the MethodBuilder into `header->gen_params'.
5510 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
5512         * class.c (mono_class_from_generic_parameter): Fix warning.
5514 2004-01-27  Martin Baulig  <martin@ximian.com>
5516         * class.c (mono_class_from_generic_parameter): Don't create
5517         `klass->methods' here.  
5519 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
5521         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
5522         extension since it does not work with libraries named lib<FOO>.dll.so.
5524 2004-01-25  Martin Baulig  <martin@ximian.com>
5526         * class.c (mono_class_inflate_generic_type): Added support for
5527         MONO_TYPE_GENERICINST.
5529         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
5530         inflate methods on open constructed types.      
5532 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5534         * object.c: fire ProcessExit event in the root AppDomain after running
5535         Main. Fixes bug #53299.
5537 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
5539         * socket-io.c: include the new socket-wrappers.h header.
5540         Use the wrappers instead of the unix socket functions to make the code
5541         more clear.
5543 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
5545         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
5547         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
5548         Fixes #22532.
5550 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
5552         * reflection.c (mono_image_create_pefile): Handle the case when the
5553         entry point is not a MethodBuilder.
5555         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
5556         field to ReflectionMethod since it is not allways a builder.
5558         * reflection.c (type_get_fully_qualified_name): New helper function to
5559         return the fully qualified name of a type.
5561         * reflection.c (encode_marshal_blob): Always emit the fully qualified
5562         type name for custom marshallers.
5564         * reflection.c (mono_marshal_spec_from_builder): Ditto.
5566         * class.c (mono_class_setup_vtable): If a parent class already 
5567         implements an interface, use the implementing methods from that class.
5568         Fixes #53148.
5570 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5572         * threadpool.c: just return instead of ExitThread to allow for thread
5573         clean up earlier.
5575 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
5577         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
5578         when closing resource modules.
5580         * reflection.c (mono_image_create_pefile): Handle the case when the
5581         entry point is not a MethodBuilder.
5583         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
5584         field to ReflectionMethod since it is not allways a builder.
5586 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
5588         * marshal.c (mono_marshal_get_managed_wrapper): 
5589         mono_marshal_alloc takes native int so CONV_I
5590         the arg for 64bits.
5592 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
5594         * reflection.c (fixup_cattrs): New function to fixup the methoddef
5595         tokens in the cattr table. Fixes #53108.
5597 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5599         * loader.c: don't trim ".dll" before looking up in the config file.
5600         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
5602 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
5604         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
5605         Return the module which contains the resource as well.
5606         (ves_icall_System_Reflection_Module_Close): New icall.
5608         * appdomain.c: Bump corlib version number.
5610         * image.c (mono_image_addref): New public function.
5612         * assembly.c: Call mono_image_addref.
5614         * reflection.c (mono_module_get_object): Increase reference count of 
5615         the image.
5617         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
5618         Fixes #22532.
5620         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
5621         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
5622         proper exceptions on DllImport problems.
5624 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
5626         * class.c, metadata.c: eliminate CSIZE macro.
5628 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
5630         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
5631         * object.h: Added async_callback field in MonoAsyncResult.
5632         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
5633         * verify.c: Added async_callback in MonoAsyncResult layout.
5635 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
5637         * reflection.c (mono_reflection_get_custom_attrs): Add support
5638         for Modules.
5640 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
5642         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
5643         marshalling.
5644         (mono_marshal_method_from_wrapper): Add null pointer check.
5646 2004-01-16  Martin Baulig  <martin@ximian.com>
5648         * debug-mono-symfile.h: Set version number to 36 and reflect
5649         latest symbol writer changes.
5651 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
5653         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
5654         multi-dimensional arrays.
5655         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
5656         (mono_class_from_mono_type): Use bounded_array_class_get.
5657         
5658         * class.c (mono_bounded_array_class_get): New function which takes
5659         a 'bounded' bool argument to distinguish vectors from one dimensional
5660         arrays.
5662         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
5663         bounded_array_class_get if the array has bounds.
5665         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
5666         Search modules loaded using AssemblyBuilder:AddModule as well.
5668 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5670         * appdomain.c: increased corlib version.
5671         * filewatcher.c: removed g_print.
5672         * icall.c:
5673         (get_property_info): only allocate what is actually requested.
5674         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
5676 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5678         * Makefile.am: added filewatcher.[ch]
5679         * filewatcher.[ch]: FileSystemWatcher runtime support.
5680         * icall.c: added new FSW icalls.
5682 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
5684         * string-icalls.c: fix stringbuilder regression as suggested by
5685         Iain McCoy <iain@mccoy.id.au>.
5687 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
5689         * process.c (process_read_stringtable_block): Recognize '007f' as
5690         a language neutral stringtable block.
5692 2004-01-12  Patrik Torstensson
5694         * object.h (MonoStringBuilder) : Changed layout to support our
5695         new stringbuilder class.
5696         * marshal.c: Change marshalling to support the new layout of 
5697         string builder.
5698         * appdomain.c: increased version number because new layout of
5699         string builder.
5701 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
5703         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
5704         assembly name as an string instead of an AssemblyName, since it is
5705         easier to extract info from it.
5707         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
5708         the culture subdirectories too. Fixes #52231.
5710 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5712         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
5713         It takes 2 new parameters with an optional name for the method to look
5714         for and case ignoring info.
5716         * threadpool.c: removed unused variable.
5718 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5720         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
5721         It takes 2 new parameters with an optional name for the property to look
5722         for and case ignoring info.
5723         Fixes bug #52753.
5725 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
5727         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
5728         Fix #52451.
5730 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5732         * appdomain.c:
5733         * assembly.c: escape the uri before passing it to g_filename_from_uri.
5734         Fixes bug #52630.
5736 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
5738         * reflection.c: Add support for more than one unmanaged resource.
5740         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
5741         in field->def_value, as done in all other cases.
5743         * reflection.c (mono_reflection_get_custom_attrs): Add support for
5744         TypeBuilders.
5746         * reflection.c (mono_reflection_create_runtime_class): Remove 
5747         errorneous assignment to klass->element_class, since it is already
5748         done in mono_reflection_setup_internal_class.
5750 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5752         * gc.c: added missing LeaveCriticalSection.
5753         * icall.c: indented a couple of lines.
5754         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
5755         if we call EndInvoke inside a callback. Fixes bug #52601.
5757 2004-01-07  Martin Baulig  <martin@ximian.com>
5759         * mono-debug-debugger.h
5760         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
5762 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
5764         * appdomain.c: Use messages in NotImplementedException.
5766         * exception.c (mono_get_exception_not_implemented): Now this takes
5767         a message argument.
5769         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
5770         exception instead of g_asserting an aborting when something is not
5771         implemented.
5773         Add some inline docs.
5775 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
5777         * reflection.h: Update after changes to object layout.
5779         * reflection.c: Implement saving of unmanaged aka win32 resources.
5781         * appdomain.c: Bump version number.
5783         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
5784         Handle missing domains gracefully.
5786 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
5788         * file-io.c : On Windows, there are much more invalid_path_chars.
5790 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
5792         * class.h, object.c: prepare for GetType () speedup.
5794 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
5796         * profiler.c: workaround for --profile null reference exception on
5797           cygwin. Patch by Patrik Torstensson.
5799 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
5801         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
5802         make work for unaligned access.
5804 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
5806         * class.c: small cleanup (class->fields [i] -> field).
5807         * image.c: check address of metadata is valid.
5809 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
5811         * assembly.h assembly.c (mono_assembly_loaded): New public function to
5812         search the list of loaded assemblies.
5814         * reflection.c (mono_reflection_type_from_name): Use 
5815         mono_assembly_loaded instead of mono_image_loaded.
5817         * reflection.c: Fix warnings.
5819 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
5821         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
5822         is dynamic. This is needed since an assembly can contain both dynamic and
5823         non-dynamic images.
5825         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
5826         assembly->dynamic.
5828         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
5830         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
5831         to store modules loaded using AddModule.
5833         * reflection.c (mono_image_fill_file_table): Generalize this so it works
5834         on Modules.
5836         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
5838         * reflection.c (mono_image_fill_export_table_from_module): New function to
5839         fill out the EXPORTEDTYPES table from a module.
5841         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
5842         into a separate function. Also handle loaded non-dynamic modules.
5844         * reflection.c (mono_image_basic_init): Fix memory allocation.
5846         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5848         * assembly.c (mono_assembly_load_references): Make this public.
5850 2003-12-19  Martin Baulig  <martin@ximian.com>
5852         * class.c (mono_class_initialize_generic): Made this static, take
5853         a `MonoGenericInst *' instead of a `MonoClass *'.
5854         (mono_class_from_generic): Call mono_class_initialize_generic()
5855         unless we're already initialized or being called from
5856         do_mono_metadata_parse_generic_inst().
5858         * class.h (MonoGenericInst): Added `initialized' and
5859         `init_pending' flags.
5861         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
5862         `mono_class_init (gklass)' or mono_class_initialize_generic()
5863         here; set `generic_inst->init_pending' while parsing the
5864         `type_argv'.
5866 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
5868         * locales.c: include string.h for memxxx prototypes
5870 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
5872         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
5873         constructor when accessing literal fields.
5875 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
5877         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5879         * reflection.c (assembly_add_resource_manifest): New function to fill
5880         the MANIFESTRESOURCE table.
5882         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
5884         * reflection.h: Update to changes in class layout.
5886         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
5887         Reenable call to mono_runtime_is_shutting_down ().
5889         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
5890         determine if the runtime is shutting down.
5892 2003-12-16  Jackson Harper <jackson@ximian.com>
5894         * icall.c: comment out call to mono_runtime_is_shutting_down to
5895         fix build.
5896         
5897 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
5899         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
5900         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
5902 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
5904         * reflection.c: move definition of swap_with_size
5905         to before its first call
5907 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
5909         * appdomain.c (mono_runtime_is_shutting_down): New public function.
5911         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
5912         icall.
5914         * object.c: Fix warnings.
5916         * icall.c (ves_icall_Type_Get...): Only consider inherited static
5917         members if FlattenHierarchy is set.
5919         * reflection.c (mono_image_add_decl_security): New function to emit
5920         declarative security.
5922         * reflection.h reflection.c: Add support for declarative security.
5924         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
5925         
5926 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
5928         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
5929         
5930         * appdomain.c verify.c: Moved corlib version checking into its own
5931         function in appdomain.c since it needs to create vtables etc.
5933 2003-12-13  Patrik Torstensson <p@rxc.se>
5935         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
5936         instead of unwrapped server.
5938 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
5940         * verify.c (check_corlib): Fix field index.
5942 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
5944         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
5945         GetGacPath icall.
5947 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
5949         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
5950         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
5951         cope with sizeof(size_t) != sizeof(guint32).
5953 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5955         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
5956         in case of failure.
5958 2003-12-10  Mark Crichton <crichton@gimp.org>
5960         * icall.c: removed the GetNonZeroBytes.  We now handle this case
5961         in managed code.
5963         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
5965 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
5967         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
5968         marked as deleted.
5970 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
5972         * verify.c (check_corlib): Handle the case when the version field is 
5973         initialized by a static constructor.
5975 2003-12-08  Patrik Torstensson  <p@rxc.se>
5977     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
5979 2003-12-08  Martin Baulig  <martin@ximian.com>
5981         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
5982         a MonoReflectionGenericParameter, also take the parameter index
5983         and name as arguments.
5984         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
5985         (ves_icall_MonoGenericParam_initialize): New interncall.
5986         (ves_icall_Type_make_byref_type): New interncall.
5988         * reflection.h (MonoReflectionGenericParam): Derive from
5989         MonoReflectionType, not just from MonoObject.  Added `refobj' and
5990         `index' fields.
5992         * reflection.c (mono_reflection_define_generic_parameter): Create
5993         and return a new MonoReflectionGenericParam; don't initialize the
5994         constraints here.
5995         (mono_reflection_initialize_generic_parameter): New public method;
5996         initializes the constraints and creates the `param->pklass'.
5998 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
6000         * reflection.h reflection.c: Use the new fields 'num_types', 
6001         'num_fields' and 'num_methods' to track the number of types etc.
6003         * verify.c (check_corlib): Check corlib version number.
6005 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
6007         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
6008         function works on all methods.
6010 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
6012         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
6013         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
6014         the custom_type_info flag of the transparent proxy.
6015         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
6016         objects that supports IRemotingTypeInfo.
6017         * object.h: Added custom_type_info field in transparent proxy.
6019 2003-12-06  Martin Baulig  <martin@ximian.com>
6021         * class.c (mono_class_create_from_generic): Removed.
6022         (mono_class_from_generic): Check `ginst->klass' before doing
6023         anything else.  This is important to fully support "recursive"
6024         generic types.
6026         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
6027         empty `generic_inst->klass' before doing anything else.
6029 2003-12-06  Dick Porter  <dick@ximian.com>
6031         * verify.c: 
6032         * object.h:
6033         * icall.c:
6034         * locales.c: Use C structs to access class fields.  Don't do a
6035         conversion between MonoString and UChar because both are
6036         platform-endian UTF-16.  Compare now takes startindex and count
6037         parameters.  Add a char overload for IndexOf.  Speed up the
6038         invariant string IndexOf.
6040 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
6042         * Makefile.am (monosn_LDADD): Fix parallel build.
6044 2003-12-04  Martin Baulig  <martin@ximian.com>
6046         * icall.c
6047         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
6048         (ves_icall_Type_make_array_type): New interncall.       
6050 2003-12-04  Martin Baulig  <martin@ximian.com>
6052         * locales.c: also change it in the !HAVE_ICU case.
6054 2003-12-04  Dick Porter  <dick@ximian.com>
6056         * icall.c:
6057         * locales.c: construct_compareinfo is now in CompareInfo, not
6058         CultureInfo.
6060 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
6062         * image.c (mono_image_load_file_for_image): Cache loaded images in the
6063         image->files array.
6065         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
6066         table as well.
6068         * assembly.c (mono_assembly_load_references): Only load references
6069         once.
6071         * class.c (mono_class_from_name): Avoid linear search of the 
6072         EXPORTEDTYPE table.
6074         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
6076 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
6078         * image.h (MonoImage): Add 'field_cache' field.
6080         * loader.c (mono_field_from_token): Cache field lookups.
6081         
6082         * reflection.c (mono_module_get_object): Fix name property.
6084         * icall.c (ves_icall_get_enum_info): Update after changes to 
6085         mono_metadata_get_constant_index ().
6087         * icall.c: Get rid of get_type_info icall, use a separate icall for
6088         each type property to avoid needless memory allocations. Fixes #51514.
6090         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
6091         to avoid needless binary searches.
6093         * class.c (class_compute_field_layout): Move the initialization of
6094         field->def_value to mono_class_vtable ().
6096         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
6097         non-corlib types.
6099         * object.c (mono_object_allocate): Make it inline.
6101         * object.c (mono_object_allocate_spec): Make it inline.
6102         
6103 2003-12-02  Dick Porter  <dick@ximian.com>
6105         * locales.c (create_NumberFormat): NumberFormatInfo construction.
6106         Patch by Mohammad DAMT (mdamt@cdl2000.com).
6108 2003-12-01  Dick Porter  <dick@ximian.com>
6110         * threads.c: Fix signature and call in CreateMutex and
6111         CreateEvent.
6113 2003-12-01  Dick Porter  <dick@ximian.com>
6115         * icall.c: 
6116         * locales.c: Implement string compares and searching
6118         * object.h: Add extra Thread field
6120 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
6122         * reflection.c (fixup_method): Add support for MonoCMethod.
6124 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
6126         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
6128         * reflection.c (assembly_name_to_aname): Allow extra characters in
6129         assembly names. Fixes #51468.
6131 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
6133         * exception.c (mono_exception_from_name_domain): New helper function.
6135         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
6136         exception object in the correct domain.
6138         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
6139         formatting + make a copy a the input data.
6141         * loader.c (mono_get_method_from_token): Methods which contain
6142         native code do not have entries in the ImplMap.
6144         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
6145         Thanks to Gonzalo for spotting this.
6146         
6147         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
6148         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
6150         * assembly.h (mono_assembly_load_from): Split the second part of 
6151         assembly loading into a new public function.
6153         * exception.h (mono_get_exception_bad_image_format): New function.
6155 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
6157         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
6158         Enumerate all modules inside a dynamic assembly. Fixes #51293.
6159         
6160         * icall.c: Add new icall for creating dynamic methods.
6162         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
6164         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
6166         * reflection.c (mono_reflection_create_dynamic_method): New icall to
6167         create a dynamic method.
6169         * reflection.c (resolve_object): New helper function.
6171         * reflection.c: Generalize ReflectionMethodBuilder and the functions
6172         which manipulate it so they can also work on dynamic methods.
6174         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
6175         creating the MonoReflectionMethodAux structure if it is not needed.
6176         
6177         * reflection.h verify.c: Update after changes to object layout.
6179         * reflection.c (method_builder_encode_signature): Fix compilation on
6180         gcc 2.95.x.
6182 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
6184         * appdomain.h: Added support for context static fields. Added static_data
6185           field to MonoAppContext and renamed thread_static_fields to a more
6186           generic special_static_fields in MonoAppDomain, since it can now contain
6187           context static fields.
6188         * domain.c: Updated hashtable name.
6189         * object.c: Replaced field_is_thread_static() for a more generic
6190           field_is_special_static() which also checks for context static attribute.
6191           In mono_class_vtable(), added support for static context fields.
6192         * threads.c: Changed methods that manage thread static fields to more
6193           generic methods so they can be reused both for thread and context static
6194           data.
6195         * threads.h: Declared some new methods.
6197 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
6199         * reflection.h: Update after changes to the managed types.
6201         * reflection.c (encode_custom_modifiers): New helper function.
6203         * reflection.c (method_encode_signature): Emit custom modifiers.
6205         * reflection.c (field_encode_signature): Emit custom modifiers.
6207 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
6209         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
6211         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
6212         implementation.
6214         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
6215         icall.
6217         * object.c (mono_field_get_value_object): New function.
6219         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
6220         specific.
6222 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
6224         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
6225         return a preallocated out-of-memory exception instance.
6227         * object.c (out_of_memory): Use the new function.
6229         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
6230         flag is before the custom modifiers. Fixes #49802.
6232 2003-11-16  Martin Baulig  <martin@ximian.com>
6234         * class.c (mono_class_is_open_constructed_type): Implemented the
6235         MONO_TYPE_GENERICINST case.
6237 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
6239         * assembly.c (mono_assembly_fill_assembly_name): New function to
6240         fill out the MonoAssemblyName structure.
6241         (mono_assembly_open): Use the new function.
6243         * icall.c (fill_reflection_assembly_name): New helper function.
6245         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
6246         new function.
6248         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
6250 2003-11-15  Martin Baulig  <martin@ximian.com>
6252         * class.c (mono_class_is_open_constructed_type): New public
6253         function; checks whether a type is an open constructed type,
6254         ie. whether it still contains type parameters.
6255         (mono_class_inflate_generic_type): If we're a type parameter and
6256         the inflated type is also a MONO_TYPE_(M)VAR, return the original
6257         type.
6259         * class.h (MonoGenericInst): Added `guint32 is_open'.
6261         * loader.c (method_from_methodspec): Check whether we're an open
6262         or closed constructed type and set `ginst->is_open'.
6264         * reflection.c (mono_reflection_bind_generic_parameters): Check
6265         whether we're an open or closed constructed type and set
6266         `ginst->is_open'.
6267         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
6268         from open constructed types.
6270 2003-11-15  Martin Baulig  <martin@ximian.com>
6272         * reflection.c (mono_reflection_bind_generic_parameters): If we're
6273         a generic instance (instead of a generic type declaration) with
6274         unbound generic parameters, bind them to our actual types.
6276 2003-11-14  Martin Baulig  <martin@ximian.com>
6278         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
6280         * reflection.c (mono_reflection_bind_generic_parameters): If we're
6281         an interface type, populate `res->interfaces' with instantiated
6282         versions of all the interfaces we inherit.
6284 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
6286         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
6287         when MONO_PATH is set but doesn't contain the install dir.
6289 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6291         * icall.c:
6292         (ves_icall_Type_GetInterfaces): don't return an interface twice when
6293         it's also implemented in base classes. Fixes bug #50927.
6295 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
6297         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
6298         if this method is called from a finalizer. Fixes #50913.
6300 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
6302         * threads.c: Implement VolatileRead/VolatileWrite
6304         * icall.c: Add new icalls for VolatileRead/VolatileWrite
6306 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
6308         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
6309         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
6310         2.95.3.
6312         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
6313         from Peter Ross (pro@missioncriticalit.com).
6314         
6315 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
6317         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
6319 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
6321         * assembly.c (mono_assembly_load_references): Disable check because it
6322         triggers on older corlibs which lots of people have.
6324 2003-11-12  Jackson Harper  <jackson@ximian.com>
6326         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
6327         load corlib.dll if mscorlib.dll is not found.
6328         * assembly.h: Remove corlib name define.
6329         * class.c:
6330         * domain.c:
6331         * image.c: Change corlib name to mscorlib.
6332         
6333 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
6335         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
6337 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
6339         * appdomain.h: Added loader_optimization here to sync with the C#
6340         code, and add disallow_binding_redirects field.
6342 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
6344         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
6346         * reflection.c (mono_image_build_metadata): Fix crash on modules
6347         with no types.
6349         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
6351         * icall.c (ves_icall_get_method_info): Return callingConvention as
6352         well.
6354         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
6355         namespaces from the EXPORTEDTYPE table as well.
6357         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
6358         from all modules inside the assembly.
6359         
6360 2003-11-11  Martin Baulig  <martin@ximian.com>
6362         * reflection.c (mono_reflection_bind_generic_parameters): Make
6363         this work for interfaces.
6365 2003-11-11  Martin Baulig  <martin@ximian.com>
6367         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
6369 2003-11-11  Martin Baulig  <martin@ximian.com>
6371         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
6372         "MonoInflatedMethod" and "MonoInflatedCtor".
6374 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
6376         * reflection.c (resolution_scope_from_image): Use the assembly table
6377         from the manifest module, since other modules don't have it.
6379         * debug-helpers.c (mono_type_full_name): New helper function.
6381         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
6383         * image.c (mono_image_load_file_for_image): New public function which
6384         is a replacement for the load_file_for_image in class.c.
6386         * assembly.c (mono_assembly_load_module): A wrapper for the function
6387         above which does assembly association and reference loading too.
6389         * class.c (mono_class_from_name): Call mono_assembly_load_module.
6391 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6393         * appdomain.c: not all of the attributes for the full assembly name
6394         are required and the order doesn't matter. Fixes bug #50787.
6396 2003-11-10  Dick Porter  <dick@ximian.com>
6398         * locales.c: Use platform-endian UTF16
6400 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
6402         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
6403         
6404 2003-11-10  Martin Baulig  <martin@ximian.com>
6406         * metadata.c
6407         (mono_metadata_load_generic_params): Make this actually work.
6409         * reflection.c (mono_reflection_bind_generic_parameters): If our
6410         parent is a generic instance, pass all the `types' to it, no
6411         matter whether it has the same number of type parameters or not.
6413 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
6415         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
6417         * assembly.c (mono_assembly_load_references): Move the image<->assembly
6418         assignment code to this function so it gets called recursively for all
6419         modules.
6421         * image.c (load_modules): Remove the assembly assignment since it is
6422         now done by mono_assembly_load_references.
6423         
6424         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
6425         Add 'module' argument.
6426         (mono_module_get_types): New helper function.
6427         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
6429 2003-11-08  Martin Baulig  <martin@ximian.com>
6431         * class.c (mono_class_inflate_generic_method): Interface method
6432         don't have a header.
6434         * reflection.c (mono_image_get_methodspec_token): Take an
6435         additional `MonoGenericInst *' argument instead of reading it from
6436         the header; this is necessary to support interfaces.
6437         (mono_image_create_token): Pass the `MonoGenericInst *' from the
6438         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
6439         (inflated_method_get_object): Take an additional `MonoGenericInst *'
6440         argument.
6442         * reflection.h (MonoReflectionInflatedMethod): Added
6443         `MonoGenericInst *ginst'.
6445 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
6447         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
6449 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
6451         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
6453 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
6455         * reflection.c 
6456         (reflection_methodbuilder_from_method_builder):
6457         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
6458         initialize a ReflectionMethodBuilder structure.
6459         (mono_image_get_methodbuilder_token):
6460         (mono_image_get_ctorbuilder_token): New functions to emit memberref
6461         tokens which point to types in another module inside the same assembly.
6463         * reflection.c: Use the new helper functions.
6464         
6465         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
6467         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
6468         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
6470         * reflection.c (resolution_scope_from_image): Emit a moduleref if
6471         neccesary.
6473         * reflection.c (mono_image_build_metadata): Emit metadata only for the
6474         current module. Emit the manifest only for the main module.
6476         * reflection.c (mono_image_create_token): Add assertion when a 
6477         memberref needs to be created.
6479         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
6481         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
6482         larger buffer for the custom attribute blob. Fixes #50637.
6483         
6484 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6486         * threadpool.c: notify listener on async processing handles after
6487         invoking the async callback. Thanks to Zoltan.
6489 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
6491         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
6492         avoid code duplication.
6494         * reflection.h (MonoDynamicImage): New type which is currently unused,
6495         but will be used through the ref.emit code in place of 
6496         MonoDynamicAssembly.
6498         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
6499         object layout.
6501         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
6502         a MonoDynamicImage instead of just a MonoImage.
6503         
6504         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
6505         icalls to ModuleBuilder but keep their semantics, so they will work
6506         with moduleb->assemblyb. This will change later.
6507         
6508 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
6510         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
6511         object layout.
6513         * reflection.c (mono_image_build_metadata): Avoid creation of a default
6514         main module, since it is now done by the managed code.
6516 2003-11-03  Martin Baulig  <martin@ximian.com>
6518         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
6519         `ginst->klass' here.
6520         (method_encode_methodspec): Don't use the `ginst->generic_method's
6521         klass if it's a generic instance, use `ginst->klass' in this case.
6523 2003-11-03  Martin Baulig  <martin@ximian.com>
6525         * reflection.c (mono_image_get_generic_method_param_info):
6526         Removed, use mono_image_get_generic_param_info() instead.
6527         (mono_image_get_type_info): Write the GenericParam table before
6528         the Method table.  This is neccessary because in the GenericParam
6529         table, type parameters of the class (ie. '!0' etc.) must come
6530         before the ones from its generic methods (ie. '!!0' etc).
6532 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
6534         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
6536 2003-11-02  Martin Baulig  <martin@ximian.com>
6538         * reflection.c (create_generic_typespec): Take a
6539         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
6540         the generic parameters from it.
6542 2003-11-02  Martin Baulig  <martin@ximian.com>
6544         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
6545         instead of a `MonoClassField *' since we just need the type.
6546         (create_generic_typespec): New static function.  Creates a
6547         TypeSpec token for a generic type declaration.
6548         (mono_image_get_generic_field_token): New static function.
6549         (mono_image_create_token): If we're a FieldBuilder in a generic
6550         type declaration, call mono_image_get_generic_field_token() to get
6551         the token.
6553 2003-11-02  Martin Baulig  <martin@ximian.com>
6555         * reflection.h
6556         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
6557         `MonoReflectionGenericInst *declaring_type' and
6558         `MonoReflectionGenericInst *reflected_type' fields.
6560         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
6561         `MonoReflectionGenericInst *declaring_type' and a
6562         `MonoReflectionGenericInst *reflected_type' argument instead of a
6563         single `MonoReflectionGenericInst *type' one.  Set
6564         `res->declaring_type' and `res->reflected_type' from them.
6565         (mono_reflection_inflate_field): Likewise.      
6567 2003-11-02  Martin Baulig  <martin@ximian.com>
6569         * class.c (mono_class_setup_vtable): Don't store generic methods
6570         in the vtable.  
6572 2003-11-02  Martin Baulig  <martin@ximian.com>
6574         * reflection.h (MonoReflectionGenericInst): Added
6575         `MonoReflectionType *declaring_type'.
6577         * reflection.c (mono_reflection_bind_generic_parameters): Use
6578         `if (tb->parent)' instead of `klass->parent'.
6580 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
6582         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
6583         with an empty ASSEMBLY table.
6585         * reflection.c (mono_image_build_metadata): Avoid using the same loop
6586         variable in the inner and outer loops.
6588 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
6590         * metadata.h (mono_metadata_make_token): Put parentheses around macro
6591         argument.
6593         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
6594         
6595         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
6596         icalls. Instead, do everything in managed code. This is needed since
6597         it is hard to restore the original domain etc. in unmanaged code in the
6598         presence of undeniable exceptions.
6600         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
6601         New icalls to push and pop appdomain refs.
6603 2003-10-31  Martin Baulig  <martin@ximian.com>
6605         * class.c (inflate_generic_type): Renamed to
6606         mono_class_inflate_generic_type() and made it public.
6608         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
6609         New interncall.
6611         * loader.c (mono_field_from_memberref): Also set the retklass for
6612         typespecs.
6614         * fielder.c (mono_image_get_inflated_field_token): New static
6615         method; creates a metadata token for an inflated field.
6616         (mono_image_create_token, fixup_method): Added support for
6617         "MonoInflatedField".
6618         (fieldbuilder_to_mono_class_field): New static function.
6619         (mono_reflection_inflate_field): New public function.
6621         * reflection.h
6622         (MonoReflectionGenericInst): Added `MonoArray *fields'.
6623         (MonoReflectionInflatedField): New typedef.     
6625 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
6627         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
6628         for Solaris and other platforms without s6_addr16
6630 2003-10-30  Martin Baulig  <martin@ximian.com>
6632         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
6633         argument instead of two.
6634         (mono_class_inflate_generic_signature): Likewise.
6635         (inflate_generic_header): Likewise.
6636         (mono_class_inflate_generic_method): Likewise.  In addition, if
6637         `ginst->klass' is set, it becomes the new `method->klass'.
6639         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
6640         field.
6642         * reflection.c (encode_generic_method_sig): Write a 0xa as the
6643         first byte. [FIXME]
6644         (method_encode_methodspec): If we have generic parameters, create
6645         a MethodSpec instead of a MethodRef.
6646         (fixup_method): Added support for "MonoInflatedMethod" and
6647         "MonoInflatedCtor".
6648         (mono_image_create_token): Added support for "MonoInflatedMethod"
6649         and "MonoInflatedCtor".
6650         (inflated_method_get_object): New static function; returns a
6651         managed "System.Reflection.MonoInflatedMethod" object.
6652         (mono_reflection_bind_generic_method_parameters): Return a
6653         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
6654         (mono_reflection_inflate_method_or_ctor): Likewise.
6655         (mono_image_get_generic_method_param_info): Initialize unused
6656         fields to zero.
6657         (mono_image_get_generic_param_info): Likewise.
6659         * reflection.h (MonoReflectionInflatedMethod): New public
6660         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
6661         "S.R.MonoInflatedCtor" classes.
6663         * loader.c (method_from_memberref): If we're a TypeSpec and it
6664         resolves to a generic instance, inflate the method.
6666 2003-10-28  Dick Porter  <dick@ximian.com>
6668         * object.c (mono_runtime_run_main): Convert command-line arguments
6669         into utf8, falling back to the user's locale encoding to do so.
6671 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
6673         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
6674         at this time.
6676         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
6678         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
6679         up icalls at method definition time. Partially fixes #33569.
6681 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
6683         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
6684         marshalling of arrays. Fixes #50116.
6686         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
6688         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
6689         points to a vtable in the dying appdomain.
6691         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
6692         listeners into unmanaged code inside the lock.
6694         * object.c (mono_class_vtable): Turn off typed allocation in non-root
6695         domains and add some comments.
6697 2003-10-25  Martin Baulig  <martin@ximian.com>
6699         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
6701         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
6703         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
6704         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
6705         currently parsing.  Create the generic class and store it in
6706         `generic_inst->klass' before parsing the type arguments.  This is
6707         required to support "recursive" definitions; see mcs/tests/gen-23.cs
6708         for an example.
6709         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
6710         to support recursive typespec entries.
6712         * class.c (mono_class_setup_parent): If our parent is a generic
6713         instance, we may get called before it has its name set.
6714         (mono_class_from_generic): Splitted into
6715         mono_class_create_from_generic() and mono_class_initialize_generic().
6717 2003-10-25  Martin Baulig  <martin@ximian.com>
6719         * icall.c (ves_icall_Type_BindGenericParameters): Return a
6720         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
6721         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
6722         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
6724         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
6725         (create_typespec): Likewise.
6726         (mono_reflection_bind_generic_parameters): Return a
6727         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
6728         (mono_reflection_inflate_method_or_ctor): New public function.
6730         * reflection.h (MonoReflectionGenericInst): New typedef.        
6732 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
6734         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
6735         inside the domain lock. Fixes #49993.
6736         
6737         * object.c (mono_class_vtable): When typed allocation is used, 
6738         allocate vtables in the GC heap instead of in the mempool, since the
6739         vtables contain GC descriptors which are used by the collector even
6740         after the domain owning the mempool is unloaded.
6742         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
6744         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
6745         reflect what it does. Also invalidate mempools instead of freeing
6746         them if a define is set.
6748         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
6749         of the appdomain.
6750         
6751         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
6752         hold the finalizable objects in this domain.
6754         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
6755         appdomain.
6757         * appdomain.c (mono_domain_set): New function to set the current
6758         appdomain, but only if it is not being unloaded.
6760         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
6761         appdomain which is being unloaded.
6762         
6763         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
6764         unloading of the root appdomain.
6766         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
6767         icall to execute a method in another appdomain. Intended as a 
6768         replacement for InternalSetDomain, which can confuse the code 
6769         generation in the JIT.
6771         * appdomain.c (mono_domain_is_unloading): New function to determine
6772         whenever an appdomain is unloading.
6774         * appdomain.c (mono_domain_unload): New function to correctly unload
6775         an appdomain.
6777         * assembly.c (mono_assembly_load_references): Check that an assembly
6778         does not references itself.
6780         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
6781         domain manually, it asks the finalizer thread to do it, then waits for
6782         the result. Also added a timeout.
6784         * icall.c: Register the new icalls.
6786         * threads.h threads.c: Export the mono_gc_stop_world and 
6787         mono_gc_start_world functions.
6788         
6789         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
6790         function to fill out the mempool with 0x2a.
6792 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
6794         * reflection.h (MonoReflectionMethodAux): New structure to store
6795         information which is rarely used, thus is not in the MonoMethod
6796         structure.
6798         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
6799         store the aux info.
6801         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
6802         and marshalling info into the aux structure.
6804         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
6805         from the aux structure.
6807         * loader.c (mono_method_get_param_names): Retrieve the param names from
6808         the aux structure.
6809         
6810 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
6812         * exception.h exception.c: Add AppDomainUnloadedException && fix 
6813         warning.
6815 2003-10-21  Dick Porter  <dick@ximian.com>
6817         * socket-io.c
6818         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
6819         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
6821 2003-10-21  Martin Baulig  <martin@ximian.com>
6823         * reflection.c (mono_reflection_bind_generic_parameters):
6824         `klass->parent' is NULL for interfaces.
6826 2003-10-21  Martin Baulig  <martin@ximian.com>
6828         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
6830 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
6832         * exception.c (mono_exception_from_name_msg): New helper function for
6833         creating exceptions and initializing their message field.
6835         * exception.c: Simplify functions using the new helper.
6837         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
6838         New function.
6840         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
6841         mono_raise_exception, since otherwise gcc doesn't generate the function
6842         epilog for raise_exception, confusing the stack unwinding in the JIT.
6843         Fixes #45043.
6845         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
6846         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
6847         Fixes #49499.
6849 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6851         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
6852         utf8.
6854 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
6856         * icall.c: Removed GetUninitializedObject method because
6857           AllocateUninitializedClassInstance does the same.
6859 2003-10-18  Martin Baulig  <martin@ximian.com>
6861         * class.c (inflate_generic_signature): Renamed to
6862         mono_class_inflate_generic_signature() and made it public.
6863         (my_mono_class_from_generic_parameter): New static function; if we
6864         don't already have the generic parameter's MonoClass, create a
6865         very simple one which is just used internally in the runtime and
6866         not passed back to managed code.
6868         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
6870         * metadata.h (MonoMethodSignature): Moved the
6871         `MonoGenericParam *gen_params' to the MonoMethodHeader.
6872         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
6874         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
6875         ves_icall_MonoMethod_GetGenericArguments(); this is now an
6876         interncall on the MonoMethod class, not on MethodInfo.
6877         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
6878         calling mono_reflection_bind_generic_method_parameters() directly.
6880         * loader.c (mono_method_get_signature): If this is a MethodSpec;
6881         return the already computed `method->signature'.
6882         (method_from_methodspec): New static function to load a method
6883         from a MethodSpec entry.
6884         (mono_get_method_from_token): Call the new method_from_methodspec()
6885         for MethodSpec tokens.  
6886         (mono_get_method_from_token): If we're a generic method, load the
6887         type parameters.
6889         * reflection.c (mono_image_get_memberref_token): Allow
6890         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
6891         table.
6892         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
6893         (mono_image_create_token): First check whether it's a generic
6894         method (so we'd need to create a MethodSpec), then do the other
6895         two alternatives.
6896         (mono_reflection_bind_generic_method_parameters): Return a
6897         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
6898         called directly from the interncall.
6900 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
6902         * reflection.c (load_public_key): Move loading of the public key
6903         into managed code.
6905         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
6907         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
6908         fields.
6910         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
6911         culture, hash_alg and public_key. Fixes #49555.
6913 2003-10-17  Martin Baulig  <martin@ximian.com>
6915         * class.h (MonoGenericInst): Moved this declaration here and added
6916         `MonoMethod *generic_method'.
6918         * icall.c
6919         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
6920         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
6922         * metadata.c (mono_metadata_type_equal): Two types of
6923         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
6924         index; ie. don't compare the address of the `MonoGenericParam'
6925         structure.
6926         (mono_metadata_load_generic_params): Removed the `MonoMethod
6927         *method' argument.
6929         * metadata.h (MonoGenericInst): Moved declaration to class.h.
6930         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
6932         * reflection.c (method_encode_signature): Encode the number of
6933         generic parameters.
6934         (encode_generic_method_sig): New static function.
6935         (method_encode_methodspec): New static function; creates an entry
6936         in the MethodSpec table for a generic method.
6937         (mono_image_get_methodspec_token): New static function.
6938         (mono_image_create_token): Call mono_image_get_methodspec_token()
6939         for generic methods.
6940         (mono_reflection_bind_generic_method_parameters): New public
6941         function.  Instantiates a generic method.
6943 2003-10-16  Martin Baulig  <martin@ximian.com>
6945         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
6946         *gen_params' here from MonoMethodHeader.
6948         * metadata.c (mono_metadata_parse_method_signature): If we have
6949         generic parameters, initialize `method->gen_params' and then set
6950         the correct `type->data.generic_param' in all the parameters.
6952 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
6954         * threads.c (mono_threads_get_default_stacksize): New function to 
6955         return the default stacksize.
6957         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
6958         termination of the finalizer thread, since the previous method had
6959         race conditions. Fixes #49628.
6961         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
6962         as for the other managed threads.
6964 2003-10-16  Martin Baulig  <martin@ximian.com>
6966         * class.c (inflate_generic_signature): Copy `generic_param_count'
6967         and `gen_params'.
6969         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
6970         New interncall.
6972         * metadata.c (mono_metadata_parse_method_signature): Actually set
6973         the `method->generic_param_count' here.
6974         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
6976 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
6978         * object.h: Add a new field to TypedRef to simplify the implementation
6979         of the REFANY opcodes in the JIT.
6981         * icall.c: Make use of the new field.
6983         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
6984         dynamically.
6986 2003-10-15  Martin Baulig  <martin@ximian.com>
6988         * class.c (mono_class_from_gen_param): Renamed to
6989         mono_class_from_generic_parameter() and moved most of the
6990         functionality from mono_reflection_define_generic_parameter()
6991         here; ie. we create a "real" class here.
6992         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
6993         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
6994         previously been called.
6996         * class.h (MonoGenericParam): Moved the declaration of this struct
6997         here from metadata.h and added `MonoMethod *method'.
6999         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
7000         interncall.
7002         * loader.c (mono_get_method_from_token): If we have any generic
7003         parameters, call mono_metadata_load_generic_params() to read them
7004         from the MONO_TABLE_GENERICPAR.
7006         * metadata.c (mono_metadata_load_generic_params): Added
7007         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
7009         * metadata.h (MonoMethodSignature): Replaced
7010         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
7011         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
7013         * reflection.c (mono_reflection_define_generic_parameter): Moved
7014         most of the functionality into the new
7015         mono_class_from_generic_parameter(); set the `method' field if
7016         we're a method parameter.       
7018 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
7020         * marshal.c (emit_struct_conv): if native size is 0
7021         emit no code.
7023 2003-10-14  Martin Baulig  <martin@ximian.com>
7025         * icall.c: The generics API has changed in the spec since it was
7026         added to System.Type; these modifications make it match the spec
7027         again.
7028         (ves_icall_Type_GetGenericParameters): Renamed to
7029         `ves_icall_Type_GetGenericArguments'.
7030         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
7031         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
7032         `ves_icall_MonoType_get_HasGenericArguments'.
7033         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
7034         `ves_icall_MonoType_get_IsGenericParameter'.
7035         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
7036         this is no interncall anymore.
7037         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
7038         `ves_icall_TypeBuilder_get_IsGenericParameter'.
7040 2003-10-14  Martin Baulig  <martin@ximian.com>
7042         * reflection.c (mono_reflection_bind_generic_parameters): Also
7043         inflate generic methods if we're reading the class from IL.
7045 2003-10-13  Martin Baulig  <martin@ximian.com>
7047         * reflection.c (mono_reflection_define_generic_parameter): This
7048         method isn't called directly from the icall anymore; take a
7049         `MonoReflectionAssemblyBuilder *' so we can use this for type and
7050         method generic parameters.
7051         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
7052         (method_builder_encode_signature): Encode generic parameters.
7053         (mono_image_get_method_info): Write generic params to the
7054         MONO_TABLE_GENERICPARAM table.
7056         * reflection.h (MonoReflectionMethodBuilder): Added
7057         `MonoArray *generic_params'.
7059         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
7061         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
7062         wrapper for mono_reflection_define_generic_parameter().
7063         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
7065 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
7067         * marshal.h: Add missing function to fix build.
7069         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
7070         the SetLastError pinvoke attribute.
7072         * marshal.c (mono_marshal_set_last_error): New helper function called
7073         by the generated code.
7074         
7075         * marshal.c (mono_mb_emit_branch): New helper function.
7077         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
7079         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
7080         classes as parameters and return values of delegates. Fixes #29256. 
7082 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
7084         * locales.c: use gint32 in non HAVE_ICU case
7086 2003-10-11  Martin Baulig  <martin@ximian.com>
7088         * mono-debug.c (mono_debug_add_method): Added a workaround for
7089         bug #48591.
7091 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
7093         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
7094         delegates passed to native code must use the STDCALL calling 
7095         convention. Fixes #35987.
7097 2003-10-10  Martin Baulig  <martin@ximian.com>
7099         * class.c (inflate_generic_type): If we're inflating for a generic
7100         type instance (and not for a generic method), return
7101         MONO_TYPE_MVAR unchanged.
7103 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7105         * string-icalls.c: Join ignores null strings in the source array.
7106         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
7107         * threads.c: GetAvailableTheads is slightly more accurate.
7109 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
7111         * threads.h threads.c : add mono_threads_set_default_stacksize
7112         and pass default to CreateThread calls.
7114 2003-10-09  Dick Porter  <dick@ximian.com>
7116         * icall.c:
7117         * locales.h:
7118         * locales.c: Internal calls for constructing CultureInfo and
7119         related objects from libicu (if its available.)
7121 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
7123         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
7125 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7127         * threadpool.c: added an argument to async_invoke_thread that is the
7128         item to process, pass the MonoAsyncResult to the thread start function
7129         when creating a new thread. This way we don't need to acquire any lock
7130         when we're creating a new thread. Readded a semaphore for faster
7131         response times (instead of that Sleep i added).
7133 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
7135         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
7136         get daylight change dates better on Windows, fix handling
7137         of platforms without tm_gmtoff.
7139 2003-10-06  Martin Baulig  <martin@ximian.com>
7141         * class.c (inflate_generic_method): Renamed to
7142         mono_class_inflate_generic_method() and made public.
7143         (mono_class_init): Don't inflate the generic methods here.
7144         (mono_class_from_generic): Added `gboolean inflate_methods'
7145         argument.  Inflate the methods here.
7147         * loader.c (mono_method_get_param_names): Ignore instances of
7148         generic types for the moment.
7150         * reflection.c (fixup_method): Added support for inflated methods.
7151         (mono_image_create_token): Use mono_image_get_methodref_token()
7152         for inflated methods.
7153         (mono_custom_attrs_from_param): Ignore instances of generic types
7154         for the moment.
7155         (mono_reflection_bind_generic_parameters): New public function.
7156         Moved all the functionality from
7157         ves_icall_Type_BindGenericParameters() here and added support for
7158         dynamic types.
7159         (mono_reflection_define_generic_parameter): Initialize
7160         `klass->methods' here.
7162         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
7163         functionality into mono_reflection_define_generic_parameter().
7164         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
7165         TypeBuilder, return that TypeBuilder.
7167 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7169         * appdomain.c: removed mono_delegate_semaphore.
7171         * threadpool.c:
7172         (mono_thread_pool_add): moved hash table creation inside and the thread 
7173         creation outside of the critical region.
7174         (mono_thread_pool_finish): removed obsolete code.
7175         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
7176         continue or exit the thread depending on the queue.
7178 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
7180         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
7181         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
7182         handle more bool marshalling options
7184 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
7186         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
7187         arrays of structs. Also add a more descriptive error message when
7188         a structure member is marshalled as LPArray.
7190 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
7192         * marshal.c (mono_marshal_get_native_wrapper): Add support for
7193         marshalling arrays of complex types. Fixes #29098. Also remove an
7194         usused and incomplete function.
7196 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
7198         * gc.c: report heap_size - free_bytes as total memory allocated
7199         (bug#49362).
7201 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
7203         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
7204         fix timezone handling problems on Windows.
7205         
7206         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
7207         asserts when the year is outside the range handled by ms the functions.
7209         * class.c (setup_interface_offsets): If the class is an interface,
7210         fill out its interface_offsets slot.
7212 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7214         * threadpool.c: mark threadpool threads as background.
7216 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
7218         * decimal.c - define DECINLINE to nothing if not using GCC
7220 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
7222         * assembly.c: More refcount fixes.
7224 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7226         * string-icalls.c: if we're not trimming, return the same string.
7227         When not splitting, don't create a new string.
7229 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7231         * image.c:
7232         (mono_image_open): increment the ref_count inside the critical section.
7234 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
7236         * image.c (mono_image_open): Fix reference counting bug.
7238 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
7240         * marshal.c (mono_marshal_type_size) struct alignment changed for 
7241         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
7242         64bits. Avoid leak in mono_marshal_get_native_wrapper when
7243         mono_lookup_pinvoke_call throws.        
7245 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
7247         * reflection.c (mono_reflection_parse_type): Fix #49114.
7249         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
7250         temporary workaround for cygwin header problem.
7252         * object.c (mono_object_isinst): Synchronize this with the code
7253         generated by the JIT for casts.
7255 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
7257         * reflection.c (encode_type): Fix #38332.
7259 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
7261         * marshal.c (mono_marshal_method_from_wrapper): New function to return
7262         the original method from the wrapper method.
7264 2003-09-25  Martin Baulig  <martin@ximian.com>
7266         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
7267         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
7268         (ves_icall_Type_get_IsGenericInstance): New interncall.
7270 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
7272         * object.c: fix cast warning in big endian code.
7274 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
7276         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
7277         
7278 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7280         * assembly.c: don't call check_env from mono_assembly_load. It's
7281         already done once in mono_assemblies_init and may cause headaches when
7282         multiple threads are loading assemblies.
7284 2003-09-19  Martin Baulig  <martin@ximian.com>
7286         * reflection.c (mono_reflection_define_generic_parameter): Don't
7287         allocate `klass->methods', set `klass->flags' to
7288         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
7290 2003-09-18  Martin Baulig  <martin@ximian.com>
7292         * class.c (mono_class_init): Don't create `class->methods' if it's
7293         already initialized.
7295         * metadata.c (mono_metadata_load_generic_params): Make this
7296         actually work.
7298         * reflection.c (mono_reflection_define_generic_parameter): Set
7299         parent class and interfaces from the constraints.
7301         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
7302         to keep this struct in sync with the declaration in TypeBuilder.cs.
7304 2003-09-17  Martin Baulig  <martin@ximian.com>
7306         * metadata.h (MonoType): Replaced the data's `int type_param'
7307         field with `MonoGenericParam *generic_param'.
7308         (MonoGenericParam): Added `MonoClass *klass'.
7310         * class.c (mono_class_from_gen_param): Removed the
7311         `MonoImage *image' and `int type_num' arguments.
7313         * metadata.c (mono_metadata_parse_generic_param): New static
7314         method; creates a MonoGenericParam which just contains the index.
7315         (do_mono_metadata_parse_type): Call
7316         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
7317         MONO_TYPE_MVAR.
7319         * reflection.c (mono_image_typedef_or_ref): Generic type
7320         parameters may be in the same assembly, but never use a typedef
7321         for them.
7322         (mono_reflection_define_generic_parameter): We're now creating a
7323         "real" class for the type parameter; it's now safe to call
7324         mono_class_from_mono_type() on the class'es type, it'll do the
7325         right thing.
7327 2003-09-16  Martin Baulig  <martin@ximian.com>
7329         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
7330         `symfile->range_entry_size' and `symfile->class_entry_size' here;
7331         the `symfile' data structure must be fully initialized before it
7332         gets added to the table.
7334 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
7336         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
7338         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
7339         class init trampolines.
7341 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
7343         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
7344         to the built-in profiler to turn off time and allocation profiling
7345         respectively.
7347 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
7349         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
7350         g_direct_equal.
7352         * debug-helpers.c (mono_method_full_name): Print the wrapper type
7353         in human readable form.
7355 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
7357         * reflection.c icall.c: Fixed warnings.
7359         * image.c (load_class_names): Use a temporary hash table to hold the
7360         namespaces in order to avoid doing many string comparisons.
7362         * image.h: Fix typo.
7364         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
7365         Pass NULL instead of g_direct_equal to the GHashTable constructor 
7366         since the NULL case is short-circuited inside g_hash_table_lookup, 
7367         leading to better performance.  
7369         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
7370         obtain the first custom attribute for a given index. Depends on the
7371         CustomAttribute table being sorted by the parent field.
7373         * reflection.c (mono_custom_attrs_from_index): Use the new function 
7374         for better performance.
7376 2003-09-07  Martin Baulig  <martin@ximian.com>
7378         * class.c (mono_class_init): If we're a generic instance, inflate
7379         all our methods instead of loading them from the image.
7380         (mono_class_from_generic): Set `class->methods = gklass->methods'.
7382 2003-09-07  Martin Baulig  <martin@ximian.com>
7384         * mono-debug-debugger.c: Added support for constructors.
7386 2003-09-06  Martin Baulig  <martin@ximian.com>
7388         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
7389         New interncall.
7391         * reflection.c (mono_reflection_setup_generic_class): Call
7392         ensure_runtime_vtable() to create the vtable.
7394 2003-09-05  Martin Baulig  <martin@ximian.com>
7396         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
7397         MONO_TYPE_MVAR.
7399 2003-09-04  Martin Baulig  <martin@ximian.com>
7401         * reflection.c (mono_reflection_define_generic_parameter): Generic
7402         parameters start with zero.
7404 2003-09-04  Martin Baulig  <martin@ximian.com>
7406         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
7408         * reflection.h (MonoReflectionGenericParam): New typedef.
7409         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
7410         the generic parameters from the managed TypeBuilder.
7412         * reflection.c (mono_reflection_define_generic_parameter): New function.
7413         (mono_reflection_create_runtime_class): Encode generic parameters.
7414         (mono_reflection_setup_generic_class): New function; this is
7415         called after adding adding all generic params to the TypeBuilder.
7416         (encode_type): Added MONO_TYPE_VAR.
7418 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
7420         * class.h class.c (mono_class_needs_cctor_run): Moved this method
7421         here from the JIT.
7423         * assembly.h assembly.c: Moved the AOT loading code into an assembly
7424         load hook.
7426 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
7428         * reflection.h reflection.c class.h class.c: Delete duplicate 
7429         definition of mono_type_get_name () from reflection.c and export the
7430         one in class.c.
7432         * class.c: Class loading fixes from Bernie Solomon 
7433         (bernard@ugsolutions.com).
7435         * reflection.c: Endianness fixes from Bernie Solomon 
7436         (bernard@ugsolutions.com).
7437         
7438 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
7440         * assembly.h assembly.c: Define a file format version for AOT
7441         libraries.
7442         
7443         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
7445         * appdomain.h (MonoJitInfo): New field to determine whenever the
7446         code is domain neutral.
7447         
7448 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
7450         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
7452 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
7454         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
7455         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
7456         Avoid caching the result since strings must be domain specific. Fixes
7457         #48050.
7459 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
7461         * marshal.c (mono_marshal_init): Make this callable multiple times
7462         since it is hard to find a correct place to call it.
7464         * object.c (mono_runtime_class_init): Execute static constructors in
7465         the correct appdomain.
7467         * image.c (build_guid_table): Handle the case when multiple images have
7468         the same GUID.
7470 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7472         * icall.c: added a couple of icalls for System.Web.
7474 2003-08-28  Martin Baulig  <martin@ximian.com>
7476         * icall.c (ves_icall_Type_BindGenericParameters): Use
7477         `klass->generic_inst' instead of `&klass->byval_arg' in the
7478         mono_type_get_object() call.  The returned type must be
7479         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
7481 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
7483         * NOTES: New file.
7485         * object.c (mono_class_proxy_vtable): Make it thread safe.
7487         * pedump.c: Fix warning.
7489         * object.c appdomain.h: Get rid of metadata_section. 
7490         It is no longer needed and it was causing deadlocks with domain->lock.
7492         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
7494 2003-08-26  Martin Baulig  <martin@ximian.com>
7496         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
7498 2003-08-26  Martin Baulig  <martin@ximian.com>
7500         * pedump.c (main): Call mono_metadata_init(),
7501         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
7502         and mono_loader_init().
7504 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
7506         * loader.h: Add missing include to fix build.
7508         * image.h: mono_image_load_references is no more.
7510         * assembly.c: Reworked assembly loading to make it really thread safe.
7511         After these changes, the assembly returned by mono_assembly_open is
7512         fully initialized, i.e. all its references assemblies are loaded.
7514         * assembly.c (mono_image_load_references): Renamed to 
7515         mono_assembly_load_references, and made private, since clients no
7516         longer need to call it.
7518         * class.c: Removed calls to mono_assembly_load_references, since it was
7519         a source of deadlocks.
7521         * loader.h loader.c class.h class.c: Protect data structures using a 
7522         new lock, the loader lock.
7524         * class.c (mono_class_setup_vtable): Create temporary hash tables and
7525         GPtrArrays only when needed.
7527         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
7528         into empty structures by mcs. Fixes pinvoke7.cs.
7529         
7530         * domain.c (mono_init): Call a new initialization function.
7532         * appdomain.c (mono_runtime_init): Call the new initializer function
7533         of the marshal module.
7535         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
7536         inserted into empty structures by mcs. Fixes pinvoke7.cs.
7538         * marshal.h marshal.c: Added locks around the wrapper caches to make
7539         this module thread safe.
7541         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
7542         this argument. Fixes pinvoke1.exe.
7544 2003-08-25  Lluis Sanchez <lluis@ximian.com>
7546         * object.h: Added call_type field to MonoMethodMessage and the corresponding
7547         enumeration of values. Removed fields to store remote call output values in
7548         MonoAsyncResult. Not needed any more.
7549         * object.c: Initialize call_type and async_result fields in mono_message_init.
7550         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
7551         dispatching the message.
7552         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
7553         async call to finish. To do it use a message with EndInvoke call type.
7555 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
7557         * loader.h loader.c (mono_method_hash_marhal_info): New function which
7558         determines whenever a method has marshalling info.
7560 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7562         * assembly.c: fix the build on windows.
7564 2003-08-22 Lluis Sanchez <lluis@ximian.com>
7566         * object.cs: Fixed bug #47785.
7568 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
7570         * string-icalls.c (StringReplace): If their are no occurances of
7571         the old string found return a reference to the supplied
7572         string. This saves some memory and matches MS behavoir.
7573         
7574 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7576         * socket-io.c: fixed compilation for systems that define AF_INET6
7577         and don't define SOL_IP/SOL_IPV6.
7579 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
7581         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
7582         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
7584         * rawbuffer.c rawbuffer.h: Make this module thread safe.
7586         * domain.c: Make this module thread safe.
7588         * domain.c (mono_init): Call new initialization function.
7590         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
7591         reference types too. Fixes #38812.
7593         * image.c (mono_image_init): Fixed warnings.
7595         * class.c (mono_class_from_typeref): Handle assembly load failure
7596         correctly.
7598         * appdomain.c (add_assemblies_to_domain): Handle the case when
7599         the references of an assembly are not yet loaded.
7601         * metadata.c image.c assembly.c: Moved initialization of global
7602         variables to a separate function called at startup since lazy 
7603         initialization of these variables is not thread safe.
7604         
7605         * image.c assembly.c: Made this module thread safe by adding locks in 
7606         the appropriate places.
7608         * domain.c (mono_init): Call the new initialization functions of the
7609         three modules.
7611 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
7613         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
7614           make a direct call. It is proxy's work to make the call asynchronous.
7615           mono_delegate_end_invoke(): If the targe is a proxy, just collect
7616           the return values.
7617         * object.cs: mono_method_call_message_new(): read AsyncResult and
7618           state object from parameters list, if this info is requested.
7619         * object.h: Added fields to store remote call output values in
7620           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
7622 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
7624         * object.h: add needed fields to MonoThread.
7625         * threads.c, threads.h: allow registering a function to cleanup data
7626         allocated per thread by the JIT.
7628 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
7630         * loader.h: portability fix by Bernie Solomon
7631         * <bernard@ugsolutions.com>.
7633 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
7635         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
7636         return a MonoArray. This simplifies the code and also ensures that
7637         the cache allways contains an object reference as a value.
7639         * icall.c (ves_icall_get_parameter_info): Simplified using the new
7640         function.
7642 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7644         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
7645         fixes a problem with byte ordering when getting the address family for
7646         a socket.
7648 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
7650         * .cvsignore: Added monosn.
7652         * reflection.h reflection.c loader.c: Added support for parameter
7653         marshalling to dynamically created types. Fixes #47295.
7655 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
7657         * rand.c: remove useless warnings.
7659 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
7661         * class.c: implemented ldtoken for methods and fieldrefs.
7663 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7665         * threadpool.c: when mono_async_invoke was called, no one took care of
7666         monitoring the queue. So if the method invoked took some time and we
7667         got new async invoke requests after 500 ms (the thread created waited
7668         that long in WaitForSingleObject), the new async invoke was not called
7669         until the previous one finished.
7671         This is fixed now. Thanks to Totte for helping with it.
7673 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7675         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
7677 2003-08-11  Martin Baulig  <martin@ximian.com>
7679         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
7681 2003-08-06  Martin Baulig  <martin@ximian.com>
7683         * mono-debug-debugger.c: Added support for static fields,
7684         properties and methods.
7686 2003-08-06  Martin Baulig  <martin@ximian.com>
7688         * mono-debug-debugger.c: Don't store the MonoString's vtable to
7689         make this work for applications with multiple application domains.
7691 2003-08-04  Martin Baulig  <martin@ximian.com>
7693         * mono-debug-debugger.c: Completely reworked the type support; the
7694         most important thing is that we're now just using one single
7695         `MonoType' instance per type.
7697 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
7699         * mono-endian.h, mono-endian.c, icall.c: Added icall
7700         ves_icall_System_Double_AssertEndianity to assert double word endianity
7701         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
7703 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
7705         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
7706         support, icalls and fixes.
7708 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
7710         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
7711         classes that are a punctuation character in .NET is not the same a
7712         g_unichar_ispunct.
7714 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
7716         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
7718 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
7720         * icall.c: Add new MemCopy internalcall.
7721         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
7722         Simplified code; It is not necessary to handle all the cases here,
7723         as the C# code takes care of it.  Only handle the case of the name
7724         resource embedded into the assembly.
7726         Changed signature to return the data pointer and the size of the
7727         data. 
7729 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
7731         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
7732         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
7734 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
7736         * socket-io.c: ignore EINTR error in select.
7738 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
7740         * class.h, class.c: removed unused subclasses field in MonoClass.
7742 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
7744         * icall.c: improve fix of get_base_definition(). If the parent class
7745           doesn't have the mehod, look at the parent of the parent.
7746         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
7747           to check if a parameter is an in or out parameter
7748           (PARAM_ATTRIBUTE_IN is not set by default).
7749           mono_method_return_message_restore(): Use mono_class_value_size to
7750           get the size of a value type. mono_type_stack_size (parameterType)
7751           does not return the correct value if parameterType is byRef.
7752           mono_load_remote_field(), mono_load_remote_field_new(),
7753           mono_store_remote_field(), mono_store_remote_field_new():
7754           raise exception if the remote call returns an exception.
7756 2003-07-28  Martin Baulig  <martin@ximian.com>
7758         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
7759         method.  This is a wrapper around mono_runtime_invoke() which
7760         boxes the instance object if neccessary.
7762 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
7764         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
7765         metadata.h, row-indexes.h, verify.c: first cut of generics support.
7767 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
7769         * icall.c: disable mcs bug workaround.
7771 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
7773         * object.c (mono_runtime_class_init): Take the metadata_section
7774         mutex before obtaining the domain mutex.
7776         * appdomain.h: Added definition of metadata_section mutex here. 
7778         * object.c: define metadata_mutex here.
7780 2003-07-24  Ravi Pratap  <ravi@ximian.com>
7782         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
7783         fixed.
7785 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
7787         * reflection.c: Fix bug #46669
7789 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7791         * exception.c:
7792         * exception.h:
7793         * icall.c:
7794         * object.h: fill in the type name for TypeLoadException.
7796 2003-07-23  Ravi Pratap  <ravi@ximian.com>
7798         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
7799         relationship between TypeBuilders while compiling corlib) and bug
7800         45993 (Array types returned from the runtime while compiling
7801         corlib were from the loaded corlib).
7803 2003-07-22  Martin Baulig  <martin@ximian.com>
7805         * mono-debug-debugger.c: Reworked the type support a bit more;
7806         distinguish between types and classes.
7808 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
7810         * icall.c: add IsArrayImpl icall.
7812 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
7814         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
7815         initializing real_size only once. Also fix bug #46602.
7817 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
7819         * object.c: Renamed mono_metadata_section to metadata_section.
7821 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
7823         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
7824           empty array if the type is an array. Fixed.
7825           ves_icall_MonoMethod_get_base_definition: if the base method
7826           is abstract, get the MethodInfo from the list of methods of
7827           the class.
7828         * reflection.c: ParameterInfo.PositionImpl should be zero-based
7829           and it was 1-based. Fixed in mono_param_get_objects.
7831 2003-07-20  Martin Baulig  <martin@ximian.com>
7833         * mono-debug.h: Set version number to 31.
7834         (mono_debug_init): Added `MonoDomain *' argument.
7836         * mono-debug-debugger.c: Reworked the type support; explicitly
7837         tell the debugger about builtin types; pass the `klass' address to
7838         the debugger.
7840 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
7842         * image.c: Allow new metadata tables to be loaded without a
7843         warning. Also update the warning message to give the new constant value.
7844                 
7845 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
7847         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
7848         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
7849         array type representation changes.
7851 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
7853         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
7854         on Environment.Exit () call.
7856 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
7858         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
7859         requires a matching corlib.
7861 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
7863         * Changelog: My editor decided to add a CR to each line. Sorry about that.
7864           Committed again without the CRs.
7865         
7866 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
7868         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
7869           getting it from the "this" socket instance. Did not work
7870           if the socket is a subclass of Socket.
7871           Also fixed bug #35371.
7873 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
7875         * metadata.c: fixed size for TypedByRef.
7876         * loader.c: when searching for a method, consider the vararg amrker.
7877         * unicode.c, decimal.c: constify some arrays.
7879 2003-07-15  Dick Porter  <dick@ximian.com>
7881         * socket-io.c: Fixed compilation for gcc < 3.2.
7883         Fixed compilation for machines that don't have AF_INET6 (thanks to
7884         Bernie Solomon <bernard@ugsolutions.com> for that part.)
7886         Fixed compile warnings.
7887         
7888         Fixed formatting and line endings.
7890 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
7892         * socket-io.h:
7893         * socket-io.c: Added IPv6 support.
7895 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
7897         * class.c (mono_class_is_assignable_from): New function to implement
7898         the is_assignable_from logic. Used by mono_object_isinst, 
7899         Type::IsAssignableFrom () and the interpreter.
7901         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
7902         Object, even interfaces.
7903         
7904         * object.c (mono_object_isinst): Implement in terms of 
7905         is_assignable_from.
7907         * icall.c (ves_icall_type_is_assignable_from): New icall.
7909 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
7911         * domain.c (foreach_domain): fix compiler warning.
7913 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
7915         * image.c (load_metadata_ptrs): use g_strndup because strndup is
7916         not available on all plattforms
7918 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
7920         * image.h image.c: Store the metadata version string in MonoImage.
7921         * icall.c: New icall to retrieve the image version.
7922         * reflection.c (create_dynamic_image): Fill in the image version field
7923         * reflection.c (build_compressed_metadata): Use the image version
7924         from the image structure.
7926 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7928         * appdomain.c: modified comment.
7929         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
7930         That will be its last iteration when mono_gc_cleanup is called from
7931         mono_runtime_cleanup and before the domain is unloaded.
7933         Fixes bug #45962.
7935 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
7937         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
7938         attributes.
7940 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
7942         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
7943         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
7944         Bernie Solomon <bernard@ugsolutions.com>.
7946 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
7948         * object.c, object.h: provide mono_object_new_fast() for faster
7949         allocation in some special cases.
7951 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
7953         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
7954         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
7956 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
7958         * threadpool.c: fix leaks.
7960 2003-07-01  Dick Porter  <dick@ximian.com>
7962         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
7963         using MonoGHashTables.  Fixes threadpool bug posted to list.
7965 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
7967         * image.h, image.c: added support to load an assembly from a byte array.
7968         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
7969         assembly bundle support.
7971 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
7973         * threadpool.c (mono_thread_pool_add): keep a reference to the
7974         AsyncResult to prevent GC
7976 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
7978         * class.c: leak fix.
7980 2003-06-25  Dick Porter  <dick@ximian.com>
7982         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
7983         for the async object, the WaitHandle object will close the handle.
7984         Fixes bug 45321.
7986 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
7988         * class.c: in mono_array_class_get (), lookup from the hash with the
7989         same type we insert: this works around a bug in
7990         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
7991         lluis. The real fix will have to wait for after the release.
7993 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
7995         * icall.c: fix memory leak when getting type members.
7997 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
7999         * reflection.c: added more pubtoken special cases.
8001 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
8003         * class.c: handle field offset correctly when class size
8004         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
8006 2003-06-20  Martin Baulig  <martin@ximian.com>
8008         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
8009         *image' field.
8011 2003-06-20  Martin Baulig  <martin@ximian.com>
8013         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
8015 2003-06-20  Martin Baulig  <martin@ximian.com>
8017         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
8018         just distinguish between variables in registers and variables at
8019         an offset relative to a register.
8021 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8023         * icall.c: #ifdef out latest changes until mcs is fixed.
8025 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
8027         * icall.c: return members in metadata order.
8029 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
8031         * icall.c: avoid infinite loop in GetTimeZoneData.
8033 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
8035         * icall.c: added Marshal.Prelink/All icalls.
8037 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
8039         * object.c, object.h: fix warnings and do some overflow checking
8040         when creating arrays.
8042 2003-06-17  Dick Porter  <dick@ximian.com>
8044         * file-io.h:
8045         * file-io.c: File attributes need to be tweaked slightly when
8046         passed from the managed to the w32 world.
8048 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
8049         * profiler.h profiler-private.h profiler.c: Rework last patch
8050         based on suggestion by Paolo.
8051         
8052 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
8054         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
8055         instruction level coverage data collection.
8056         * profiler.h profiler.c (: Added new callback function which can be
8057         used by the profiler to limit which functions should have coverage
8058         instrumentation.
8059         * profiler.c (mono_profiler_load): Call g_module_build_path to
8060         generate the file name of the profiler library.
8062 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
8064         * profiler.c, profiler.h, profiler-private.h: added basic block 
8065         coverage profiling API.
8067 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
8069         * reflection.c (mono_reflection_create_runtime_class): Add support
8070         for events in dynamically generated code.
8072         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
8073         not allocated.
8075 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
8077         * icall.c: when getting timezone info, return reasonable values if we
8078         can't get the actual data.
8080 2003-06-14  Dick Porter  <dick@ximian.com>
8082         * threads.c (start_wrapper): Remove the reference to the thread
8083         object in the TLS data, so the thread object can be finalized.
8084         This won't be reached if the thread threw an uncaught exception,
8085         so those thread handles will stay referenced :-( (This is due to
8086         missing support for scanning thread-specific data in the Boehm GC
8087         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
8089 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
8091         * reflection.c: ensure streams and tables are first allocated with
8092         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
8094 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
8096         * icall.c: fixed GetElementType for byrefs (bug# 44792).
8098 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
8100         * reflection.c (mono_reflection_create_runtime_class): Add support for
8101         properties to dynamically created classes.
8102         * reflection.c: Fix a few places where non-MonoObjects were inserted
8103         into the tokens hashtable.
8105 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
8107         * object.c: some support to handle out of memory exceptions.
8109 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
8111         * marshal.c (mono_marshal_get_native_wrapper): support reference
8112         return types
8114 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
8116         * object.h, object.c: more portability stuff from Bernie Solomon.
8117         Unexport mono_object_allocate(). Added mono_object_unbox ().
8118         Set exitcode when an unhandled exception is thrown.
8120 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
8122         * marshal.c (mono_marshal_get_native_wrapper): use custom
8123         marshaler for return types.
8125 2003-06-10  Dick Porter  <dick@ximian.com>
8127         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
8128         ip_mreq is available
8130 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
8132         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
8133         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
8134         by Bernie Solomon <bernard@ugsolutions.com>.
8136 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
8138         * gc.c (mono_gc_init): Avoid error message on shutdown when
8139         GC_DONT_GC=1 is used.
8141         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
8142         New icall to return the GUID of a module.
8144 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
8146         * class.c: ensure instance size always includes the parent's size
8147         even whem class size is set explicitly (fixes bug#44294).
8149 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
8151         * profiler.h, profiler.c: made the simple profiler thread-safe,
8152         get more accurate timing info. Allow the loading of an
8153         externally-developed profiler module.
8155 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
8157         * marshal.c (mono_marshal_get_native_wrapper): improved
8158         class/byref arguments.
8159         (mono_marshal_get_native_wrapper): better string marshaling support.
8161 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
8163         * class.c: ensure .pack and .size are handled correctly and
8164         simplified layout of static fields.
8166 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
8168         * appdomain.c
8169         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
8171         * loader.c (mono_lookup_pinvoke_call): look for modules in the
8172         current directory (fix bug 44008)
8174 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
8176         * marshal.c (mono_marshal_get_native_wrapper): started support for
8177         custom marshalers.
8178         (mono_delegate_to_ftnptr): consider marshalling specifications
8180 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
8182         * reflection.c, reflection.h: emit custom marshal info.
8184 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8186         * object.c: free the GError.
8187         * icall.c: added CloseEvent_internal.
8188         * threads.[ch]:
8189         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
8190         call.
8192 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
8194         * loader.c (mono_method_get_signature): Add support for dynamic
8195         assemblies.
8197 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
8199         * reflection.c: fixed bug #43905.
8201 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
8203         * class.c, domain.c, icall.c, metadata.h, object.h: support for
8204         handling TypedReference and ArgIterator.
8205         * loader.c, loader.h: added function to get signature at call site.
8207 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
8209         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
8210         data readonly. Buglets and warning fixes. Some MethodSpec support.
8212 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
8214         * class.h, class.c, object.c: remove relative numbering support.
8216 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
8218         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
8219         free the string, until we get a chance to fix Gtk#
8221 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8223         * marshal.c: revert last patch.
8225 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
8227         * icall.c: updates for new mono_class_vtable() not calling
8228         the type constructor anymore.
8230 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
8232         * object.h, object.c: separate vtable creation from type
8233         initialization. Make running the .cctor thread safe.
8235 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
8237         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
8239 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
8241         * loader.c (mono_get_method): consider calling convention
8243 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
8245         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
8246         to return the invisible global type for a module.
8248         * reflection.c (mono_image_build_metadata): Emit global fields too.
8250 2003-05-20  Peter Williams  <peterw@ximian.com>
8252         * loader.c (mono_lookup_internal_call): Add a few newlines.
8254 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
8256         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
8257         literal strings.
8259         * appdomain.c (set_domain_search_path): Recalculate search path when
8260         AppDomainSetup.PrivateBinPath changes.
8262         * object.c (mono_class_compute_gc_descriptor): It turns out some
8263         parts of the class libs (like System.Thread) holds pointers to
8264         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
8265         to treat native int a pointer type here.
8266         
8267 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
8269         * appdomain.h, domain.c: add hashtable for jump target resolution.
8271 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
8273         * reflection.h reflection.c icall.c: Added new icalls 
8274         GetManifestResourceInfoInternal, GetModulesInternal and support
8275         infrastructure.
8277 2003-05-16  Dick Porter  <dick@ximian.com>
8279         * icall.c:
8280         * file-io.h:
8281         * file-io.c: Implement System.IO.MonoIO::GetTempPath
8283 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
8285         * object.c: mono_store_remote_field: little fix to previous patch.
8287 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
8289         * class.c: add constructors to array classes.
8290         * icall.c: special case array construction for InternalInvoke (),
8292 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
8294         * class.h class.c reflection.c object.c: Added support for field
8295         defaults in dynamically generated classes.
8297 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
8299         * reflection.c: properly encode charset for ddlimport.
8301 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
8303         * threads.c: allow compiling without GC.
8305 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
8307         * appdomain.h, object.c, object.h, threads.c, threads.h: added
8308         handling of thread static data.
8310 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
8312         * reflection.h, reflection.c: added mono_custom_attrs_free ().
8314 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
8316         * class.c (mono_array_class_get): always set the serializable flags
8317         (mono_array_class_get): always set the SEALED attribute for array types
8319 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
8321         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
8322         attributes (fix for bug 42021).
8324 2003-05-12  Dick Porter  <dick@ximian.com>
8326         * gc.c: Don't run finalizers when the finalizer thread is
8327         finishing up, because the default domain has already been
8328         destroyed.
8330 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
8332         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
8333         value is null, we should throw an exception.   This is slightly
8334         different than the other conventions used for the constructor.
8336 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8338         * socket-io.c: fixed windows build.
8340 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8342         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
8344 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
8346         * object.c (mono_string_new_wrapper): Compatibility fix for MS
8347         compilers.
8349 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
8351         * class.c (mono_class_layout_fields): Add experimental GC aware
8352         auto layout facility. Requires class library changes to work correctly.
8354         (mono_class_setup_vtable): Avoid overriding explicit interface
8355         method implementations. Fixes iface3.exe test.
8357         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
8358         object reference.
8359         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
8360         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
8362         * metadata.h: Add new type classification macro which determines
8363         whenever the type holds an object reference.
8365 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
8367         * marshal.c (mono_marshal_get_native_wrapper): cleanups
8369 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
8371         * gc.c (finalizer_thread): Work around a GC bug.
8373 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
8375         * marshal.c (emit_struct_conv): allow unions
8377         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
8379 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
8381         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
8383 2003-05-06  Martin Baulig  <martin@ximian.com>
8385         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
8387 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8389         * socket-io.c:
8390         (Select_internal): allow NULLs, don't create arrays if not needed.
8391         Coupled with Socket.cs changes.
8393         * threadpool.c:
8394         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
8395         register a finalizer for it that will close the semaphore handle. This
8396         fixes the leak and make Lupus' test run with > 4080 loops.
8398 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
8400         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
8401         Jerome Laban (bug #42287)
8403 2003-05-02  Martin Baulig  <martin@ximian.com>
8405         * debug-mono-symfile.h
8406         (MonoSymbolFile): Moved declaration into mono-debug.h.
8407         (MonoDebugMethodJitInfo): Likewise.
8408         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
8409         argument.
8410         (_mono_debug_address_from_il_offset): Take a
8411         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
8413         * mono-debug.h
8414         (MonoDebugDomainData): New struct.
8415         (mono_debug_get_domain_data): New function.
8416         (mono_debug_add_method): Take an additional `MonoDomain *'
8417         argument.
8418         (mono_debug_source_location_from_address): Likewise.
8419         (mono_debug_il_offset_from_address): Likewise.
8420         (mono_debug_address_from_il_offset): Likewise.
8422 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
8424         * reflection.c: one more check for null type in custom attrs.
8426 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8428         * reflection.c: avoid warning (comparison is always false due to limited
8429         range of data type).
8431 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8433         * icall.c: throw an exception in Type.GetField if the argument 'name'
8434         is NULL.
8436 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
8438         * reflection.c: fixed handling of enums in named arguments to custom
8439         attributes (bug #42123).
8441 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
8443         * reflection.c: use the right array element type and handle
8444         a null for a Type argument, too.
8446 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
8448         * reflection.c: handle arrays as arguments to custom attributes.
8450 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
8452         * reflection.c: handle a string value in a custom attr
8453         ctor that takes an object.
8455 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
8457         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
8458         (fix bug #42063)
8460 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
8462         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
8464 2003-04-27  Martin Baulig  <martin@ximian.com>
8466         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
8467         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
8468         MONO_DEBUGGER_EVENT_BREAKPOINT.
8469         (mono_breakpoint_trampoline_code): Removed.
8470         (mono_debugger_event_handler): The last argument is now a
8471         `guint32'.
8472         (mono_debugger_insert_breakpoint_full): Removed the
8473         `use_trampoline' argument.
8474         (mono_debugger_method_has_breakpoint): Likewise.
8475         (mono_debugger_trampoline_breakpoint_callback): Renamed to
8476         mono_debugger_breakpoint_callback(); take the method and
8477         breakpoint number as arguments.
8479 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
8481         * metadata.c: fix off by one when loading parameters attributes.
8483 2003-04-24  Martin Baulig  <martin@ximian.com>
8485         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
8487 2003-04-24  Martin Baulig  <martin@ximian.com>
8489         * mono-debug-debugger.c: Moved all code which interacts with the
8490         Mono Debugger here.
8492         * debug-mono-symfile.c: This code now just deals with the symbol
8493         file itself, the debugger code is now in mono-debug-debugger.c.
8495 2003-04-23  Martin Baulig  <martin@ximian.com>
8497         * mono-debug.c (mono_debug_source_location_from_il_offset):
8498         New method; like mono_debug_source_location_from_address(), but
8499         takes an IL offset instead of a machine address.
8501 2003-04-23  Martin Baulig  <martin@ximian.com>
8503         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
8504         `line' field; this is now computed by the debugger.
8506 2003-04-23  Martin Baulig  <martin@ximian.com>
8508         * mono-debug.[ch]: New files.  This is the new debugging interface.
8510         * mono-debug-debugger.[ch]: New files.  Moved all code which
8511         interacts with the Mono Debugger here.
8513 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
8515         * domain.c (mono_init): initialize mono_defaults.monitor_class
8517 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
8519         * reflection.c (method_encode_code): Add a spicy exception to help
8520         future compiler authors.
8522 2003-04-21  Martin Baulig  <martin@ximian.com>
8524         * icall.c
8525         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
8526         Make this work with relative pathnames; g_filename_to_uri() needs
8527         an absolute filename.
8529 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
8531         * icall.c: Track name changes in Object and ValueType.
8533 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
8535         * metadata.c (mono_type_stack_size): size should be a multiple of
8536         sizeof (gpointer)
8538 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8540         * gc.c:
8541         (internal_domain_finalize): moved into mono_domain_finalize. No need
8542         to create another thread because the finalizers will be run in the
8543         finalizer thread.
8544         
8545         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
8546         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
8547         to be run (MS does this too).
8549 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
8551         * object.c (mono_class_compute_gc_descriptor): Update comment.
8553         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
8555         * image.h: Add synchronized wrapper cache.
8557         * image.c (do_mono_image_open): Initialize cache.
8559         * reflection.c (create_dynamic_mono_image): Initialize cache.
8561 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8563         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
8564         ves_icall_System_Buffer_ByteLengthInternal.
8566 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
8568         * reflection.c: setup klass->nested_in earlier. Allow
8569         a dash in the assembly name.
8571 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
8573         * metadata.c (mono_type_to_unmanaged): dont access
8574         type->data.klass for MONO_TYPE_OBJECT
8575         (mono_type_to_unmanaged): consider System.Delegate class
8577 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
8579         * class.c: just setup supertypes in the proper place instead of
8580         initializing the full element class for arrays.
8582 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
8584         * class.c: ensure the element class of arrays is initialized.
8585         Setup the supertype info for array classes, too.
8587 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
8589         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
8591 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8593         * Makefile.am: re-added -m option when running cygpath. This way,
8594         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
8595         separator.
8596         * mono-config.c: same codepath for locating mono config file for WIN32
8597         and the rest.
8598         * assembly.c: if mono_assembly_setrootdir is called, don't override
8599         the value set.
8601 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8603         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
8604         MONO_ASSEMBLIES variable.
8606 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
8608         * icall.c: added Assembly::GetNamespaces() icall.
8610 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8612         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
8614 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
8616         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
8617         * object.c: fixed bug in the construction of vtable for proxies
8619 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
8621         * object.c (mono_array_new): Mark mono_array_new as an icall.
8623 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8625         * class.c: fixed test for public method when overriding interfaces.
8626         Closes bug #40970.
8628 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
8630         * appdomain.h, domain.c: added mono_domain_foreach() to
8631         be able to access the currently loaded appdomains.
8632         * object.c: make string interning work across sppdomains.
8633         Mark some functions for use as icalls.
8635 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
8637         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
8639         * reflection.h reflection.c: Allocate long living data using 
8640         GC_MALLOC_ATOMIC so the collector does not need to scan it.
8642         * reflection.c: Double the allocation size in streams instead of
8643         increasing it, to prevent unneccesary copying on large assemblies.
8644         
8645         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
8646         creation if the assembly does not have the Run flag set.
8648 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
8650         * class.h: avoid the C++ keywords in header files (Jerome Laban
8651         spotted and fixed this).
8653 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8655         * object.c:
8656         (mono_unhandled_exception): fill in the arguments for the
8657         UnhandledException event. Only trigger that event for the default
8658         domain (as MS does).
8660 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
8662         * object.c: Improve typed allocation stuff based on suggestions from
8663         Paolo. Also turn it on if the GC library supports it.
8665 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
8667         * object.c object.h class.h: Added experimental typed allocation
8668         facility using the interfaces in gc_gcj.h.
8670         * os/gc_wrapper.h: Added new include files.
8671         
8672 2003-04-03  Martin Baulig  <martin@ximian.com>
8674         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
8675         which is not yet enabled by default.
8677         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
8678         functions.
8679         (mono_gc_lock, mono_gc_unlock): New static functions.
8681         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
8682         functions; stop/start the world for the garbage collector.  This
8683         is using the windows API; we need to complete the SuspendThread()/
8684         ResumeThread() implementation in the io-layer to make this work on Unix.
8685         (mono_gc_push_all_stacks): New public function; tells the garbage
8686         collector about the stack pointers from all managed threads.
8688 2003-04-03  Martin Baulig  <martin@ximian.com>
8690         * object.h (MonoThread): Added `gpointer stack_ptr'.
8692         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
8694 2003-04-03  Martin Baulig  <martin@ximian.com>
8696         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
8698 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
8700         * reflection.c (typebuilder_setup_fields): Initialize field.first and
8701         field.last.
8703 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
8705         * loader.c (mono_lookup_internal_call): Report the corlib that is
8706         out of sync.
8708 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
8710         * icall.c (ves_icall_type_GetTypeCode): fixed check for
8711         System.DBNull (it's class not valuetype).
8713 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
8715         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
8716         if the array method was already assigned a token (fixes bug#40646).
8718 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
8720         * reflection.c (mono_reflection_get_type): Attempt type resolve even
8721         if no assembly is given.
8723 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
8725         * metadata.h: Added the new tables.
8727         * row-indexes.h: Added definitions for new tables.
8729         * metadata.c: Add schemas for new tables, and add support for
8730         computing the sizes of them.
8732         * class.c: Update for handling the new type cases.
8734 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
8736         * metadata.h (MONO_TYPE_IS_VOID): new macro
8738 2003-03-31  Martin Baulig  <martin@ximian.com>
8740         * threads.h (MonoThreadCallbacks): Added `thread_created'.
8742         * threads.c (mono_thread_new_init): Call `thread_created' in the
8743         mono_thread_callbacks.
8745 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
8747         * loader.h: added marshalbyrefobject_class to mono_defaults
8748         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
8749         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
8750           generation of output parameters.
8751           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
8752         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
8753           contextbound and the target object belongs to the context of the caller.
8754         * object.h: added context and unwrapped_server variables in MonoRealProxy.
8755         * object.c: Implemented support for interfaces and abstract classes
8756           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
8757           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
8759 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
8761         * class.h class.c (mono_class_is_subclass_of): New function.
8762         
8763         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
8764         routines for most common case (calls from ArrayList::ToArray).
8766         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
8767         routine so programs which call Environment::Exit() can be profiled.
8769         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
8770         Added MONO_ARCH_SAVE_REGS.
8772         * icall.c (ves_icall_type_is_subtype_of): Use new function.
8774 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
8776         * blob.h: Add a couple of new MonoType types definitions.
8778         * tabledefs.h: Add a couple of new call convs.
8780 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
8782         * reflection.h (MonoReflectionDynamicAssembly): track changes in
8783         the layout of the class.
8785         * reflection.c (alloc_table): double the size on overflow to avoid
8786         unnecessary copying.
8788         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
8789         avoid filling out metadata tables and blobs. Also set mb->ilgen to
8790         null so it can be garbage collected.
8791         
8792 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
8794         * reflection.c (mono_reflection_get_type): Return the resolved type
8795         only if it is in the assembly we searched.
8797         * reflection.c (ensure_runtime_vtable): Initialize method slots.
8799         * class.c (mono_class_setup_vtable): Set the slot of the overriding
8800         method.
8802 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8804         * appdomain.c:
8805         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
8806         the right one is 'file:///blah', but MS allows it.
8807         * assembly.c:
8808         (mono_assembly_open): allow 'file://blah'
8810         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
8812 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
8814         * socket-io.c: fixes bug #40310.
8816 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
8818         * reflection.c (mono_reflection_parse_type): handle deeply nested
8819         types correctly.
8821         * reflection.c (mono_image_create_token): Use unique token values
8822         since they will be put into a hash table.
8824         * class.c (mono_class_setup_vtable): If a method occurs in more than
8825         one place in the vtable, and it gets overriden, then change the
8826         other occurances too.
8828         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
8829         object as return type.
8831 2003-03-22  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
8833         * icall.c: Deleted "ToString" implementation for double and float
8834         because they are full implemented in managed code.
8836 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
8838         * reflection.c, reflection.h: implemented and exported functions
8839         to retrieve info about custom attributes.
8841 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8843         * appdomain.c: moved Uri handling to assembly.c
8844         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
8845         work when using a file Uri in *nix and windows.
8847         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
8848         GetReferencedAssemblies.
8850 2003-03-18  Dick Porter  <dick@ximian.com>
8852         * icall.c: Rename a couple of internal calls
8854         * threads.c: Set the thread state to Stopped when a thread exits.
8855         Fixes bug 39377.
8857 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
8859         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
8860         New icall.
8862         * object.c (mono_class_vtable): fix warning.
8864 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
8866         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
8868         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
8869         memory.
8870         (method_encode_clauses): Create exception info structures in the right
8871         order.
8872         (mono_reflection_setup_internal_class): Initialize supertypes field.
8874         * class.c object.c: Handle interfaces which implement other interfaces 
8875         correctly.
8877         * class.h class.c: Move the supertypes array initialization code into 
8878         a separate function so it can be used for dynamic types too. Also call
8879         it earlier, in mono_class_init(), since it can be used before the
8880         type is initialized.
8882 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8884         * Makefile.am:
8885         * assembly.c:
8886         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
8888         * appdomain.c:
8889         * appdomain.h:
8890         * marshal.c:
8891         * object.c: remove warnings.
8893 2003-03-13  Martin Baulig  <martin@ximian.com>
8895         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
8896         (MonoDebugLexicalBlockEntry): New types.
8898         * debug-mono-symfile.c
8899         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
8901 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8903         * process.c: ret can be any non-zero value accroding to MS doc.
8905 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
8907         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
8908         fixing a warning for a miss-used prototype, would have cause
8909         random memory corruption.
8911 2003-03-07  Martin Baulig  <martin@ximian.com>
8913         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
8914         getting really annoying ....
8916 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
8918         * reflection.c (fixup_method): added support for array methods.
8920 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
8922         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
8923         (pointed out by Michael Adams).
8925 2003-03-04  Dick Porter  <dick@ximian.com>
8927         * icall.c: Temporarily reverted the Double and Single ToString()
8928         change, because it broke nunit.
8930 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
8932         * object.h, threads.h: make include files compatible with C++
8933         (patch by Jerome Laban <jlaban@wanadoo.fr>).
8935 2003-03-04  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
8937         * icall.c: Erased ToString helper functions for Double and Single.
8938         Now, that implementations ar all in managed code (Double and Single
8939         Formatters).
8941 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
8943         * appdomain.c: Added method for initializing the default context of
8944         a domain. Added internal call for getting the default context.
8945         * appdomain.h: Added context variable in MonoDomain struct.
8946         * domain.c: mono_domain_set also sets the default context of the domain
8947         * icall.c: Mapped internal method InternalGetDefaultContext.
8948         * object.c: mono_object_get_virtual_method returns always a remoting
8949         wrapper if the object is a transparent proxy.
8950         mono_runtime_invoke_array: when creating an object by calling the
8951         constructor, if the created object is a proxy, then the constructor should
8952         be called using the a remoting wrapper.
8954 2003-03-03  Dick Porter  <dick@ximian.com>
8956         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
8957         variable so it compiles on solaris.  Problem spotted by
8958         Christopher Taylor <ct@cs.clemson.edu>
8960 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8962         * appdomain.c:
8963         (get_info_from_assembly_name): don't leak value.
8965         * icall.c:
8966         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
8967         result.
8969 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
8971         * assembly.c: export mono_image_load_references ().
8972         * class.c: handle function pointers. mono_class_from_name() now
8973         supports nested type names directly.
8975 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
8977         * reflection.h reflection.c: Encode already created dynamic methods 
8978         and fields correctly as a DEF instead of a REF.
8980         * reflection.c: Get rid of the force_ref argument to 
8981         mono_image_typedef_or_ref since it was wrong in the first place.
8983         * string-icalls.c: add error checking to string constructors according
8984         to the MSDN docs.
8986         * reflection.c: Emit types in the order their TypeBuilders were 
8987         created. Previously, a new table index was assigned to each type before
8988         the tables were emitted. This was wrong because the signature blob
8989         might already refer to a type by its original table index.
8991 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
8993         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
8994         change.
8995         
8996 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8998         * Makefile.am: make assemblies dir have \ instead of / on windows.
9000 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
9002         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
9003         iterate over the NESTEDCLASS table using a linear search since the
9004         table is not guaranteed to be sorted by the secondary key.
9006         * class.c (mono_class_create_from_typedef): fixed up call to
9007         mono_metadata_nesting_typedef.
9008         
9009 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
9011         * marshal.c (mono_string_to_byvalstr): clear the memory as
9012         suggested by Jerome Laban <jlaban@wanadoo.fr>
9014 2003-02-26  Dick Porter  <dick@ximian.com>
9016         * process.c: Cope with padding in .rsrc blocks
9018 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
9020         * metadata.h: reverted the filter_len change, it breaks reflection
9021         
9022 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
9024         * metadata.h: added a new field to store the filter_len
9025         
9027 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
9029         * reflection.c: handle custom attributes for types and members
9030         created with Reflection.Emit (bug#38422).
9032 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
9034         * reflection.c: define RTSpecialName automatically for constructors for
9035         compatibility with MS.NET.
9037         * reflection.c (mono_reflection_create_runtime_class): initialize
9038         nested_in field of dynamically created classes.
9040 2003-02-22  Martin Baulig  <martin@ximian.com>
9042         * debug-mono-symfile.h: Incremented version number.
9044 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
9046         * object.h icall.c process.c: fix warnings.
9048 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
9050         * appdomain.h appdomain.c:
9051         (mono_domain_try_type_resolve): split the 
9052         name_or_tb argument into a name and a tb argument.
9053         (mono_domain_has_type_resolve): new function to check whenever the
9054         application has registered a TypeResolve event handler.
9055         
9056         * icall.c reflection.h reflection.c: move the type resolve logic into
9057         mono_reflection_get_type () so it will be invoked when 
9058         Assembly::GetType () is called.
9060         * reflection.c:
9061         (mono_reflection_get_type): renamed to get_type_internal.
9062         (mono_reflection_get_type): fixed type name generation so it works 
9063         for nested types too.
9064         (mono_reflection_get_type): call has_type_resolve () to avoid the 
9065         costly type name generation if there is no resolve event handler.
9067 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
9069         * class.c, image.c: load exported types from file references.
9071 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
9073         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
9074           used to cache the managed methods used to create proxies and make 
9075           remote invocation of methods.
9076         * class.h: Added in MonoVTable a flag to indicate that a class needs 
9077           to be remotely created.
9078         * object.c: Modified the method mono_class_vtable(). It now initializes 
9079           the remote flag of the vtable. Modified mono_object_new_specific(), 
9080           so now it checks the remote flag.
9081         * icall.c: Added a couple of internal methods, one for enabling instance 
9082           creation interception for a type, and one for creating objects bypassing
9083           the remote check.
9085 2003-02-18  Martin Baulig  <martin@ximian.com>
9087         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
9088         New interncall to get a method's metadata token.
9090         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
9091         New interncall for the debugger.
9093 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
9095         * class.c (mono_class_setup_vtable): allocate supertype array
9097 2003-02-18  Martin Baulig  <martin@ximian.com>
9099         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
9101 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9103         * reflection.c:
9104         (assembly_name_to_aname): jump over unknown properties (i've found
9105         something like: 'type, assembly, version=xxx, custom=null, public...',
9106         so now will ignore custom=null and still get the rest of the values).
9108 2003-02-17  Dick Porter  <dick@ximian.com>
9110         * threads.c: Have Thread.Start() wait for a semaphore to signal
9111         that the thread has set up all its local data.  This fixes bug
9112         34323, where Abort() raced the new thread's TLS data.
9114         Also removes the handle_store() call from start_wrapper, because
9115         threads are now always created suspended and there is no longer a
9116         race between the parent and child threads to store the info.
9118 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
9120         * image.c: explain the #- heap issue in a message, hopefully
9121         avoiding FAQs on mono-list.
9123 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9125         * icall.c:
9126         (GetEntryAssembly): if the domain has not invoked
9127         AppDomain.ExecuteAssembly yet, return the assembly of the default
9128         AppDomain.
9130 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
9132         * class.c (mono_ldtoken): make it work in dynamic assemblies.
9134 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
9136         * metadata.c, reflection.c: simple speedup to type hash
9137         and equals code.
9139 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
9141         * image.c, image.h, class.c, assembly.c: move module loading
9142         to MonoImage. When loading metadata, consider alignemnet from
9143         the start of metadata, not from the metadata address in memory.
9145 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
9147         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
9148         AssemblyBuilder objects. Factored out custom attribute creation into
9149         a separate function.
9150         (create_custom_attr): new function to create custom attributes.
9152 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
9154         * Makefile.am: Got tired of typing the full pathname to pedump.
9155         Until there is another option, am installing this.
9157 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
9159         * class.c (class_compute_field_layout): always set field->parent 
9160         (mono_ldtoken): use mono_defaults.fieldhandle_class;
9162 2003-02-11  Dick Porter  <dick@ximian.com>
9164         * threads-types.h:
9165         * monitor.c: Rewrote Monitor, making lock much faster and
9166         Pulse/Wait work as specified.  Also uses much fewer handles, and only
9167         creates them as needed.
9169         * exception.c: Added SynchronizationLockException
9171         * threads.c: Deleted old Monitor implementation.  The new one is
9172         in a new file.
9174 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
9176         * class.c: handled TypedReference type code. Set the correct size for
9177         class data. Setup interface_offsets for interface classes, too.
9179 2003-02-09  Martin Baulig  <martin@ximian.com>
9181         * debug-mono-symfile.h: Reflect latest symbol writer changes.
9183 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
9185         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
9186         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
9187         * object.c: fixed mono_object_get_virtual_method () for interfaces.
9188         * verify.c: check for code that runs after the end of the method.
9190 2003-02-08  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
9192         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
9193         "System.Math::Round2".
9194         * sysmath.h: Added Floor, Round and Round2 definitions.
9195         * sysmath.c: Modified certain functions that were not 100% compliant
9196         with MS.NET (math precision) and added the implementation of Floor,
9197         Round and Round2.
9199 2003-02-07  Martin Baulig  <martin@ximian.com>
9201         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
9203 2003-02-07  Martin Baulig  <martin@ximian.com>
9205         * debug-mono-symfile.c: Reflected latest symwriter changes.
9206         (mono_debug_create_mono_symbol_file): Removed.
9207         (mono_debug_open_mono_symbol_file): Take an argument which
9208         specifies whether to create a dynamic symbol file.
9210 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
9212         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
9214 2003-02-05  Martin Baulig  <martin@ximian.com>
9216         * reflection.c (mono_image_build_metadata): Make this public,
9217         protect it against being called multiple times, don't create
9218         resources and don't build the compressed metadata here.
9219         (mono_image_create_pefile): Do this here.
9221         * icall.c
9222         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
9224 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9226         * socket-io.c: fixed bug #36322.
9228 2003-02-06  Piers Haken <piersh@friskit.com>
9230         * appdomain.[ch]:
9231         * class.h:
9232         * debug-mono-symfile.c:
9233         * icall.c:
9234         * loader.c:
9235         * mono-config.c:
9236         * monosn.c:
9237         * reflection.c:
9238         * socket-io.c: warning cleanups
9240 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
9242         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
9243         function. works like remoting invoke, but does a check for the Proxy first.
9245 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
9247         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
9249 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
9251         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
9252         array of pointers.
9253         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
9254         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
9256         * object.c (mono_store_remote_field_new): used by the new jit
9257         instead of mono_store_remote_field
9258         (mono_load_remote_field_new): used by the new jit
9259         instead of mono_load_remote_field
9261 2003-02-05  Patrik Torstensson
9263         * appdomain.c: changed unload to take the domain id instead
9264         of domain
9265         
9266         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
9269 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9271         * appdomain.c: don't look for assemblies in ApplicationBase if
9272         PrivateBinPathProbe is set.
9274 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9276         * object.c: make the first argument in main_args contain the absolute
9277         path to the assembly. Fixes bug #37511.
9279 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9281         * icall.c: get correct UTC offset for countries not using daylight
9282         time saving. Fixes bug #30030.
9284 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9286         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
9287         and 1 are the family).
9289 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
9291         * icall.c (ves_icall_InternalExecute): removed wrong assertion
9293         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
9295 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
9297         * reflection.c: added support for SignatureHelper tokens, which is
9298         needed by the Calli opcode.
9300         * reflection.h: track changes to SignatureHelper class.
9302         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
9304 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9306         * appdomain.c: fixed loading assemblies from PrivateBinPath.
9308 2003-02-03  Patrik Torstensson
9309         * appdomain.[c|h], domain.c : 
9310          - Added support for getting a domain via domain id
9311          - Support for setting and getting domain from System.AppDomain 
9312            (used in cross appdomain channel)
9313          - Added support for get/set for a MonoAppContext on a thread 
9314            (Context class in System.Runtime.Remoting.Contexts),
9315          - Removed hack in Get/SetData and ExecuteAssembly.
9316         
9317         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
9318         the managed world to get control when a proxy is created.
9320         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
9321         
9322 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
9324         * icall.c
9325         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
9326         Populate the codebase field as well.
9328 2003-02-02  Martin Baulig  <martin@ximian.com>
9330         * debug-mono-symfile.c
9331         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
9332         (mono_debug_symfile_add_method): Allow interncalls.
9334 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9336         * icall.c: throw parse exception if strtod fails or the string is empty.
9338 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
9340         * marshal.c: handle object type separately from defined
9341         class types.
9343 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
9345         * marshal.c: handle NATIVE_LPSTR for strings when it's
9346         explicitly specified.
9348 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
9350         * reflection.c, reflection.h, icall.c: setup the reflection
9351         handle cache for ModuleBuilders and AssemblyBuilders.
9353 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
9355         * reflection.c (reflection_methodbuilder_to_mono_method): set
9356         pinvoke flag
9358 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9360         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
9362 2003-01-29  Dick Porter  <dick@ximian.com>
9364         * threads.c: No need for the fake_thread kludge now that Thread
9365         doesn't run a class constructor
9366         
9367 2003-01-29  Dick Porter  <dick@ximian.com>
9369         * threads.c: Use g_direct_hash instead of the rather bogus
9370         g_int_hash
9372 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
9374         * marshal.c (mono_marshal_get_native_wrapper): add check for null
9375         (fix pinvoke12.exe)
9376         (mono_marshal_get_struct_to_ptr): generate valid IL code
9377         (mono_marshal_get_ptr_to_struct): generate valid IL code
9378         (*): correctly set sig->pinvoke, we need to memdup the signature
9379         to do that
9381 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
9383         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
9384         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
9386 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
9388         * profiler.c: provide more callers information.
9390 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
9392         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
9394         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
9396         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
9398 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9400         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
9401         exception instead of going into an infinite loop on dates which it 
9402         can't yet handle.
9404         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
9405         out-of-range exception if needed.
9407         * class.c (mono_class_setup_vtable): allow a virtual method to provide
9408         an implementation for an interface method and to override an inherited
9409         method at the same time. 
9410         Imagine a scenario when a virtual method is used to override a
9411         virtual abstract method in a parent class, and this same method 
9412         provides an implementation for an method inherited from an interface. 
9413         In this case, the interface resolution code will set im->slot, which 
9414         means that the virtual method override pass will skip this method 
9415         which means a pointer to the abstract method inherited from the parent
9416         will remain in the vtable of this non-abstract class.
9418         * class.c: (mono_class_setup_vtable): continue search for a real 
9419         method if only an abstract method is found.     
9421 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
9423         * reflection.c: add size to encoding for ByValStr and ByValArray
9424         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
9426 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9428         * class.c (mono_class_setup_vtable): pass the override info as an
9429         argument.
9431         * class.c (mono_class_setup_vtable): set the slot of overriding methods
9432         correctly.
9433         
9434         * reflection.c (ensure_runtime_vtable); add support for method 
9435         overrides.
9436         
9437 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9439         * reflection.c (resolution_scope_from_image): Hack to work to work with
9440         dynamic assemblies.
9442         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
9443         added a 'force_ref' argument to force this function to allways return 
9444         a TypeRef. This is needed by mono_image_get_memberref_token ().
9445         
9446 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9448         * reflection.c (mono_image_get_type_info): interfaces really don't have
9449         a parent.
9451         * reflection.c (mono_image_basic_init): fill out missing fields of
9452         image structure.
9454         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
9455         dynamic assemblies. This is required so dynamic assemblies show up in
9456         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
9457         Type::GetType() etc. This is consistent with MS behaviour.
9459         * image.c image.h reflection.c: add newly created classes to the name 
9460         cache so mono_class_get () will find them.      
9462 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9464         First part of changes to get IKVM.NET running under mono.
9465         
9466         * appdomain.h, appdomain.c: added new function 
9467         mono_domain_try_type_resolve() which will emit TypeResolve events. 
9468         This function will call AppDomain::DoTypeResolve to do the actual work.
9470         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
9471         moved existing code dealing with dynamic tokens to a new function 
9472         called mono_reflection_lookup_dynamic_token (). This function will 
9473         raise TypeResolve events when appropriate. Since reflection.c is not 
9474         part of libmetadata, a new hook function called 
9475         mono_lookup_dynamic_token() is added to class.c which will call this.
9477         * assembly.h assembly.c: make the invoke_load_hook function public,
9478         so it can be called for dynamic assemblies.
9480         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
9482         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
9483         type isn't found.
9485         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
9486         MonoGHashTable, since it contains pointers to objects which the GC 
9487         needs to track.
9489         * assembly.c (search_loaded): remove unused variable.
9490         
9491 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
9493         * object.c: fixed issue exposed by gcc-generated IL programs
9494         that use RVA data for pointers.
9496 2003-01-25  Martin Baulig  <martin@ximian.com>
9498         * threads.c (start_wrapper): Moved the initialization of
9499         `start_func' above the mono_new_thread_init() call to which we
9500         pass it as argument.
9502 2003-01-24  Martin Baulig  <martin@ximian.com>
9504         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
9505         the MonoThread pointer.
9507 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
9509         * icall.c: Rename `PowImpl' to Pow.
9511 2003-01-23  Dick Porter  <dick@ximian.com>
9513         * threads.c (start_wrapper): Create a Thread object if needed, so
9514         the Main() thread can do the class initialisation in a subthread
9515         that has been set up to allow managed code execution.
9517         Pass the thread ID instead of the MonoThread pointer to the thread
9518         start and attach callbacks.  This change is required, because the
9519         jit thread start callback must be called _before_ the Thread
9520         object can be created.
9521         
9522         (mono_thread_init): Removed much object creation code that is no
9523         longer needed.  No managed code is called from here now.
9525         * object.c (mono_runtime_exec_managed_code): Create a subthread
9526         for Main, and call back to the runtime to use it.
9527         Set the exit code when Main exits.
9529         * gc.c: Make sure domain finalisation happens in a subthread.
9530         Re-enable threaded GC, fixing bug 31333 (again).
9532         * environment.c: System.Environment internall calls (so far just
9533         ExitCode is here, the others are still in icall.c)
9535         * appdomain.c (mono_runtime_cleanup): All threads running managed
9536         code should have finished before mono_runtime_cleanup() is
9537         reached, so no need to clean up threads.
9539 2003-01-22  Martin Baulig  <martin@ximian.com>
9541         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
9542         `gpointer func' arguments.      
9543         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
9544         but added `MonoThread *thread' argument.
9545         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
9547         * threads.c (mono_new_thread_init): Added `gpointer func' argument
9548         and pass it to the mono_thread_start_cb callback.
9549         (mono_install_thread_callbacks): New public function to install a
9550         set of callbacks which are set by the debugger.
9551         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
9553 2003-01-22  Martin Baulig  <martin@ximian.com>
9555         * Makefile.am: Install debug-mono-symfile.h.
9557 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
9559         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
9561 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
9563         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
9564         * class.c (mono_ptr_class_get): correctly set access levels of pointers
9565         (mono_array_class_get): correctly set access levels of arrays
9567 2003-01-20      Patrik Torstensson
9568         * image.h (MonoAssemblyName): changed major, minor, build, revision
9569         from signed to unsigned.
9571 2003-01-20  sean kasun <skasun@azstarnet.com>
9573         * reflection.c (load_cattr_value): Now this handles
9574         MONO_TYPE_SZARRAY.  Fixes bug #35629
9576 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
9578         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
9579         integer value
9581 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9583         * decimal.c: fixed bug #26056.
9585 2003-01-17  Martin Baulig  <martin@ximian.com>
9587         * gc.c: Raise an ExecutionEngineException instead of using g_error().
9589 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9591         * exception.[ch]:
9592         (mono_get_exception_type_initialization): new function.
9594         * object.c: throw a TypeInitializationException when an exception is
9595         thrown invoking the class constructor.
9597 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9599         * reflection.c: fixed attribute reading.
9601 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9603         * icall.c:
9604         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
9605         provided, look for the type in the calling assembly and then in
9606         mscorlib; if the assembly name is provided, only try that one.
9608 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
9610         * object.c: register the vtable before there is a chance it's
9611         queried again recursively.
9613 2003-01-13  Duncan Mak  <duncan@ximian.com>
9615         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
9616         gc-internal.h. 
9617         
9618 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
9620         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
9622 2003-01-11  Martin Baulig  <martin@ximian.com>
9624         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
9625         this to 20 for the release.
9627 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
9629         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
9631         * loader.c (mono_method_get_marshal_info): bug fix
9633         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
9634         structures with explicit layout
9636 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
9638         * profiler.c: made the output more readable (and sorted). 
9639         Added caller information for the allocation profiler.
9641 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
9643         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
9645 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9647         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
9648         to get value types.
9649         
9650 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
9652         * object.c, profiler.h, profiler.c, profiler-private.h:
9653         Added object allocation profiler.
9655 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
9657         * reflection.h, reflection.c: handle global methods.
9658         Compress blob entries.
9660 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
9662         * marshal.c: fix compilation.
9664 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
9666         * loader.c (mono_method_get_marshal_info): impl.
9668         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
9670 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9672         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
9673         for reference types.
9675 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
9677         * loader.c: fixed off by one error in loaded parameter names.
9679 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
9681         * marshal.c (mono_marshal_get_icall_wrapper): like
9682         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
9683         instead of a MonoMethod.
9685 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9687         * decimal.c: fixed bug #36537.
9689 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
9691         * marshal.c: throw a missing method exception if a
9692         P/Invoke method is not found.
9694 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
9696         * icall.c: allow a null this for constructors.
9698 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
9700         * icall.c: raise the proper exceptions if the arguments to the
9701         internal Invoke are incorrect.
9703 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
9705         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
9707 2003-01-03  Martin Baulig  <martin@ximian.com>
9709         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
9711 2002-12-31  Martin Baulig  <martin@ximian.com>
9713         * debug-mono-symfile.c: Completely rewrote the type section.
9714         Instead of using individual malloc()ed fields, we use one big
9715         continuous memory area and offsets into this area.
9716         See the comments in the source code for details.
9718 2002-12-30  Martin Baulig  <martin@ximian.com>
9720         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
9722 2002-12-30  Martin Baulig  <martin@ximian.com>
9724         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
9725         line number table in this data blob instead of using an external
9726         pointer.
9728 2002-12-28  Martin Baulig  <martin@ximian.com>
9730         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
9732 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
9734         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
9735         as a boxed return type.
9737 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
9739         * appdomain.c
9740         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
9741         g_build_filename to properly get separators on the filename created.
9743         * object.h: Small change, introduce MonoMarshalByRefObject to
9744         track the layout of that structure in the C# universe as we make
9745         changes there.
9747 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
9749         * object.c: removed assert to allow static fields on interfaces.
9750         * loader.c: a TypeSpec may be used for any type, not just arrays.
9752 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
9754         * class.c, class.h: added mono_class_array_element_size ().
9755         Ignore static methods in interfaces.
9757 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9759         * threads.c: fixed the build under cygwin.
9761 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
9763         * reflection.c: handle nullref constants. Allocate keys for
9764         reflection handles with the GC.
9766 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
9768         * threads.c, threads.h: added mono_thread_get_abort_signal()
9769         to get a suitable signal for thread abort.
9771 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
9773         * metadata.c: fix handling of ExportedType table.
9775 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9777         * icall.c: added WriteWindowsDebugString internal call.
9779 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9781         * reflection.h: added fields to match C# implementation.
9783 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9785         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
9787 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
9789         * gc.h, gc-internal.h: Rename header for GC internal calls to
9790         gc-internal.h from gc.h as to not clash with Boehm GC having its
9791         header installed as <gc.h> in outside include paths.
9792         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
9793         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
9795 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9797         * icall.c: assign minor, build and revision in FillName.
9799 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
9801         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
9802         Added support for running code generated by Reflection.Emit.
9804 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9806         * appdomain.c: check for NULL argument in LoadFrom.
9808 2002-12-10  Dick Porter  <dick@ximian.com>
9810         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
9812 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9814         * appdomain.c: fix buglet when building exe file name.  Handle full
9815         assembly name (needed after latest changes to AssemblyName).
9816         * image.c:
9817         (mono_image_close): free some hashtables.
9819 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
9821         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
9822         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
9823         on some systems (redhat 7.3) 
9825 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
9827         * threads.c: delete the critical section of a sync block,
9828         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
9830 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
9832         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
9834 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9836         * appdomain.[ch]: handle the assembly preload event to try loading the
9837         assemblies using the paths we have in the current domain.
9839         * assembly.[ch]: created an assembly preload hook that is called to try
9840         loading the assembly by other means that the ones provided here.
9842         * domain.c: initialize the domain search path.
9844         From now on, assemblies (TODO: except corlib and System) are loaded
9845         according to these rules when using mono_assembly_load ():
9847                 1. It tries to load the assembly from the ApplicationBase
9848                 of the current domain appending .dll and .exe (TODO: have to
9849                 try loading from name/name.dll and name/name.exe).
9851                 2. It tries the search path specified in PrivateBinPath for the
9852                 current domain (if any).
9854                 3. Previous behavior.
9856 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
9858         * icall.c: implemented GetInterfaceMap() related icall.
9859         * domain.c, loader.h: load MethodInfo in mono_defaults.
9861 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
9863         * gc.c: disable the finalizer thread for now, untill all the issues
9864         with it are resolved.
9866 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
9868         * string-icalls.c: handle embedded nulls in string ctor when the
9869         length is specified.
9871 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
9873         * class.c: look for explicit interface implementation in parent
9874         classes, too.
9876 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
9878         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
9880 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
9882         * gc.c: protect handles with a critical section.
9884 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9886         * icall.c:
9887         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
9888         parameters. If no assembly specified, try getting the type from all
9889         the assemblies in the current domain, else, load the assembly and get
9890         the type from it.
9892 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9894         * marshal.c: applied patch from Aleksey Demakov that fixes
9895         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
9897 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9899         * icall.c: fixed get_location.
9901 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
9903         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
9904         declarations to make it work with older gcc. 
9906         * loader.c (mono_get_method): set signature->pinvoke for native calls
9908 2002-11-20  Dick Porter  <dick@ximian.com>
9910         * threads.c (mono_thread_init): Set the main thread's handle
9912 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
9914         * gc.c: allow compilation without GC support. Changed to match the
9915         mono coding style.
9917 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
9919         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
9921 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
9923         * reflection.c: set a public key token on the core assemblies.
9925 2002-11-18  Dick Porter  <dick@ximian.com>
9927         * threads.c: Split out some thread initialisation so that other
9928         files can set the start callback function.
9930         * gc.c: Run finalisers in a separate thread, to avoid stack
9931         overflow.  Fixes bug 31333.
9933         * appdomain.c: Set up GC finalisation thread.
9935         * reflection.c: 
9936         * object.c: 
9937         * domain.c: Use gc.h macros for GC_malloc
9938         
9939 2002-11-15  Dick Porter  <dick@ximian.com>
9941         * threadpool.c: 
9942         * threads.c:
9943         * appdomain.c: Removed mono_runtime_init_with_attach(),
9944         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
9945         merging the extra parameter with the existing function.  Removed
9946         unneeded code in mono_thread_attach().
9948 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
9950         * image.c (mono_image_loaded_by_guid): a method to get loaded
9951         images by guid. 
9952         (load_metadata_ptrs): we store the guid as string.
9954 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
9956         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
9958         * metadata.c (mono_guid_to_string): imported method form Zoltan
9959         Varga (slightly modified)
9961         * assembly.c (mono_assembly_open): load precompiled code
9963         * loader.h (MonoMethod): we store the method token for use in the
9964         aot compiler. 
9966 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9968         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
9969         the hook function called when an assembly is loaded.
9970         
9971         * domain.c: Modified file.
9972         (mono_domain_assembly_load): removed hash table insertion of assemblies.
9974         Fixes bug #33196.
9976 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
9978         * reflection.c: Map PEFileKind to the value expected by the WinNT
9979         image loader. 
9981 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9983         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
9984         Read until the buffer is filled completely.
9986 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9988         * icall.c: implemented MonoType.InternalGetEvent ().
9990 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9992         * appdomain.c: implemented InitAppDomainSetup. Delayed
9993         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
9994         the entry_assembly.
9996         * assembly.c: base_dir is now an absolute path ending with
9997         G_DIR_SEPARATOR.
9999         * icall.c: modified get_location according to the above changes.
10001         * object.c: init AppDomain.SetupInformation for the default domain after
10002         we have the entry assembly.
10004         * domain.c: when unloading a domain, setup = NULL.
10006 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
10008         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
10010 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
10012         * object.h, object.c: introduced mono_object_get_virtual_method ()
10013         to lookup the method invoked on an object when a callvirt is done on
10014         a method.
10015         * icall.c: make MethodInfo::Invoke() always do a virtual call.
10017 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10019         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
10020         current domain when loaded an assembly and failed to load it.
10022         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
10024 2002-10-31  Dick Porter  <dick@ximian.com>
10026         * icall.c: 
10027         * file-io.h: 
10028         * file-io.c: Return the error status in a parameter, as the
10029         GetLastError() value has long since been blown away if we try and
10030         look it up in a subsequent internal call invocation.  Delete the
10031         GetLastError() internal call, because it's useless.
10033 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
10035         * class.[ch]: added cast_class to fix bug 29517
10037 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
10039         * marshal.c: create valid IL code in the filter clause:
10040         the new JIT is less forgiving:-)
10042 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10044         * icall.c: removed get_property internal call.
10046 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
10048         * appdomain.h domain.c: Added an ID to appdomains.
10049         
10050         * threads.c threads.h icall.c: Implement icall
10051         Thread:GetDomainID(), and remove unused icall 
10052         CurrentThreadDomain_internal.
10054 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10056         * icall.c: Don't recurse through the base types in GetConstructor.
10057         Fixes bug #32063. 
10059 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
10061         * mempool.h, mempool.c: added mono_mempool_empty() and
10062         mono_mempool_stats().
10064 2002-10-23  Dick Porter  <dick@ximian.com>
10066         * file-io.c: 
10067         * file-io.h: 
10068         * icall.c: Added MonoIO.GetFileType internal call
10070 2002-10-17  Dick Porter  <dick@ximian.com>
10072         * appdomain.c (mono_runtime_cleanup): Don't signal the async
10073         delegate semaphore before waiting for all threads to finish,
10074         because new threads can also call async delegates.  Fixes bug
10075         32004.
10077         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
10078         of 3 seconds, in case another async job is queued.  (This part is
10079         needed because the bug fix reintroduced the 3s exit lag.)  This
10080         makes the mono_runtime_shutdown flag superfluous.
10082 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
10084         * reflection.c: include ehader size in method section headers.
10085         Really check for suplicated modules entries.
10087 2002-10-17  Martin Baulig  <martin@gnome.org>
10089         * debug-mono-symfile.c: Added back support for locals.
10091 2002-10-14  Martin Baulig  <martin@gnome.org>
10093         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
10094         MONO_TYPE_VOID.
10096 2002-10-14  Martin Baulig  <martin@gnome.org>
10098         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
10099         mono_class_get() instead of looking in the class cache. 
10101 2002-10-13  Martin Baulig  <martin@gnome.org>
10103         * debug-mono-symfile.c: Set version number to 28, include the
10104         signature in method names.
10106 2002-10-13  Martin Baulig  <martin@gnome.org>
10108         * debug-mono-symfile.h: Set version number to 27.
10110 2002-10-11  Martin Baulig  <martin@gnome.org>
10112         * gc.c: Don't register/unregister NULL pointers as disappearing links.
10114 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
10116         * metadata.c, metadata.h: added helper function to allocate signatures.
10118 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10120         * icall.c: added internal call to get the location of machine.config.
10122 2002-10-08  Martin Baulig  <martin@gnome.org>
10124         * debug-mono-symfile.c: Ignore classes with a pending init for the
10125         moment.
10127 2002-10-03  Dick Porter  <dick@ximian.com>
10129         * threads.c: Freebsd pthread_t is a pointer
10131 2002-10-03  Dick Porter  <dick@ximian.com>
10133         * socket-io.c: Implemented GetHostName_internal
10135 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10137         * mono-config.c:
10138         (mono_config_parse_file): don't leak the text.
10140 2002-10-02  Martin Baulig  <martin@gnome.org>
10142         * debug-mono-symfile.c: Added support for methods.
10144 2002-10-01  Martin Baulig  <martin@gnome.org>
10146         * debug-mono-symfile.c: Don't emit methods and line numbers for
10147         the dynamic symbol file, just write the type table.  We can easily
10148         have an external helper program which creates a symbol file for an
10149         IL file.        
10151 2002-10-01  Dick Porter  <dick@ximian.com>
10153         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
10154         Only add the handle to the cleanup array when we're about to
10155         launch the thread.  Bug 31425 deadlocked when the test was run on
10156         mono under w32.
10158 2002-10-01  Martin Baulig  <martin@gnome.org>
10160         * debug-mono-symfile.c: Added support for properties.
10162 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
10164         * reflection.c: unaligned store fix from Mark Crichton
10165         <crichton@gimp.org>.
10167 2002-09-27  Martin Baulig  <martin@gnome.org>
10169         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
10170         New interncall.
10172 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
10174         * assembly.h, assembly.c: use a sane API to hook into the assembly
10175         loading process instead of a useless special-purpouse hack
10176         (ngen needs a hook, too, for example).
10178 2002-09-27  Dick Porter  <dick@ximian.com>
10180         * threads.c (mono_thread_init): Call GetCurrentProcess() so
10181         io-layer can set up some process handle info.  Not needed on w32,
10182         but doesn't hurt either.
10184         * process.c: Pass the program name in the second parameter to
10185         CreateProcess, so the path is searched.  Include the working
10186         directory. Implemented process name, process enumeration, and some
10187         process detail internal calls.
10188         
10189         * icall.c: Added internal calls for process lookup, and some
10190         process details
10192 2002-09-26  Martin Baulig  <martin@gnome.org>
10194         * assembly.c (mono_install_open_assembly_hook): New global
10195         function to install a function to be invoked each time a new
10196         assembly is loaded.
10197         (mono_assembly_open): Run this callback function if set.
10199         * debug-mono-symfile.c: Put back line numbers for the dynamic
10200         symbol file and also record the .il file as source file.  This
10201         allows us to install the temporary symbol file as `file.dbg' just
10202         like a compiler-generated one.
10204 2002-09-26  Nick Zigarovich <nick@chemlab.org>
10206         * Corrected typo in gc.c (BOHEM vs BOEHM).
10208 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10210         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
10211         GetProperties. Also avoid calling g_slist_length in GetProperties and
10212         GetMethods.
10214 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
10216         * reflection.c: avoid unaligned stores (bug spotted by
10217         Mark Crichton  <crichton@gimp.org>).
10219 2002-09-25  Martin Baulig  <martin@gnome.org>
10221         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
10222         instead of guint64 for addresses and added prologue/epilogue info.
10224 2002-09-25  Martin Baulig  <martin@gnome.org>
10226         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
10227         store line number info.  For the dynamic symbol file, we only need
10228         to provide the JIT generated dynamic line number info for the dynamic
10229         symbol file.
10231 2002-09-25  Martin Baulig  <martin@gnome.org>
10233         * debug-mono-symfile.h: Incremented version number.
10235 2002-09-24  Martin Baulig  <martin@gnome.org>
10237         * class.c (mono_debugger_class_init_func): New global function
10238         pointer variable.
10239         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
10240         call it.
10242         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
10243         function.  This is called via the mono_debugger_class_init_func
10244         hook to add all types to the dynamic type table.
10245         (ves_icall_MonoDebugger_GetType): New interncall to get a class
10246         from its metadata token.
10248         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
10249         New interncall for the debugger.
10251 2002-09-24  Nick Drochak <ndrochak@gol.com>
10253         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
10254         before using it in case it is null.
10255         
10256 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10258         * metadata.c: allow custom modifiers in local var signatures
10259         (bug spotted by Zoltan Varga).
10261 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
10263         * class.c: deal with the <Module> class that may have a NULL vtable.
10264         Eliminate warnings.
10266 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
10268         * image.c, image.h: more strong name helpers.
10269         * monosn.c: more work: convert pem keys to cryptoapi format.
10271 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
10273         * string-icalls.c: speedup IndexOf.
10275 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
10277         * icall.c: updates from Zoltan.2.Varga@nokia.com.
10279 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
10281         * icall.c: cleanup: use mono_object_domain ().
10283 2002-09-23  Martin Baulig  <martin@gnome.org>
10285         * debug-mono-symfile.c: Improved type support.
10287 2002-09-22  Martin Baulig  <martin@gnome.org>
10289         * debug-mono-symfile.c: Added support for reference types and strings.
10291 2002-09-22  Martin Baulig  <martin@gnome.org>
10293         * debug-mono-symfile.c: Started to work on the type table.
10295 2002-09-21  Martin Baulig  <martin@gnome.org>
10297         * debug-mono-symfile.c: Largely reworked the symbol table format.
10298         The symbol table is now incrementally updated each time a new
10299         method is added.  We're now also using our own magic and version
10300         so that you don't need to recompile all your classes if the
10301         dynamic table changes.
10302         (mono_debug_update_mono_symbol_file): Removed.
10303         (mono_debug_symfile_add_method): New function to add a method.
10305 2002-09-21  Martin Baulig  <martin@gnome.org>
10307         * icall.c
10308         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
10309         New interncall.
10311         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
10312         New interncall to get a method from its metadata token.
10314 2002-09-21  Martin Baulig  <martin@gnome.org>
10316         * debug-mono-symfile.c: Create type table.
10318 2002-09-20  Martin Baulig  <martin@gnome.org>
10320         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
10322 2002-09-20  Martin Baulig  <martin@gnome.org>
10324         * debug-mono-symfile.c: Provide information about params and locals.
10326 2002-09-20  Martin Baulig  <martin@gnome.org>
10328         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
10329         New interncall.
10331         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
10332         interncall to get a method from its metadata token.
10334 2002-09-20  Martin Baulig  <martin@gnome.org>
10336         * debug-mono-symfile.c: Added a few checks for method->header
10337         being non-NULL.  This should never happen, but for the moment
10338         let's use a g_warning() rather than a g_assert().
10340 2002-09-19  Mark Crichton  <crichton@gimp.org>
10342         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
10343         even if support for it isn't present.  Added an #ifdef to fix this.
10345         * socket-io.c: Added checks back for Solaris support.
10347 2002-09-19  Martin Baulig  <martin@gnome.org>
10349         * debug-mono-symfile.c (read_string, write_string): Reflect latest
10350         changes in the symbol file format.
10352 2002-09-18  Martin Baulig  <martin@gnome.org>
10354         * debug-mono-symfile.c: Set version number to 21.
10356 2002-09-18  Dick Porter  <dick@ximian.com>
10358         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
10359         on netbsd.  Fixes bug 30051.
10361 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10363         * reflection.c:
10364         (set_version_from_string): little fix.
10366 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
10368         * monosn.c, Makefile.am: added strong name utility.
10369         * reflection.h, reflection.c: implemented delayed signing,
10370         locale, version and hash id assembly attributes.
10372 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
10374         * loader.c, metadata.c: load param attributes in signatures.
10376 2002-09-16  Martin Baulig  <martin@gnome.org>
10378         * debug-mono-symfile.c: Added string table with all method names.
10380 2002-09-14  Martin Baulig  <martin@gnome.org>
10382         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
10383         fast method lookup.
10385 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
10387         * reflection.c: record the public key token of referenced assemblies.
10389 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
10391         * image.c, image.h: added functions to get the strong name and the
10392         public key of an assembly.
10393         * pedump.c: use them.
10395 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
10397         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
10399 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
10401         * marshal.c (mono_marshal_get_managed_wrapper): Added
10402         MONO_TYPE_BOOLEAN 
10404 2002-09-11  Martin Baulig  <martin@gnome.org>
10406         * gc.c: Call GC_unregister_disappearing_link() on all links when
10407         finalizing them, this is necessary to aviod a crash in boehm's
10408         finalize handler.
10410 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10412         * gc.c: handle GetTarget for finalized objects spotted and fixed by
10413         nick@chemlab.org.
10415 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
10417         * icall.c: implemented MonoType::Module.
10418         * reflection.c, reflection.h: mono_module_get_object () from
10419         Tomi Pakarinen <tomi.pakarinen@welho.com>.
10421 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
10423         * icall.c: ignore overridden methods in GetMethods ().
10424         Fix for FieldInfo::SetValue().
10425         * object.c: handle float/double in runtime invoke.
10427 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
10429         * object.c: allow a constructor to be called again on an object.
10431 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
10433         * class.h, class.c: move field layout code to it's own function and
10434         export it. Get an interface id earlier. Move fields in MonoClass
10435         so they are more cache friendly and align the bitfields.
10436         * loader.c: temporary handle get_param_names() for a runtime method.
10437         * reflection.c, reflection.h: more code to handle runtime creation of
10438         types.
10440 2002-09-09  Martin Baulig  <martin@gnome.org>
10442         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
10443         signature with the pinvoke field being set for the actual call.
10445 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10447         * icall.c: removed some unused icalls. Start of map of glib charsets
10448         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
10450 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
10452         * debug-helpers.c: break infinite loop (found and fixed by
10453         Holger Arnold <harnold@gmx.de>).
10455 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
10457         * icall.c: target may be null in create_delegate.
10459 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
10461         * marshal.c: handle a boolean return type.
10463 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
10465         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
10467 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
10469         * gc.c: fix weakreferences.
10471 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
10473         * icall.c: added icall to get default codepage.
10475 2002-09-03  Dick Porter  <dick@ximian.com>
10477         * threads.h: 
10478         * threads.c: Use MonoThread instead of MonoObject where
10479         apropriate.
10481         Store running thread objects in a hash table, so that we have all
10482         the info to hand when waiting for them to finish
10483         (means we don't need OpenThread() any more, so mingw builds should
10484         be fully functional again.)
10486         * verify.c:
10487         * object.h: Added thread ID to MonoThread
10489 2002-09-03  Martin Baulig  <martin@gnome.org>
10491         * icall.c (System.Reflection.Assembly::get_location): New interncall.
10493 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10495         * icall.c: fixed leak in get_temp_path. Thanks lupus.
10497 2002-09-03  Martin Baulig  <martin@gnome.org>
10499         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
10500         argument to store the end address of the disassembled instruction.
10502         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
10503         here from debug-symfile.h.
10504         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
10505         JIT into this struct.
10506         (MonoSymbolFile): Added `char *image_file' field.
10507         (MonoDebugGetMethodFunc): Removed.
10508         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
10509         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
10510         (mono_debug_find_method): New method.
10512         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
10513         create a full symbol file.
10514         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
10515         and static symbol files.
10516         (mono_debug_find_method): The symbol file keeps an internal method hash,
10517         call this to get a MonoDebugMethodInfo from a MonoMethod.
10519         * debug-symfile.[ch]: Removed.
10521 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
10523         * image.c (do_mono_image_open): Remove linker version check.
10525 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
10527         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
10528         wrappers for instance methods.
10529         
10530 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10532         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
10534 2002-08-28  Dick Porter  <dick@ximian.com>
10536         * Makefile.am: Export HOST_CC for w32 builds
10538 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
10540         * file-io.c process.c: MonoString are null terminated, no
10541         need for mono_string_to_utf16() anymore.
10543 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10545         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
10547 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
10549         * icall.c, reflection.h: speedup System.MonoType.
10551 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
10553         * reflection.c: allow null as the value of a string argument in
10554         custom attributes constructors.
10556 2002-08-27  Martin Baulig  <martin@gnome.org>
10558         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
10559         `trampoline_address' field.
10561 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
10563         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
10564         check (fixes bug #29486) 
10566 2002-08-27  Martin Baulig  <martin@gnome.org>
10568         * debug-mono-symfile.c: Changed the file format in a way that allows us
10569         open it read-only and to use a specially malloced area for all the
10570         dynamic data.  We can now also generate a symbol file on-the-fly if we're
10571         debugging IL code and there is no MCS generated symbol file for it.
10573 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
10575         * object.c: added a define for a good string and array
10576         creation speedup (not enabled by default because we need to deal with
10577         the synch stuff).
10579 2002-08-26  Martin Baulig  <martin@gnome.org>
10581         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
10582         function to create a dynamic symbol file.  This is used by the
10583         debugger to create a symbol file for IL code on-the-fly.
10585 2002-08-26  Martin Baulig  <martin@gnome.org>
10587         * loader.c (mono_lookup_pinvoke_call): Include the error message
10588         from g_module_error() in the error message.
10590 2002-08-24  Martin Baulig  <martin@gnome.org>
10592         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
10593         function to update the symbol file.  The symbol file is mmap()ed
10594         writable, but private.  This allows us to install the symbol file
10595         together with the assembly.
10597 2002-08-24  Martin Baulig  <martin@gnome.org>
10599         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
10600         but they can read the new symbol file format which mcs is now creating.
10602         * debug-symfile.c (mono_debug_find_source_location): Moved to
10603         debug-mono-symfile.c; this is now operating on the new symbol file.
10605 2002-08-23  Martin Baulig  <martin@gnome.org>
10607         * debug-helpers.c (mono_method_desc_from_method): New function to get
10608         a MonoMethodDesc from a MonoMethod.
10610 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
10612         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
10613         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
10615 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
10617         * string-icalls.[ch]: make helper methods static.
10619 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10621         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
10622         types to it and to SetValueInternal.
10624         * object.c: Moved handle_enum label to its proper place. This was the
10625         f... bug! ;-)
10627         This time i compiled mcs and gtk-sharp and they both work.
10629 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10631         * icall.c: reverted partially my previous patch until 
10632         object.c:set_value handles enums correcly.
10634 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10636         * icall.c:
10637         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
10638         (ves_icall_System_Environment_get_MachineName): removed warning when
10639         compiling under cygwin.
10641 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
10643         * object.c: fixed field_get_value() for reference types.
10645 2002-08-22  Dick Porter  <dick@ximian.com>
10647         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
10648         Don't free a buffer while it's still needed.  Patch from Jonathan
10649         Liger <Jonathan.liger@wanadoo.fr>
10651 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
10653         * icall.c (ves_icall_System_Environment_get_Platform): Add new
10654         internal call.
10656 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
10658         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
10659         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
10661         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
10662         we call unmanaged code which throws exceptions.
10664 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10666         * appdomain.h: added per-domain entry_assembly.
10667         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
10668         arguments.
10669         * icall.c: Assembly::GetEntryAssembly icall.
10670         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
10671         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
10673 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10675         * appdomain.h, gc.c: added mono_domain_finalize ().
10677 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10679         * object.c:
10680         (mono_print_unhandled_exception): changed g_warning by g_printerr
10681         because g_log has a 1024 characters limit (yeah, i got a big stack
10682         trace). Don't print exception name, that should be in ToString 
10683         returned string.
10685 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10687         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
10688         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
10690 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10692         * object.c:
10693         (mono_print_unhandled_exception): after previous commit, i realized
10694         that MS calls ToString on the exception. I changed this function to
10695         do that. This way we get stack_trace for free.
10697 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10699         * object.c:
10700         (mono_print_unhandled_exception): invoke Message property instead of
10701         getting 'message' field from Exception. Don't allocate memory for
10702         'trace' and 'message' if not needed.
10704 2002-08-18  Dick Porter  <dick@ximian.com>
10706         * unicode.c: Fix asserts to match Encoder.cs checks
10708 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10710         * marshal.c: fix unaligned store issue and a few wrong
10711         opcode argument types.
10713 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10715         * icall.c: added GetUninitializedObjectInternal internal call.
10717 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
10719         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
10720         to the right domain.
10722 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
10724         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
10726         * class.c (class_compute_field_layout): set blittable to false for Strings
10728         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
10730 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10732         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
10733         first chunk of code to create types at runtime. Code to
10734         handle ReflectedType/DeclaringType. Make reflection handles
10735         domain specific.
10737 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
10739         * class.c: set correct name in arrays.
10741 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
10743         * appdomain.c (mono_domain_transfer_object): make it work with
10744         valuetypes. bug fixes.
10746 2002-08-12  Dick Porter  <dick@ximian.com>
10748         * object.h: Rename some parameters to avoid c++ keywords (Patch
10749         from Joseph Wenninger <kde@jowenn.at>)
10751 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
10753         * icall.c: added icall to implement Assembly.GetFile*.
10755 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
10757         * reflection.h, reflection.c: code to embed managed resources.
10759 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
10761         * class.c: move all the type size stuff into
10762         class_compute_field_layout().
10764 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10766         * class.c: ensure enums have always the correct instance size.
10767         * unicode.c: remove wrong assert.
10769 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
10771         * assembly.c: fix mem corruption issue.
10772         * image.h, image.c: added mono_image_get_resource () to access
10773         managed resources.
10774         * icall.c: implemented Assembly.EntryPoint property and some
10775         Managed Resources related internalcalls.
10778 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
10780         * image.c, image.h: impemented mono_image_get_entry_point ().
10781         * appdomain.c: use mono_image_get_entry_point.
10783 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10785         * reflection.c: support the object type argument when loading
10786         custom attributes.
10788 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
10790         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
10791         String as return type.
10793 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
10795         * reflection.c: fix encoding of named args for custom attrs to match
10796         the ms implementation. Read them back when instantiating custom
10797         attributes.
10799 2002-08-02  Radek Doulik  <rodo@ximian.com>
10801         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
10802         by Dietmar as quick fix
10803         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
10804         16 as stack size, used on more places as quick fix before Dietmar
10805         will fix it properly
10807 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
10809         * object.h, object.c: added accessors for fields and properties.
10811 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10813         * class.c, class.h: made mono_class_get_field_from_name ()
10814         loop on parent types.
10815         Added mono_class_get_property_from_name ().
10817 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
10819         * class.c, class.h: move the code to setup the type vtable in its own
10820         function so that it can be reused also for types created at runtime.
10821         Eliminate the "class" identifier from the header file.
10822         * reflection.c: setup the vtable for enums so that we can create
10823         objects for use in SetConstant ().
10825 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
10827         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
10828         instead of the delegate itself as this pointer (bug #28383)
10830 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
10832         * marshal.c (mono_marshal_get_managed_wrapper): added return type
10833         conversions.
10835 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10837         * loader.c: don't set the pinvoke bit on icalls.
10839 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
10841         * debug-helpers.c (mono_method_full_name): only print a number to
10842         indicate wrapper type (so that the output is more readable in traces).
10844 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
10846         * class.c (mono_class_init): include method override patch from Paolo
10848 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
10850         * icall.c: fixed GetTypeCode().
10852 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
10854         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
10855         use real delegate invoke function to make it work with multicast
10856         delegates (fix bug# 28291).
10858 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
10860         * object.c: load constant strings.
10862 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10864         * reflection.c: no magic numbers.
10865         * tabledefs.h: security action enum.
10867 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
10869         * assembly.c: fix possible memory corruption.
10871 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
10873         * reflection.h, reflection.c: added support for linking resources.
10874         * verify.c: check we have an updated corlib.
10876 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
10878         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
10879         string arrays.
10880         (mono_marshal_string_array): null terminate unmanaged string arrays.
10881         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
10883 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
10885         * icall.c: Type.GetType () can now return also types from the
10886         calling assembly.
10888 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
10890         * loader.h, loader.c: stack walking support.
10891         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
10892         GetCallingAssembly.
10894 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
10896         * marshal.c: added optimisations for blittable types 
10898         * class.c (mono_array_class_get): do not set blittable attribute on arrays
10899         (mono_class_setup_mono_type): set blittable attribute for single
10900         and double.
10902         * marshal.c (mono_string_utf8_to_builder): impl.
10903         (mono_string_builder_to_utf8): impl.
10904         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
10906 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
10908         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
10909         (mono_marshal_get_managed_wrapper): impl. byref types
10911 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10913         * icall.c:
10914         (search_method): don't display debug message. 
10916 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
10918         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
10920 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
10922         * appdomain.c: set the missing filename when throwing exception.
10924 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
10926         * metadata.c (mono_type_size): code cleanup
10927         (mono_type_stack_size): removed some test code
10929 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
10931         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
10932         mono_get_exception_file_not_found now.
10934         * exception.c (mono_exception_from_name_two_strings): New version
10935         that will call a constructor with two string arguments. 
10936         (mono_get_exception_file_not_found): New helper routine, used to
10937         report file-not-found errors.
10939 2002-07-20  Dick Porter  <dick@ximian.com>
10941         * process.h:
10942         * process.c: Pass file handles to CreateProcess
10943         
10944         * icall.c:
10945         * file-io.h:
10946         * file-io.c: Implemented CreatePipe
10948 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
10950         * metadata.c (mono_get_param_info): set alignment for value types
10952 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10954         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
10955         Constify mono_domain_assembly_open().
10956         * loader.c: handle null namespace in icalls.
10958 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
10960         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
10961         (emit_str_to_ptr_conv): marshal object as structs
10963         * metadata.c (mono_type_to_unmanaged): marshal object as structs
10965         * marshal.c (mono_marshal_get_runtime_invoke): support value types
10967 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
10969         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
10970         (mono_marshal_get_native_wrapper): we an now return value types
10972 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10974         * verify.c: more checks implemented.
10976 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
10978         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
10979         (fix bug #27695)
10980         (mono_marshal_get_native_wrapper): allow byref arguments
10981         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
10982         impl. PtrToStringXXX methods
10983         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
10984         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
10985         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
10986         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
10987         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
10989 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10991         * reflection.c: fix buglet in parsing an assembly name.
10993 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
10995         * marshal.c (emit_ptr_to_str_conv): first impl.
10997 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
10999         * object.c, class.h: cache the vtable in the class as suggested by
11000         vargaz@freemail.hu (Zoltan Varga).
11002 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
11004         * class.h, loader.c: added mono_field_from_token().
11005         * verify.c: first cut of type checking code.
11007 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
11009         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
11011 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
11013         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
11014         (fix bug #27782)
11015         (mono_marshal_get_remoting_invoke): impl.
11016         (mono_delegate_begin_invoke): impl.
11017         (mono_mb_emit_save_args): impl.
11018         (mono_delegate_end_invoke): impl.
11019         (mono_marshal_get_delegate_begin_invoke):
11020         (mono_marshal_get_delegate_end_invoke):
11021         (mono_marshal_get_delegate_invoke): generate a special name for
11022         those methods (including the signature) and associate them whith
11023         the delegate class. 
11025 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
11027         * reflection.[ch]: 
11028         (mono_reflection_type_from_name): now it has a MonoImage parameter
11029         which is used as the default image to search the type in. If the image
11030         is NULL or getting the type from it fails, it defaults to corlib.
11032         * icall.c: changed 1 call to mono_reflection_type_from_name to match
11033         new parameter.
11035 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
11037         * reflection.c: update the parameter table index.
11039 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
11041         * domain.c: don't include the mark byte in the string hash.
11043 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
11045         * icall.cs: icall for Type.GetTypeCode ().
11046         * verify: a couple of fixes and disabled local initialization checks.
11048 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
11050         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
11052         * debug-helpers.c (mono_method_full_name): print the type of the
11053         runtime wrapper
11055         * metadata.c (mono_signature_hash): a hash function for signatures
11056         (mono_signature_hash): better hash algorithm
11058         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
11060         * debug-helpers.c (mono_method_full_name): this can now generate
11061         method names with signatures
11063         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
11064         method dont have this pointers.
11066 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
11068         * reflection.c: fixup typebuilder tokens.
11069         * image.c: fix buglet.
11070         * marshal.h: remove whitespace.
11071         * metadata.h, metadata.c: reinstate code that was removed.
11072         * verify.c: handle catch directives and fix another couple of bugs.
11074 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
11076         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
11077         (mono_marshal_get_native_wrapper): make it comp. with the old code
11078         (mono_marshal_get_native_wrapper): support boolean
11079         (mono_marshal_get_managed_wrapper): support more types
11081 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
11083         * class.c (class_compute_field_layout): compute class->blittable attribute.
11085 2002-07-09  Dick Porter  <dick@ximian.com>
11087         * threads.c: Make the thread cleaning up cope with threads that
11088         call ExitThread()
11090 2002-07-08  Radek Doulik  <rodo@ximian.com>
11092         * reflection.c (method_encode_code): use non-translated values to
11093         compute finally_start, this fixes exception handling on ppc, yay!
11095         * decimal.h (struct signscale): fix endianess
11097 2002-07-07  Radek Doulik  <rodo@ximian.com>
11099         * reflection.c: swap box_val and not val
11101 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
11103         * reflection.c, reflection.h: handle full assembly info in type name.
11104         Handle Type arguments when loading custom attributes.
11105         * icall.c: updated to use new mono_reflection_type_from_name () method.
11107 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11109         * loader.c:
11110         (method_from_memberref): also print assembly name when method not found.
11112 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11114         * icall.c:
11115         (ves_icall_TypeGetProperties): fixed bug #27473. 
11117 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11119         * reflection.c: display image name and token when cannot find the
11120         .ctor for an attribute.
11122 2002-07-05  Martin Baulig  <martin@gnome.org>
11124         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
11126 2002-07-04  Dick Porter  <dick@ximian.com>
11128         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
11129         compile on mingw.  This will cause mingw builds to not wait for
11130         subthreads to terminate after the main thread does.  I've lodged a
11131         bug with the mingw developers for them to wrap OpenThread().
11133 2002-07-03  Dick Porter  <dick@ximian.com>
11135         * threads.c: Store thread IDs instead of handles, because
11136         GetCurrentThread() returns a pseudohandle and therefore stores
11137         useless values.  mono_thread_cleanup() continues checking the
11138         array of threads until it is empty, to cope with subthreads
11139         spawning new threads after the main thread has finished.
11141         * profiler.h:
11142         * profiler.c:
11143         * profiler-private.h: Pass the thread ID to thread profiler
11144         functions, instead of a handle
11146 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
11148         * verify.c: fixes to make it more usable.
11149         * pedump.c: added --verify code to verify IL code in an assembly.
11151 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11153         * reflection.c: turn errors into warnings to allow compiling corlib.
11155 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
11157         * reflection.c: add special cases to compile corlib.
11159 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
11161         * reflection.c: handle properties with only a set method.
11163 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
11165         * opcodes.h: add enum with opcodes in opval order.
11167 2002-07-01  Dick Porter  <dick@ximian.com>
11168         
11169         * object.h:
11170         * object.c (mono_runtime_run_main): Removed unneeded argument
11172 2002-06-28  Martin Baulig  <martin@gnome.org>
11174         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
11176 2002-06-27  Dick Porter  <dick@ximian.com>
11178         * threads.c: Store the handle in both the parent thread and in the
11179         subthread, to minimise the time between starting a new thread and
11180         storing its ID.
11182 2002-06-26  Dick Porter  <dick@ximian.com>
11184         * appdomain.c (mono_runtime_cleanup): Close the socket library
11185         after all the threads have finished, not before
11187 2002-06-26  Martin Baulig  <martin@gnome.org>
11189         * debug-symfile.c (mono_debug_find_source_location): Added
11190         `guint32 *line_number' argument.  If it's not NULL, store the line number
11191         there and return the file name without the line number.
11193 2002-06-25  Dick Porter  <dick@ximian.com>
11195         * icall.c:
11196         * process.h:
11197         * process.c: Process forking and other support functions
11199 2002-06-25  Dick Porter  <dick@ximian.com>
11201         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
11202         things dont happen when the image is closed.
11203         (mono_image_lookup_resource): Walk the resource section looking
11204         for a particular entry
11206         * cil-coff.h: PE resource section decoding
11208 2002-06-25  Dick Porter  <dick@ximian.com>
11209         
11210         * assembly.h:
11211         * assembly.c: 
11212         (mono_assembly_foreach): Accessor functions to walk the list of
11213         loaded assemblies
11214         (mono_assembly_set_main):
11215         (mono_assembly_get_main): Process methods need to know which
11216         assembly is the "main" one
11218         * object.c (mono_runtime_run_main): Record the main assembly
11220         * debug-helpers.c: Fix typo
11222 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
11224         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
11225         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
11227 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
11229         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
11231 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
11233         * image.c (do_mono_image_open): Initialize reference count,
11234         otherwise we leak the MonoImage.
11236 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
11238         * reflection.c: small tweak to handle self-hosting.
11240 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
11242         * reflection.c: fix type name parse code.
11244 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
11246         * reflection.c: break out of the loop.
11247         * image.c: special case corlib.
11249 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11251         * reflection.c: add all the custom attrs at the end to ensure the
11252         ctors have been properly initialized when the attributes are defined
11253         in the current assembly.
11255 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
11257         * reflection.c: handle correctly multiple-nested types.
11259 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
11261         * row-indexes.h: fix typos.
11262         * reflection.c: adjust for typos and fix method_def_or_ref
11263         encoding in MethodImpl table.
11265 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
11267         * reflection.c: fix entry point patching (thanks Serge!).
11269 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
11271         * verify.c: add check for System.Exception
11273 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
11275         * image.c, class.c: minifix for code just c&p'ed.
11276         * reflection.c: warning fix.
11277         * object.h, loader.h, domain.c: load also StringBuilder.
11279 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
11281         * marshal.h, marshal.c: some support code to handle complex marshaling.
11283 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11285         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
11286         Better signatures with vtable error dump.
11288 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
11290         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
11292 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
11294         * icall.c (ves_icall_Type_GetField): impl.
11296 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11298         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
11299         to retrieve a marshal description blob for a field or param.
11301 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
11303         * reflection.h, reflection.c: change order of nested type emission
11304         to avoid table corruption. The NestedTypes table is sorted.
11305         * icall.c: change order of GetConstructor results to workaround mcs bug.
11307 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
11309         * reflection.h, reflection.c: handle field and param marshal
11310         information.
11312 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
11314         * icall.c, marshal.c marshal.h: more Marshal class implementation.
11316 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
11318         * reflection.c: fix call convention.
11320 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
11322         * reflection.h, reflection.c: mono_image_get_memberref_token()
11323         takes a type instead of a class, now. Added
11324         mono_image_get_array_token() to create tokens for the special
11325         multi-dim array methods.
11327 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
11329         * assembly.c: handle modules (no assembly table). Split
11330         loading references in its own function.
11331         * class.c: handle moduleref resolution scope.
11332         * image.c, image.h: cache module name in image.
11334 2002-06-07  Martin Baulig  <martin@gnome.org>
11336         * reflection.c (mono_image_get_type_info): Only add a class layout entry
11337         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
11339 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
11341         * icall.c: more signature fixes that used uint instead of int.
11343 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11345         * reflection.c: fixed signature of field refs.
11347 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11349         * class.c, reflection.c: handle typerefs of nested types
11350         (both on read and when writing files).
11352 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
11354         * icall.c: fix method signatures that tried to workaround the previous
11355         typo, d'oh!
11357 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
11359         * debug-helpers.c: fix typo.
11361 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
11363         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
11364         rewrote the PE/COFF writing code (our programs are understood by the
11365         ms runtime, now).
11367 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
11369         * gc.c, gc.h, icall.c: weakreference support.
11371 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
11373         * Makefile.am, mono-config.c: use $(sysconfdir).
11375 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
11377         * icall.c: changed default precision of Double.ToString() to 15.
11378         Fixed memory leak. Unified with Single.ToString.
11380 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
11382         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
11384 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
11386         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
11387         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
11388         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
11389         and myself.
11391 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11393         * debug-symfile.c, sysmath.c: yet more compilation fixes.
11395 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11397         * reflection.c, socket-io.c: more compilation fixes.
11399 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
11401         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
11402         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
11403         unicode.c: warning and compiler compatibility fixes.
11405 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
11407         * class.h, metadata.c: fixed warnings/compilation errors.
11409 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
11411         * Makefile.am, mono-config.c, mono-config.h: configuration file
11412         support routines.
11413         * loader.c, loader.h: make Dll mapping configurable at runtime in the
11414         config file. Export methods to insert and lookup mappings.
11416 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
11418         * reflection.c: handle types and boxed objects in custom attr
11419         constructors.
11421 2002-05-30  Martin Baulig  <martin@gnome.org>
11423         * debug-symfile.c
11424         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
11426 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
11428         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
11429         to lookup the implmap row for a P/Invoke method.
11430         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
11431         P/Invoke method from the runtime on an as needed basis.
11433 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
11435         * metadata.c (mono_metadata_parse_signature): impl.
11437 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11439         * class.c: handle .pack directive.
11441 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
11443         * object.c: initialize static fields with RVA data.
11445 2002-05-25  Martin Baulig  <martin@gnome.org>
11447         * debug-symfile.c
11448         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
11450 2002-05-24  Martin Baulig  <martin@gnome.org>
11452         * debug-symfile.c
11453         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
11454         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
11455         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
11457 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
11459         * object.c: special case string ctros in invoke.
11460         * gc.c: silly whitespace changes.
11462 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
11464         * threadpool.[ch]: impl. a threadpool that can
11465         be used by mint and mono.
11467 2002-05-22  Martin Baulig  <martin@gnome.org>
11469         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
11470         The first argument is now a `MonoReflectionModuleBuilder *', the return
11471         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
11472         `methods' field to get the method builder.  The `token' argument is the
11473         unfixed token.
11475         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
11476         invalid characters instead of g_assert_not_reached()ing.  This seems
11477         to be the behaviour of mscorlib.
11479 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
11481         * object.c (mono_runtime_invoke_array): applied patch from Rachel
11482         Hestilow to fix bug #25104
11484 2002-05-21  Martin Baulig  <martin@gnome.org>
11486         * debug-symfile.c (mono_debug_find_source_location): New function.
11487         Looks up an IL offset in the line number table and returns the source
11488         location as a string.
11490 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11492         * icall.c:
11493         (mono_double_ToStringImpl): changed %f by %g until we have something
11494         better.
11496 2002-05-21  Nick Drochak  <ndrochak@gol.com>
11498         * icall.c : Use different name for Math.Pow's icall.  Needed to check
11499         parameters first in C#.
11501 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11503         * icall.c, reflection.h: added icall to get info about an event.
11505 2002-05-20  Radek Doulik  <rodo@ximian.com>
11507         * object.c (mono_value_box): don't use memcpy for boxing on BIG
11508         endian
11509         (mono_value_box): don't use memcpy for small sizes on
11510         architectures with unaligned access
11512 2002-05-20  Martin Baulig  <martin@gnome.org>
11514         * reflection.c (mono_reflection_setup_internal_class): Don't crash
11515         if `tb->parent == NULL'.
11516         (mono_reflection_create_internal_class): New function.  This is
11517         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
11518         for enum types.
11520         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
11521         New interncall.
11523 2002-05-19  Martin Baulig  <martin@gnome.org>
11525         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
11526         argument to get the length, don't default to the array length.
11528 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
11530         * assembly.c (mono_assembly_setrootdir): New function used to
11531         override the MONO_ASSEMBLIES directory.
11533 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
11535         * icall.c: ValueType_GetHashCode() initialize local var.
11537 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
11539         * reflection.c: sort custom attributes table.
11541 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
11543         * reflection.c: support named args in custom attributes (write support).
11545 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
11547         * reflection.c: fix finally position calculation.
11549 2002-05-15  Radek Doulik  <rodo@ximian.com>
11551         * reflection.c: fixed endianess at many places
11553         * icall.c (ves_icall_InitializeArray): comment out debug msg
11555 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
11557         * object.c (mono_unhandled_exception): new function to handle
11558         unhandled exceptions.
11559         (mono_unhandled_exception): call the UnhandledException event.
11560         (mono_runtime_delegate_invoke): impl.
11562 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
11564         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
11565         returns the RVA, not the direct pointer to the data. Handle the case
11566         when the class size is fixed.
11568 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
11570         * reflection.c: fix some endianess issues.
11572 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
11574         * object.c (mono_runtime_invoke): is now able to catch exceptions.
11576         * threads.c (mono_thread_init): added a callback which is invoked
11577         at thread start.
11579 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
11580         
11581         * icall.c: make GetHashCode return non-negative values.
11583 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
11585         * object.c, icall.c, gc.c: revert to address-based hashcode.
11587 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
11589         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
11591 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
11593         * icall.c, class.c: special case <Module>.
11595 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
11597         * icall.c: fix bug in GetNow().
11599 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
11601         * object.c (mono_runtime_class_init): make sure that we call all
11602         static class constructors.
11604 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
11606         * reflection.c: sort methodsemantics table.
11608 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
11610         * reflection.h, reflection.c: honour init locals setting.
11612 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
11614         * icall.c: copied Double ToStringImpl for Single ToStringImpl
11616 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
11618         * reflection.c: support ContructorBuilders in attribute blob creation.
11620 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11622         * reflection.c: some changes to build a binary that can be run
11623         directly in windows.
11625 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
11627         * loader.c: print a big message when an icall can't be found.
11629 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11631         * string-icalls.c: fix bug 24248.
11633 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
11635         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
11636         icall.c, reflection.h: separate assembly loading by pathname and by
11637         assembly name. Use the MONO_PATH env var to search for assemblies.
11639 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
11641         * assembly.c, image.h: add some support for assemblies
11642         with multiple modules.
11643         * class.c, class.h: export mono_class_from_typeref().
11644         * loader.c: remove duplicated code and use mono_class_from_typeref(),
11645         instead.
11647 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
11649         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
11650         documentation says (the ECMA one is correct).
11652 2002-05-02  Dick Porter  <dick@ximian.com>
11654         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
11655         Don't name the synchronisation mutex.
11657 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
11659         * rand.c
11660         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
11661         Make the prototypes match.
11662         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
11663         Same.
11665         * icall.c
11666         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
11667         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
11668         all systems have tm.tm_zone, so use strftime() with %Z to print
11669         the timezone abreviation into a temp string.
11671         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
11672         rather than mono_array_addr() on a MonoString on Big Endian
11673         machines.
11675 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
11677         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
11678         fix bug 24041
11680 2002-04-30  Dick Porter  <dick@ximian.com>
11682         * socket-io.c: Cope with SOCKET being an integer rather than a
11683         pointer now.
11685         * threads.c: Added Thread_free_internal, to deal with thread
11686         handle cleanup.  Moved calls to handle_store() and handle_remove()
11687         to start_wrapper(), so each can only be called once.  Allocate
11688         synchronisation blocks with GC_malloc(), and use GC finalisation
11689         to close the handles.
11691         * icall.c: added System.Threading.Thread::Thread_free_internal
11693 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
11695         * icall.c: support Environment.Exit, CommandLineArgs().
11697 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
11699         * object.c, object.h: added mono_runtime_run_main () and
11700         mono_runtime_get_main_args () for use in System.Environment.
11702 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
11704         * gc.c: fix thinko, enable actual finalization since the jit is now
11705         fixed.
11707 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11709         * gc.c, object.c: take into account that an object may be offset wrt the address
11710         returned by GC_malloc().
11712 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
11714         * image.c: handle files without entries in the assembly table (modules).
11716 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
11718         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
11719         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
11720         allowed to be null when it's System.Object class setup.
11722 2002-04-27  Martin Baulig  <martin@gnome.org>
11724         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
11725         if `tb->parent == NULL' rather than crashing.
11727 2002-04-28  Nick Drochak  <ndrochak@gol.com>
11729         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
11730         calling acos() where asin() should have been called.
11732 2002-04-26  Martin Baulig  <martin@gnome.org>
11734         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
11735         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
11736         there's a subdirectory called `System', but we don't want to read that
11737         subdirectory as an assembly.
11739 2002-04-25  Martin Baulig  <martin@gnome.org>
11741         * debug-symfile.c: Reflect latest MonoString changes.
11743 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
11745         * rand.c, rand.h: instance method icalls need to have an explicit
11746         this pointer as first argument in the C implementation.
11748 2002-04-25  Nick Drochak <ndrochak@gol.com>
11750         * icall.c: Fix typo in map for GetNonZeroBytes
11752 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11754         * string-icalls.c : String does now passes unit tests without any 
11755         errors, the following changes has been made:
11756         
11757         Implemented replace methods.
11758         Renaming of methods to (try) follow the standard.
11759         Fixed compare ordinal
11760         Made all memory allocated directly to function instead of via icall function.
11761         Small performance fix in is_in_array function
11762                         
11763  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
11765         c (mono_string_Internal_ctor_charp_int_int):
11766         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
11767         sindex < 0, throw ArgumentOutOfRangeException instead of
11768         ArgumentNullException.
11770         Added new check for length == 0, however
11771         I need to make it return String.Empty from the C code.
11772         
11773         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
11774         that calculate the length for us here.
11775         
11776         (mono_string_Internal_ctor_sbytep_int_int): Replaced
11777         mono_string_new_utf16 with mono_string_new, since value is utf8.
11779 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11781         * object.c: register the object for finalization if needed.
11782         Allocate one more char in the string for the terminating 0 char.
11784 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
11786         * class.c, class.h, image.c: check if a type implemenst a destructor.
11787         Use the proper key for array class lookups.
11788         * icall.c: register the icalls in the System.GC class.
11789         * gc.c, gc.h: GC-related functions and icalls.
11791 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11793         * icall.c:
11794         * socket-io.c:
11795         * unicode.c: free some strings gotten from mono_string_to_utf8 and
11796         changed a couple of free () by g_free ().
11798         * decimal.c: one-liner in the comments for decimal2string ().
11800 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11802         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
11804 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11806         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
11807         * object.c (mono_runtime_invoke_array) : handle null in params
11809 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11811         * string-icalls.c: fixed bug in split (one off bug)
11813 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11815         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
11816         * icalls.c: added String::Equals as internal method
11818 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11820         * threads.c: fixed bug in the double interlocked functions
11822 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
11824         * threads.c: implemented all of the new interlocked icalls.
11825         * string-icalls.c: fix a bug in insert.
11826         * icalls.c: added the icalls for interlocked, removed old string functions.
11827         
11828 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
11830         * loader.c: fix off-by-one error when reading argument names.
11832 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11834         * profiler.c: win32 counter implementation (untested).
11835         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
11836         (the latter needs testing and more complete impl. from win32 folks).
11838 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
11840         * object.c: mono_array_new_full workaround mono_array_class_get
11841         problem.
11843 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11845         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
11846         * object.h (mono_string_chars): Changed casting type.
11848 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11850         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
11851                            method signatures to use gunichar2 instead of gint16.
11853 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
11855         * object.h, object.c: domain-specific versions of mono_object_new and
11856         mono_array_new.
11858 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
11860         * object.c: changed String layout
11862         * string-icalls.c (mono_string_Internal_ctor_chara): added
11863         internal string constructors.
11865 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
11867         * threads.c: pass 'this' to the thread start routine.
11869 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11871         * string-icalls.c: fix IndexOf and LastIndexOf. Now
11872         InternalCompareStr don't call twice mono_string_cmp_char for the last
11873         character. Improved performance in mono_string_cmp_char.
11875 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
11877         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
11878         code into its own library: libmonoruntime.
11880 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
11882         * object.h, object.c: changed array format so that szarrays do not
11883         require a bounds structure.
11884         * icall.c, appdomain.c: support for new szarray format.
11886 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
11888         * metadata.c: compare also the retuns type when comparing signatures:
11889         we didn't do this as an optimization since really overloaded methods
11890         must differ also in the arguments, but this doesn't work with
11891         low-level IL code (or when using explicit conversion operators: see
11892         bug#23498 for an example).
11894 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
11896         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
11898 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
11900         * icall.c: make MonoType::GetElementType its own icall.
11902 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
11904         * icall.c: remove MonoMethod_get_Name().
11905         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
11906         object.
11908 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11910         * string-icalls.c: optimized a few methods.
11912 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11914         * icall.c: added all new string internal calls
11915         * string-icalls.c: added, new string internal call implementation.
11916         * object.c: added mono_string_new_size for allocating a string a size
11918 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
11920         * object.c (mono_object_isinst): use the same code as in the
11921         optimized x86 version.
11923 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11925         * profiler.c: TSC-based timer code (faster and more accurate).
11926         Not hooked up in configure, yet (set USE_X86TSC to 1).
11928 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
11930         * profiler.c, profiler.h: track time spent compiling methods.
11931         * threads.c: track thread creation/destruction.
11933 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
11935         * profiler.c, profiler.h, profiler-private.h: profiling interface
11936         and sample implementation. Moved here so that it can be used also by
11937         the jit.
11939 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
11941         * reflection.c, reflection.h: keep types and other handles separate in
11942         the hash tables for referred tokens. Add guid for modules.
11944 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
11946         * assembly.c: fix bugs found with valgrind.
11947         * metadata.h, metadata.c: added mono_metadata_guid_heap().
11949 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
11951         * threads: added icall support for getting current domain for
11952                    the thread.
11954 2002-04-13  Martin Baulig  <martin@gnome.org>
11956         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
11957         (MonoDebugVarInfo): Added `index' field for register based addresses.
11958         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
11959         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
11960         `MonoDebugVarInfo *params' and `guint32 this_offset' with
11961         `MonoDebugVarInfo *this_var'.
11963         * debug-symfile.c (relocate_variable): New static function to write
11964         a location description for a local variable or method parameter.
11966 2002-04-12  Martin Baulig  <martin@gnome.org>
11968         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
11969         stack offset and begin/end scope address of a local variable.
11970         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
11971         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
11972         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
11974         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
11975         Added new relocation types for start/end scope of a local variable.
11977 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11979         * object.h: add mono_object_domain() macro.
11980         * reflection.c: handle typespecs.
11981         * icall.c: MonoMethod::get_Name() implementation.
11983 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11985         * icall.c: String::GetHashCode() icall implementation.
11987 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11989         * icall.c: String::IndexOfAny icall.
11990         * object.c, object.h: make array->max_length more useful.
11991         Intrduced mono_object_class() and mono_string_length() macros.
11993 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11995         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
11996         instead of g_unichar_isdigit.
11998 2002-04-11  Nick Drochak  <ndrochak@gol.com>
12000         * icall.c: Implement a simple Double.ToString().
12002 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
12004         * appdomain.h: only io-layer.h is supposed to be included.
12005         * icall.c: explicitly import environ. Fix warning.
12007 2002-04-10  Nick Drochak  <ndrochak@gol.com>
12009         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
12010                 return true even if it's not Daylight Savings time.
12011                 Only return false for the case where the function isn't
12012                 implemented for a plaform (read Windows).
12014 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
12016         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
12017         data with a mutex.
12019 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
12021         * mempool.c (mono_mempool_alloc): only use g_malloc when
12022         absolutely necessary.
12024 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
12026         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
12028         * class.c (mono_class_vtable): use domain mempool to allocate vtable
12029         (mono_class_proxy_vtable): use domain mempool
12031 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
12033         * appdomain.h, appdomain.c: split initialization that requires the
12034         execution engine support into mono_runtime_init().
12036 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
12038         * class.c (mono_class_init): don't include vtable inside MonoClass
12039         to save some memory, gather some statistics.
12040         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
12042 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
12044         * icall.c: internalcall implementation for ValueType.Equals().
12046 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
12048         * object.c (mono_message_init): moved 
12049         (mono_runtime_exec_main): new arch. independent impl.
12050         (mono_runtime_invoke_array): new method - like
12051         mono_runtime_invoke, but you can pass an array of objects.
12052         (mono_remoting_invoke): new arch. independent impl.
12053         (mono_message_invoke): new arch. independent impl.
12054         (mono_runtime_class_init): new arch. independent impl.
12055         (mono_runtime_object_init): new arch. independent impl.
12057 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
12059         * metadata.c, object.c, reflection.c: documented the exported
12060         functions.
12062 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
12064         * icall.c: simpler code to pass the assembly builder data to corlib.
12065         Implement GetNestedTypes() internalcall.
12067 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
12069         * class.c: warn if a type can't be loaded.
12071 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
12073         * image.h: typedef MonoImageOpenStatus
12074         * types.h: removed unused file
12075         
12076 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
12078         * icall.c: Enum_ToObject accepts enum value arguments.
12080 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
12082         * class.c: move initialization of properties, events and nested
12083         classes, so that they happen for interfaces, too.
12085 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
12087         * icall.c: cleanup some ugly casts in Array_SetValue*.
12089 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
12091         * icall.c: the values array fro enums is of the correct type, now.
12092         Implement (correctly) getFullName instead of assQualifiedName for
12093         MonoType.
12094         * reflection.h, reflection.c: added mono_type_get_name ().
12096 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
12098         * assembly.c, image.h: for each MonoImage, record from wich assembly
12099         it was loaded.
12100         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
12101         Make Type.Assembly work.
12103 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
12105         * debug-symfile.h: use char* instead of gpointer to avoid
12106         unnecessary casts.
12108         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
12110         * icall.c (ves_icall_InternalExecute): impl. FielSetter
12111         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
12113 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
12115         * icall.c (mono_message_init): impl. (code cleanup)
12116         (ves_icall_InternalExecute): impl. FieldGetter
12118         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
12119         defined we call all (non-static)methods through the vtable. 
12121 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
12123         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
12124         finalizer even though the memory is still referenced (and the chunk of
12125         memory is not freed).
12127 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
12129         * assembly.c: fix brokeness.
12131 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
12133         * class.c: kill some warnings. Check explicit interface method
12134         implementation also without considering the namespace.
12135         Load also literal strings in static class data.
12137 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
12139         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
12140         (default_assembly_name_resolver): Make the resolver take the
12141         "base" directory where the assembly was originally defined, so we
12142         can load DLLs that are in the same directory as the assembly that
12143         is being referenced.
12145 2002-03-28  Dick Porter  <dick@ximian.com>
12147         * file-io.h: 
12148         * file-io.c:
12149         * socket-io.c: 
12150         * unicode.h: 
12151         * unicode.c: Warning cleanups
12153 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
12155         * object.h, reflection.h: use the correct type instead of MonoObject.
12157 2002-03-28  Martin Baulig  <martin@gnome.org>
12159         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
12160         (mono_debug_update_symbol_file): Initialize classes if necessary.
12162 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
12164         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
12165         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
12167 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
12169         * assembly.h: fix function prototype.
12170         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
12171         * mono-endian.h: use const cast.
12173 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
12175         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
12177 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
12179         * loader.c: don't assert when a typeref can't be loaded, give
12180         a chance to the runtime to trow an exception instead.
12181         * loader.h: fix warning.
12183 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
12185         * class.c (mono_class_proxy_vtable): added proxy support
12187 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
12189         * icall.c: removed last of PAL calls, added System.Environment
12190         * file-io.h, file-io.c: MonoIO implementation
12191         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
12193 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
12195         * appdomain.c: do not use the byte marker in ldstr table lookup.
12196         * debug-helpers.c: allow two ':' to separate class and method name.
12197         * object.c: allocate arrays bounds with the GC, too.
12198         * verify: add a few more checks.
12200 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
12202         * reflection.c: output also literal strings. Allocate parameter data
12203         with GC_malloc() (thanks, Martin, for catching this!).
12205 2002-03-26  Martin Baulig  <martin@gnome.org>
12207         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
12208         include the `this' offset in the `param_offsets'.
12210 2002-03-25  Martin Baulig  <martin@gnome.org>
12212         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
12213         mono_debug_get_class() function to get the classes. Added new
12214         relocation types for arrays and strings.
12215         (mono_debug_get_class): New static function to search in all
12216         referenced assemblies for a metadata token.
12218         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
12220 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
12222         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
12223         hold gc-allocated objects. Make the string heap a stream like the
12224         others. Removed duplicated code when writing stream info.
12225         Added asserts to catch possible buffer overflows. Set the sorted map
12226         for tables that need sorting. Added some documentation.
12228 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
12230         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
12231         for interned strings and vtables.
12233 2002-03-24  Martin Baulig  <martin@gnome.org>
12235         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
12236         it in the array since it was created with g_slist_prepend().
12238 2002-03-24  Martin Baulig  <martin@gnome.org>
12240         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
12241         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
12242         (mono_debug_method_from_token): Renamed to
12243         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
12244         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
12246         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
12247         relocation types.
12249         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
12251 2002-03-24  Martin Baulig  <martin@gnome.org>
12253         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
12254         (mono_debug_method_from_token): New func.
12256         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
12257         New interncall, calls mono_debug_local_type_from_signature().
12258         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
12259         calls mono_debug_method_from_token().
12261 2002-03-23  Martin Baulig  <martin@gnome.org>
12263         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
12264         specifies the number of bytes to be converted, not the array size.
12265         Return the number of chars, not the number of bytes.
12266         (ves_icall_iconv_get_chars): The `byteCount' argument
12267         specifies the number of bytes to be converted, not the array size.
12269 2002-03-23  Martin Baulig  <martin@gnome.org>
12271         * reflection.h (MonoReflectionSigHelper): New type.
12273         * reflection.c (mono_reflection_sighelper_get_signature_local),
12274         (mono_reflection_sighelper_get_signature_local): New functions.
12276         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
12277         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
12278         interncalls.
12280 2002-03-23  Martin Baulig  <martin@gnome.org>
12282         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
12283         is_writeable is set.
12284         (mono_raw_buffer_update): New function to write the modified map
12285         back to disk.
12287         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
12289         * debug-symfile.c (mono_debug_update_symbol_file): Call
12290         mono_raw_buffer_update() when done writing.
12292 2002-03-23  Martin Baulig  <martin@gnome.org>
12294         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
12296         * debug-symfile.c: Added support for arguments and local variables.
12298 2002-03-23  Dick Porter  <dick@ximian.com>
12300         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
12301         protected by ifdefs, hence breaking the w32 build.
12303 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12305         * object.c: implement is_interned() the right way.
12307 2002-03-21  Martin Baulig  <martin@gnome.org>
12309         * debug-symfile.[ch]: New files to handle debugging information
12310         files. There's also support to dynamically update these symbol
12311         files to include machine dependent information.
12313 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
12315         * threads.c (mono_thread_create): new function to create thread
12316         from C
12318 2002-03-20  Martin Baulig  <martin@gnome.org>
12320         * icall.c (ves_icall_InternalInvoke): Create a new object if the
12321         method is a constructor.
12322         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
12323         points to ves_icall_InternalInvoke().
12325 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
12327         * file-io.c: Flush shouldn't throw exceptions.
12329 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
12331         * file-io.c: FileStream flush support; FileSetLength now
12332         restores file pointer.
12334 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
12336         * class.c: set image for pointer classes.
12338 2002/03/19  Nick Drochak <ndrochak@gol.com>
12340         * sysmath.c: Forgot one.
12342 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
12344         * sysmath.c: Avoid redefining existing names.
12346 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
12348         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
12349         handled by runtime as icall rather than dllimport from libm.so
12350         * file-io.c, file-io.h: fixed handle argument type.
12352 2002-03-18  Dick Porter  <dick@ximian.com>
12354         * reflection.c (mono_image_get_type_info): rename interface to
12355         iface, because of "#define interface struct" on windows.
12357 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
12359         * class.c, class.h: rename and export mono_ptr_class_get().
12360         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
12361         * reflection.c, reflection.h, icall.c: better/saner type name
12362         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
12363         method signatures.
12365 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
12367         * class.c (mono_class_init): removed hardcoded GHC_SLOT
12369         * icall.c (ves_icall_InternalInvoke): impl.
12371 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
12373         * reflection.c: output the interface map table, too.
12375 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
12377         * class.c (class_compute_field_layout): separate computation of 
12378         static field layout
12380 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
12382         * icall.c: added System.Buffer support.
12383         * file-io.c: moved file icalls from PAL to FileStream.
12385 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
12387         * icall.c (ves_icall_System_Object_GetHashCode): impl.
12389 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
12391         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
12393 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
12395         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
12397 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
12399         * debug-helpers.{c,h}: moved here from monograph some useful functions
12400         to locate a method by name/signature in a class or image. Included
12401         also a small and flexible IL disassembler.
12403 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
12405         * reflection.c: fixup tokens in methods with small header size, too.
12407 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
12409         * object.c (mono_string_to_utf8): remove assert(!error), instead
12410         print a warning. 
12412 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
12414         * icall.c: update to the new mono_Array_class_get interface.
12416 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
12418         * appdomain.c, object.c: Boehm-GC enable.
12419         * icall.c: make get_data_chunk() support split data requests.
12420         Ensure a class is initialized in more cases. Return only the first
12421         property found in GetProperties() or the compiler gets confused. 
12422         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
12423         * reflection.h, reflection.c: add fixup mechanism for field and method
12424         tokens. Initialize assembly->typeref in a single place. Output
12425         properties after events. Support custom attributes for events, too.
12426         Typo fix for paramter custom attrs.
12428 2002-03-07  Martin Baulig  <martin@gnome.org>
12430         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
12432 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
12434         * class.c (mono_array_class_get): fix. for multi. dim. arrays
12436 2002-03-06  Martin Baulig  <martin@gnome.org>
12438         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
12439         non-zero lower bounds. See testcases #F10-#F13.
12441 2002-03-05  Martin Baulig  <martin@gnome.org>
12443         * exception.c (mono_get_exception_argument_out_of_range): New exception.
12445         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
12446         ves_icall_System_Array_GetValue(), only calculate the absolute array position
12447         here.
12448         (ves_icall_System_Array_SetValue): Likewise.
12449         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
12450         as argument and does the actual work. This function is used when copying a
12451         multi-dimensional array.
12452         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
12453         now do all the widening conversions of value types.
12454         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
12456 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12458         * class.c: remove some magic numbers and use the smbolic names,
12459         instead. Added init_events() to load event info at class init time.
12460         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
12461         and mono_metadata_methods_from_event().
12462         * reflection.h, reflection.c: added support for writing out the evnets
12463         related information.
12465 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
12467         * reflection.h, icall.c: use a different method (GetInterfaces)
12468         to gather interface info and add isbyref, isprimitive and
12469         ispointer to the ves_icall_get_type_info() return value.
12471 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
12473         * class.h: stared adding support for events.
12474         * icall.c: split find_members implementation. Added debug icall to get
12475         the address of an object.
12476         * reflection.c: handle TypeBuilders in mono_type_get_object().
12478 2002-03-01  Martin Baulig  <martin@gnome.org>
12480         * icall.c (ves_icall_System_Array_GetLength): This must throw an
12481         ArgumentOutOfRangeException(), not an ArgumentException().
12482         (ves_icall_System_Array_GetLowerBound): Likewise.
12483         (ves_icall_System_Array_GetValue): Improved argument checking.
12484         (ves_icall_System_Array_SetValue): Improved argument checking.
12486 2002-03-01  Martin Baulig  <martin@gnome.org>
12488         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
12489         called with invalid arguments rather than just dying with g_assert().
12490         (ves_icall_System_Array_SetValue): Likewise.
12491         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
12492         raise a NotImplementedException instead.
12493         (ves_icall_System_Array_GetLength): Added argument checking.
12494         (ves_icall_System_Array_GetLowerBound): Added argument checking.
12496 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
12498         * object.h (mono_assert): new macros mono_assert and
12499         mono_assert_not_reached
12501 2002-02-28  Martin Baulig  <martin@gnome.org>
12503         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
12504         and "System::String::IsInterned" to "System::String::_IsInterned".
12506 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
12508         * icall.c: remove hacks for typebuilder. Added icall to create a
12509         modified type from a tybebuilder.
12510         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
12511         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
12512         to create a backing MonoClass for a TypeBuilder.
12514 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12516         * class.c, class.h: more refactoring of class init.
12517         Export mono_class_setup_mono_type() and mono_class_setup_parent().
12519 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
12521         * marshal.c, marshal.h: start of marshaling interface.
12523 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
12525         * icall.c: fix order in assembly qualified name icall.
12527 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
12529         * class.c: do not free str, since we store it in the hash table.
12530         * reflection.h: add label field to MonoILExceptionInfo.
12531         * reflection.c: handle references to more than one assembly. Handle
12532         case when there isn't a module created in the assembly.
12534 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
12536         * class.c: Fix typo. Start refactoring of class init code.
12538 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
12540         * appdomain.c: exit with 1 on error.
12541         * class.c: we already have the name in MonoClassField.
12542         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
12543         MonoStreamHeader instead of an offset of image->raw_metadata.
12545 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
12547         * appdomain.c (mono_init): Be even more descriptive about the error.
12549 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
12551         * appdomain.c: give the user an informative message when corlib can't
12552         be loaded.
12554 2002-02-26  Martin Baulig  <martin@gnome.org>
12556         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
12557         New icall to get the time zone data.
12559 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12561         * reflection.c: set virtual and raw size of section correctly.
12562         * threads.c: transfer domain information to newly created threads.
12564 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
12566         * class.c: when instancing a class in a domain, load the default
12567         vaules for static fields from the constant table. Fix System.Enum to
12568         not be an enum.
12569         * icall.c: implement Object::GetType() internalcall. Implemented
12570         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
12571         Fixed checking of binding flags in find_members().
12572         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
12573         * reflection.c: handle enumerations when writing to the constant
12574         table. Use a different object cache for types.
12577 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
12579         * object.c (mono_object_isinst): fix for arrays
12581         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
12583 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
12585         * object.c: don't use mprotect ()  and fix intern pool hash table
12586         lookup for big endian systems.
12588 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
12590         * icall.c: change type_is_subtype_of () signature.
12592 2002-02-21  Mark Crichton  <crichton@gimp.org>
12594         * rand.c, rand.h: Added random number generator for
12595         System.Security.Cryptography classes.
12597         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
12599         * icall.c: Added System.Security.Cryptography calls.
12601 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
12603         * class.c, icall.c, metadata.c: better support for pointer types.
12604         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
12605         * reflection.c: Add support for getting custom attrs for properties
12606         and simplify some code.
12608 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
12610         * icall.c: change getToken () and add custom attribute GetBlob()helper
12611         method.
12612         * reflection.h: add custom attrs array to the reflection builder structures.
12613         * reflection.c: encode and emit custom attributes for all the relevant
12614         reflection objects. Cache fieldref and methodref tokens. Change
12615         mono_image_create_token() interface to take a MonoDynamicAssembly.
12616         More complete custom attributes decoder. Load custom attributes for
12617         Assembly, Field, Method and Constructor objects, too. Make the
12618         returned array an Attribute[] one, not object[]. Added
12619         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
12620         custom attribute constructor.
12622 2002-02-20  Dick Porter  <dick@ximian.com>
12624         * icall.c:
12625         * rawbuffer.c:
12626         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
12627         problem code out for now).
12629 2002-02-19  Radek Doulik  <rodo@ximian.com>
12631         * object.c (mono_ldstr): use hash table to avoid multiple swapping
12633 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
12635         * icall.c: register the GetCustomAttributes method.
12636         * object.c, object.h: add mono_string_new_len ().
12637         * reflection.h, reflection.c: added mono_runtime_invoke(),
12638         mono_install_runtime_invoke(). Added
12639         mono_reflection_get_custom_attrs () to load custom attributes and
12640         create the attribute objects.
12642 2002-02-19  Dick Porter  <dick@ximian.com>
12643         * threads-dummy-types.c:
12644         * threads-dummy-types.h:
12645         * threads-dummy.c:
12646         * threads-dummy.h:
12647         * threads-pthread-types.c:
12648         * threads-pthread-types.h:
12649         * threads-pthread.c:
12650         * threads-pthread.h:  Deleted obsolete files
12652 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
12654         * class.c (mono_class_vtable): runtime init the class when we
12655         allocate static class data.
12657         * icall.c (ves_icall_System_Array_SetValue): check for null values.
12659         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
12660         and String - but we will need generic marshalling support in the
12661         future. 
12662         (mono_init): set the domain name in a ms compatible way
12664         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
12665         String[].
12667 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
12669         * object.c (mono_array_clone): use alloca() instead of g_malloc  
12670         for sizes
12672         * appdomain.c (mono_domain_unload): impl.
12674 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
12676         * appdomain.c, object.c: fix intern pool implementation.
12677         * class.c: fix alignment code.
12679 2002-02-16  Radek Doulik  <rodo@ximian.com>
12681         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
12682         and s2 > s1, just copy lower bytes to be compatible with little
12683         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
12684         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
12686         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
12687         force big_endian to be 1 for big endian machines 
12688         (ves_icall_iconv_new_decoder): ditto
12690 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
12692         * socket-io.c (convert_sockopt_level_and_name): If the system
12693         doesn't define SOL_IP or SOL_TCP, get them by hand using
12694         getprotobyname() and caching the values (because this could be a
12695         slow operation).
12696         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
12697         Use the appropriate struct when the system does support it. Ie,
12698         not all systems have struct ip_mreqn so use struct ip_mreq when
12699         appropriate.
12701 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
12703         * reflection.c: handle finally clauses.
12705 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
12707         * socket-io.c: use g_snprintf() instead of snprintf.
12709 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
12711         * reflection.c (mono_param_get_objects): Cast second argument to
12712         mono_method_get_param_names to a const char** to silence the
12713         compiler warning.
12715         * appdomain.c (mono_domain_assembly_open): Put parens around the
12716         truth statement in the for-loop.
12718         * unicode.c (iconv_convert): Got rid of a compiler warning about
12719         int i being unused when the system has a new iconv.
12720         (iconv_get_length): Same.
12722         * image.c (load_class_names): Cast the second argument to
12723         g_hash_table_insert() to char* to hush compiler warnings about the
12724         arg being a const.
12725         (mono_image_open): Same here.
12727         * socket-io.c: Don't conditionally include sys/filio.h or
12728         sys/sockio.h here anymore since we now get them from
12729         io-layer/io-layer.h
12730         (inet_pton): If the system doesn't support inet_aton, implement
12731         using inet_addr and also #define INADDR_NONE if it isn't defined
12732         by the system.
12734 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
12736         * metadata.c, metadata.h: added function to get packing and size info
12737         of a typedef.
12738         * reflection.h, reflection.c: handle field RVA data. Save info about
12739         the table layout if needed. Assign typedef indexes to all the types
12740         before dumping the info about them to avoid forward reference problems.
12742 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
12744         * socket-io.c (convert_sockopt_level_and_name): ifdef
12745         SO_ACCEPTCONN because it is not defined on my system (old debian)
12747 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
12749         * opcode.c: use stddef.h to get NULL.
12751 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
12753         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
12754         for FIONBIO, FIONREAD and SIOCATMARK.
12755         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
12756         define INADDR_NONE and besides, inet_addr() is deprecated and
12757         should not be used. Use inet_pton() instead - it also has the
12758         added bonus that it can easily handle IPv6 addresses as well.
12759         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
12761 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
12763         * decimal.c: remove _MSC_VER conditional.
12765 2002-02-13  Dick Porter  <dick@ximian.com>
12767         * socket-io.c: 
12768         * icall.c: Internal calls for Blocking, Select, Shutdown,
12769         GetSocketOption and SetSocketOption
12771 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12773         * assembly.cs: better resolver: use it instead of some kludgy
12774         code.
12776 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
12778         * reflection.c: the best way to speed-up the compiler is to avoid
12779         infinite loops.
12781 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
12783         * class.c (mono_class_vtable): changed the object layout
12784         (obj->vtable->class). 
12785         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
12787 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12789         * assembly.c: look for assemblies in the assembly dir, too.
12791 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
12793         * class.c: fix thinko in mono_class_from_type().
12795 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12797         * exception.h, exception.c: added TypeLoadException.
12798         * object.h, object.c: added mono_array_clone ().
12799         * icall.c: handle throwOnError in AssemblyGetType().
12800         Added Array.Clone().
12801         * opcode.h, opcode.c: use a single value for the opcode val.
12802         Compile fix for non-gcc compilers.
12804 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
12806         * opcodes.c, opcodes.h: export interesting info about opcodes.
12808 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
12810         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
12811         icalls. 
12813         * class.c (class_compute_field_layout): set element_class for enums
12814         (mono_class_create_from_typedef): set element_class for normal classes
12816         * icall.c (ves_icall_System_Enum_get_value): impl.
12818         * class.c (mono_class_create_from_typedef): do not set valuetype
12819         flag for System.ValueType and System.Enum
12821 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
12823         * unicode.c (iconv_convert): fix big endian problem.
12825 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
12827         * class.c: add asserts if we are ever going to scribble over memory.
12828         * socket-io.c: not all systems have AF_IRDA defined.
12830 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
12832         * class.c (class_compute_field_layout): do not consider static
12833         fields to compute alignment
12835 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
12837         * appdomain.c (mono_appdomain_get): impl.
12838         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
12840 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
12842         * icall.c: ignore "file://" prefix when loading an assembly.
12844 2002-01-23  Dick Porter  <dick@ximian.com>
12846         * socket-io.c:
12847         * icall.c:
12848         * Makefile.am: Added socket support
12850 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
12852         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
12853         code back.  This should return the assemblies that are loaded by
12854         the runtime on behalf of an application domain. 
12856         The current implementation is still broken, it just returns every
12857         assembly loaded, but until we get real applications domain this
12858         will do.
12860 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
12862         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
12863         AppDomain object.
12865 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
12867         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
12868         the mono_class_from_name lookup.
12869         (ves_icall_get_parameter_info): ditto.
12870         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
12871         method.
12872         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
12874 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
12876         * class.c: load also nested classes on class init.
12877         System.ValueType instance methods gets passed boxed
12878         values, unless methods in derived classed that get a pointer to the
12879         data.
12880         * icall.c: use better name parsing code in GetType().
12881         * image.c, image.h: add mono_image_loaded ().
12882         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
12883         * reflection.c, reflection.h: added mono_reflection_parse_type().
12885 2002-01-22  Veronica De Santis <veron78@interfree.it>
12887         * icall.c : Added mapping of internal calls for Manual and Auto reset events
12888         * threads.c : Added the implementation of internal calls for events
12889         * threads.h : Added prototypes of internal calls for events
12890         
12891 2002-01-21  Radek Doulik  <rodo@ximian.com>
12893         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
12895 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
12897         * class.c (mono_class_init): set min_align to 1 (instead of 0)
12898         (mono_class_value_size): use min_align
12900 2002-01-20  Dick Porter  <dick@ximian.com>
12902         * threads.h:
12903         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
12904         so it compiles on w32.
12906 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
12908         * metadata.c (mono_type_stack_size): impl.
12910         * class.c (mono_class_get_field): impl. memberref token
12912 2002-01-16 Veronica De Santis <veron78@@interfree.it>
12914         * icall.h : Added the internal calls mapping for CreateMutex_internal
12915                     and ReleaseMutex_internal.
12916         * threads.h : Added the prototype of mutexes internal calls.
12917         * threads.c : Added the implementations of mutexes internal calls.
12919 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
12921         * metaparse.h: removed unused file.
12922         * reflection.c, reflection.h: added stream_data_align () function 
12923         to align data in streams and keep stream aligned. Add support for
12924         exception support in method headers.
12926 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
12928         * unicode.c: make iconv_convert () return the number of bytess written
12929         in the output buffer.
12931 2002-01-15  Dick Porter  <dick@ximian.com>
12932         * threads.c: Make the runtime's idea of infinite timeouts coincide
12933         with the class library's
12935         Fix a particularly egregious bug in mono_thread_cleanup(). That
12936         code was so utterly bogus it must have been written on a Monday.
12938 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
12940         * reflection.h: add subtypes field to TypeBuilder.
12941         * reflection.c: encode constants for literal fields.
12942         Handle subtypes. Fix user string token (and add a zero byte)
12943         at the end.
12944         
12945 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
12947         * class.c (mono_class_init): bug fix: assign slot numbers for
12948         abstract methods.
12950 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
12952         * reflection.c: don't try to output a code RVA for abstract methods.
12953         Small fixes for method header format. Output parameter info to the
12954         ParamDef table. Save method overriding info to MethodImpl table.
12955         Fix property support. Allow typedef.extends to be a type in the
12956         building assembly.
12957         * verify.c: fix off-by-one error.
12959 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
12961         * class.c: fix mono_class_from_mono_type () for szarray types.
12962         Remove unused cache check in mono_class_from_type_spec().
12963         * icall.c: *type_from_name () functions handle simple arrays and byref.
12964         * reflection.c: handle byref and szarray types. Handle methods without
12965         body (gets P/Invoke compilation working). Handle types and fields in
12966         get_token ().
12967         * reflection.h: add rank to MonoTypeInfo.
12969 2002-01-10  Dick Porter  <dick@ximian.com>
12971         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
12972         internal calls
12974 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
12976         * icall.c: initialize class in type_from_handle ().
12977         Loop also in parent classes for get_method ().
12978         * reflection.c: properly encode class and valuetype types.
12979         Start on encoding TypeBuilder types. Handle fieldrefs.
12980         Use correct length when registering a user string.
12981         Handle ConstructorBuilder and MonoMethod in get_token ().
12982         Make mono_type_get_object () aware of cached types.
12983         * object.c: back out change to mono_string_new ().
12985 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
12986         * object.c: mono_string_new should return a NULL when the string 
12987         passed in is NULL -- not try to deference it.
12988         
12989 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
12991         * icall.c: hack to make IsSubType work for TypeBuilders.
12992         * reflection.c: emit constructors before methods.
12993         Retrieve param names in mono_param_get_objects().
12995 2002/01/05  Nick Drochak  <ndrochak@gol.com>
12997         * Makefile.am: fix list of headers and sources so automake 1.5
12998         doesn't complain. Removed \# at end of list.
13000 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
13002         * reflection.c: get token for a method ref. Set return type of
13003         constructor to void.
13004         * loader.c: debug message.
13005         * class.c: typo fix.
13007 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
13009         * icall.c: fix array init with rank > 1. FindMembers
13010         loops in parent class as well.
13011         * image.c: do not insert nested types in name cache.
13012         * reflection.c: warning fix.
13013         * reflection.h: add override method (for interface impl).
13015 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
13017         * metadata.c: fix customattr decoding.
13019 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
13021         * rawbuffer.cs: Added native Win32 implementation, avoids using
13022         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
13024 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
13026         * class.c: make the low-level routines handle the cache.
13028 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
13030         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
13032 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
13034         * class.c: fix mono_array_element_size() for objects.
13035         * class.h, class.c: add properties to MonoClass and load them
13036         at init time.
13037         * icall.c: check with isinst() when assigning a value to an array
13038         instead of requiring the classes to match exactly.
13039         Implemented icall for System.Type::GetType().
13040         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
13041         enums. Handle bindingflags when looking for methods and fields.
13042         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
13043         and mono_metadata_methods_from_property().
13044         * reflection.h, reflection.c: added structures for propreties,
13045         parameters and enums. Implemented mono_property_get_object() and
13046         mono_param_get_objects().
13048 2001-12-18  Dick Porter  <dick@ximian.com>
13050         * file-io.c: Use mono_string_to_utf16() instead of
13051         mono_string_chars()
13053         * object.c: Added mono_string_to_utf16(), which copies the non
13054         NULL-terminated MonoString into a new double-null-terminated
13055         buffer.
13057 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
13059         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
13061 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
13063         * file-io.c: raise exceptions if handle is invalid.
13065 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
13067         * assembly.c: yet another check for mscorlib.
13068         * class.c, class.h: load nesting info for classes.
13069         * icall.c: many new functions to support the Reflection classes.
13070         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
13071         * reflection.h, reflection.c: mono_image_create_token(),
13072         mono_assembly_get_object(), mono_type_get_object(),
13073         mono_method_get_object(), mono_field_get_object(): methods to return
13074         objects that parallel the C representation of assemblies, types,
13075         methods, fields.
13077 2001-12-11  Dick Porter  <dick@ximian.com>
13079         * icall.c:
13080         * file-io.c: Internal calls for file IO.
13082 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
13084         * tabledefs.h: missing FileAttributes.
13085         * verify.h, verify.c: use is_valid_string () to simplify and check for
13086         valid strings more correctly. Fix warnings and speeling.
13087         Check more tables: Filed, File, ModuleRef, StandAloneSig.
13088         Check code: branches, maxstack, method calls.
13090 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
13092         * object.c (mono_object_allocate): removed static, so that the jit
13093         can allocate value types.
13095         * icall.c (ves_icall_System_DateTime_GetNow): impl.
13097 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
13099         * class.c: init enum types right away and register the
13100         token->MonoClass map in mono_class_create_from_typedef ().
13101         * verify.h, verify.c: first cut of the verifier.
13102         * pedump.c: add --verify switch to verify metadata tables.
13103         * tabledefs.h: add some missing enums.
13105 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
13107         * class.c (mono_install_runtime_class_init): impl.
13108         (mono_class_init): renamed mono_class_metadata_init to
13109         mono_class_init, also removed the metadata_inited flag
13111         * object.c (mono_object_isinst): use faster algorithm
13113 2001-11-30  Radek Doulik  <rodo@ximian.com>
13115         * mono-endian.h: reverted last change
13116         added function prototypes
13118         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
13119         add mono-endian.c back
13121         * mono-endian.c: returned back, as Paolo pointed out, it's needed
13122         for unaligned access, I've mistaked it with endianess. I am
13123         sorry.
13124         (mono_read16): fix reverted endianess
13125         (mono_read64): ditto
13126         (mono_read32): ditto
13128 2001-11-30  Dick Porter  <dick@ximian.com>
13130         * exception.c: Implement mono_exception_from_name()
13132 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
13134         * metadata.h, metadata.c: remove params_size and locals_size and their
13135         calculation from the metadata code: they are only usefult to the
13136         interp.
13138 2001-11-29  Radek Doulik  <rodo@ximian.com>
13140         * object.c (mono_ldstr): swap bytes here, it's probably not the
13141         best place, but works for me now, I'll redo it once I know mono
13142         better, also note that I add PROT_WRITE and don't reset back, also
13143         note that it's only affects big endians, so x86 should be OK
13145         * mono-endian.h (read16): use just glib macros for both endians
13147         * mono-endian.c: removed as glib macros are used in in
13148         mono-endian.h so we don't need to care about endianess for read
13149         macros as glib does that for us already
13151 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
13153         * class.h, class.h: take minimum alignment into consideration so
13154         that the fields of a class remain aligned also when in an array.
13156 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
13158         * loader.h, loader.c: add mono_method_get_param_names().
13159         * class.c: 0-init class fields.
13161 2001-11-26  Dick Porter  <dick@ximian.com>
13163         * icall.c:
13164         * threads-types.h:
13165         * threads.c: New file that handles System.Threading on all platforms
13167         * object.c: 
13168         * object.h: Remove the synchronisation struct from MonoObject,
13169         replace it with a pointer that gets initialised on demand
13171         * Makefile.am: Replace all the system-specific threading code with
13172         a single file that uses the new wrapper library
13174 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
13176         * class.c, class.h: add mono_install_trampoline() so that the runtime
13177         can register a function to create a trampoline: removes the ugly
13178         requirement that a runtime needed to export arch_create_jit_trampoline.
13179         * object.h, object.c: added mono_install_handler() so that the runtime
13180         can install an handler for exceptions generated in C code (with
13181         mono_raise_exception()). Added C struct for System.Delegate.
13182         * pedump.c: removed arch_create_jit_trampoline.
13183         * reflection.c: some cleanups to allow registering user strings and
13184         later getting a token for methodrefs and fieldrefs before the assembly
13185         is built.
13186         * row-indexes.h: updates and fixes from the new ECMA specs.
13188 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
13190         * class.h, class.c: add enum_basetype field to MonoClass.
13191         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
13192         to get index in the constant table reated to a field, param or
13193         property.
13194         * reflection.h, reflection.c: handle constructors. Set public-key and
13195         version number of the built assembly to 0.
13196         * row-indexes.h: update from new ECMA spec.
13198 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
13200         * class.h, class.c: add a max_interface_id to MonoClass.
13201         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
13202         since it's used to do that. Added mono_type_type_from_obj().
13203         Make GetType() return NULL instead of segfaulting if the type was not
13204         found. Handle simple arrays in assQualifiedName.
13205         * object.h: add a struct to represent an Exception.
13206         * reflection.c: output call convention in method signature.
13207         Add code to support P/Invoke methods and fixed offsets for fields.
13209 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
13211         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
13212         the value.
13213         * icall.c: use mono_array_addr instead of array->vector: fixes the
13214         reflection image writing.
13215         * reflection.c: init call convention byte to 0 in method signature.
13216         Encode the property signature. Don't output property-related methods
13217         twice. Really process the properties for a type (don't cast a field to
13218         a property, my mom always told me that).
13219         Fix 64 bit issues in pointer alignment in a different and more
13220         readable way.
13222 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
13224         * loader.h: Removed type class from MonoDefaults, added monotype
13226         * loader.c: Loaded MonoType, removed loading of Type
13228         * icall.c (my_mono_new_object): Now returns a System.MonoType,
13229         and fills in System.Type._impl with a RuntimeTypeHandle rather
13230         than the actual MonoClass *
13232         (ves_icall_type_from_handle): change from type_class to
13233         monotype_class
13235         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
13236         implemented
13238         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
13239         implemented
13241         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
13243         (ves_icall_System_Reflection_Assembly_GetType): implemented
13245         (ves_icall_System_MonoType_assQualifiedName): implemented
13247         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
13249 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
13251         * assembly.c (mono_assembly_open): Implement a cache for the
13252         assemblies. 
13254         (mono_assembly_close): only destroy the assembly when the last
13255         reference is gone.
13256         
13257 2001-11-09  Dick Porter  <dick@ximian.com>
13259         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
13261 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
13263         * class.c (mono_class_metadata_init): bug fix: compute the right slot
13265 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
13267         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
13268         from Martin Weindel.
13269         * object.h: add mono_string_chars ().
13271 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
13273         * reflection.c (build_compressed_metadata): Eliminates warnings
13274         and uses 64-bit clean code.
13276         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
13277         (mono_type_equal): Change signature to eliminate warnings.
13279 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
13281         * icall.c, loader.c: remove the internalcall array constructors.
13282         Changes to match the new MonoArray structure.
13283         * object.h, object.c: an array object doesn't allocate an extra
13284         vector. Add mono_array_new_full () to create jagged arrays easily.
13286 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
13288         * metadata.h, metadata.c: add mono_metadata_field_info () to
13289         retreive all the info about a field from vairous tables.
13290         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
13291         * class.h, class.c: augment MonoClassField with more info.
13292         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
13293         policy and load a field's RVA if needed.
13295 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
13297         * class.c (mono_class_metadata_init): create a trampoline for all
13298         virtual functions instead of actually compiling them.
13300 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
13302         * class.h, class.c: include name in MonoClassField.
13303         * class.c: fix fundamental type of System.Object and System.String.
13304         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
13305         tokens in ldtoken.
13306         * icall.c: remove internalcalls for the Reflection stuff that is now
13307         done in C# code.
13308         * loader.c: mono_field_from_memberref () implementation.
13309         * mono-endian.c: thinko (s/struct/union/g).
13310         * object.c, object.h: make the mono_string_* prototypes actually use
13311         MonoString instead of MonoObject.
13312         * reflection.c, reflection.h: updates for changes in the reflection
13313         code in corlib: we use C structures that map to the actual C# classes.
13314         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
13315         fat method header if needed and use the info from the ILGenerator for
13316         methods. Handle fields in types. Misc fixes.
13318 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
13320         * class.c (mono_class_metadata_init): bug fix: always allocate
13321         space for static class data
13323 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
13325         * class.c (mono_compute_relative_numbering): use relative
13326         numbering to support fast runtime type checks.
13328 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
13330         * class.c (mono_class_create_from_typeref): added debugging output
13331         to print class name when MonoDummy is returned instead of real class
13333 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
13335         * class.c (mono_class_metadata_init): interface offset table now
13336         contains pointers into the vtable - this is more efficient for the jit
13338 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
13340         * class.c (mono_class_metadata_init): use a temporary vtable (the
13341         old algorithm only worked for the interpreter, but not for the jit)
13343 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
13345         * loader.c (method_from_memberref): use mono_class_get to get the
13346         class of an array instead of using System.Array directly.
13347         (mono_get_method): also add MEMBERREF methods to the method cache
13348         which usefull for arrays.
13350 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
13352         * pedump.c (arch_compile_method): added to compute vtable entry
13354         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
13355         number of interfaces.
13356         
13357         * class.h: merged MonoArrayClass into MonoClass
13359         * class.c (mono_class_create_from_typedef): compute the vtable size and
13360         allocate space to include the vtable inside MonoClass
13361         (mono_class_metadata_init): initialize the vtable
13363 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
13365         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
13366         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
13367         * image.c: endian fixes by Laurent Rioux.
13368         * object.h, object.c: rename MonoStringObject to MonoString and
13369         MonoArrayObject to MonoArray. Change some function names to conform to
13370         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
13371         guint16* as first argument, so don't use char*.
13372         Provide macros to do the interesting things on arrays in a portable way.
13373         * threads-pthread.c: updates for the API changes and #include <sched.h>
13374         (required for sched_yield()).
13375         * icall.c: updates for the API changes above.
13376         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
13377         platforms that need them.
13379 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
13381         * class.c: set the correct type for all the fundamental
13382         type when loading the class.
13384 2001-10-05  Dick Porter  <dick@ximian.com>
13386         * threads-pthread.c (pthread_mutex_timedlock): Simple
13387         compatibility version for C libraries that lack this call.
13389 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
13391         * class.c: MonoTypes stored in MonoClass are stored as
13392         fundamental MonoTypes when the class represents a
13393         fundamental type (System.Int32, ...).
13394         The TypeHandle return by ldtoken is a MonoType*.
13395         * icall.c: ves_icall_get_data_chunk () write out all the
13396         PE/COFF stuff. Implement ves_icall_define_method (),
13397         ves_icall_set_method_body (), ves_icall_type_from_handle ().
13398         * image.c: properly skip unknown streams.
13399         * loader.h, loader.c: add type_class to mono_defaults.
13400         * metadata.c, metadata.h: export compute_size () as
13401         mono_metadata_compute_size () with a better interface.
13402         Typo and C&P fixes.
13403         * pedump.c: don't try to print the entry point RVA if there is no entry point.
13404         * reflection.c, reflection.h: many cleanups, fixes, output method
13405         signatures and headers, typedef and typeref info, compress the metadata
13406         tables, output all the heap streams, cli header etc.
13407         * row-indexes.h: typo fixes.
13409 2001-10-04  Dick Porter  <dick@ximian.com>
13411         * object.h: Add a synchronisation mutex struct to MonoObject
13413         * object.c (mono_new_object): Initialise the object
13414         synchronisation mutexes
13416         * icall.c: System.Threading.Monitor internal calls
13417         
13418         * threads-pthread.h:
13419         * threads-pthread.c: System.Threading.Monitor internal calls
13421         * threads-types.h: New file, includes the system-specific thread
13422         structures
13423         
13424         * threads-pthread-types.h:
13425         * threads-pthread-types.c: New files, handle pthread-specific
13426         synchronisation types
13428         * threads-dummy-types.h: 
13429         * threads-dummy-types.c: New files of dummy support for
13430         thread-specific types
13432         * metadata.c:
13433         * image.c:
13434         * pedump.c: include mono-endian.h not endian.h
13435         
13436         * Makefile.am: More threads files.
13437         Name mono-endian.h not endian.h
13439 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
13441         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
13442         stuff and implement a few more bits.
13443         * icall.c: a field needs to be dereferenced twice. Do not use the same
13444         name for two variables in the same scope.
13445         * image.c, image.h: cleanups.
13447 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
13449         * class.c (mono_class_metadata_init): bug fix: compute the right size
13451 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
13453         * icall.c: implemented some of the Reflection internalcalls.
13454         * image.c, image.h: start writing out the PE/COFF image.
13455         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
13456         that does the reverse than decode_blob_size ().
13457         * object.c: use mono_metadata_encode_value (). Move here
13458         temporary implementation of mono_string_to_utf8 ().
13459         * rawbuffer.c: make malloc_map static.
13461 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
13463         * metadata.c: fix type comparison for arrays.
13464         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
13465         Added a couple of new classes to monodefaults.
13466         * icall.c: added a couple of Reflection-related internalcalls.
13467         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
13468         Added a byval_arg MonoType to MonoClass.
13470 2001-09-28  Dick Porter  <dick@ximian.com>
13472         * icall.c:
13473         * threads-pthread.h: 
13474         * threads-pthread.c: Implemented internal calls for
13475         LocalDataStoreSlot operations.  Applied mutexes around all shared
13476         data.  Reworked the thread creation and Start() operations to
13477         avoid a race condition.
13478         
13479         * threads-dummy.h:
13480         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
13482 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
13484         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
13486 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
13488         * class.c, loader.c: warn and return NULL instead of erroring out.
13489         * icall.c: added System.AppDomain::getCurDomain().
13490         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
13492 2001-09-25  Dick Porter  <dick@ximian.com>
13494         * threads-pthread.h:
13495         * threads-pthread.c: Implemented timed thread joining and added
13496         System.Threading.Thread::Join_internal internal call
13498         * icall.c: Added System.Threading.Thread::Join_internal internal call
13500         * threads-dummy.h:
13501         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
13503 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
13505         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
13506         mono_string_intern () to implement the semantics of the ldstr opcode
13507         and the interning of System.Strings.
13508         * icall.c: provide hooks to make String::IsIntern and String::Intern
13509         internalcalls.
13511 2001-09-23  Dick Porter  <dick@ximian.com>
13513         * threads-dummy.c: 
13514         * threads-dummy.h: New files of dummy threading routines
13516         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
13517         support code based on system specifics
13519         Rename PTHREAD_LIBS to THREAD_LIBS
13520         
13521 2001-09-23  Dick Porter  <dick@ximian.com>
13523         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
13524         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
13525         internal calls.
13526         (mono_thread_init): Set up a Thread object instance to return when
13527         the main thread calls Thread.CurrentThread
13528         (mono_thread_cleanup): Wait for all subthreads to exit
13530         * icall.c: New internal calls for System.Threading.Thread::Sleep
13531         (including Schedule) and CurrentThread
13533         * threads.h: New file, to insulate thread-specific stuff from the
13534         rest of the code
13536 2001-09-21  Dick Porter  <dick@ximian.com>
13538         * threads-pthread.h: 
13539         * threads-pthread.c: New file, for handling pthreads-style
13540         threading support.  Start() now starts a new thread and executes
13541         the ThreadStart delegate instance.
13543         * icall.c: Added the internalcall for
13544         System.Threading.Thread::Start_internal
13546         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
13548 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
13550         * loader.c: work around the different signatures for delegates
13551         constructors csc generates in compiled code vs the ones compiled in mscorlib.
13553 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
13555         * class.h, class.c: add mono_class_get_field_from_name ().
13556         * *: Fix C comments and other ANSI C issues.
13558 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
13560         * endian.h, assembly.c: fix some endianness issues.
13562 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
13564         * loader.h, load.c: add delegate_class to mono_defaults.
13565         Handle runtime provided methods in mono_get_method ().
13567 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
13569         * loader.c (mono_get_method): use pinvoke for internal call
13571         * icall.c: use pinvoke for internal call
13573         * loader.c (method_from_memberref): set the method name
13575 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
13577         * metadata.c: help the compiler generate better code for
13578         mono_class_from_mono_type ().
13580 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
13582         * class.c (mono_class_metadata_init): delayed computing of the
13583         class size to mono_class_metadata_init ()
13585 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
13587         * class.c, class.h: add an interfaces member to MonoClass.
13588         * image.c, image.h: add assembly_name field to MonoImage
13589         from the assembly table.
13590         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
13592 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
13594         * class.c: Handle Array in mono_class_from_mono_type ().
13595         * metadata.c, pedump.c: some endian fixes.
13597 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
13599         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
13600         * metadata.c: fix small problem introduced with the latest commit.
13602 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
13604         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
13605         We don't need a MonoMetadata pointer anymore to compare signatures in
13606         mono_metadata_signature_equal (), update callers.
13607         Reduced memory usage an number of allocations for MonoMethodHeader and
13608         MonoMethodSignature.
13610 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
13612         * metadata.c: added compare for szarray.
13614 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
13616         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
13617         and add a couple more types to it and mono_defaults. Give an hint on
13618         classes that need implementing in our corlib and are referenced
13619         in mscorlib.
13621 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
13623         * class.h, class.c: keep track if a class is also an Enum.
13624         * loader.c: Implement a couple more types for use in libffi
13625         marshalling. Gives better diagnostics when failing to dlopen
13626         a library. Set method->klass for P/Invoke methods, too.
13628 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
13630         * class.c, class.h: add a MonoType this_arg to MonoClass that
13631         represents a pointer to an object of the class' type that
13632         can be used by the interpreter and later the type cache.
13633         Add best guess alignment info for valuetype objects.
13635 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
13637         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
13638         into MonoType: one less level of indirection and allocation and
13639         simplifies quite a bit of code. Added cache for MonoTypes that are
13640         used frequently, so that we don't need to allocate them all the time.
13642 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
13644         * class.c (mono_class_create_from_typedef): System.Enum is also a
13645         value type, although it does not derive from System.ValueType
13646         (maybe a bug in the ms compiler?)
13648         * metadata.c (mono_type_size): return the right size for value types
13650         * loader.c (mono_get_method): only initialize method header if not abstract
13652         * class.c (mono_class_from_mono_type): use mono_default values. 
13654 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
13656         * *: use MonoClass pointers instead of <type_tokens>
13657         
13658         * class.h: new flag: metadata_inited.
13660         * class.c (mono_class_metadata_init): impl.
13661         (mono_class_instance_size): impl.
13662         (mono_class_data_size): impl.
13664 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
13666         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
13667         MonoClass now has the name and name_space fields. 
13668         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
13669         mono_get_method () takes and optional MonoClass as argument.
13670         Removed mono_typedef_from_name() and added mono_class_token_from_name()
13671         instead that takes advantage of a map from class names to typedef
13672         tokens in MonoImage.
13674 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
13676         * metadata.c: zero is not a valid alignment boundary.
13677         Merge MONO_TYPE_VOID in default decoding code.
13679 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
13681         * image.h: merged MonoMetadata into MonoImage
13683         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
13684         identify the type of elements.
13686 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
13688         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
13689         * cil-coff.h: split MonoMSDOSHeader and add size info.
13690         * image.c: add some consistency checks.
13691         * metadata.c: fix row size computation: one programmer
13692         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
13693         add explanation for the locator routine.
13694         Fix decoding of size in method header.
13695         
13696 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
13698         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
13699         (g_concat_dir_and_file): Bring g_concat_dir_and_file
13700         function from gnome-libs.  This uses the right path separator
13701         based on the OS, and also works around a bug in some systems where
13702         a double slash is not allowed. 
13703         (default_assembly_name_resolver): Use g_concat_dir_and_file
13704         (mono_assembly_open): ditto.
13706 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
13708         * metadata.c (mono_metadata_signature_equal): impl.
13710         * *: void is now a realy MonoType (instead of using NULL)
13711         
13712         * metadata.c (do_mono_metadata_parse_type): use
13713         mono_metadata_parse_type to parse void value.
13715 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
13717         * metadata.c, metadata.h: in the signature and method header store
13718         only the space required for holding the loca vars and incoming arguments.
13720 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
13722         * metadata.c (do_mono_metadata_parse_type): treat void like any
13723         other type (instead of assigning NULL);
13725 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
13727         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
13729 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
13731         * image.c (do_mono_image_open): added a cache for arrays.
13733 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
13735         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
13736         decode a single column from a row in a metadata table and changes
13737         to take advantage of it in the typedef locator (gives a nice speed up).
13738         Store offset info for function params.
13740 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
13742         * image.h (MONO_IMAGE_IS_CORLIB): removed 
13744 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
13746         * assembly.c: how could mono_assembly_close () had ever worked?
13747         * metadata.c, metadata.h: provide offset info for local vars.
13748         Implement mono_type_size () to take care of alignment as well
13749         as size (it was mono_field_type_size in cli/class.c before).
13751 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
13753         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
13755         * assembly.h (CORLIB_NAME): set to corlib.dll
13757         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
13759 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
13761         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
13762         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
13763         tokentype.h: massive namespace cleanup.
13765 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
13767         * metadata.h, metadata.c: decode exception clauses when parsing method header.
13769 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
13771         * metadata.c (mono_metadata_free_type): added check for type !=
13772         NULL (void) before calling mono_metadata_free_type()
13774 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
13776         * metadata.h, row_indexes.h: added header with enumerations to use
13777         to index in the columns from tables in metadata and to decode coded
13778         tokens: we should start using this instead of embedding magic numbers
13779         all over the code.
13781 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
13783         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
13784         Move metadata_t info from cli_image_info_t to MonoImage, where
13785         it's easily accessible. Changed all the uses accordingly.
13786         Added the method and class caches to MonoImage.
13787         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
13788         and mono_metadata_decode_value () signature to be more consistent
13789         with the other parse functions (and simplify code). Taken advantage
13790         of zero-length array allocation with GCC. Removed reduntant (and
13791         wrong) MonoFieldType struct and use MonoParam instead. Changed
13792         mono_metadata_parse_field_type () to use common code for parsing.
13793         Added mono_metadata_typedef_from_field () and
13794         mono_metadata_typedef_from_method () to lookup a typedef index from a
13795         field or method token.
13796         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
13798 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
13800         * metadata.c (mono_metadata_parse_field_type): Implement. 
13801         (do_mono_metadata_parse_type): Split engine from
13802         mono_metadata_parse_type, so that we can create smaller structures
13803         for things that just have one pointer to the MonoType (look at
13804         the MonoFieldType)
13806 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
13808         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
13809         as Jan Gray found out, it is incorrect. 
13811 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
13813         * assembly.c: Implement asssembly loading.  This loads an image
13814         and loads all the referenced assemblies.  Come to think of it, we
13815         could always do lazy loading of the assemblies. 
13817         * image.c (mono_image_open): Keep loaded images in a hashtable.
13819         * image.h (MonoImage): Add reference count.
13821 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
13823         * assembly.c (mono_assembly_open): Keep track of the file name in
13824         case the assembly has no ASSEMBLY table.
13826         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
13827         from get.c here.
13829 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
13831         * metadata.c, metadata.h: decode local vars in method header
13832         parse function. Change callers accordingly.
13834 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
13836         * metadata.h, cil-coff.h: protect against multiple inclusion.
13837         Added some new structures to hold information decoded from metadata:
13838         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
13839         and relevant decoding/free functions.
13840         * metadata.c: implement decoding functions. Add warning for out of bounds
13841         index in mono_metadata_locate(). Implement mono_get_method () to retreive
13842         all the info about a method signature and invocation. Remove check on
13843         uninitialized local var in parse_mh() and fix memory leak.
13845 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
13847         * metadata.h: More macros.
13849         * tokentype.h: New file.
13851 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
13853         * assembly.c: added a consistency check and initialize
13854         some structures with g_new0().
13855         * metadata.c: fixed a couple more bugs in table size computation
13856         and add other checks for out-of bound access to metadata.
13858 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
13860         * metatada.c: fix bugs computing table sizes. Spew a
13861         warning when index in string heap is out of bounds.
13863 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
13865         * metadata.h: Add a couple of macros to manipulate tokens. 
13867 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
13869         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
13870         cli_section_tables).
13872 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
13874         * metadata.c (mono_metadata_user_string): New function, provides
13875         access to the UserString heap. 
13877 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
13879         * metadata.c: Add inline documentation.
13881 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
13883         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
13884         files. 
13886 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
13888         * typeattr.h: New file, TypeAttribute flags. 
13890 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
13892         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
13893         mono_assembly_ensure_section): Section loading code.
13894         (load_section_tables): Load the sections.
13896         * mono/metadata/metadata.c (mono_metadata_locate_token,
13897         mono_metadata_locate): Functions to locate the information
13898         definition given a token or a table and an index.
13899         (mono_metadata_compute_table_bases): New.
13900         (compute_size): New function to compute the sizes of the various
13901         tables.
13903         * mono/metadata/metadata.h: Finish listing the different index
13904         types. 
13906         * mono/metadata/pedump.c: Improve to dump new information.
13908 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
13910         * mono/metadata/metadata.c: Entered all the tables matching
13911         Beta2. 
13913         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2