7ea78a7e9b0d4b9d0cdb13db85b9bd7a8d42652e
[mono.git] / mono / metadata / ChangeLog
1 2006-06-09  Martin Baulig  <martin@ximian.com>
2
3         * debug-mono-symfile.c: Put this back and really fix it this
4         time. Sorry for all the trouble.
5
6 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
7
8         * icall.c (mono_class_get_throw): Fix a warning.
9         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
10         ReflectionTypeLoadException if needed. Fixes #78606.
11
12         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
13         (mono_class_init): Ditto.
14
15         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
16         ref_only exceptions.
17         (mono_loader_clear_error): Make this work even if there is no error.
18
19 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
20
21         * object-internals.h marshal.c marshal.h icall.c: Implement method 
22         Marshal.GetComSlotForMethodInfo using internal call.
23
24 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
25
26         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
27         a function for signalling it.
28
29         * class.c (mono_class_from_typeref): Use the new kind of loader error when
30         a referenced assembly is not found.
31
32         * loader.c (mono_loader_error_prepare_exception): Add support for 
33         LOADER_ERROR_ASSEMBLY. Fix formatting.
34
35 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
36
37         * domain.c appdomain.c class-internals.h marshal.c: Add support 
38         for VARIANT marshalling on windows and increment corlib version
39         since Variant struct was added.
40
41 2006-06-03  Miguel de Icaza  <miguel@novell.com>
42
43         * debug-mono-symfile.c: Revert Martin's previous patch which broke
44         stack trace line information:
45
46         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
47         (Martin) when looking up B which is between A and C, return A not C.
48
49         Bug is #78573.
50
51         Thanks to Alexander Olk for tracking this down.
52
53 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
54
55         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
56         
57         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
58         avoid clobbering its value.
59         (mono_string_to_lpstr): Fix a warning on windows.
60
61 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
62
63         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
64         it gets GC tracking.
65
66         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
67         GC tracking.
68         
69         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
70
71         * marshal.c threadpool.c: Update callers of mono_async_result_new.
72
73         * appdomain.c: Bump corlib version.
74
75 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
76
77         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
78         CEE_STIND_REF when working with object references.
79
80 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
81
82         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
83         Fixes #78539.
84
85 2006-05-30  Miguel de Icaza  <miguel@novell.com>
86
87         * loader.c (method_from_memberref): Fix argument value for
88         mono_loader_set_error_method_load (I was passing the MonoClass
89         instead of the class name char *).
90
91 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
92
93         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
94         CEE_STIND_REF when working with object references.
95
96 2006-05-30  Martin Baulig  <martin@ximian.com>
97
98         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
99         mono_method_full_name() change and replace the ':' with a '.'
100         here.
101
102 2006-05-30  Martin Baulig  <martin@ximian.com>
103
104         * debug-mono-symfile.c
105         (mono_debug_symfile_lookup_location): Fix the algorithm:
106         when looking up B which is between A and C, return A not C.
107
108 2006-05-29  Martin Baulig  <martin@ximian.com>
109
110         * mono-debug.h
111         (MonoDebugMethodInfo): Make the typedef public.
112         (MonoDebugSourceLocation): New public struct.
113
114         * mono-debug.c
115         (mono_debug_source_location_from_address): Removed.
116         (mono_debug_source_location_from_il_offset): Removed.
117         (mono_debug_il_offset_from_address): Removed.
118         (mono_debug_address_from_il_offset): Removed.
119         (mono_debug_lookup_method): New public function.
120         (mono_debug_lookup_source_location): New public function; replaces
121         the old mono_debug_source_location_from_*() functions; see the
122         inline documentation.
123         (mono_debug_free_source_location): New public function.
124         (mono_debug_print_stack_frame): New public function; see the
125         inline documentation.
126
127         * debug-mono-symfile.c
128         (mono_debug_find_source_location): Renamed into
129         mono_debug_symfile_lookup_location(); only take a
130         `MonoDebugMethodInfo *' and an `offset' argument; added inline
131         documentation.
132         (mono_debug_find_method): Renamed into
133         mono_debug_symfile_lookup_method().
134
135 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
136
137         * assembly.c (mono_assembly_open_full): Dont overwrite the status
138         returned by mono_image_open_full ().
139
140         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
141         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
142         #78517.
143
144         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
145         #78518.
146
147 2006-05-27  Miguel de Icaza  <miguel@novell.com>
148
149         * class.c (mono_class_from_typeref): handle missing images
150         earlier, deals with bug #78418.   Refactor code; 
151
152         Fix a warning introduced in my previous commit (some stale code
153         from before I revisited my patch).
154
155         * class.c (mono_class_create_from_typedef): On failure, remove the
156         class from the MonoImage->class_cache as the class is not
157         initialized;   Fixes the leak pointed out by Paolo.
158
159 2006-05-25  Dick Porter  <dick@ximian.com>
160
161         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
162         DeleteCriticalSections until I figure out which one may still be
163         sometimes locked when mono_thread_cleanup is called.
164
165 2006-05-24  Dick Porter  <dick@ximian.com>
166
167         * threads.c (mono_thread_cleanup): Move the threading cleanup out
168         of mono_thread_manage and back into its own function, so it can be
169         called after the finalizer thread has finished.
170
171         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
172
173 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
174
175         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
176         Fixes #78495.
177
178         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
179         with non-blittable elements.
180         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
181
182 2006-05-24  Martin Baulig  <martin@ximian.com>
183
184         * mono-debug-debugger.h (MonoDebuggerEvent): Added
185         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
186
187         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
188         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
189         `mono_debugger_event_handler' to NULL.
190
191 2006-05-24  Martin Baulig  <martin@ximian.com>
192
193         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
194
195 2006-05-24  Martin Baulig  <martin@ximian.com>
196
197         * mono-debug-debugger.h
198         (mono_debugger_create_notification_function): Added
199         `MonoCodeManager *' argument.
200
201 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
202
203         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
204
205 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
206
207         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
208         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
209         implementation.
210
211 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
212
213         * icall.c: precise GC support: objects can't be stored in unmanaged
214         memory anymore, even if they are kept alive by other references: since
215         they can move the GC needs to be able to always find them.
216
217 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
218
219         * object.c: precise GC support for static fields. Support
220         for moving GCs: write barriers and pinned allocation for interned
221         strings.
222
223 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
224
225         * domain.c, domain-internals.h: precise GC support for the MonoDomain
226         structure.
227
228 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
229
230         * class.c, gc.c: sgen and precise GC updates.
231
232 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
233
234         * marshal.h, marshal.c: added write barrier wrapper and precise type
235         fixes.
236
237 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
238
239         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
240         support.
241
242 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
243
244         * reflection.c: precise and sgen GC updates.
245
246 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
247
248         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
249
250 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
251
252         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
253
254 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
255
256         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
257         MONO_TYPE_OBJECT. Fixes #78462.
258
259 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
260
261         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
262         and blittable types.
263
264 2006-05-17  Miguel de Icaza  <miguel@novell.com>
265
266         * class.c (mono_class_get_exception_for_failure): Implement parts
267         of a TODO: if the loader error is set (instead of the class
268         error), we return a Loader exception that can be properly thrown
269         elsewhere.
270
271         This was exposed by some Winforms 2.0 code that I tried to run
272         (Atsushi pointed me to it).
273
274 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
275
276         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
277         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
278         
279         * marshal.c (emit_marshal_vtype): Add limited support for 
280         UnmanagedType.LPStruct. Fixes #78427.
281
282         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
283         Applied a patch from kangaroo to fix #77523.
284
285 2006-05-17  Martin Baulig  <martin@ximian.com>
286
287         * threads.c
288         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
289         (debugger_thread_created): Removed.
290         (debugger_thread_exited): Removed.
291
292 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
293
294         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
295
296         * object-internals.h (MonoReflectionResource): Sync with managed version.
297
298 2006-05-12  Wade Berrier <wberrier@novell.com>
299
300         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
301
302 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
303
304         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
305         functions try to allocate from the image mempool.
306
307 2006-05-12  Dick Porter  <dick@ximian.com>
308
309         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
310
311 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
312
313         * object.c: The FieldGetter and FieldSetter methods require the full
314         name of the class, not only the name. Fixes bug #78277.
315
316 2006-05-11  Miguel de Icaza  <miguel@novell.com>
317
318         * loader.c (method_from_memberref): Do not pass the NULL klass to
319         mono_loader_set_error_() methods.  Pass the non-NULL value
320         (class). 
321
322 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
323
324         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
325         (mono_assembly_close): Null out assembly->image->references after freeing it.
326
327         * image.c (mono_image_close): Free image->references.
328         
329         * reflection.c (mono_image_basic_init): Fix a small memory leak.
330
331 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
332
333         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
334         before checking if it's NULL (g_assert).
335
336 2006-05-10  Martin Baulig  <martin@ximian.com>
337
338         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
339         I thought I already killed that two months ago, but now it somehow reappeared.
340
341 2006-05-10  Martin Baulig  <martin@ximian.com>
342
343         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
344
345 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
346
347         * reflection.c: Allocate memory for dynamically created methods in the image
348         mempools.
349
350 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
351
352         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
353         don't use the ad pointer before checking if it's NULL (g_assert).
354
355 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
356
357         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
358         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
359
360         * marshal.c: Allocate all signatures from mempools.
361
362         * marshal.c: Allocate some more signatures from mempools.
363
364 2006-05-09  Miguel de Icaza  <miguel@novell.com>
365
366         * object.c (mono_load_remote_field): The code used to provide a
367         temporary variable for returning results if the user did not
368         provide a result pointer.  But our temporary variable was allocted
369         on the satck.
370
371         Fix calling code to always pass a result area.   Coverity ID 103.
372
373 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
374
375         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
376         value, not the old. Fixes #78312.
377         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
378
379         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
380         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
381         per-image cache.
382
383         * assembly.c (mono_assembly_close): Free image->references.
384
385         * assembly.c (mono_assembly_names_equal): Fix a warning.
386         (mono_assemblies_cleanup): Cleanup more global data.
387
388         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
389
390         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
391         ptr_cache and image->modules.
392
393         * image.c (mono_image_init): Allocate array_cache lazily.
394         
395 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
396
397         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
398         behavior was changed recently and has bad side effects.
399
400 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
401
402         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
403         
404         * assembly.c (mono_assembly_close): Remove a debug printf.
405
406         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
407
408         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
409         to also allow for temporary references between mono_image_open ()/close ().
410
411         * domain.c (get_runtimes_from_exe): Add a FIXME.        
412
413 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
414
415         * marshal.c: Fix support for dynamic methods.
416
417         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
418
419         * marshal.c (mono_marshal_cleanup): New cleanup function.
420
421         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
422         image mempools.
423
424         * class.c (mono_class_init): Fix leaking class->nested_classes.
425
426         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
427
428         * image.c (mono_image_init): Initialize the new cashes.
429
430         * image.c (mono_image_close): Destroy the new cashes.
431
432         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
433
434         * mempool.c (mono_mempool_strdup): New helper function.
435
436         * class-internals.h: Add prototype for mono_loader_unlock ().
437
438         * domain.c (mono_jit_info_table_find): Fix a warning.
439         (mono_debugger_check_runtime_version): Ditto.
440
441         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
442         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
443         functions to these modules.
444
445         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
446         metadata modules.
447         
448         * marshal.c (mono_free_bstr): Fix a warning.
449
450         * assembly.c (mono_assembly_open_full): Fix another small leak.
451
452         * object.c: Fix some unload leaks in the remoting code.
453
454         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
455         function.
456
457         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
458
459         * reflection.c: Fix some unload leaks in dynamic assemblies.
460
461 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
462
463         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
464         * marshal.h: Add BSTR support on Win32
465         * icall.c: Add BSTR icalls
466         * metadata.h: Add BSTR enums
467
468 2006-04-28  Miguel de Icaza  <miguel@novell.com>
469
470         Work to catch the crash from #76795 and turn it into an
471         exception.   As I stubbed out pieces of the VisualBasic support,
472         I found a number of places where the code was failing and I added
473         checks to those places. 
474         
475         * metadata.c (do_mono_metadata_parse_generic_class): Make this
476         function return a status code.  If we fail to parse the signature
477         from mono_metadata_parse_generic_inst, return FALSE.
478
479         * loader.c (mono_get_method_from_token): If we fail to load the
480         method (mono_class_get) return NULL.   
481
482         * (method_from_memberref): Return NULL if we are unable to parse
483         the method signature
484
485         (mono_loader_error_prepare_exception): Since we now use the
486         loader_error flag internally to stop processing, and obtaining
487         exceptions that might be thrown will walk this code path the
488         proper way of going from a MonoLoaderError into a
489         MonoException was convoluted.   This new routine encapsulates the
490         process of turning the error into an exception and *clearing* the
491         error afterwards.
492         
493 2006-04-27  Miguel de Icaza  <miguel@novell.com>
494
495         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
496         with missing assemblies), and to cope with:
497
498                 * Missing fieldref from a non-existing assembly.
499                 * Missing methodref from a non-existing assembly.
500
501         The first batch of work to address *some* of the issues from 76661.
502         
503         * object.c (mono_class_create_runtime_vtable): If we fail to
504         initialize the class raise the exception here. 
505
506         * metadata.c (mono_class_get_overrides_full): If any methods fail
507         to load return the failure to the caller.
508
509         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
510         flagging assemblies that failed to load.   
511
512         Do not crash if we are unable to load the assembly.
513
514         (mono_assembly_close): Do nothing with REFERENCE_MISSING
515         assemblies. 
516
517         * loader.c (mono_loader_set_error_type_load): Change the
518         convention to always pass unallocated strings, so we make our own
519         copies (I know our own code had duplicated strings before, but
520         this keeps the normal conventions).
521         (method_from_memberref): Call mono_loader_set_error_method_load
522         for all possible failures of loading the class. 
523         Remove assert, turn into a loader error.
524
525         (mono_loader_error_to_exception): Move this routine from mini
526         (mini_loader_error_to_exception) there was no need to have that in
527         mini. 
528
529         * class.c (mono_class_from_typeref): If we were not able to load
530         the assembly with mono_assembly_load_reference, call the
531         mono_loader_set_error_type_load to register the problem.
532
533         (mono_class_setup_fields): If we fail to load the type from
534         mono_metadata_parse_type_full, call mono_class_set_failure and
535         break from the loop.
536
537         If class->exception_type is set, we do not layout the fields as
538         that might crash the runtime, and instead return (from breaking
539         from the previous loop).
540
541         (mono_class_setup_vtable): This now returns a boolean indicating
542         whether the table was properly setup.   The decision is driven by
543         mono_class_get_overrides_full which might run into non-existing
544         methods. 
545         
546         (mono_class_init): Returns TRUE on success or FALSE if there was a
547         problem in loading the type (incorrect assemblies, missing
548         assemblies, methods, etc).
549
550         When we call mono_class_setup_fields we also check for a potential
551         error inside this call (either a class exception or a general
552         loader exception).
553
554         (mono_class_create_from_typedef): If the parent fails to load
555         (calling mono_class_get_full) return NULL.
556         
557         ** Important **
558
559         calls to mono_metadata_parse_type_full should be checked
560         everywhere and set the mono_class_set_failure
561         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
562
563         The current patch checks the places where my manually constructed
564         tests show the errors are showing up, but we should do it
565         everywhere. 
566
567         ** Important2 **
568
569         mono_class_init return values should be tested everywhere, like
570         the previous case this is something that we should audit
571         everywhere and not only on the cases exposed by the tests I
572         created. 
573
574 2006-04-26  Miguel de Icaza  <miguel@novell.com>
575
576         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
577         boolean parameter and instead pass the information on `options'
578         parameter (FileOptions).
579
580         * icall.c: Register the new signature for MonoIO.Open.
581
582         * debug-helpers.c (dis_one): Trying to understand how coverity
583         works.  Fix Run 5, item 78.
584
585 2006-04-26  Dick Porter  <dick@ximian.com>
586
587         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
588         dereference.
589
590 2006-04-25  Martin Baulig  <martin@ximian.com>
591
592         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
593
594         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
595         debugger_thread_created().
596         (debugger_gc_push_all_stacks): Don't handle the main thread in any
597         special way.
598         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
599         (mono_debugger_finalize_threads): New function; undo the effects
600         of mono_debugger_init_threads().
601         (mono_debugger_create_all_threads): Removed.
602
603 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
604
605         * image.c (mono_image_close): Tidy up trace messages.
606
607         * assembly.c (mono_assembly_close): Ditto.
608
609         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
610         no longer references an already freed assembly. Fixes #78168.
611
612 2006-04-21  Dick Porter  <dick@ximian.com>
613
614         * threads.c (mono_thread_detach): Fix reference counting when
615         detaching threads.
616
617 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
618
619         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
620         #78155.
621
622 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
623
624         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
625         (mono_type_to_stind): Ditto.
626
627         * marshal.c: Use the new helper functions to simplify code.
628
629         * image.c (mono_image_close): Add some code for help debug assembly unloading
630         problems.
631
632         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
633         image mempool.
634
635         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
636         assembly was already loaded in another appdomain. Fixes #78083.
637
638 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
639
640         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
641         referenced assemblies.
642         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
643
644         * domain.c (mono_domain_free): Add a trace message.
645
646         * appdomain.c (add_assemblies_to_domain): Ditto.        
647
648         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
649         field.  
650
651 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
652
653         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
654
655 2006-04-12  Martin Baulig  <martin@ximian.com>
656
657         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
658         `USE_INCLUDED_LIBGC'.   
659
660 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
661
662         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
663         the patch contains ../ and a small directory name later. Hopefully fixes
664         #78035.
665
666 2006-04-10  Martin Baulig  <martin@ximian.com>
667
668         Clean up the debugger's thread-handling code.
669
670         The debugger's thread-handling code has been moved from
671         ../mini/debug-debugger.c to threads.c.  We now iterate directly
672         over the `threads' hash, keep track of exiting threads and also
673         use proper locking.
674
675         We can now debug XSP and XSP based applications with the debugger.
676
677         * object-internals.h (MonoThread): Added `gpointer end_stack'.
678
679         * threads.h
680         (MonoThreadCallbacks): Removed; this was only used by the debugger.
681         (mono_install_thread_callbacks): Likewise.      
682
683         * threads.c (mono_thread_callbacks): Removed.
684         (debugger_thread_created, debugger_thread_exited): New static functions.
685         (start_wrapper): Call debugger_thread_created().
686         (thread_cleanup): Call debugger_thread_exited().
687         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
688         (mono_debugger_init_threads): New public function.
689         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
690         iterate directly over the `threads' hash and also use proper locking.
691
692         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
693
694         * mono-debug-debugger.h
695         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
696
697 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
698
699         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
700         argument type=array. Fixes #78057.
701
702 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
703
704         * culture-info-table.h : regenerated. Fixed bug #69652.
705
706 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
707
708         * loader.c metadata.c: Reapply a variant r59116.
709         
710         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
711
712         * class.c (mono_class_setup_interface_offsets): New internal function.
713
714         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
715         interfaces too. Fixes #77398.
716
717         * reflection.c (encode_cattr_value): Add support for 
718         parameter type=object, argument type=array.
719         (load_cattr_value): Ditto. Fixes #77916.
720
721         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
722         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
723
724         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
725         a byval char array and CharSet is Ansi.
726
727         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
728
729 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
730
731         * metadata.c: Add some locking comments.
732         
733         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
734         mempool.
735         (mono_metadata_free_method_signature): Don't free the signature itself.
736
737         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
738
739         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
740         reference the same MonoImage.
741         (mono_assembly_load_from_full): Add an assert.
742
743 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
744
745         * image.c (mono_image_close): Don't put the image we are about to free into the
746         loaded_images_guid_hash.
747
748         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
749         to reduce code duplication.
750
751         * marshal.c: Register the native functions called by this module as icalls, to
752         somewhat centralize the creation of MonoMethodSignature's.
753
754         * loader.c (mono_method_signature): Add a cache for method signatures.
755
756         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
757         the parameter attributes of a method.
758         (mono_metadata_parse_method_signature_full): Refactored the computation of
759         parameter attributes into a separate function. Also avoid one allocation in
760         most cases.
761
762         * assembly.c (mono_assembly_close): Ditto.
763
764         * image.c (mono_image_close): Log trace messages with INFO level.
765
766         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
767
768         * image.c reflection.c: Correct reference counting of image modules.
769         
770         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
771         of this function from the image mempool.
772         
773         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
774         to allow more cached types to be used.
775
776         * mono-debug.c (mono_debug_add_method): Appled patch from
777         David S. Miller  <davem@sunset.davemloft.net>: Access 
778         minfo->lexical_blocks[] entry elements using read32().
779
780 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
781
782         * loader.c (mono_free_method): No longer free the method header for non-dynamic
783         methods as it is allocated from the mempool.
784
785         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
786         image mempool.
787
788         * metadata-internals.h: Add comments describing the reference counting scheme
789         used for MonoImage and MonoAssembly.
790
791         * image.c assembly.c reflection.c: Rework reference counting of images and 
792         assemblies so they are freed when the runtime is shut down. Free some 
793         additional memory structures when an image is unloaded.
794         
795 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
796
797         * class.c loader.c reflection.c: Allocate more data structures in
798         the image mempool.
799
800 2006-03-31  Miguel de Icaza  <miguel@novell.com>
801
802         * icall.c
803         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
804         build on pre glib 2.4 systems.
805
806 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
807
808         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
809
810         * icall.c: Fix some warnings.
811
812 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
813
814         * culture-info-table.h : regenerated.
815
816 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
817
818         * threads.c, object-internals.h, verify.c: changed the culture caching
819         code to use a normal MonoArray for storage so the GC can keep track of
820         them easily. Fixed bits of the cache logic, too and simplified the
821         code.
822
823 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
824
825         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
826         thread for non-Boehm GCs.
827
828 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
829
830         * domain.c, object.c, domain-internals.h: reduce the amount of memory
831         needed to keep track of the data for static fields.
832
833 2006-03-29  Raja R Harinath  <rharinath@novell.com>
834
835         Fix #75172
836         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
837         for interface classes.  Use 'num_methods' instead.
838         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
839         before using '->vtable_size' field.
840
841 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
842
843         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
844         doesn't contain managed pointers, so use a normal hashtable.
845
846 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
847
848         * reflection.c, class-internals.h, domain.c: fixed handling of types
849         used as values for objects in custom attributes (bug #77915):
850
851 2006-03-24  Martin Baulig  <martin@ximian.com>
852
853         * class.c (mono_class_setup_fields): Added support for generic
854         instances; fixes #77580.
855
856 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
857
858         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
859
860 2006-03-24  Dick Porter  <dick@ximian.com>
861
862         * file-io.c (get_file_attributes): More stat macro breakage.
863         Fixes bug 77759.
864
865 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
866
867         * profiler.c: added the file=filename option in the default profiler
868         to output the profile data to filename.
869
870 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
871
872         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
873         bug #77877.
874
875 2006-03-22  Martin Baulig  <martin@ximian.com>
876
877         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
878         allocated `MonoClassField *' in `fb->handle'.
879
880 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
881
882         * class.c, image.c, metadata-internals.h: implemented new mechanism to
883         allocate interface ID to save memory and allow better ID reuse on
884         appdomain unload. setup_generic_vtable () removal from Martin.
885
886 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
887
888         * object.h, appdomain.c, domain.c, exception.c, icall.c,
889         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
890         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
891         write barriers for reference stores with managed objects accessed with
892         C structures in the runtime and in embedding programs.
893
894 2006-03-20  Raja R Harinath  <rharinath@novell.com>
895
896         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
897         'interface_id' and 'max_interface_id' fields of MonoClasses
898         representing open generic types.
899
900 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
901
902         * object.h, object.c, icall.c: added functions to deal with
903         storing valuetypes that contain references in managed objects.
904         * reflection.c, string-icalls.c, threads.c, marshal.c: small
905         fixes and comments around uses of mono_array_addr ().
906
907 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
908
909         * object.h, icall.c, monitor.c: object.GetHashCode ()
910         implementation that supports the moving garbage collector.
911
912 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
913
914         * icall.c, threads-types.h, threads.c: implemented finalizer for
915         LocalDataStoreSlot.
916
917 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
918
919         * metadata.c (mono_type_size): Add a fixme.
920         (mono_type_stack_size): Ditto.
921
922         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
923         'type_forwarders' field.
924
925         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
926         attribute from net 2.0.
927
928         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
929         from class.c.
930
931         * class.c (mono_class_setup_fields): Fix a warning.
932         
933         * class.c (mono_class_from_name): Add support for assemblyref entries
934         in the EXPORTEDTYPE table.
935
936         * reflection.c: Add support for handling type forwarders under net 2.0.
937
938         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
939         
940 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
941
942         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
943         overwriting entries in ModuleBuild->types, also clean up the code
944         a little. Fixes #77774.
945
946 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
947
948         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
949         load friend assembly info when present.
950
951 2006-03-14  Raja R Harinath  <rharinath@novell.com>
952
953         Fix crasher on gtest-158.cs.
954         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
955         the return value if the MonoClass we want is yet in an
956         inconsistent state.
957         * class.c (mono_class_create_from_typedef): Add an comment
958         explaining an order dependency between mono_class_setup_parent and
959         mono_class_setup_mono_type.
960
961 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
962
963         * class.c: documentation updates and events bug fix.
964
965 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
966
967         * class.c: some cleanup, locking fixes.
968
969 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
970
971         * class.c: fix the generics code to setup nested
972         type info to the instantiated type (bug #77770).
973
974 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
975
976         * marshal.c: fixed a few type correctness issues.
977
978 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
979
980         * loader.c: the Set/Get/Addrtess array methods should be public.
981
982 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
983
984         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
985         
986         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
987         info->wrapper.
988
989 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
990
991         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
992
993         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
994
995         * mempool.c (mono_mempool_alloc): Speed this up a bit.
996         (mono_mempool_alloc0): Ditto.
997
998 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
999
1000         * socket-io.c:
1001         (create_object_from_sockaddr): it was allocating 4 extra bytes
1002         for the AF_UNIX data. Fixes bug #77747.
1003
1004 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
1005
1006         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
1007
1008 2006-03-09  Dick Porter  <dick@ximian.com>
1009
1010         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
1011         Fixes bug 76966 again.
1012
1013 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
1014
1015         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
1016         names from r57532
1017         * appdomain.c: Bumped corlib version to 48 (due to r57532)
1018
1019 2006-03-07  Martin Baulig  <martin@ximian.com>
1020
1021         * object.c
1022         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
1023
1024 2006-03-07  Martin Baulig  <martin@ximian.com>
1025
1026         * class.c
1027         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
1028         regression introduced in r56970; see gtest-252.cs.
1029
1030         * loader.c (mono_get_method_constrained): Correctly handle generic
1031         methods; see gtest-253.cs.
1032
1033 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
1034
1035         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
1036
1037 2006-03-04  Martin Baulig  <martin@ximian.com>
1038
1039         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
1040         compute the parent type at runtime, just like we're already doing
1041         it for interfaces.
1042
1043         * reflection.c
1044         (mono_reflection_bind_generic_parameters): Don't compute the
1045         parent type anymore.
1046
1047         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
1048
1049 2006-03-04  Martin Baulig  <martin@ximian.com>
1050
1051         * mono-debug-debugger.h
1052         (mono_debugger_create_notification_function): Allocate memory at
1053         runtime and return a pointer to it.
1054
1055 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
1056
1057         * assembly.c: Fix windows build.
1058         
1059         * assembly.c: Fix build.
1060
1061         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
1062
1063         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
1064         
1065 2006-03-03  Dick Porter  <dick@ximian.com>
1066
1067         * process.c
1068         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
1069         Check parameters before dereferencing them.  Fixes Aaron's part of
1070         bug 77393.
1071
1072 2006-03-03  Raja R Harinath  <rharinath@novell.com>
1073
1074         Fix performance regression.
1075         * loader.c (find_method_in_class): Add 'from_class' argument.
1076         Rename 'klass' argument to 'in_class'.  The signature is compared
1077         against the method in 'in_class', and the corresponding method is
1078         returned from 'from_class'.
1079         (find_method): Walk both 'in_class' and 'from_class' in parallel.
1080         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
1081         type definition and generic instantiation in parallel.
1082         (mono_get_method_constrained): Update to changes.
1083
1084 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
1085
1086         * threads.c: make sure the domain is correct, too when doing
1087         mono_thread_attach ().
1088
1089 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
1090
1091         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
1092         windows. Fixes #77683.
1093
1094 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
1095
1096         * object.h, *: introduced specific way to set elements of an array
1097         of references to be used as write barrier. Still need to audit the
1098         uses of mono_array_addr.
1099
1100 2006-03-01  Miguel de Icaza  <miguel@novell.com>
1101
1102         * object-internals.h: New field to cache the assmebly name, patch
1103         from Tambet Ingo (tambet@ximian.com)
1104
1105 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
1106
1107         * decimal.h, class-internals.h, metadata-internals.h,
1108         file-io.h: mark a few function declarations as internal, to
1109         reduce the number of PLT entries.
1110
1111 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1112
1113         * file-io.c: fix typo in warning message.
1114
1115 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
1116
1117         * loader.c: on unix, lookup the "*A" version of a function
1118         if charset is auto as a second option before failing.
1119
1120 2006-02-28  Raja R Harinath  <rharinath@novell.com>
1121
1122         * class.h (mono_class_inflate_generic_method): Revert to two
1123         argument version.
1124         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
1125         (mono_class_inflate_generic_method_full): Add.
1126         * class.c (mono_class_inflate_generic_method_full): Rename from
1127         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
1128         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
1129         * loader.c, reflection.c: Update to changes.
1130
1131 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
1132
1133         * icall.c: const fixes and small improvements.
1134
1135 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1136
1137         * threadpool.c: for asynchronous connect(), enable the same workaround
1138         for BSD 6 as for the Mac. Fixes bug #77637.
1139
1140 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
1141
1142         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
1143         formatted classes. Fixes #77524.
1144
1145 2006-02-24  Raja R Harinath  <rharinath@novell.com>
1146
1147         * class.c (inflate_generic_type): Add a couple more
1148         micro-optimizations.
1149         (inflate_generic_context): Don't use the 'gmethod' from
1150         'inflate_with'.
1151         (mono_class_inflate_generic_method): If the method has generic
1152         parameters, but the passed-in context doesn't have a 'gmethod',
1153         create one.  Use the possibly simplified generic instantiation
1154         from the declaring class instead of the one passed in.
1155
1156 2006-02-24  Raja R Harinath  <harinath@gmail.com>
1157
1158         Make generic method signature and method header handling lazy.
1159         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
1160         (inflate_generic_header): Likewise.
1161         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
1162         parameter to avoid inflating types.
1163         (mono_get_inflated_method): Empty out.
1164         * class.h (mono_class_inflate_generic_method): Update to changes.
1165         * loader.c (mono_get_method_from_token): Don't parse signature for
1166         generic methods, nor methods of generic classes.
1167         (mono_method_signature): Rename from 'mono_method_signature'.
1168         Inflate signature on demand.
1169         (mono_method_get_header): Inflate method header on demand.
1170         * reflection.c: Update to changes.
1171
1172 2006-02-23  Raja R Harinath  <rharinath@novell.com>
1173
1174         * metadata.c (mono_metadata_inflate_generic_inst): If the
1175         instantiation is closed, don't bother expanding it in the new
1176         context.
1177         * class.c (inflate_generic_class): If the generic instantiation
1178         doesn't change after inflation, return the argument itself.
1179         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
1180         Add bounds checks.
1181         (inflate_generic_context): If neither the generic class nor the
1182         generic method instantiations change, return the original context.
1183         * reflection.c (mono_method_get_object): Do
1184         'mono_get_inflated_method' before accessing the ->klass field.
1185         (inflate_mono_method): Don't create a MonoGenericMethod unless
1186         necessary.
1187         (inflate_method): Don't pass a constructed type as the declaring
1188         type of a methodbuilder.
1189
1190 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
1191
1192         * object.c: fix memory overwrite.
1193
1194 2006-02-22  Dick Porter  <dick@ximian.com>
1195
1196         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
1197         it doesn't work any more.
1198         (mono_threads_request_thread_dump): Fix unused variable warnings.
1199
1200 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
1201
1202         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
1203         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
1204         the public header file.
1205
1206 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
1207
1208         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
1209
1210 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
1211
1212         * class-internals.h, object.c: reduce the size of MonoVTable
1213         and store the interface_offsets array at negative offsets.
1214
1215 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
1216
1217         * metadata.c: tweak table descriptors data structures to reduce
1218         size and runtime relocations.
1219
1220 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
1221
1222         * marshal.c: fix some types and opcodes to be type-safe
1223         in marshaling wrappers.
1224
1225 2006-02-21  Ankit Jain  <jankit@novell.com>
1226
1227         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
1228
1229 2006-02-21  Raja R Harinath  <rharinath@novell.com>
1230
1231         * metadata.c (get_constraints): Relax debugging checks for monodis.
1232
1233 2006-02-21  Ankit Jain  <jankit@novell.com>
1234
1235         * metadata.c (mono_metadata_load_generic_params): Move the code
1236         checking for ambiguous generic params from here to mono/dis/get.c
1237         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
1238
1239 2006-02-21  Raja R Harinath  <harinath@gmail.com>
1240
1241         Fix assertion triggered when compiling nemerle.
1242         * class.c (mono_get_shared_generic_inst): Rename from
1243         get_shared_inst and make non-static.
1244         * loader.c (mono_get_shared_generic_method): New.  Used to create
1245         the MonoGenericContext-equivalent of a MonoGenericContainer.
1246         (mono_get_method_from_token): Initialize the 'context' field of
1247         the created MonoGenericContainer.
1248         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
1249         * metadata.c (get_constraints): Add sanity check.
1250         * class-internals.h: Add new internal methods.
1251
1252         * reflection.c (verify_safe_for_managed_space): New sanity check.
1253         Currently checks that owner-less generic parameters aren't allowed
1254         in managed space.
1255         (mono_type_get_object): Use it.
1256         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
1257         that are now in mono_type_get_object.
1258         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
1259
1260 2006-02-19  Raja R Harinath  <harinath@gmail.com>
1261
1262         * metadata.c (mono_type_create_from_typespec): Rename from
1263         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
1264         argument and caching of types in the generic container.
1265         (unwrap_arrays, find_generic_param): Remove.
1266         * metadata-internals.h: Update.
1267         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
1268
1269 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
1270
1271         * class.c (mono_class_get_exception_for_failure): Fix a warning.
1272
1273         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
1274         return values. Fixes #77581.
1275
1276         * class.c (mono_fnptr_class_get): Switch name and name_space.
1277
1278         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
1279         classes and add support for [In, Out] attributes.
1280         (mono_marshal_free_asany): Ditto. Fixes #77524.
1281
1282 2006-02-18  Raja R Harinath  <harinath@gmail.com>
1283
1284         * class.c (mono_class_from_generic_parameter): Make more robust to
1285         incomplete MonoGenericContainers from monodis.
1286
1287 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
1288
1289         * class-internals.h: added some more exception types.
1290         * class.c, metadata.c: added a few checks to handle missing
1291         types.
1292
1293 2006-02-17  Raja R Harinath  <rharinath@novell.com>
1294
1295         Use owner-less generic-params some more.
1296         * class.c (my_mono_class_from_generic_parameter): Remove.
1297         (mono_class_from_generic_parameter): Handle null image,
1298         param->name and param->owner.
1299         (mono_class_from_mono_type): Update.
1300         (mono_class_create_from_typespec): Remove 'container' parameter.
1301         If that parameter is non-null, the result is always inflated by
1302         'mono_class_get_full' anyway.
1303         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
1304         parameter.
1305         (mono_class_get_full): Update.
1306
1307         * class.c (inflate_generic_type) [GENERICINST]: If the generic
1308         instance is not open, don't bother inflating.
1309         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
1310         parse metadata for inflated classes.
1311         (_mono_class_get): Change GenericContext* parameter to
1312         GenericContainer*.
1313         (mono_class_create_from_typespec): Likewise.  Simplify, and
1314         implement trivially.  All the cases are handled in
1315         mono_class_from_mono_type.  Don't inflate returned class.
1316         (mono_class_get_full): Delegate GENERICINST optimization to
1317         inflate_generic_type.
1318         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
1319
1320 2006-02-16  Dick Porter  <dick@ximian.com>
1321
1322         * socket-io.c (create_object_from_sockaddr): Fix typo.
1323         (create_sockaddr_from_object): Check array lengths before
1324         potentially accessing items off the end.
1325         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
1326         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
1327         (ves_icall_System_Net_Sockets_Socket_Send_internal)
1328         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
1329         length checks to avoid wraparound overflows.
1330         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
1331         contents of the array of sockets
1332         (hostent_to_IPHostEntry2)
1333         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
1334         Check return value of inet_ntop ().
1335         (addrinfo_to_IPHostEntry): Fix typo
1336
1337 2006-02-16  Raja R Harinath  <rharinath@novell.com>
1338
1339         Type metadata parsing doesn't use generic-instantiation information.
1340         * metadata.c (mono_metadata_parse_array_full): Change
1341         MonoGenericContext* parameter to MonoGenericContainer*.
1342         (mono_metadata_parse_type_full): Likewise.
1343         (mono_type_create_from_typespec_full): Likewise.
1344         (mono_metadata_parse_mh_full): Likewise.
1345         (mono_metadata_parse_generic_inst): Likewise.
1346         (do_mono_metadata_parse_generic_class): Likewise.
1347         (do_mono_metadata_parse_type): Likewise.
1348         * metadata-internals.h: Update to changes.
1349         * class.c (mono_class_find_enum_basetype): Likewise.
1350         (mono_class_setup_fields): Likewise.
1351         (mono_class_create_from_typespec): Likewise.
1352         * loader.c (method_from_methodspec): Likewise.
1353         (mono_get_method_from_token): Likewise.
1354         (mono_method_get_header): Likewise.
1355
1356 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
1357
1358         * marshal.c: handle additional GENERICINST case (patch from
1359         Thong Nguyen <tum@veridicus.com>).
1360         Fix a few cases where LDIND_I/STIND_I was used for references.
1361
1362 2006-02-16  Raja R Harinath  <rharinath@novell.com>
1363
1364         * reflection.c (mono_reflection_get_token): Remove unused variable.
1365
1366 2006-02-16  Martin Baulig  <martin@ximian.com>
1367
1368         * reflection.c (mono_reflection_get_token): Add support for fields
1369         in instantiated generic types.
1370
1371         * icall.c
1372         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
1373
1374 2006-02-15  Martin Baulig  <martin@ximian.com>
1375
1376         * icall.c
1377         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
1378         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
1379         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
1380         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
1381
1382 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
1383
1384         * class.c, metadata.c, metadata.h, object.c, icall.c,
1385         marshal.c: changed mono_type_get_underlying_type () to do
1386         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
1387         Fixed handling of instantiated generic valuetypes (bug #75479).
1388
1389 2006-02-15  Raja R Harinath  <rharinath@novell.com>
1390
1391         * metadata.c (mono_metadata_decode_signed_value): Simplify.
1392         Delegate to mono_metadata_decode_value, and work on the returned value.
1393
1394         * icall.c (ves_icall_MonoType_GetGenericArguments):
1395         Add consistency check here too.
1396         
1397 2006-02-15  Ankit Jain  <jankit@novell.com>
1398
1399         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
1400         char/short etc.
1401
1402 2006-02-15  Ankit Jain  <jankit@novell.com>
1403
1404         * metadata.c (mono_metadata_decode_signed_value): New function to decode
1405         signed values, used only for representing lower bounds of arrays.
1406         (mono_metadata_parse_array_full): Use new
1407         mono_metadata_decode_signed_value to decode lower bounds.
1408
1409 2006-02-14  Martin Baulig  <martin@ximian.com>
1410
1411         * reflection.c
1412         (mono_reflection_get_token): Support "MonoGenericMethod" and
1413         "MonoGenericCMethod" and allow generic instances / methods.
1414
1415 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
1416
1417         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
1418         to obtain the terminal size using an ioctl.
1419
1420         * object.c (mono_nullable_init): Revert this as nullable reference
1421         types are not valid.
1422         (mono_nullable_box): Ditto.
1423
1424 2006-02-09  Dick Porter  <dick@ximian.com>
1425
1426         * threads.c (mono_thread_detach): Drop a reference to the thread
1427         we're detaching.
1428
1429 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
1430
1431         * object.c (mono_nullable_init): Handle nullable reference types.
1432         (mono_nullable_box): Ditto. Fixes #77446.
1433
1434 2006-02-07  Martin Baulig  <martin@ximian.com>
1435
1436         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
1437
1438 2006-02-07  Ankit Jain  <jankit@novell.com>
1439
1440         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
1441         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
1442         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
1443         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
1444         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
1445         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
1446
1447 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
1448
1449         * class.c (mono_class_create_generic): Set type_token as well.
1450
1451         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
1452         compatible with MS.
1453
1454 2006-02-02  Martin Baulig  <martin@ximian.com>
1455
1456         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
1457         has never been used so far.
1458
1459 2006-02-02  Martin Baulig  <martin@ximian.com>
1460
1461         * mono-debug-debugger.h: Changed comment at the top of this file;
1462         the header is not installed, but it's safe to #include it from
1463         within the JIT.
1464
1465         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
1466         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
1467
1468 2006-02-02  Martin Baulig  <martin@ximian.com>
1469
1470         * mono-debug.h
1471         (MonoSymbolTable): Removed the `metadata_info' field.
1472
1473         * mono-debug.c
1474         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
1475
1476         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
1477         (mono_debugger_add_builtin_types): Removed.
1478         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
1479         (mono_debugger_create_notification_function): We now operate on a
1480         pre-allocated area; take a `gpointer' and return `void'.
1481
1482         * mono-debug-debugger.c
1483         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
1484         (mono_debugger_add_builtin_types): Removed.
1485
1486 2006-02-02  Martin Baulig  <martin@ximian.com>
1487
1488         * threads.c (mono_debugger_create_all_threads): New public method.
1489
1490 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
1491
1492         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
1493         breaks on several platforms.
1494
1495 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
1496
1497         * assembly.c: the VS.NET build doesn't supply default values for
1498         MONO_ASSEMBLIES and MONO_CFG_DIR.
1499
1500 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
1501
1502         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
1503         helper function.
1504
1505         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
1506
1507         * loader.c (method_from_memberref): Fix a warning.
1508
1509         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
1510
1511         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
1512         with explicit layout. Fixes #77433.
1513
1514 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
1515
1516         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
1517         max_interface_id is initialized before using it. Fixes #77398.
1518         (ves_icall_Type_GetInterfaces): Ditto.
1519
1520 2006-01-30  Raja R Harinath  <rharinath@novell.com>
1521
1522         * metadata.c (mono_metadata_parse_method_signature_full): Don't
1523         allocate memory for parameter attributes when parsing memberref
1524         signatures.
1525         * loader.c (mono_loader_set_error_method_load): Don't warn.
1526         (method_from_memberref): Ensure MissingMethodException gets thrown
1527         if method is not found.  Make warning more informative.
1528
1529 2006-01-29  Raja R Harinath  <harinath@gmail.com>
1530
1531         Fix #77397
1532         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
1533         return true if is byref.
1534         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
1535         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
1536         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
1537
1538 2006-01-27  Raja R Harinath  <rharinath@novell.com>
1539
1540         Fix tests/find-method.2.il
1541         * loader.c (find_method, find_method_in_class): Remove is_inflated
1542         argument.  Revert 2006-01-18 change.
1543         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
1544         is generic, search for method in its generic definition.
1545         * class.c (mono_class_setup_vtable_general): Print generic
1546         arguments of generic types in debugging printf.
1547
1548 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
1549
1550         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
1551
1552         * threads.c (mono_threads_request_thread_dump): New helper function.
1553
1554 2006-01-25  Raja R Harinath  <rharinath@novell.com>
1555
1556         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
1557
1558 2006-01-25  Ankit Jain  <jankit@novell.com>
1559
1560         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
1561         move definition to ..
1562         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
1563         
1564 2006-01-25  Ankit Jain  <jankit@novell.com>
1565             Raja R Harinath  <rharinath@novell.com>
1566
1567         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
1568         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
1569         as necessary.
1570
1571 2006-01-25  Martin Baulig  <martin@ximian.com>
1572
1573         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
1574         `MonoDebuggerThread' into debug-debugger.c.
1575
1576 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
1577
1578         * profiler.c: fix printing of data.
1579
1580 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
1581
1582         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
1583           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
1584
1585 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
1586
1587         * object.c: fix deadlock related to string interning.
1588
1589 2006-01-23  Martin Baulig  <martin@ximian.com>
1590
1591         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
1592
1593         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
1594
1595 2006-01-23  Martin Baulig  <martin@ximian.com>
1596
1597         * mono-debug.h: Moved the prototypes of some functions which are
1598         used by the JIT here from mono-debug-debugger.h.
1599
1600 2006-01-21  Martin Baulig  <martin@ximian.com>
1601
1602         * Makefile.am: Don't install mono-debug-debugger.h.
1603
1604 2006-01-21  Martin Baulig  <martin@ximian.com>
1605
1606         * mono-debug-debugger.h: Enforce the private status of this header
1607         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
1608         Moved some stuff from mono-debugger-jit-wrapper.h here.
1609
1610 2006-01-20  Raja R Harinath  <rharinath@novell.com>
1611
1612         * class.c (mono_class_from_typeref): Add a sanity test to help
1613         catch lack of assembly load/search hooks.
1614
1615 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
1616
1617         * marshal.c (emit_struct_conv): Relax the fields with same offset
1618         check even more. Fixes #77230.
1619
1620 2006-01-18  Martin Baulig  <martin@ximian.com>
1621
1622         * loader.c (find_method_in_class): Added `gboolean is_inflated'
1623         argument; if false, we compare the uninstantiated signatures.
1624         (method_from_memberref): Compare the uninstantiated signatures;
1625         fixes #76417.
1626
1627 2006-01-18  Robert Jordan  <robertj@gmx.net>
1628
1629         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
1630         Clear the weak link. Fixes bug #77170.
1631
1632         * gc.c (mono_gchandle_free):
1633         Reflect *-gc.c changes (tiny optimization).
1634
1635 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
1636
1637         * metadata.c (mono_metadata_signature_dup): Applied patch from
1638         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
1639         Fixes #77288.
1640
1641 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
1642
1643         * marshal.c (emit_struct_conv): Allow fields with the same offset when
1644         marshalling from native to managed code. Fixes #77230.
1645
1646 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1647
1648         * threadpool.c: fix problem (Mac only) when more than one asynchronous
1649         connect. Fixes bug #77020.
1650
1651 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
1652
1653         * class.c: fixed id assignement for nested interfaces (bug #77275).
1654         Added also better info for --print-vtable debugging.
1655
1656 2006-01-12  Martin Baulig  <martin@ximian.com>
1657
1658         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
1659         interfaces on-the-fly; fixes #76625.
1660
1661         * class-internals.h
1662         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
1663         don't need that anymore.
1664
1665 2006-01-12  Miguel de Icaza  <miguel@novell.com>
1666
1667         * socket-io.c
1668         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
1669         To avoid initing the nested_classes when not needed I turned the
1670         PeerCredData as a toplevel internal class, as it has to be shared
1671         anyways. 
1672
1673         Fixes the CASA issue.
1674
1675 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
1676
1677         * domain.c: Accessors for MonoJitInfo
1678
1679         * profiler-private.h: Add jitinfo to the end jit hook
1680
1681         * profiler.[ch]: Define new hooks, called after jitting which give
1682         the MonoJitInfo that was compiled
1683
1684 2006-01-10  Martin Baulig  <martin@ximian.com>
1685
1686         * class.c (mono_class_setup_events): Add support for generic
1687         classes; fixes #76440.
1688
1689 2006-01-06  Raja R Harinath  <rharinath@novell.com>
1690
1691         Fix #77160.
1692         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
1693         on passed-in method.
1694
1695 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
1696
1697         * object.c (mono_runtime_invoke_array): Add Nullable support.
1698
1699         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
1700
1701 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
1702
1703         * file-io.c: Don't consider sockets as directory and avoid an endless
1704         loop. Fix bug #76966.
1705
1706 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
1707
1708         * object.c (mono_nullable_init): New helper function.
1709         (mono_nullable_box): Ditto.
1710
1711         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
1712
1713         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
1714
1715         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
1716         
1717 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
1718
1719         * class.c (mono_class_is_assignable_from): Make T assignable to 
1720         Nullable<T>.
1721
1722 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
1723
1724         * appdomain.c: Bump corlib version to 46.
1725         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
1726         serialization purpose) and changed ves_icall_System_Reflection_
1727         Assembly_get_code_base signature to accept a boolean (to escape, or 
1728         not, the assembly code base).
1729
1730 2005-12-23  Dick Porter  <dick@ximian.com>
1731
1732         * icall.c: 
1733         * threads-types.h: 
1734         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
1735         CreateEvent icall now returns "created" boolean parameter.
1736
1737 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
1738
1739         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
1740         #76967.
1741
1742         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
1743         when attr_klass is an interface. Fixes #77045.
1744
1745 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
1746
1747         * marshal.c (emit_struct_conv): Fix previous patch.
1748         
1749         * marshal.c (emit_struct_conv): Add a check for fields with the same
1750         offset.
1751
1752 2005-12-20  Raja R Harinath  <rharinath@novell.com>
1753
1754         Fix regression in Mono.C5.
1755         * class.c (mono_class_create_generic): If 'klass' is an interface
1756         set up the interface offsets.
1757         (mono_class_is_assignable_from): Don't throw away generic arguments.
1758
1759 2005-12-19  Raja R Harinath  <rharinath@novell.com>
1760
1761         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
1762         type parameters.
1763
1764 2005-12-15  Raja R Harinath  <rharinath@novell.com>
1765
1766         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
1767         dead store.
1768         (do_mono_metadata_parse_generic_class): Don't pass the current
1769         generic context when parsing the type being instantiated: it
1770         cannot use it, anyway.
1771
1772         * loader.c (method_from_memberref): Don't inflate a signature if
1773         it doesn't contain any type parameters.
1774
1775 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
1776
1777         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
1778
1779 2005-12-14  Martin Baulig  <martin@ximian.com>
1780
1781         * class.c
1782         (mono_type_get_name_recurse): Don't return null for type
1783         parameters and open generic classes.
1784         (mono_class_setup_methods): Don't exclude generic instances.
1785         (mono_get_unique_iid): Use different IDs for different
1786         instantiations of the same generic type.
1787         (mono_class_setup_vtable): Only use setup_generic_vtable() for
1788         open generic instances; create a normal vtable for closed generic
1789         instances.
1790         (mono_class_setup_vtable_general): We're now also called for
1791         closed generic instances.
1792
1793         * reflection.c
1794         (mono_reflection_bind_generic_parameters): Correctly use
1795         mono_metadata_lookup_generic_inst() everywhere.
1796
1797 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
1798
1799         * object.c (mono_class_create_runtime_vtable): Call 
1800         mono_class_setup_vtable ().
1801
1802         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
1803         function.
1804         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
1805         #76959.
1806
1807         * loader.c (mono_loader_set_error_type_load): Print the type load
1808         warnings to the console so they are more visible to the user.
1809         (mono_loader_set_error_method_load): Ditto.
1810
1811         * reflection.c (ensure_runtime_vtable): Revert the last change as it
1812         is still broken.
1813         
1814         * reflection.c (ensure_runtime_vtable): Fix build.
1815
1816         * reflection.c (ensure_runtime_vtable): Disable an optimization which
1817         doesn't work in all cases.
1818
1819 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
1820
1821         * object.c (mono_array_new_full): Treat a single dimensional array
1822         with 0 lower bounds as an szarray. Fixes #76973.
1823
1824         * reflection.c (custom_attr_visible): Really fix this.
1825
1826 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
1827
1828         * reflection.c (custom_attr_visible): Allow nested public attributes
1829         as well.
1830
1831         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
1832         interface check.
1833
1834 2005-12-12  Raja R Harinath  <harinath@gmail.com>
1835
1836         * class.c (set_generic_param_owner): Delete.
1837         (mono_class_create_from_typedef): Don't set ->owner field of
1838         generic parameters to "param containers" of enclosing classes.
1839         * reflection.c (mono_reflection_initialize_generic_parameter):
1840         Likewise.
1841
1842 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
1843
1844         * reflection.c (custom_attr_visible): Fix build.
1845
1846 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
1847
1848         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
1849         private attributes.
1850         
1851         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
1852         handling of null parameter defaults.
1853
1854 2005-12-09  Raja R Harinath  <rharinath@novell.com>
1855
1856         * class.c (mono_class_from_generic_parameter): Don't set
1857         klass->generic_container.
1858         (my_mono_class_from_generic_parameter): Likewise.
1859
1860 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
1861
1862         * reflection.c (load_public_key): Fix a warning.
1863         (method_encode_code): Fix unaligned accesses.
1864
1865 2005-12-07  Martin Baulig  <martin@ximian.com>
1866
1867         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
1868
1869         * reflection.c
1870         (write_generic_param_entry): Encode our custom attrs.
1871
1872         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
1873
1874 2005-12-07  Martin Baulig  <martin@ximian.com>
1875
1876         * reflection.c (encode_new_constraint): Removed; we don't use the
1877         `NewConstraintAttribute' anymore.
1878
1879 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
1880
1881         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
1882         not fire a TypeResolve event when Assembly.GetType () is called.
1883
1884 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
1885
1886         Beginning of support for nullable types in the runtime. Parts of
1887         this patch are from Martin.
1888
1889         * appdomain.c (MONO_CORLIB_VERSION): Bump
1890
1891         * domain.c (mono_init_internal): get the nullable type
1892
1893         * class.c (mono_class_is_nullable): New method
1894         (mono_class_get_nullable_param): New mehod
1895         (mono_class_create_generic): In types T? set cast_class to T
1896
1897         * class-internals.h (MonoDefaults): new nullable default class
1898         (mono_class_get_nullable_param, mono_class_get_nullable_param):
1899         new methods.
1900
1901 2005-12-05  Raja R Harinath  <rharinath@novell.com>
1902
1903         * metadata.c (select_container): New.  Refactor code to select the
1904         appropriate GenericContainer given the type of generic parameter
1905         we are looking for.
1906         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
1907         not a MonoGenericContext.  Use select_container.  Update parameters.
1908         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
1909         and MONO_TYPE_MVAR.
1910         (unwrap_arrays): Remove duplicate tests.
1911         (find_generic_param): Rename from 'has_same_context'.  Now walks a
1912         generic instantiated class to find any arguments that are generic
1913         parameters.
1914         (mono_type_create_from_typespec_full): Use find_generic_param to
1915         avoid evicting some generic instantiations from the typespec
1916         cache.
1917
1918 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
1919
1920         * reflection.c: fixed writing of doubles on ARM FPA.
1921
1922 2005-12-02  Robert Jordan  <robertj@gmx.net>
1923
1924         * icall.c: Fixed EventInfo.ReflectedType (#76829).
1925
1926 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1927
1928         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
1929         least on SUSE 10 they are not the same (on debian, they are just the
1930         same thing).
1931
1932 2005-12-01  Raja R Harinath  <rharinath@novell.com>
1933
1934         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
1935         DeclaringType for VARs and MVARs.
1936         * class.c (set_generic_param_owner): Fix initialization of owner
1937         fields.
1938
1939 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
1940
1941         * icall.c: fixed Enum.ToObject() to correctly convert the values.
1942
1943 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1944
1945         * threadpool.c: workaround for a bug that shows up on the Mac:
1946         select()+connect() on a blocking socket is not like it should
1947         be, so we proceed to connect() in that case, wasting the I/O
1948         threadpool thread until connect succeedes. Fixes bug #75436.
1949
1950 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1951
1952         * threadpool.c: fix typo when setting file descriptor states.
1953
1954 2005-11-28  Raja R Harinath  <rharinath@novell.com>
1955
1956         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
1957         * metadata.c (mono_metadata_parse_method_signature_full): Don't
1958         create a temporary signature container.
1959         (mono_metadata_parse_generic_param): Update to changes.
1960         (mono_type_create_from_typespec_full): Update to changes.
1961         * loader.c (method_from_memberref): Don't use a
1962         MonoGenericContainer while parsing a memberref signature.
1963         (method_from_methodspec): Remove dead-store of the 'container'
1964         variable.  It's overwritten before use.
1965
1966         * metadata.c (mono_type_create_from_typespec_full): Make debugging
1967         checks tighter.
1968         (mono_metadata_parse_generic_param): Likewise.
1969         * loader.c (find_method_in_class): Does not need a
1970         MonoGenericContainer.  Use 'mono_method_signature' rather than
1971         'mono_method_signature_full'.
1972         (find_method, mono_get_method_constrained, method_from_memberref):
1973         Update to changes.
1974
1975         * metadata.c (mono_type_create_from_typespec_full): Ensure that
1976         owner-less generic-parameters are never evicted from the typespec
1977         cache.
1978
1979         * loader.c (method_from_memberref): Don't use the current context
1980         when parsing signatures.
1981         (method_from_methodspec, mono_get_method_from_token): Update to changes.
1982
1983         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
1984         side-effects in g_assert.
1985         * loader.c (mono_get_method_from_token): Resolve klass earlier so
1986         that we don't potentially lose information.
1987
1988 2005-11-26  Dick Porter  <dick@ximian.com>
1989
1990         * icall.c:
1991         * threads.c: icalls to implement basic (ie, not named)
1992         System.Threading.Semaphore.
1993
1994 2005-11-24  Dick Porter  <dick@ximian.com>
1995
1996         * process.c
1997         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
1998         Use GetProcessId() if it's available.
1999
2000 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
2001
2002         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
2003
2004 2005-11-23  Raja R Harinath  <rharinath@novell.com>
2005             Ankit Jain  <jankit@novell.com>
2006
2007         * loader.c (mono_get_method_from_token): Initialize 'method' field
2008         of all generic parameters before parsing the signature.  Remove
2009         code that "fixed"-up MVAR references.
2010
2011 2005-11-23  Ankit Jain  <jankit@novell.com>
2012
2013         * metadata.c (mono_metadata_has_generic_params):
2014         (mono_metadata_load_generic_param_constraints):
2015         (mono_metadata_load_generic_params): Move duplicate code ...
2016         (mono_metadata_get_generic_param_row): ... here. Returns the
2017         first row-id in GenericParam table for a given owner (token).
2018         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
2019         prototype.
2020
2021 2005-11-23  Raja R Harinath  <rharinath@novell.com>
2022             Ankit Jain  <jankit@novell.com>
2023
2024         * metadata.c (mono_metadata_class_equal): Pass signature_only when
2025         comparing VARs too.
2026         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
2027         type->data.generic_param only if the type is an MVAR.
2028         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
2029         leak owner-less VARs and MVARs into managed space.
2030
2031 2005-11-21  Martin Baulig  <martin@ximian.com>
2032
2033         * class-internals.h
2034         (MonoMethod): Moved the `generic_container' here from
2035         `MonoMethodNormal' since we now also need it for
2036         `MonoMethodPInvoke';
2037         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
2038         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
2039         an union containing both `MonoMethodNormal' and
2040         `MonoMethodPInvoke'.
2041
2042         * loader.c
2043         (mono_get_method_from_token): Allow implementing generic methods
2044         as interncalls.
2045
2046         * threads.c
2047         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
2048         icall.
2049
2050 2005-11-17  Dick Porter  <dick@ximian.com>
2051
2052         * icall.c: 
2053         * process.h: 
2054         * process.c: Split the Process Start_internal icall into
2055         ShellExecuteEx_internal and CreateProcess_internal, which are
2056         called depending on whether UseShellExecute is true.  Fixes bug
2057         76670.
2058
2059         * appdomain.c (MONO_CORLIB_VERSION): Incremented
2060
2061 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
2062
2063         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
2064         'msize' parameters, use the information in 'mspec' instead.
2065         (emit_object_to_ptr_conv): Ditto.
2066
2067         * marshal.c (emit_struct_conv): Handle explicit layout structs with
2068         fields out of order. Fixes #76733.
2069
2070 2005-11-17  Ankit Jain  <jankit@novell.com>
2071
2072         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
2073
2074 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
2075
2076         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
2077           bug #76575.
2078
2079 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
2080
2081         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
2082         for types with non-auto layout. Fixes #76717.
2083
2084 2005-11-16  Ankit Jain  <jankit@novell.com>
2085
2086         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
2087         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
2088         if generic_context is null.
2089           (mono_metadata_generic_param_equal): param->owner can be null.
2090           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
2091         null.
2092
2093 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
2094
2095         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
2096         the correct value.
2097
2098 2005-11-15  Martin Baulig  <martin@ximian.com>
2099
2100         * object.c (set_value): Use mono_class_from_mono_type() instead of
2101         the hack for generic instances; fixes #76136.
2102
2103 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
2104
2105         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
2106         fields.
2107
2108         * image.c (load_metadata_ptrs): Initialize the new fields.
2109
2110         * reflection.c (create_dynamic_mono_image): Ditto.
2111
2112         * reflection.c (build_compressed_metadata): Use the new fields.
2113
2114         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
2115         icall.
2116
2117         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
2118         icall.
2119         
2120 2005-11-15  Ankit Jain  <jankit@novell.com>
2121             Raja R Harinath  <harinath@gmail.com>
2122
2123         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
2124         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
2125         new per-generic_container cache if the cached MonoType's context matches
2126         the current context.
2127           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
2128         to the expected context.
2129           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
2130
2131 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2132
2133         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
2134         we changed the signature of an icall.
2135         * icall.c: Modify to mono_double_ParseImpl return true/false 
2136         depending on the success, instead of throwing the exception. This will
2137         help us in Double.TryParse methods.
2138         
2139 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
2140
2141         * marshal.c (emit_marshal_object): Throw an exception when
2142         marshalling 'object' instead of crashing. Fixes #76696.
2143
2144 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
2145
2146         * class-internals.h: Add prototype for mono_type_get_full_name ().
2147
2148 2005-11-11  Dick Porter  <dick@ximian.com>
2149
2150         * threads.c (mono_thread_manage): Make sure the main thread has
2151         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
2152
2153 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
2154
2155         * loader.c (mono_loader_set_error_type_load): Log a warning to the
2156         console about the missing type.
2157         (mono_loader_set_error_method_load): Ditto.
2158
2159 2005-11-09  Miguel de Icaza  <miguel@novell.com>
2160
2161         * mono-config.c (mono_get_config_dir): Set the system defaults if
2162         none is specified.
2163
2164         * assembly.c (mono_set_dirs): New API entry point to set the
2165         assembly and the config directory in one call
2166
2167 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
2168
2169         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
2170         the ftnptr was created from a delegate in a domain other than the
2171         current domain. Fixes #75377.
2172
2173         * exception.h exception.c: Add mono_get_exception_not_supported ().
2174
2175 2005-11-08  Martin Baulig  <martin@ximian.com>
2176
2177         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
2178
2179 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
2180
2181         * security-manager.h: Added definitions to deal with strongname key 
2182         pairs bigger (and smaller) than 1024 bits.
2183         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
2184         adjust wrt the public key length being used.
2185
2186 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
2187
2188         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
2189           Windows build (r51396-51397).
2190
2191 2005-11-03  Martin Baulig  <martin@ximian.com>
2192
2193         * class.c (mono_class_setup_vtable_general): Also add generic
2194         methods to the vtable; fixes #76581.
2195
2196 2005-11-01  Miguel de Icaza  <miguel@novell.com>
2197
2198         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
2199         sure that we lookup GetString method from the System.Text.Encoding
2200         class, not the derived class or we get an empty method.
2201
2202         Fixed class #76612.
2203
2204 2005-10-25  Miguel de Icaza  <miguel@novell.com>
2205
2206         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
2207         if it has been previously set (embedders). 
2208
2209         Make mono_set_rootdir available also on Unix.
2210
2211 005-10-24  Robert Jordan  <robertj@gmx.net>
2212
2213         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
2214
2215 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
2216
2217         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
2218         only calls which are made to native code use this flag.
2219
2220         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
2221
2222 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
2223
2224         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
2225         Add support for FieldBuilders.
2226
2227 2005-10-29  Martin Baulig  <martin@ximian.com>
2228
2229         * mono-debug.c
2230         (mono_debug_using_mono_debugger): New public method; returns
2231         whether we're running inside the debugger.
2232
2233 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
2234
2235         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
2236         for Method/Constructor/FieldBuilders.
2237
2238 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
2239
2240         * reflection.c (module_add_cattrs): Save custom attributes for global methods
2241         and fields as well.
2242
2243 2005-10-26  Martin Baulig  <martin@ximian.com>
2244
2245         * mono-debug-debugger.c
2246         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
2247
2248 2005-10-24  Raja R Harinath  <harinath@gmail.com>
2249
2250         * icall.c (base64_to_byte_array): Don't pass an out-of-range
2251         integer to isspace.
2252
2253 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
2254
2255         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
2256         when passing valuetypes byref. Fixes #76502.
2257
2258 2005-10-19  Jackson Harper  <jackson@ximian.com>
2259
2260         * profiler.c: Don't put a . in front of types that are not in a
2261         namespace.
2262
2263 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
2264
2265         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
2266
2267 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
2268
2269         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
2270         #76436.
2271         (mono_marshal_get_ldflda_wrapper): Fix a warning.
2272
2273 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2274
2275         * assembly.c metadata-internals.h icall.c: Define an additional
2276         parameter for mono_assembly_name_parse_full, so we can avoid creating
2277         S.R.AssemblyName.Version when no version info wasn't passed.
2278         
2279 2005-10-09  Miguel de Icaza  <miguel@novell.com>
2280
2281         * class.c (mono_type_get_full_name): Reimplement method that was
2282         removed. 
2283
2284         * image.c: Some docs
2285
2286 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
2287
2288         * profiler.c (output_newobj_profile): Fix printing of Total memory
2289         on x86.
2290
2291 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
2292
2293         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
2294
2295 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
2296
2297         * threads.c: remove debug output.
2298
2299 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
2300
2301         * threads.c (mono_thread_manage): Fix crashes if more than 64
2302         threads need to be aborted. Hopefully fixes #75899.
2303
2304         * assembly.c (mono_stringify_assembly_name): New helper function.
2305
2306         * class.c: Use mono_stringify_assembly_name instead of the similar
2307         static function.
2308
2309         * assembly.h assembly.c: Add support for calling a postload search 
2310         hook if an assembly cannot be loaded.
2311
2312         * appdomain.c: Register new search hooks which call the AssemblyResolve
2313         events in AppDomain. Fixes #75231
2314
2315 2005-10-07  Martin Baulig  <martin@ximian.com>
2316
2317         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
2318         methods without debug info.
2319
2320 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
2321
2322         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
2323         wrappers.
2324
2325 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2326
2327         * file-io.c: now that we return symlinks, use lstat and, when the file
2328         is a symbolic link, stat, to get the file attributes. Also avoid the
2329         conversion to/from utf16/external.
2330
2331 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
2332
2333         * class.c (mono_class_layout_fields): Compute klass->has_references
2334         correctly if an embedded valuetype is not yet initialized. Fixes
2335         #76331.
2336
2337 2005-10-04  Martin Baulig  <martin@ximian.com>
2338
2339         * metadata.c
2340         (mono_metadata_load_generic_param_constraints): New public
2341         function; splitted the constraints loading out from
2342         mono_metadata_load_generic_params().
2343
2344         * class.c (mono_class_create_from_typedef): Call
2345         mono_metadata_load_generic_param_constraints() after setting up
2346         the type and creating our parent; fixes #75329.
2347
2348 2005-10-04  Martin Baulig  <martin@ximian.com>
2349
2350         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
2351         non-dynamic parent classes.
2352
2353 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
2354
2355         * file-io.c : win32 build fix (ETXTBSY seems not found).
2356
2357 2005-10-04  Martin Baulig  <martin@ximian.com>
2358
2359         * reflection.c
2360         (mono_image_get_methodspec_token): Make the cache actually work;
2361         fixes #75974.
2362
2363 2005-10-04  Martin Baulig  <martin@ximian.com>
2364
2365         * class.c (mono_class_name_from_token): Removed the unneccessary
2366         `MonoGenericContext *' argument.
2367
2368 2005-10-04  Martin Baulig  <martin@ximian.com>
2369
2370         * loader.c
2371         (method_from_methodspec): Make the caching work again; fixes the
2372         performance regression from #76262.
2373
2374 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2375
2376         * file-io.c:
2377         * file-io.h:
2378         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
2379         GetFileSystemEntries that performs the same work but without going
2380         into io-layer, locking, etc.
2381
2382 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
2383
2384         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
2385         ThreadState_Stopped as well. Fixes #76047.
2386
2387 2005-09-29  Martin Baulig  <martin@ximian.com>
2388
2389         * class.c
2390         (inflate_generic_context): If the new context has a `gmethod', set
2391         its `container' that that gmethod's `container'.
2392
2393         * metadata.c
2394         (mono_metadata_parse_generic_param): Simplify things;
2395         `generic_container = generic_context->container;' is just fine.
2396
2397         * loader.c (method_from_methodspec): Code cleanups.
2398
2399 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
2400
2401         * decimal.c: fix warning (and let gcc generate correct
2402         code on ARM with optimizations).
2403
2404 2005-09-28  Martin Baulig  <martin@ximian.com>
2405
2406         * loader.c
2407         (method_from_memberref): Added `MonoGenericContext *class_context'
2408         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
2409         (method_from_methodspec): If we're a memberref, use the enclosing
2410         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
2411
2412 2005-09-28  Martin Baulig  <martin@ximian.com>
2413
2414         * object.c (mono_runtime_invoke_array): Added support for
2415         MONO_TYPE_GENERICINST; fixes #75917.
2416
2417 2005-09-27  Martin Baulig  <martin@ximian.com>
2418
2419         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
2420         `k->byval_arg.type' to determine the actual type.
2421
2422         * loader.c (method_from_methodspec): Removed some hacks.
2423
2424 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
2425
2426         * class-internals.h (mono_field_is_deleted): Do the test for
2427         rtspecialname before we check the actual name of the field. This
2428         prevents us from dereferencing a pointer into the string table,
2429         saving us from accessing a few pages
2430
2431         * *.c: Replace the use of {Enter,Leave}CriticalSection with
2432         macros. This will allow a deadlock debugger to easily be plugged
2433         in.
2434
2435 2005-09-27  Martin Baulig  <martin@ximian.com>
2436
2437         * loader.c (method_from_methodspec): Create a "signature"
2438         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
2439
2440 2005-09-27  Martin Baulig  <martin@ximian.com>
2441
2442         * class.c
2443         (inflate_generic_class): Correctly set the new context's
2444         container.
2445
2446         * loader.c
2447         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
2448         instead of a `MonoGenericContext *'.
2449         (mono_method_signature_full): Take a `MonoGenericContainer *'
2450         instead of a `MonoGenericContext *'.
2451
2452         * metadata.c
2453         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
2454         instead of a `MonoGenericContext *'.
2455         (mono_metadata_parse_method_signature_full): Likewise.
2456
2457 2005-09-26  Martin Baulig  <martin@ximian.com>
2458
2459         * class.c
2460         (mono_class_from_generic_parameter): Set `klass->generic_container'
2461         (mono_class_from_generic_parameter): Likewise.
2462         (mono_bounded_array_class_get): We inherit the generic container
2463         from the element class.
2464
2465         * loader.c
2466         (find_method, find_method_in_class): Take a `MonoGenericContext *'
2467         argument rather than computing it here.
2468         (method_from_memberref): Correctly set the generic context before
2469         parsing the signature.  Fixes #75681.
2470
2471 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
2472
2473         * object.c (mono_class_has_special_static_fields): Fix warnings.
2474
2475 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2476
2477         * assembly.c: Add parse_public_key function, to
2478         par the public keys. Also added mono_assembly_name_parse_full,
2479         to define it the parsed key should be freed or not.
2480         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
2481         to parse a long format assembly name.
2482         * metadata-internals.h: Keep mono_assembly_name_parse_full as
2483         private, since calling it to preserve the key requires
2484         freeing it manually.
2485         
2486 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
2487
2488         * locales.c : removed HAVE_ICU part.
2489
2490 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
2491
2492         * object.c (mono_class_create_runtime_vtable): Avoid calling 
2493         field_is_special_static if the klass has no special static fields.
2494
2495         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
2496         (MonoCachedClassInfo): Likewise.
2497
2498         * object.c (mono_class_has_special_static_fields): New helper function.
2499
2500 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
2501
2502         * class.c (mono_class_create_from_typedef): Don't call 
2503         interfaces_from_typedef_full for enums.
2504         (mono_class_create_from_typedef): Compute the base types of enums directly
2505         without calling mono_class_setup_fields ().
2506         (mono_class_find_enum_basetype): New helper function.
2507
2508         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
2509         one place inside the string heap.
2510         
2511 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
2512
2513         * class.c: locking fixes, code cleanups, some docs added.
2514         Allocate some data structures in the image mempool.
2515
2516 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
2517
2518         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
2519         the example code.
2520         
2521 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
2522
2523         * class-internals.h, class.c, reflection.c: reduce memory taken by
2524         MonoClass.
2525
2526 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
2527
2528         * metadata.c, metadata.h, loader.h: documentation updates, code and
2529         API cleanups.
2530
2531 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
2532
2533         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
2534         the example code.
2535
2536         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
2537         page faults caused by the runtime while reading metadata.
2538
2539 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2540
2541         * socket-io.c: the field names were changed 3 months ago and no one
2542         realized until bug #76077 got filed!
2543
2544 2005-09-20  Martin Baulig  <martin@ximian.com>
2545
2546         * icall.c (assembly_icalls): Removed some unused debugger icalls.
2547
2548 2005-09-20  Martin Baulig  <martin@ximian.com>
2549
2550         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
2551         write the rank into the class entry.
2552
2553 2005-09-20  Martin Baulig  <martin@ximian.com>
2554
2555         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
2556
2557 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
2558
2559         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2560
2561         * icall.c (custom_attrs_defined_internal): New icall.
2562
2563         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
2564         function.
2565         (mono_custom_attrs_construct_by_type): New helper function.
2566
2567 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
2568
2569         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
2570         terminate the resulting string. Fixes #76123.
2571
2572 2005-09-16  Martin Baulig  <martin@ximian.com>
2573
2574         * mono-debug.c
2575         (mono_debug_add_method): Ignore inflated methods for the moment.
2576
2577 2005-09-14  Martin Baulig  <martin@ximian.com>
2578
2579         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
2580
2581 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
2582
2583         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
2584         return a success/failure indication.
2585         (mono_metadata_interfaces_from_typedef_full): Ditto.
2586         (get_constraints): Ditto.
2587
2588 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
2589
2590         * marshal.c (emit_marshal_array): Fix handling of null arrays.
2591         
2592         * marshal.c (emit_marshal_array): Add support for returning string
2593         arrays from delegates. Fixes #76063.
2594
2595         * marshal.c: Use the emit_ldloc/stloc macros where possible.
2596
2597 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
2598
2599         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
2600         icall.
2601
2602 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
2603
2604         * reflection.c icall.c: Fix after mono_get_exception_type_load
2605         signature change.
2606
2607         * assembly.c (mono_assembly_get_assemblyref): New helper function.
2608         (mono_assembly_load_reference): Use the new helper.
2609
2610         * class-internals.h (MonoLoaderError): New structure containing 
2611         information about type loading errors.
2612
2613         * class-internals.h loader.c: Add APIs to store per-thread loader
2614         error information.
2615
2616         * loader.c class.c: Set the loader error if needed.
2617
2618         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
2619
2620 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
2621
2622         * decimal.c: fixed to handle the broken ARM fp format.
2623
2624 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
2625
2626         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
2627         broken.
2628
2629 2005-09-06  Martin Baulig  <martin@ximian.com>
2630
2631         * domain.c (supported_runtimes): Added v2.0.50727.
2632
2633 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
2634
2635         * culture-info.h: reduce the size of some structures.
2636
2637 2005-09-05  Martin Baulig  <martin@ximian.com>
2638
2639         Reflect latest API changes in the August CTP.
2640
2641         * icall.c
2642         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
2643         ("MonoType.HasGenericArguments"): Removed.
2644         ("MonoMethod.BindGenericParameters"): Renamed to
2645         "MakeGenericMethod".
2646         ("MethodBuilder.BindGenericParameters"): Renamed to
2647         "MakeGenericMethod".    
2648
2649 2005-09-05  Martin Baulig  <martin@ximian.com>
2650
2651         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
2652
2653 2005-09-05  Martin Baulig  <martin@ximian.com>
2654
2655         Applying a patch from Michal Moskal <malekith@nemerle.org>.
2656
2657         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
2658         generic_container is non-NULL.
2659
2660 2005-09-05  Martin Baulig  <martin@ximian.com>
2661
2662         Applying a patch from Michal Moskal <malekith@nemerle.org>.
2663
2664         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
2665
2666 2005-08-29  Michal Moskal  <malekith@nemerle.org>
2667
2668         * reflection.c (encode_locals,
2669         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
2670         for large generic types.
2671
2672 2005-09-05  Martin Baulig  <martin@ximian.com>
2673
2674         Applying a patch from Michal Moskal <malekith@nemerle.org>.
2675
2676         * class.c (mono_dup_array_type): New public method.
2677         (mono_metadata_signature_deep_dup): New public method.
2678         (dup_type): Correctly duplicate array and function types.
2679
2680 2005-09-05  Martin Baulig  <martin@ximian.com>
2681
2682         Applying a patch from Michal Moskal <malekith@nemerle.org>.
2683
2684         * reflection.c (get_default_param_value_blobs): Handle generic types
2685         and generic methods.
2686
2687 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
2688
2689         * class.c: Fixed error reporting (method/class were inversed) for 
2690         inheritance demands.
2691         * security-manager.c|h: Added the AppDomain when calling the managed
2692         System.Security.SecurityManager.InheritanceDemand method.
2693
2694 2005-09-01  Raja R Harinath  <rharinath@novell.com>
2695
2696         * reflection.c (encode_marshal_blob): 'marshaltype' and
2697         'marshaltyperef' are alternate sources for the custom marshaler
2698         name.
2699
2700 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
2701
2702         * class.c: fix creation of array classes with rank == 1
2703         (patch by Ankit Jain <jankit@novell.com>).
2704
2705 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
2706
2707         * object.c: fix check for creating the bound data for arrays vs
2708         szarrays.
2709
2710 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2711
2712         * object.c: configuration file name is now based on the executable name,
2713         not the image name. Fixes bug #75931.
2714
2715 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
2716
2717         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
2718         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
2719
2720 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
2721
2722         * rand.c: Use wincrypt.h instead of WinCrypt.h.
2723
2724 2005-08-24  Ankit Jain  <jankit@novell.com>
2725             Raja R Harinath  <rharinath@novell.com>
2726
2727         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
2728           called by it recursively.
2729           (mono_class_init): Remove special case in pending_init handling, since it's
2730           superseded by the fix to mono_class_from_typeref.
2731
2732 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
2733
2734         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
2735         BROKEN_THREAD_START stuff.
2736
2737 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
2738
2739         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
2740         trampoline.
2741
2742         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
2743         
2744         * object.c (mono_delegate_ctor): Replace the original function address with
2745         a delegate trampoline.
2746
2747 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
2748
2749         * icall.c: add boolean argument to base64_to_byte_array and 
2750         InternalFromBase64String to control whether a whitespace-only string
2751         is allowed (or should casue a FormatException to be thrown). We need
2752         this as the behavior has changed between MS.NET 1.x and 2.0, and we
2753         to match the MS behaviour in both profiles.
2754         * appdomain.c: Bump corlib version.
2755
2756 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2757
2758         This patch implements a big portion of publisher policy
2759         support, used to bind assembly versions and redirect
2760         one assembly from version A to version B.
2761
2762         * assembly.c:
2763         New GSList loaded_assembly_bindings, for storing the cached
2764         assembly bindings.
2765         (assembly_binding_maps_name): New static function for checking if a 
2766         assembly binding information maps an assembly name.
2767         (mono_assembly_binding_info_free): New function for freeing
2768         assembly binding information resources.
2769         (get_publisher_policy_info): New static function for retrieving 
2770         assembly binding information from a MonoImage.
2771         (compare_versions): New static function for comparing an assembly
2772         binding information data and the version of an assembly name.
2773         (check_policy_versions): New static function for checking if an
2774         assembly binding info mapping an assembly name is valid for it.
2775         (mono_assembly_load_publisher_policy): New static function for
2776         loading the 'policy.major.minor.MyAssembly' image for an assembly
2777         with an assembly name 'aname'.
2778         (mono_assembly_bind_version): New static function for updating
2779         assembly redirection.
2780         (mono_assembly_apply_binding): New static function for applying
2781         assembly binding.
2782         (search_binding_loaded): New static function for searching 
2783         loaded assembly binding infos in the cache domain.
2784         (mono_assembly_load_full): Don't apply assembly binding for
2785         reflection only assemblies.
2786
2787         * metadata-internals.h: Add MonoAssemblyBindingInfo,
2788         which contains information about assembly binding. Also
2789         declare signature for mono_config_parse_publisher_policy ()
2790         function, used to retrieve pub policy info.
2791         
2792         * mono-config.c:
2793         (publisher_policy_start): New static function used to parse publisher 
2794         policy config files.
2795         (publisher_policy_parser): New static MonoParseHandler containing 
2796         the functions used when parsing config files.
2797         (mono_config_parse_publisher_policy): New function for parsing
2798         publisher policy files.
2799         
2800 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
2801
2802         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
2803
2804         * marshal.c (mono_delegate_free_ftnptr): Ditto.
2805
2806         * object.c (mono_get_addr_from_ftnptr): New helper function.
2807
2808         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
2809
2810         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2811
2812 2005-08-19  Dick Porter  <dick@ximian.com>
2813
2814         * threads.c, threads.h, appdomain.c, appdomain.h,
2815         profiler-private.h, monitor.c, object.c, object-internals.h,
2816         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
2817         store the thread ID, so it can hold a 64 bit value if needed.
2818
2819 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
2820
2821         * reflection.c (mono_reflection_create_dynamic_method): Store the
2822         handle class into the method references as well so ldtoken works in
2823         dynamic methods.
2824
2825         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
2826         types.
2827
2828 2005-08-19  Ankit Jain <jankit@novell.com>
2829
2830         Fix #75847.
2831         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
2832           here rather than using the method signature of a arbitrary function
2833           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
2834           two arguments.
2835           Hack done with Harinath.
2836
2837 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2838
2839         * threadpool.c: disable printing stack traces when we get a exception
2840         in a threadpool thread. I need to do more testing to figure out which
2841         cases actually print this. Fixes bug #75828.
2842
2843 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2844
2845         * icall.c: there might be ignored whitespace after the last '='. This
2846         fixes length computation and bug #75840.
2847
2848 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
2849
2850         * assembly.c (mono_assembly_load_full): Consider .exe extension as
2851         well. Fixes #75809.
2852
2853         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
2854         #75784.
2855         
2856         * reflection.c (create_custom_attr_data): Ditto.
2857
2858 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
2859
2860         * locales.c, culture-info.h : removed RegionLCIDMap.
2861         * culture-info-tables.h : regenerated.
2862
2863 2005-08-16  Martin Baulig  <martin@ximian.com>
2864
2865         * class.c (mono_type_get_name_recurse): Small fix.
2866
2867 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
2868
2869         * locales.c : indentation fixie.
2870
2871 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
2872
2873         * object-internals.h,
2874           locales.h,
2875           locales.c,
2876           culture-info.h,
2877           icall.c : added RegionInfo table support.
2878         * culture-info-table.h : regenerated for region support.
2879
2880 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
2881
2882         * reflection.c (resolve_object): handle all kinds of MonoMethod
2883         including generic ones
2884
2885 2005-08-12  Ankit Jain <jankit@novell.com>
2886
2887         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
2888           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
2889
2890 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
2891
2892         * process.c: Don't close a thread handle when it's NULL. This is a
2893         workaround for bug #75733.
2894
2895 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
2896
2897         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
2898
2899 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
2900
2901         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
2902
2903 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2904
2905         * threadpool.c: if a work item in the thread pool has a callback that
2906         catches a exception, don't propagate it after invoking the callback.
2907         Fixes bug #75336.
2908
2909 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
2910
2911         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
2912
2913         * class-internals.h (MonoCachedClassInfo): Add some new fields.
2914
2915         * class.c (mono_class_init): Load field info lazily in the AOT case.    
2916
2917         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
2918
2919 2005-08-03  Ankit Jain  <jankit@novell.com>
2920
2921         Fix #75683.
2922         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
2923           PInvoke calling convention is 0.
2924
2925 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
2926
2927         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
2928         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
2929
2930 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
2931
2932         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
2933         to handle threads not started by the GC (patch by Michael Meeks
2934         <michael.meeks@novell.com>).
2935
2936 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
2937
2938         * reflection.c: Make buffer used in emitting types larger for some
2939         big generic types (patch by Michal Moskal).
2940
2941 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
2942
2943         * mono-debug.c: Fix some (not all) alignment problems.
2944
2945 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2946
2947         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
2948         Invoke mono_image_load_from_data_full passing the refonly
2949         parameter.
2950
2951         * assembly.c
2952         (mono_assembly_open_from_bundle): Add the refonly argument, 
2953         in order to pass it to other methods it calls to.
2954         (do_mono_assembly_open): Add the refonly argument, in order 
2955         to pass it to other methods it calls to.
2956         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
2957         the refonly parameter to it.
2958
2959         * image.c: Add loaded_images_refonly_hash and
2960         loaded_images_refonly_guid_hash to cache the reflection
2961         only loaded images.
2962         (mono_images_init): Initialize the hash tables used for
2963         caching the reflection only images.
2964         (load_modules): Invoke mono_image_open_full passing the refonly
2965         parameter to load the modules the correct way.
2966         (build_guid_table): Add the refonly argument, to re-build the 
2967         correct hash table.
2968         (do_mono_image_open): Added the refonly argument, in order to
2969         define it for the loaded image.
2970         (mono_image_loaded_full): New function, which receives an
2971         additional parameter to look for the image in the refonly or
2972         non-refonly section.
2973         (mono_image_loaded): Updated, using mono_image_loaded_full.
2974         (mono_image_loaded_by_guid_full): The same case that happens
2975         with mono_image_loaded_full.
2976         (mono_image_loaded_by_guid): Likewise.
2977         (register_image): Use the ref_only variable inside MonoImage
2978         to decide in which hash table store the current image.
2979         (mono_image_open_from_data_full): Rename
2980         mono_image_open_from_data to mono_image_open_from_data_full,
2981         adding the refonly argument, to define the ref_only variable 
2982         inside MonoImage.
2983         (mono_image_open_from_data): Return 
2984         mono_image_open_from_data_full.
2985         (mono_image_open_full): Rename mono_image_open to
2986         mono_image_open_full, receiving the new refonly argument,
2987         to pass it to inner methods.
2988         (mono_pe_file_open): Update this function, to open
2989         a MonoImage as a non-refonly image.
2990         (mono_image_close): Use the refonly variable inside
2991         MonoImage to remove the image from the correct caches.
2992
2993         * image.h: Add the signatures of mono_image_open_full,
2994         mono_image_open_from_data_full, mono_image_loaded_full,
2995         mono_image_loaded_by_guid_full.
2996
2997         * metadata-internals.h: Add the ref_only field to 
2998         MonoImage.
2999         
3000 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3001
3002         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
3003         Fix the last behavior, which used to load the assemblies and
3004         extract MonoReflectionAssemblyName information, instead of
3005         extract it from the metadata tables. Needed for Reflection
3006         Only assemblies.
3007         
3008 2005-07-29  Martin Baulig  <martin@ximian.com>
3009
3010         * mono-debug-debugger.c
3011         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
3012         not initialized.
3013
3014         * mono-debug.c
3015         (mono_debug_address_from_il_offset): Check whether we have
3016         debugging support before attempting to take the lock.
3017         (mono_debug_source_location_from_address): Likewise.
3018         (mono_debug_source_location_from_il_offset): Likewise.
3019         (mono_debug_il_offset_from_address): Likewise.
3020         (mono_debug_address_from_il_offset): Likewise.
3021
3022 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
3023
3024         * class.c (mono_class_from_name_case): Add support for dynamic images.
3025         Fixes #75650.
3026
3027         * object.c (mono_class_compute_gc_descriptor): Add a workaround
3028         for #75479.
3029
3030 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
3031         
3032         * reflection.c (mono_method_get_object): Fix warning.
3033
3034 2005-07-28  Martin Baulig  <martin@ximian.com>
3035
3036         * mono-debug.c
3037         (mono_debug_add_wrapper): Also write the wrapper type.
3038
3039 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
3040
3041         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
3042         
3043         * class.c (mono_class_init): Avoid reading nested classes if the AOT
3044         data indicates the class has none.
3045
3046 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
3047
3048         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
3049         loader lock with the debugger lock. Prevents deadlocks for beagle.
3050
3051         Beagle can now run on an smp box for a weekend without any
3052         issues. Woohoo!
3053
3054 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
3055
3056         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
3057         in a module. Fixes #75629.
3058
3059 2005-07-26  Martin Baulig  <martin@ximian.com>
3060
3061         * mono-debug.c (mono_debug_add_wrapper): New static method.
3062         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
3063         interncall or a wrapper.
3064
3065         * mono-debug.h (MonoDebugWrapperData): New public typedef.
3066         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
3067         (MONO_DEBUGGER_VERSION): Bump to 51.
3068
3069         * mono-debug-debugger.c
3070         (mono_debugger_add_type): Removed this empty function.
3071         (mono_debugger_add_method): Likewise.
3072
3073 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
3074
3075         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
3076         before accessing method->slot.
3077
3078 2005-07-21  Jb Evain  <jbevain@gmail.com>
3079
3080         * reflection.c (method_encode_clauses/class): Handle filters clauses.
3081         Fixes #75010.
3082
3083 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
3084
3085         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
3086         #75587.
3087
3088 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
3089
3090         * image.h image.c: Add mono_image_get_guid () API function.
3091
3092 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
3093
3094         There were issues when multiple threads tried to load
3095         assemblies. A deadlock was created between assemblies_mutex and
3096         mono_domain_assemblies_lock. This fixes the issue by making the
3097         assembly ref counting be lock free. See bug 75586.
3098         
3099         * image.c (mono_image_close): The add ref function here was using
3100         Interlocked operations while the unref was using a mutex and a
3101         --. I don't think this was ever a bug that would be exposed in a
3102         non-pendantic way (ie, by an embedder doing a ref on one thread
3103         and an unref on another), but for the sake of correctness, this is
3104         now Interlocked.
3105
3106         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
3107         (mono_assembly_load_reference): Call mono_assembly_addref rather
3108         than touching the refcount ourselves.
3109         (mono_assembly_close): Use InterlockedDecrement to unref the
3110         assembly. Don't acquire the lock unless it is actually needed.
3111
3112 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
3113
3114         * class.c (mono_class_layout_fields): Fix calculation of has_references
3115         for generic types.
3116
3117 2005-07-12  Martin Baulig  <martin@ximian.com>
3118
3119         Applying a patch from Michal Moskal <malekith@nemerle.org>.
3120
3121         * metadata.c
3122         (mono_type_hash): Provide better hashing for generic instances.
3123         (mono_generic_inst_hash): Improve hashing.
3124         (mono_generic_class_hash): Likewise.
3125
3126         * reflection.c (mymono_metadata_type_hash): Improve hashing for
3127         generic instances.
3128
3129 2005-07-12  Martin Baulig  <martin@ximian.com>
3130
3131         * reflection.c (mono_reflection_create_runtime_class): Remove the
3132         hack for generic type definitions and non-`Run' assemblies.
3133         (mono_reflection_bind_generic_parameters): Also use
3134         `klass->wastypebuilder' to check for TypeBuilders.
3135
3136 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
3137
3138         * class.c (mono_class_layout_fields): Fix calculation of has_references
3139         for generic types.
3140
3141         * class.c (inflate_generic_class): Fix a leak.
3142         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
3143         for generic types.
3144
3145 2005-07-11  Martin Baulig  <martin@ximian.com>
3146
3147         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
3148         on error.
3149
3150 2005-07-11  Martin Baulig  <martin@ximian.com>
3151
3152         * loader.c (find_method): Also lookup in
3153         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
3154
3155 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
3156
3157         * appdomain.c (mono_domain_unload): Don't free the error message
3158         before passing it to mono_get_exception_...
3159
3160         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
3161         
3162 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
3163
3164         * threads.c: try to better guess an available RT signal (bug #75387).
3165
3166 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
3167
3168         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
3169         and CACHE_OBJECT.
3170
3171 2005-07-07  Martin Baulig  <martin@ximian.com>
3172
3173         * class.c (mono_type_get_name_full): Return NULL for
3174         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
3175         fixes #75408.
3176
3177 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
3178
3179         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
3180         exit the appdomain as well being aborted.
3181
3182         * threadpool.c: Create all threadpool threads inside the root appdomain, and
3183         change back to the root domain after calling managed code. This enables
3184         appdomains using threadpools to be unloaded.
3185
3186 2005-07-07  Martin Baulig  <martin@ximian.com>
3187
3188         * class-internals.h
3189         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
3190         into `MonoDynamicGenericClass' since we only need it for dynamic
3191         types.
3192
3193         * reflection.c (mono_class_bind_generic_parameters): We don't need
3194         to compute the `parent' here.
3195
3196 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
3197
3198         * culture-info-table.h : regenerated.
3199
3200 2005-07-06  Martin Baulig  <martin@ximian.com>
3201
3202         * icall.c
3203         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
3204
3205         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
3206
3207 2005-07-06  Martin Baulig  <martin@ximian.com>
3208
3209         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
3210         we're doing a signature-only comparision; fixes #74945.
3211
3212 2005-07-06  Martin Baulig  <martin@ximian.com>
3213
3214         * class-internals.h (MonoGenericClass): Moved some things out into
3215         a new `MonoInflatedGenericClass' type.  
3216         (MonoInflatedGenericClass): New type; the `klass' of a
3217         `MonoGenericClass' is now computed lazyly in
3218         mono_get_inflated_generic_class().      
3219
3220         * class.c (mono_get_inflated_generic_class): New public function.
3221         (mono_class_inflate_generic_method): Removed the unused
3222         `MonoClass *' argument.
3223         (setup_generic_vtable): Don't call mono_get_inflated_method() on
3224         all the methods.
3225         (mono_class_create_generic): Make this static and merge it with
3226         mono_class_create_generic_2(); we're now called automatically from
3227         mono_get_inflated_generic_class().
3228
3229         * loader.c (mono_method_signature): Call
3230         mono_get_inflated_method() here.
3231
3232 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
3233
3234         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
3235         type of fields with RVA.
3236
3237         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
3238         for this pseudo class.
3239         (my_mono_class_from_generic_parameter): Likewise.
3240         (mono_class_init): Allow interfaces to have cctors.
3241
3242 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
3243
3244         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
3245         lazily for AOT methods.
3246
3247 2005-07-05  Martin Baulig  <martin@ximian.com>
3248
3249         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
3250         returns FALSE for a successful match, not TRUE.
3251
3252 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
3253
3254         * loader.c (mono_method_get_index): Optimize this a bit.
3255
3256 2005-07-04  Martin Baulig  <martin@ximian.com>
3257
3258         * class.c
3259         (class_compute_field_layout): Move the check for generic type
3260         definitions into mono_class_layout_fields().  Fixes #74684.
3261         (mono_class_from_generic_parameter): Correctly compute
3262         `klass->parent'; fixes #75457.
3263
3264         * reflection.c (register_assembly, register_module): Make sure
3265         `domain->rejobject_hash' is already created.
3266
3267 2005-07-02  Martin Baulig  <martin@ximian.com>
3268
3269         * class-internals.h
3270         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
3271         `MonoDynamicGenericClass'.      
3272
3273 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
3274
3275         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
3276         returned by a field getter is null, since null is a valid value.
3277
3278 2005-07-01  Martin Baulig  <martin@ximian.com>
3279
3280         * reflection.c (mono_reflection_generic_class_initialize): Update
3281         the `dgclass->fields [i].parent' to the correct class.
3282         (mono_image_get_fieldref_token): Use the declaring type, not the
3283         reflected type.
3284
3285 2005-07-01  Martin Baulig  <martin@ximian.com>
3286
3287         * loader.c (find_method): Also look in the interfaces; fixes #75429.
3288
3289 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
3290
3291         * threads.c (thread_cleanup): assert that thread != NULL
3292         (wait_for_tids_or_state_change): We were using the wrong variable
3293         when accessing wait->threads. `i' was always out of the bounds of
3294         the array.
3295
3296 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3297
3298         * loader.c: map user32 and kernel32 to libMonoSupportW
3299
3300 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
3301
3302         * appdomain.c (unload_thread_main): Mark this as WINAPI.
3303
3304 2005-06-28  Martin Baulig  <martin@ximian.com>
3305
3306         * loader.c (method_from_methodspec): Fix #75334.
3307
3308 2005-06-28  Martin Baulig  <martin@ximian.com>
3309
3310         Fix #74953 - Arrays now implement the generic IList<T> interface
3311         on the 2.0 platform.
3312
3313         * class-internals.h (MonoDefaults): Added `generic_array_class'.
3314
3315         * reflection.c (mono_class_bind_generic_parameters): New public
3316         function; similar to mono_reflection_bind_generic_parameters(),
3317         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
3318
3319         * domain.c (mono_init_internal): Try to initialize.
3320         `mono_defaults.generic_array_class' here; this'll only succeed if
3321         we're using the 2.0 corlib.
3322
3323         * icall.c
3324         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
3325         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
3326         (mono_lookup_internal_call): Added support for nested classes.
3327
3328         * loader.c
3329         (mono_get_method_from_token): Set `result->signature->pinvoke' if
3330         we're an interncall and have generic arguments.
3331
3332         * class.c
3333         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
3334         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
3335         instance of System.Array.InternalArray<T> for arrays, so they
3336         implement the generic IList<T> interface.
3337
3338 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
3339
3340         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
3341         (chastamar@yahoo.com). Fixes #75374.    
3342
3343 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
3344
3345         * culture-info-table.h: regenerated.
3346
3347 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3348
3349         * icall.c: handle spaces correctly for base64 strings.
3350
3351 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
3352
3353         * *.c: Kill some warnings.
3354
3355 2005-06-23  Duncan Mak  <duncan@novell.com>
3356
3357         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
3358         that this builds on Solaris 10 (x86).
3359
3360 2005-06-23  Martin Baulig  <martin@ximian.com>
3361
3362         * class.c
3363         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
3364         generic type definitions.
3365
3366 2005-06-23  Martin Baulig  <martin@ximian.com>
3367
3368         Fix #75331.
3369
3370         * metadata.c (mono_class_get_overrides): Renamed to
3371         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
3372         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
3373         pass it to mono_get_method_full().
3374
3375 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
3376
3377         * reflection.c (mono_reflection_create_runtime_class): take the
3378         mono_domain_lock in this method. Prevents deadlocks
3379
3380 2005-06-22  Martin Baulig  <martin@ximian.com>
3381
3382         * loader.c (method_from_methodspec): Fix #75330.
3383
3384 2005-06-22  Martin Baulig  <martin@ximian.com>
3385
3386         * reflection.c (type_get_qualified_name): Use
3387         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
3388         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
3389         argument; use it if we don't have an assembly name.
3390
3391 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
3392
3393         * object.c: In mono_message_init, set "copy out" flag for in
3394         parameters with the [Out] flag.
3395
3396 2005-06-21  Martin Baulig  <martin@ximian.com>
3397
3398         * class.c
3399         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
3400         and MONO_TYPE_PTR.
3401
3402 2005-06-21  Martin Baulig  <martin@ximian.com>
3403
3404         * class.c (mono_class_init): Don't initialize `class->fields' for
3405         generic instances since they're initialized again in
3406         compute_field_layout(). 
3407         (compute_field_layout): Set the field's `generic_info' here; fix
3408         #75320. 
3409
3410 2005-06-21  Martin Baulig  <martin@ximian.com>
3411
3412         * class-internals.h
3413         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
3414
3415         * metadata.c (mono_metadata_generic_method_equal): Also
3416         distinguish the `generic_class'; fixes #75334.
3417
3418 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3419
3420         * domain.c:
3421         * appdomain.c:
3422         * domain-internals.h:
3423         * reflection.c: 'domain_assemblies' field is now protected by its own
3424         lock. Don't call into managed code to run the AssemblyLoad event if we
3425         now there are no registered delegates for it.
3426
3427 2005-06-20  Martin Baulig  <martin@ximian.com>
3428
3429         * class.c (mono_class_is_assignable_from): Use a custom version of
3430         mono_class_has_parent() to make things work for generic instances;
3431         fix #75300.
3432
3433 2005-06-20  Martin Baulig  <martin@ximian.com>
3434
3435         * loader.c (method_from_methodspec): Apply a patch from
3436         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
3437
3438 2005-06-20  Martin Baulig  <martin@ximian.com>
3439
3440         * class.c (mono_class_init): Reverted Zoltan's last change; it
3441         breaks generics.
3442
3443 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
3444
3445         * threads.c (wait_for_tids_or_state_change): Add missing locking.
3446
3447 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3448
3449         * socket-io.c: fix the index in the socket array for writable/error
3450         sockets. Fixes bug #75306.
3451
3452 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
3453
3454         * class.c (mono_class_init): Allow interfaces to have static ctors.
3455
3456 2005-06-17  Martin Baulig  <martin@ximian.com>
3457
3458         * loader.c (method_from_methodspec): Use `context->container' when
3459         parsing the `gmethod->inst'.
3460
3461 2005-06-17  Martin Baulig  <martin@ximian.com>
3462
3463         * class.c (mono_type_get_name_recurse): Don't add the assembly
3464         name for type arguments.
3465
3466 2005-06-15  Martin Baulig  <martin@ximian.com>
3467
3468         * reflection.c (mono_image_get_inflated_method_token): Encode
3469         correct klass; fixes #75260.
3470
3471 2005-06-13 Michal Moskal <malekith@nemerle.org>
3472
3473         * icall.c: Make GetCorrespondingMethod/Constructor take
3474         MonoReflectionMethod method not MonoMethod. Removed
3475         MonoType.GetCorrespondingField, and make
3476         MonoGenericType.GetCorrespondingField take name not
3477         MonoClassField.
3478
3479 2005-06-13  Michal Moskal <malekith@nemerle.org>
3480
3481         * reflection.c (field_encode_signature, encode_locals):
3482          Make sizes of buffers for types larger (for big generic types).
3483          (create_generic_typespec,
3484          mono_reflection_sighelper_get_signature_local,
3485          mono_reflection_sighelper_get_signature_field):
3486          Add asserts for too small buffers.
3487
3488 2005-06-15  Martin Baulig  <martin@ximian.com>
3489
3490         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
3491         if our parent is not a dynamic type.
3492
3493 2005-06-15  Martin Baulig  <martin@ximian.com>
3494
3495         * class-internals.h (MonoTypeNameFormat): New enum.
3496
3497         * class.c
3498         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
3499         (mono_type_get_full_name): Removed.
3500         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
3501         argument instead of the boolean's.
3502
3503         * icall.c (ves_icall_System_MonoType_getFullName):
3504         Added `gboolean assembly_qualified'.    
3505
3506         * reflection.h
3507         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
3508
3509         * reflection.c (mono_reflection_parse_type): Parse the new type
3510         name format.
3511
3512 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3513
3514         * icall.c: no need to convert from utf16 to utf8 and then back again
3515         after the call to GetLogicalDrives.
3516
3517 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3518
3519         * icall.c: frombase64. Fix problems exposed by new tests.
3520
3521 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3522
3523         * icall.c: added internal calls for converting char [] and strings in
3524         base64 into byte [].
3525
3526 2005-06-10  Martin Baulig  <martin@ximian.com>
3527
3528         * class.c (mono_class_create_generic_2): Read the nested classes
3529         from the metadata rather than from `gklass->nested_classes' since
3530         `gklass' might not be initialized yet.
3531
3532 2005-06-09  Duncan Mak  <duncan@novell.com>
3533
3534         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
3535         all public headers. Fixes #74919.
3536
3537 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
3538
3539         * domain.c: The key for proxy_vtable_hash is now a pointer
3540         array. Added new GHashFunc and GCompareFunc functions for this.
3541
3542         * class.h: The list of interfaces in MonoRemoteClass is known in
3543         advance and can't grow (we create a new MonoRemoteClass if needed),
3544         so now the interface array can be allocated together with
3545         MonoRemoteClass.
3546         
3547         * object.c: Added a new method create_remote_class_key.
3548         Fixed mono_remote_class so it does not depend on
3549         mono_upgrade_remote_class.
3550         Removed extend_interface_array.
3551         Added new method clone_remote_class(), which makes a copy of a remote
3552         class and adds a new interface or class to it.
3553         mono_upgrade_remote_class() now creates a new remote class (or gets
3554         it from the cache) if an vtable upgrade is needed. In this way
3555         we make sure that other objects sharing the same remote class
3556         don't get the new vtable with unwanted interfaces.
3557         
3558         * object-internals.h:
3559         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
3560         
3561         * marshal.c: Track changes in mono_upgrade_remote_class().
3562
3563 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
3564         * icall.c: Add runtime methods for obtaining members of inflated
3565         class, which were created from supplied non-inflated members. It
3566         is used in internal Get{Method,Constructor,Field} methods in
3567         System.Type
3568
3569 2005-06-09  Martin Baulig  <martin@ximian.com>
3570
3571         * reflection.c
3572         (mono_reflection_bind_generic_method_parameters): Fix #75169.
3573
3574 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3575         * reflection.c (mono_image_basic_init): Define
3576         Version in MonoDynamicAssembly. 
3577         
3578 2005-06-08  Martin Baulig  <martin@ximian.com>
3579
3580         Fix #75136.
3581
3582         * loader.c
3583         (mono_method_signature_full): New public method; takes a
3584         `MonoGenericContext *'.
3585         (find_method): Use mono_method_signature_full() and pass the
3586         klass'es context to it.
3587
3588         * class.c (mono_class_is_inflated_method): Use
3589         mono_method_signature_full() and pass the context to it.
3590
3591 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
3592
3593         * object.c: add proper locking in mono_remote_class_vtable(),
3594         fixes possible memory corruption.
3595
3596 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
3597
3598         * marshal.c (mono_remoting_marshal_init): set
3599         initialized after initialization.
3600
3601 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
3602
3603         * locales.c : hush.
3604
3605 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
3606
3607         * object.c (extend_interface_array): fix really silly
3608         memory corrupting / comparison bug.
3609
3610 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3611
3612         * reflection.c: Functions added to support the creation
3613         of CustomAttributeData, which includes Attribute data
3614         used by ReflectionOnly methods.
3615
3616         * reflection.h:  mono_reflection_get_custom_attrs_data and
3617          mono_custom_attrs_data_construct added (functions exposed).
3618
3619          * icall.c: Added mono_reflection_get_custom_attrs_data
3620          as icall.
3621         
3622 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
3623
3624         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
3625         lupus's request.
3626
3627 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
3628
3629         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
3630
3631         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
3632         dynamic DllImportAttribute.
3633
3634         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
3635         dynamic DllImportAttribute.
3636
3637         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
3638         Fixes #75162.
3639
3640 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3641
3642         * threads.c: avoid segfault when an unstarted thread is aborted.
3643
3644 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
3645
3646         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
3647         Returns the name and version of the runtime for reporting.
3648
3649 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3650
3651         * appdomain.c: bump corlib version.
3652         * object-internals.h: new field in MonoReflectionAssembly.
3653
3654 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3655
3656         * object-internals.h: Carlos forgot to add this field.
3657
3658 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3659
3660         * icall.c: Added create_version to create instances
3661         of Version of MonoReflectionAssemblyName. This change helps
3662         the AssemblyName tests to keep running fine.
3663         
3664 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
3665   
3666         * object.c (mono_method_return_message_restore): A somehow less
3667         intrusive fix for #75138.
3668
3669 2005-06-03  Raja R Harinath  <rharinath@novell.com>
3670
3671         * object.c (mono_method_return_message_restore): Fix computation
3672         of expected number of out args.
3673
3674 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
3675
3676         * reflection.c (mono_image_get_method_info): Fix the case when the
3677         charset is empty.
3678
3679 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
3680
3681         * object.c: Added missing null check in
3682           mono_method_return_message_restore.
3683
3684 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
3685
3686         * reflection.c (mono_image_get_method_info): Handle the case when
3687         dllentry is empty.
3688
3689 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
3690
3691         * object.c: When creating the vtable for a proxy, take into account
3692         all inherited interfaces, not only the ones registered in
3693         iclass->interfaces. This fixs bug #74996.
3694         Also, in mono_method_return_message_restore, verify that the array
3695         of out args has the expected lengh.
3696
3697 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3698
3699         * socket-io.c: update the timeout in Poll when the call is interrupte.
3700
3701 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3702
3703         * socket-io.c: support abort/suspend in Select_internal after last
3704         change.
3705
3706 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3707
3708         * threadpool.c: remove warning.
3709
3710 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3711
3712         * icall.c:
3713         * socket-io.[ch]: Select_internal uses poll() now when available, thus
3714         removing the 1024 limit from select(). Runtime part of the fix for
3715         bug #71203.
3716
3717 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3718
3719         * socket-io.c: when resolving the addresses for the same
3720         host returned by gethostname(), get the local IPs from the interface
3721         list. Loopback addresses are discarded if the are interfaces up with
3722         non-loopback ones. Fixes bug #63265.
3723
3724 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
3725
3726         * appdomain.c, verify.c, object-internals.h, reflection.c:
3727         bumped corlib number to 36, and added new extra_flags field
3728         to ReflectionMethodBuilder and friends.  Fixes #75060.
3729
3730 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
3731
3732         * gc.c: register a new weak link only if the object is non-null
3733         (fixes bug#75047).
3734
3735 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
3736
3737         * culture-info.h : short time pattern too.
3738
3739 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
3740
3741         * culture-info.h : expand long time pattern string length.
3742
3743 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
3744
3745         * culture-info-table.h : update (more French date format; #72788).
3746
3747 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
3748
3749         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
3750         the method is static. Fixes #75029.
3751
3752 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
3753
3754         * reflection.c: Update the table_idx field of method builders after
3755         saving the module, since it can change. This is a workaround for
3756         bug #74914. 
3757
3758 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
3759
3760         * culture-info-table.h : update (additional French date format).
3761
3762 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
3763
3764         * icall.c (ves_icall_type_Equals): Revert last change.
3765         
3766         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
3767
3768         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
3769
3770 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
3771
3772         * class-internals.h: Added executioncontext_class field to 
3773         MonoDefaults structure.
3774         * domain.c: Cache System.Threading.ExecutionContext class in 
3775         mono_defaults.
3776         * object.c: Capture the ExecutionContext for asynchroneous calls in
3777          mono_async_result_new.
3778         * object-internals.h: Added execution_context and original_context 
3779         fields to MonoAsyncResult. Added execution_context to MonoThread.
3780         * security-manager.c|.h: Added mono_get_context_capture_method to 
3781         return the capture method (if required by the security manager or by
3782         the framework version used).
3783         * threadpool.c: Apply capture (if present) ExecutionContext in 
3784         mono_async_invoke and revert to original context after it completes.
3785
3786 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
3787
3788         * culture-info-table.h : updated (real hacky solution for zh-CHT).
3789
3790 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
3791
3792         * culture-info-table.h : zh-CHT related workaround.
3793
3794 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
3795
3796         * marshal.c (emit_marshal_custom): Add some error checking and call the
3797         methods in the ICustomMarshaler interface. Fixes #74875.
3798         
3799         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
3800         native->managed wrappers.
3801
3802 2005-05-12  Martin Baulig  <martin@ximian.com>
3803
3804         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
3805         here and use the loader lock.
3806
3807         * mono-debug.c: Properly lock when the debugger is not attached.
3808         (mono_debug_init): Release the initial lock if we're not running
3809         in the debugger.
3810
3811 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
3812
3813         * marshal.c (emit_marshal_custom): Pass through NULL values without
3814         calling the custom marshalling routines.
3815
3816         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
3817         conversion in structures. Fixes #74882.
3818
3819 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
3820
3821         * culture-info-table.h : zh-* cultures were missing.
3822
3823 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
3824
3825         * threads.c: Added a new event background_change_event which is signaled
3826         when a thread changes its background mode.
3827         Moved here several checks previously done in managed code. The checks
3828         require the thread lock, and using the thread lock in managed code
3829         can result in deadlocks.
3830         Merged Start_internal and Thread_internal into a single method. Now 
3831         Thread_internal does all work of creating and starting a thread.
3832         Added icalls for setting and getting the state of the object. Moved from
3833         managed code to avoid locking there.
3834         Added wait_for_tids_or_state_change() which is called instad of
3835         wait_for_tids when waiting for non-backround threads to end. This method
3836         will return if one of the threads ends or the background_change_event
3837         is signaled.
3838         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
3839         the background mode. This method signals the background_change_event
3840         event.
3841         * icall.c:
3842         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
3843         removed Start_internal.
3844         
3845 2005-05-11  Martin Baulig  <martin@ximian.com>
3846
3847         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
3848         to order of some fields to get proper alignment on 64-bit machines.
3849
3850 2005-05-11  Martin Baulig  <martin@ximian.com>
3851
3852         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
3853         changes as they're broken and completely fuck up the debugger.
3854
3855         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
3856
3857 2005-05-10  Martin Baulig  <martin@ximian.com>
3858
3859         * reflection.c (mono_reflection_generic_class_initialize): Don't
3860         call mono_class_setup_parent() here.
3861
3862 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3863
3864         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
3865         send/receive timeout use an integer in milliseconds. We were using a
3866         struct timeval.
3867
3868 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3869
3870         * locales.c:
3871         (internal_get_cultures): reserve the first slot of the array for the
3872         InvariantCulture, which will be filled in managed code.
3873
3874 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
3875
3876         * reflection.c (mono_image_fill_module_table): Initialize the
3877         GENERATION field as well.
3878
3879 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3880
3881         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
3882         Monitor.Enter on the object.
3883
3884 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
3885
3886         * threads.c: Enable the wait for running threads when exiting.
3887         * icall.c: Suspend all threads before exiting.
3888
3889 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
3890
3891         * assembly.c (mono_assembly_load_reference): Fix warning.
3892
3893 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3894
3895         * threadpool.c: changed the default number of threads per cpu. From now
3896         on, the default will be 20 + (5 * number of cpus) instead of 50.
3897
3898 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
3899
3900         * loader.c (mono_method_get_signature_full): Add locking here.
3901
3902 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
3903
3904         * appdomain.c: Moved methods for parsing and freeing assembly
3905         names to assembly.c.
3906         * assembly.c, domain-internals.h: Created public methods for parsing
3907         assembly names. Fixed mono_assembly_load_with_partial_name:
3908         it now finds the best match, taking into account the version,
3909         token and culture specified in the partial name. Also return
3910         the latest version if no version information is specified.
3911
3912 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
3913
3914         * threadpool.c: replace check for SocketAsyncCall class.
3915
3916 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3917
3918         * threadpool-internals.h:
3919         * Makefile.am: added threadpool-internals.h
3920
3921         * threadpool.c: call mono_unhandled_exception on exceptions not handled
3922         that happen in threadpool threads (tested on MS).
3923         (mono_thread_pool_remove_socket): new function that dispatch any pending
3924         AIO call on a socket that is closing. By now only epoll really needs it,
3925         as select/poll wake up when the socket closes.
3926
3927
3928         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
3929
3930 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
3931
3932         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
3933
3934 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
3935
3936         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
3937
3938 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
3939
3940         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
3941         has an abort request, convert it into a suspend request.
3942
3943 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
3944
3945         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
3946         warning for the usage of `UnmanagedFunctionPointerAttribute' which
3947         is not supported yet.
3948
3949 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3950
3951         * image.c: register assemblies loaded from data (bundles) in the loaded
3952         assemblies hash. Fixes bug #74772.
3953
3954 2005-04-29  Martin Baulig  <martin@ximian.com>
3955
3956         * class.c (mono_type_get_name_recurse): Update to the new naming
3957         schema from the latest .NET 2.x beta2.
3958         (mono_class_setup_vtable_general): If we're a generic instance,
3959         copy the vtable from our generic type definition and inflate all
3960         the methods in it.
3961
3962         * loader.c (find_method): Update to the new naming schema from the
3963         latest .NET 2.x beta2.
3964
3965 2005-04-29  Raja R Harinath  <harinath@gmail.com>
3966
3967         * class.c (mono_class_init): Add a mono_loader_unlock to the
3968         #74734 fix.
3969
3970 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
3971
3972         * icall.c (ves_icall_System_Environment_Exit): Remove the 
3973         suspend_all_other_threads () call for the time being, since it can hang.
3974
3975         * threads.c (mono_thread_manage): Similarly, disable the waiting for
3976         the background threads to exit, since it can also hang.
3977
3978         * class.c (mono_class_init): Applied patch from Ankit Jain 
3979         (radical@gmail.com). Avoid pending init errors when a field refers
3980         to a nested class using a typeref. Fixes #74734.
3981
3982         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
3983         this for dynamic modules.
3984
3985 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3986
3987         * threads.c: don't wait for threads that are in the process of aborting
3988         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
3989         and waiting for background threads to finish. This makes xsp and
3990         mod-mono-server exit without random length delays and/or hangs.
3991
3992 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3993
3994         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
3995
3996 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
3997
3998         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
3999         dynamic types to prevent infinite loops. Fixes #74727.
4000
4001         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
4002         ..._is_assignable_to.
4003
4004 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
4005
4006         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
4007
4008 2005-04-25  Martin Baulig  <martin@ximian.com>
4009
4010         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
4011
4012         * domain.c
4013         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
4014
4015         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
4016
4017         * reflection.c (build_compressed_metadata): Set metadata header
4018         version to 2.0.
4019
4020 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
4021
4022         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
4023         number into an integral and a decimal part. Fixes #70473.
4024
4025         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
4026
4027 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
4028
4029         * culture-info-table.h : reflected the latest locale-builder output.
4030
4031 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4032
4033         * threadpool.c: check for SuspendRequested too when deciding if
4034         mono_thread_interruption_checkpoint should be called.
4035
4036 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4037
4038         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
4039         * threads.c: remove interruption_mutex and use Interlocked instead. When
4040         suspending all the threads, wait for all the suspended events at once.
4041         If we're shutting down and get an APC that is going to be queued,
4042         call mono_thread_execute_interruption immediately, as the thread might
4043         be sleeping on a pthread condition or mutex.
4044
4045         * icall.c: call mono_runtime_set_shutting_down before suspending the
4046         threads.
4047
4048         Fixes bug #74693. And now xsp is happier when exiting.
4049
4050 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
4051
4052         * loader.c (mono_stack_walk): Fix #74690.
4053
4054 2005-04-22  Martin Baulig  <martin@ximian.com>
4055
4056         * mono-debug.h (MonoDebugMethodJitInfo): Added
4057         `MonoDebugMethodJitInfo *jit'.
4058
4059         * mono-debug.c (mono_debug_read_method): Cache the
4060         MonoDebugMethodJitInfo in `address->jit'.
4061         (mono_debug_free_method_jit_info): New public method.
4062
4063 2005-04-22  Martin Baulig  <martin@ximian.com>
4064
4065         * class.c (mono_class_is_assignable_from): Disallow
4066         type parameter -> interface.
4067
4068 2005-04-21  Dick Porter  <dick@ximian.com>
4069
4070         * threads.c (mono_thread_create): Turn an assertion into an error.
4071
4072 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
4073
4074         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
4075         
4076         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
4077         Fix some gcc 4.0 warnings.
4078
4079 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
4080
4081         * file-io.c: fix alt dir separator char on unix systems
4082         and cleanup (fixes bug #71214).
4083
4084 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
4085
4086         * marshal.c: Use CALLVIRT instead of CALL when dispatching
4087         a call to a remote domain, since the method may be an
4088         interface method in the client domain. This fixes bug #74192.
4089
4090 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4091
4092         * threadpool.c: recv/send are now performed before going back to managed
4093         code to save one transition.
4094
4095 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4096
4097         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
4098
4099         * metadata/threadpool.c: removed hack to workaround the bug above.
4100
4101         Fixes bug #74618.
4102
4103 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
4104
4105         * reflection.c reflection.h: Fix handling of parameter defaults in
4106         dynamic methods. Also fixes handling of parameter attributes.
4107         Fixes #74609.
4108
4109         * mono-debug.c (mono_debug_close_image): Fix warning.
4110
4111 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4112
4113         * socket-io.h: replaced old unused field with new 'blocking'.
4114         * threadpool.c: restore socket blocking state on windows(tm).
4115
4116 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
4117
4118         * icall.c: don't return the codebase in the AssemblyName[] returned by
4119         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
4120         * object-internals.h: Removed FIXME (fields were presents) and fixed
4121         versioncompat declaration.
4122
4123 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4124
4125         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
4126         not closed, so don't cleanup when it happens.
4127
4128 2005-04-13  Chris Toshok  <toshok@ximian.com>
4129
4130         * mono-debug-debugger.h: change prototype for
4131         mono_debugger_lookup_type.
4132
4133         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
4134         this function, although it should probably be named
4135         mono_debugger_init_type.
4136
4137 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4138
4139         * threadpool.c: fix non-AIO case.
4140
4141 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
4142
4143         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
4144         the built-in profiler to measure just JIT compilation times.
4145
4146 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4147
4148         * threadpool.c: the epollfd might be closed by another thread at
4149         any time, so ignore EBADF at treat it as a "we're closing" sign.
4150
4151 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4152
4153         * threadpool.c: release the semaphores with a count equals to the number
4154         of working threads in both IO and regular pools. Fixed typo that messed
4155         up the count of IO pool threads. Don't initialize the pipe handles if
4156         we're using epoll.
4157
4158 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4159
4160         * threadpool.c: some systems don't like a NULL when deleting the socket
4161         from epoll.
4162
4163 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4164
4165         * threadpool.c: fix semaphore allocation.
4166
4167 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4168
4169         * threadpool.c: added epoll() based implementation for asynchronous IO
4170         that is used instead of the default poll() when available.
4171         It can be disabled by setting MONO_DISABLE_AIO.
4172
4173 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4174
4175         * threadpool.c: windows needs 'closesocket' and instead of returning
4176         0 when the stream is closed while in select, it returns -1. Fixes bug
4177         #74573.
4178
4179 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
4180
4181         * class.c (class_compute_field_layout): Fix the regression caused by
4182         the previous try.
4183
4184 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4185
4186         * threadpool.c: separate pool for socket async. IO.
4187         * threadpool.h: mono_max_worker_threads is not a global any more.
4188
4189 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
4190
4191         * class.c (class_compute_field_layout): Fix #74549.
4192
4193 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4194
4195         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
4196         use 2 connected sockets instead.
4197
4198 2005-04-08  Miguel de Icaza  <miguel@novell.com>
4199
4200         * mono-config.c: Add new entry point for mkbundle
4201         mono_config_parse_memory. 
4202
4203 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4204
4205         * threadpool.c: removed another unused function.
4206
4207 2005-04-08  Ankit Jain  <radical@corewars.org>
4208
4209         * reflection.c (get_default_param_value_blobs): Add 'types'
4210         parameter to get the types encoded in the constant table.
4211         (mono_param_get_objects): Use the type from the constant table,
4212         not the type of the parameter, when creating default values.
4213         Handle null default values correctly.
4214
4215 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4216
4217         * file-io.c:
4218         * file-io.h:
4219         * threadpool.c:
4220         * threadpool.h:
4221         * icall.c:
4222         * socket-io.c: removed dead code for async IO.
4223
4224 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4225
4226         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
4227
4228         * threadpool.c: intercept socket async. calls and pass them to a thread
4229         that is polling and dispatching the job items to the threadpool as
4230         socket become ready. Fixes bugs #71217, #71933.
4231
4232         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
4233         between char and short/ushort arrays.
4234
4235         * socket-io.c: remove dead code.
4236
4237 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
4238
4239         * locales.c,
4240           icall.c : removed InternalToUpper_Comp() and
4241           InternalToLower_Comp().
4242
4243 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
4244
4245         * char-conversions.h : The tables were incorrectly generated. Should
4246           be generated against invariant culture.
4247
4248 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
4249
4250         * object.c (mono_runtime_invoke_array): Fix return value when 
4251         passing pre-created valuetype objects to ctors.
4252
4253         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
4254         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
4255         Fixes #74338.
4256
4257 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
4258
4259         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
4260         only used with --security and hides the wrong corlib version error.
4261
4262 2005-03-30  Joshua Tauberer  <tauberer@for.net>
4263
4264         * class.c: Changed mono_class_name_from_token so that types
4265         outside of a namespace don't have an initial period.  Improved
4266         the g_warning message used in _mono_class_get when loading
4267         fails.
4268         * assembly.c: In mono_assembly_load_reference, when an assembly
4269         can't be found, "No such file or directory" is misleading and
4270         unhelpful because a few paths were checked for the presence of
4271         the assembly.  When that happens (ENOENT), display a nicer
4272         message indicating the directories that were searched.  In all
4273         cases, the warning is made easier to read for non-hackers.
4274
4275 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
4276
4277         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
4278         project/solution.
4279         * appdomain.h|domain.c: Removed inline from functions.
4280         * appdomain.c: Reduced warnings when compiling on windows.
4281         * icall.c: Fixed output_debug declaration to gunichar2*.
4282         * mono-config.c: Reduced warnings when compiling on windows.
4283         * rand.c: Added missing "windows.h". Added missing return value.
4284         * rawbuffer.c: Added missing winsock2.h for windows.
4285         * sysmath.h: Added mono-compiler.h header to allow/ease 
4286         compilation with non-GCC compilers.
4287         * threads.c: Fixed declarations to compile with VS.NET C compiler.
4288         Removed cast warnings.
4289
4290         Adapted from the work of J Lothian (for VC6).
4291
4292 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
4293
4294         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
4295         from default_path.
4296
4297 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
4298
4299         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
4300         the 2.0 profile.
4301
4302 2005-03-27  Raja R Harinath  <harinath@gmail.com>
4303
4304         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
4305         has to be in $(exec_prefix).  $(prefix) is for arch-independent
4306         stuff, and it would probably use $(prefix)/share rather than
4307         $(prefix)/lib.
4308
4309 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4310
4311         * console-io.c: added 2 includes that might be missing.
4312
4313 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
4314
4315         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
4316         profile.
4317
4318         * reflection.c (create_custom_attr): Allocate the params array using
4319         alloca so it gets GC tracking.
4320
4321 2005-03-23  Chris Toshok  <toshok@ximian.com>
4322
4323         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
4324         out some spew.
4325
4326 2005-03-24  Raja R Harinath  <rharinath@novell.com>
4327
4328         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
4329         changes to pick up any changes in prefix, etc.
4330
4331 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
4332
4333         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
4334         
4335         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
4336         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
4337
4338 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
4339
4340         * class-internals.h object-internals.h class.c reflection.c: Extend the
4341         mono_lookup_dynamic_token () function to return the class of the
4342         token as well. 
4343
4344         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
4345         well. Fixes #73848.
4346
4347 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
4348
4349         * security-manager.c: Skip inheritance checks for intra-corlib
4350         class inheritance and method overrides. This skips a lot of checks
4351         and (anyway) permissions cannot work until corlib is loaded.
4352
4353 2005-03-23  Martin Baulig  <martin@ximian.com>
4354
4355         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
4356         MONO_TYPE_GENERICINST.  
4357
4358 2005-03-23  Martin Baulig  <martin@ximian.com>
4359
4360         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
4361
4362 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
4363
4364         * class.c: added locking comments to some functions.
4365         Cache the interface offsets arrays (saves about 20 KB
4366         of runtime memory in a typical app).
4367         Reduce the time overhead in mono_class_setup_supertypes ().
4368
4369 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
4370
4371         * icall.c: speedup and fix leaks in GetMethodsByName and
4372         GetPropertiesByName.
4373
4374 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
4375
4376         * reflection.c: some locking fixes.
4377
4378 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
4379
4380         * metadata.c: added missing break in case statement.
4381
4382 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
4383
4384         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
4385         typedbyref return values. Fixes #73941.
4386
4387 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
4388
4389         * security-manager.c|h: Added demandunmanaged method and 
4390         suppressunmanagedcodesecurity class to MonoSecurityManager.
4391         Renamed aptc class to allowpartiallytrustedcallers.
4392
4393 2005-03-17  Martin Baulig  <martin@ximian.com>
4394
4395         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
4396
4397 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4398
4399         * file-io.c: disabled file async. IO using aio_*. It uses the
4400         threadpool now. Workaround for bug #73718.
4401
4402 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
4403
4404         * assembly.h, mono-config.c: added code to deal with bundled configs
4405         for bundled assemblies.
4406
4407 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
4408
4409         * *.c, private.h: cleanup, removing old private.h header file.
4410
4411 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
4412
4413         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
4414         and throw_on_unmappable_char attributes.
4415
4416 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
4417
4418         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
4419         _ProcessName_internal.
4420
4421 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
4422
4423         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
4424         #73631.
4425
4426         * icall.c threads.c threads-types.h: Remove slothash icalls as they
4427         are no longer used.
4428
4429 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
4430
4431         * object.c (compute_class_bitmap): Add support for generics. Fixes
4432         #73527.
4433
4434 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
4435
4436         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
4437
4438 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4439
4440         * filewatcher.c: commented out the code for windows watcher, as we don't
4441         use it (we use the managed implementation instead).
4442
4443 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
4444
4445         * object-internals.h (MonoThread): Remove 'unused1' field.
4446
4447         * appdomain.c: Bump corlib version.
4448
4449         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
4450
4451         * reflection.c (mono_reflection_create_runtime_class): Remove the
4452         AssemblyBuilder.Save optimization since it causes too many problems.
4453
4454 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
4455
4456         * exception.c|h: Added mono_get_exception_reflection_type_load to
4457         create a ReflectionTypeLoadException object.
4458         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
4459         to return NULL is a InheritanceDemand fails during reflection. Updated
4460         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
4461         ReflectionTypeLoadException if an InheritanceDemand fails during 
4462         reflection. Added icall mapping for GetLinkDemandSecurity.
4463         * security-manager.c|h: Added ves_icall_System_Security_
4464         SecurityManager_GetLinkDemandSecurity internal call to return the
4465         class and methods permissions set for a LinkDemand. Removed unused
4466         fields in MonoSecurityManager.
4467
4468 2005-03-10  Martin Baulig  <martin@ximian.com>
4469
4470         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
4471         it's a generic instance.
4472
4473 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
4474
4475         * reflection.c (mono_get_object_from_blob): Applied patch from
4476         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
4477
4478         * class.c (mono_class_is_assignable_from): Another try at fixing 
4479         #73469 without breaking anything.
4480
4481 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
4482
4483         * class.c: (mono_class_is_assignable_from): Revert the last changes
4484         since they don't work with generics.
4485         
4486         * class.c (mono_class_is_assignable_from): Fix build bustage.
4487
4488         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
4489         the managed IsAssignableFrom method. Fixes #73469.
4490
4491         * reflection.c (mono_reflection_call_is_assignable_from): New helper
4492         function.
4493
4494 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
4495
4496         * object.c (mono_load_remote_field_new): Fix returning uninitialized
4497         memory when the remoting callback does not sets the out arguments.
4498         Fixes #73007.
4499
4500         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
4501         by mistake.
4502
4503         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
4504
4505         * object-internals.h (MonoStackFrame): Sync with managed object layout.
4506
4507         * appdomain.c: Bump corlib version.
4508
4509 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
4510
4511         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
4512         function.
4513
4514         * threads.c (mono_thread_attach): Detect threads which are not started
4515         by the GC pthread wrappers.
4516
4517 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
4518
4519         * icall.c: Added new icall for RNG.
4520         * rand.c|h: Added new icall to open the RNG. This allows to share a 
4521         single handle on Linux to access /dev/urandom and fix #73183.
4522
4523 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
4524
4525         * object.c: setting the new vtable in a transparent proxy object must
4526         not change the GC descriptor.
4527
4528 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
4529
4530         * object.c: fixed compilation without GCJ support.
4531         * reflection.c: for runtime-created types ensure klass->has_references
4532         is correct (bug #73215).
4533
4534 2005-03-02  Martin Baulig  <martin@ximian.com>
4535
4536         * class.c (mono_class_is_assignable_from): Make this work if
4537         `oklass' is a generic instance; fixes #72831.
4538
4539 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
4540
4541         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
4542         with hasthis set.
4543         
4544         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
4545
4546         * marshal.c: Reorganize native->managed marshalling code to also use
4547         the emit_marshal_... functions.
4548
4549 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
4550
4551         * object.c: typed allocs have issues with bitmap sizes > 30,
4552         so check for max_set >= 30.
4553
4554 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
4555
4556         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
4557         managed code. Fixes #73012.
4558
4559         * metadata.h (MonoMarshalSpec): Add elem_mult field.
4560
4561         * metadata.c reflection.c: Load/Emit elem_mult as well.
4562         
4563         * metadata.h (MonoMarshalSpec): Add comment.
4564
4565         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
4566
4567         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
4568         num_elem to -1 if not given.
4569
4570         * object-internals.h (MonoReflectionMarshal): Add has_size field.
4571
4572         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
4573         given values.
4574
4575 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
4576
4577         * null-gc.c (mono_gc_free_fixed): Was not compilable.
4578
4579 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
4580
4581         * reflection.c (encode_marshal_blob): Encode param_num field as well.
4582
4583         * object-internals.h (MonoReflectionMarshal): Add param_num field.
4584
4585 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
4586
4587         * object.c: generalized the reference bitmap creation
4588         and added hooks for the new GC.
4589         * class-internals.c: removed the gc_bitmap field from MonoClass.
4590
4591 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
4592
4593         * domain.c: help the compiler to produce better code
4594         in mono_jit_info_table_find ().
4595
4596 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
4597
4598         * object.c: make all allocations look typed.
4599
4600 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
4601
4602         * socket-io.c: load Mono.Posix if it's not loaded already
4603         (fixes bug#73033).
4604
4605 2005-02-24  Martin Baulig  <martin@ximian.com>
4606
4607         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
4608         * reflection.c (dup_type): Likewise.
4609
4610 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
4611
4612         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
4613         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
4614
4615 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
4616
4617         * domain.c, threads.c, object-internals.h: make the critical thread
4618         local vars use the fast access mode (even when we're compiled in
4619         a lib). Provide accessors to be used by the jit during codegen.
4620
4621 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4622
4623         * appdomain.c: Changed hook functios behavior to include
4624         support for the reflection only assemblies. Some icalls were changed
4625         to support the mentioned assemblies too. Signatures of static methods
4626         try_assembly_resolve and real_load now have an additional parameter:
4627         refonly.
4628
4629         * assembly.c: General changes to mono_assembly_ methods to support
4630         reflection only api. Functions mono_assembly_open, mono_assembly_load,
4631         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
4632         suffix, to support an additional gbool parameter to specify whether
4633         the assembli is reflection only or not. Created some new hook functions 
4634         to add support for reflection only assemblies. Signatures of static 
4635         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
4636         have now an additional parameter: refonly.
4637
4638         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
4639         indicating whether the assembly is reflection only or not.
4640
4641         * exception.c: Add mono_get_exception_invalid_operation.
4642
4643         * icall.c: Throw an InvalidOperationException when trying to invoke
4644         a property/method/event, or trying to set/get the value of a field.
4645         Also add an icall to retrieve the ref_only flag to the
4646         MonoReflectionAssembly.
4647
4648 2005-02-23  Chris Toshok  <toshok@ximian.com>
4649
4650         Part of fix for #72827.
4651         * mono-debug.c (mono_debug_add_method): add lexical block data to
4652         the info we write.  Kind of a hack at the moment - we copy the
4653         lexical block info from the MonoDebugMethodInfo to the
4654         MonoDebugMethodJitInfo here, before writing it.
4655         (mono_debug_read_method): read the lexical block info.
4656
4657         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
4658
4659         * debug-mono-symfile.h: add lexical block support.
4660
4661         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
4662         support.
4663
4664 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
4665
4666         * loader.c (mono_lookup_pinvoke_call): Fix warning.
4667
4668         * object.c (mono_runtime_free_method): Call mono_free_method () and
4669         put the TODOs there.
4670
4671         * loader.c (mono_free_method): Free up most memory allocated for 
4672         dynamic methods.
4673
4674 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
4675
4676         * reflection.c: properly flag a Type argument to a
4677         named custom attr value (bug #72248).
4678
4679 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
4680
4681         * reflection.c: reduce code duplication in named custom
4682         attribute encoding.
4683
4684 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
4685
4686         * reflection.c: properly encode custom attrs of type object
4687         (bug #72649).
4688
4689 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
4690
4691         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
4692
4693 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
4694
4695         * socket-io.c: load System.dll if it's not loaded already
4696         (bug #72850 and #70477).
4697
4698 2005-02-21  Martin Baulig  <martin@ximian.com>
4699
4700         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
4701         generic instances.
4702
4703 2005-02-21  Martin Baulig  <martin@ximian.com>
4704
4705         * reflection.c (mono_image_build_metadata): We also need to
4706         "fixup" the MethodImpl table after we computed the final method
4707         indices.  Call fixup_methodimpl() to do that.
4708         (fixup_methodimpl): New private method.
4709
4710 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
4711
4712         * assembly.c: special case mscorlib.dll (bug#72536),
4713         patch from Carlos Alberto Cortez.
4714
4715 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
4716
4717         * threads-types.h threads.c: Fix build bustage.
4718
4719         * threads.c: Use a union for long<->double conversions.
4720
4721         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
4722         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
4723
4724         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
4725         containing the checkpoint call with NOT_TAKEN.
4726         
4727         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
4728         checkpoint before pushing the arguments, so they won't have to be
4729         spilled to stack.
4730
4731 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
4732
4733         * domain.c, assembly.c, domain-internals.h: make some data
4734         const and relocation-free.
4735
4736 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
4737
4738         * object.c, appdomain.c, class-internals.h: introduce the
4739         MonoClassRuntimeInfo structure to hold the info needed to
4740         use a class at runtime. Made mono_class_vtable() lock-free
4741         for all the appdomains.
4742
4743 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
4744
4745         * metadata-internals.h, image.c: introduce a per-image mempool to
4746         be used for memory that has the same lifetime as the image.
4747
4748 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
4749
4750         * domain.c: In mono_init_internal(), instead of selecting the first
4751         runtime version supported by an executable, get a list of all
4752         supported versions and select the one for which an mscorlib exists
4753         (since even if the runtime supports a given version, it doesn't mean
4754         that the framework for that version is installed).
4755         Modified get_runtimes_from_exe to support this behavior.
4756         In supported_runtimes, added information about additional system
4757         assembly versions.
4758         
4759         * assembly.c: Added support for more than one system assembly version
4760         per runtime version. Updated the assembly list.
4761         In mono_assembly_remap_version, removed the initial version check,
4762         since we don't know to which version we need to compare until we
4763         get the version set on which the assembly is based.
4764         Moved the code for loading corlib into the new method
4765         mono_assembly_load_corlib(), so it can be used by the initialization
4766         code.
4767         
4768         * domain-internals.h: Updated data structures and added declaration
4769         for mono_assembly_load_corlib.
4770
4771 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
4772
4773         * reflection.c (resolve_object): Fix the creation of the signature in 
4774         the SignatureHelper case.
4775
4776         * assembly.c (mono_assembly_remap_version): Fix binary search.
4777         
4778 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
4779  
4780         * class.c: Added inheritance check when a method is overloaded (from a
4781         virtual method or when implementing an interface) and when a class is
4782         inherited. Added functions to set a failure for a class and to 
4783         retreive the exception from a failure.
4784         * class-internals.h: Added fields to MonoClass to keep the exception
4785         information status for inheritance (or other exceptions) to be thrown
4786         later (i.e. not at load time).
4787         * object.c: Throw the inheritance SecurityException when a type is to 
4788         be created with either class or method inheritance violations.
4789         * reflection.c|h: Fix when getting declsec from a class. Removed 
4790         unrequired code for class. Improved sanity in parameter naming.
4791         * security-manager.c|h: Added functions to check for class and method
4792         inheritance.
4793
4794 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
4795
4796         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
4797         and has_finalize in dynamic types as well.
4798
4799 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
4800
4801         * culture-info-table.h : fixed currency format for en-GB (and so on).
4802
4803 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
4804
4805         * gc.c: ensure the GC handles never have 0 as a value.
4806
4807 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
4808
4809         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
4810         a pointer to a struct to unmanaged code. Fixes #72625.
4811
4812 2005-02-16  Martin Baulig  <martin@ximian.com>
4813
4814         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
4815
4816 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
4817
4818         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
4819
4820 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
4821
4822         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
4823
4824         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
4825         UnmanagedFunctionPointerAttribute, use it for determining calling convention
4826         etc. Fixes #71471.
4827
4828         * reflection.c (mono_custom_attrs_get_attr): New helper function.
4829
4830         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
4831
4832 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
4833
4834         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
4835         changes to make the current context a field in MonoThread.
4836
4837 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
4838
4839         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
4840         the last change.
4841         
4842         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
4843         extracted from mono_marshal_get_native_wrapper.
4844
4845         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
4846         to create wrappers around native functions.
4847
4848         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
4849         delegates for arbitrary function pointers. Fixes #71472.
4850
4851 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
4852
4853         * threads.c: cleaned up the code a little.
4854
4855 2005-02-15  Martin Baulig  <martin@ximian.com>
4856
4857         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
4858         the data table.
4859
4860         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
4861         allocate larger chunks if needed.
4862
4863 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
4864
4865         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
4866         in by mistake.
4867
4868 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
4869
4870         * domain.c: keep the domains in an array and ensure the domain ids
4871         are kept small, so they can be used as indexes to domain-specific data
4872         with a small memory overhead.
4873
4874 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
4875
4876         * icall.c: Handle byref types in Type icalls. Fixes #72544.
4877
4878 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
4879
4880         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
4881
4882 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
4883
4884         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
4885
4886         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
4887         values.
4888
4889         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
4890         
4891 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
4892
4893         * domain-internals.h: add the hashtable here.
4894
4895         * class-internals.h: Remove `info' from MonoMethod
4896
4897         * domain.c: Add a new hashtable, jit_trampoline_hash
4898
4899 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
4900
4901         * object.c: don't set the value of static fields
4902         (fixes bug#72494).
4903
4904 2005-02-11  Martin Baulig  <martin@ximian.com>
4905
4906         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
4907         (mono_debug_add_method): Silently ignore the method if it's too big.
4908         (mono_debug_add_type): Likewise.
4909
4910 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
4911
4912         * threads.c, appdomain.c: remove #ifdefs from the code.
4913
4914 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
4915
4916         * metadata-internals.h: Added flags to MonoAssembly to cache the most
4917         common security informations. This allows us to stay in unmanaged code
4918         when doing LinkDemand and it's special cases (except for the first 
4919         time for initialization). The flags a very much used with --security.
4920         * reflection.c|h: Added code to get declarative security attributes 
4921         for LinkDemand and InheritanceDemand. This required to refactor the
4922         existing code for Demand.
4923         * security-manager.c|h: Added new method fields for the special cases
4924         of LinkDemand.
4925
4926 2005-02-10  Martin Baulig  <martin@ximian.com>
4927
4928         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
4929         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
4930
4931 2005-02-10  Martin Baulig  <martin@ximian.com>
4932
4933         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
4934         debugging code; this is almost a complete rewrite.
4935
4936         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
4937
4938 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
4939
4940         * domain.c, object.h: expose mono_string_equal () and 
4941         mono_string_hash ().
4942         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
4943         it's implemented in managed code.
4944
4945 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
4946
4947         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
4948         lo leak objects between appdomains.
4949
4950 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
4951
4952         * assembly.c: old compilers compilation fix from 
4953         robertj@gmx.net (Robert Jordan).
4954
4955 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
4956
4957         * class-internals.h: Little reminder for the future.
4958
4959         * debug-helpers.c: Fix up wrapper_type_names
4960
4961 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
4962
4963         * image.c, metadata-internals.h: when loading an image from a file,
4964         mmap all of it and use the same codepaths as when using a
4965         in-memory image: the code is simpler and we use less memory
4966         (both writable and readonly).
4967
4968 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
4969
4970         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
4971         API to alloc runtime data structures that need to be tracked by the
4972         GC and contain pointers.
4973         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
4974         make the code more readable and eventually use a different GC.
4975
4976 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
4977
4978         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
4979         for out arguments.
4980         
4981 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
4982
4983         * object.c: In release_type_locks(), don't release the cctor lock
4984         if it has already been released. This fixes a crash in the
4985         thread5 test.
4986
4987 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
4988
4989         * gc.c, marshal.c, icall.c: register a delegate for finalization
4990         only when the native function pointer has been allocated for it.
4991
4992 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
4993
4994         * object.c: cleaned up some code, allocate objects that are
4995         pointer free with the atomic malloc variant. Allocate memory
4996         for static data from the mempool if it's pointer-free.
4997         Allocate the bounds array at the end of the array data, when needed.
4998         * object-internals.h, object.h: move a private function in a private
4999         header.
5000         * class.c: handle missing case in tracking references in fields.
5001
5002 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
5003
5004         * class.c, class-internals.h: keep track if a type has
5005         reference fields in either the instance or static fields.
5006
5007 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
5008
5009         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
5010         and renamed to MonoRuntimeInfo. Added fields to store the expected
5011         framework assembly version. Changed mono_get_framework_version and
5012         mono_get_runtime_version for a single mono_get_runtime_info method.
5013         
5014         * assembly.c: Added method to remap system assembly versions to the
5015         current executing runtime version. Removed old mapping code.
5016         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
5017         
5018         * icall.c, reflection.c: Track api changes.
5019
5020 2005-02-06  Miguel de Icaza  <miguel@novell.com>
5021
5022         * loader.c (method_from_memberref): Improve error reporting,
5023         produce the class name instead of the typeref/typedef index. 
5024
5025 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
5026
5027         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
5028
5029 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
5030
5031         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
5032         stdcall and charset name mangling.  Reorganize the code and add
5033         some tracing stuff.
5034
5035 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
5036
5037         * monodiet.c: More iters!
5038
5039         * marshal.c: Iter usage.
5040
5041         * icall.c: Iter usage.
5042
5043         * object.c: Use iters.
5044
5045         * debug-helpers.c: More iters
5046
5047 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
5048
5049         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
5050         under win32.
5051
5052 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
5053
5054         * mono-debug-debugger.c: use iters
5055
5056         * class.c, class-internals.h: mono_class_setup_events is static
5057         now
5058
5059         * All callers: use iters
5060
5061 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
5062
5063         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
5064         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
5065
5066 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
5067
5068         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
5069
5070         * marshal.h: Add prototypes for ldfld/stfld_remote.
5071
5072         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
5073         this is called during startup.
5074         
5075 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
5076
5077         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
5078         MonoThreadsSync struct private in monitor.c. Changed the way
5079         MonoThreadsSync is allocated so it's faster and there is no
5080         need to keep track of it with a finalizer and it uses less memory.
5081         This also finally allows us to allocate mono objects as ptrfree when
5082         there are no reference fields.
5083
5084 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
5085
5086         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
5087         disappearing link to the GC interface and use them to simplify
5088         the gchandles code.
5089
5090 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
5091
5092         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
5093         stfld_remote which call mono_load/store_field_new. This allows methods
5094         calling ldfld/stfld wrappers to be AOTed.
5095
5096         * console-io.c: Include sys/filio.h under solaris.
5097         
5098         * console-io.c: Include curses.h if needed correctly.
5099
5100 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
5101         
5102         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
5103         method->klass as well.
5104
5105         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
5106
5107         * class.c (mono_class_init): Switch on lazy initialization of 
5108         methods.
5109
5110         * class.c (mono_class_get_finalizer): Handle the case when the 
5111         finalizer is inherited.
5112
5113 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5114
5115         * console-io.c: <curses.h> is needed by term.h on solaris.
5116
5117 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
5118
5119         * icall.c, class-internals.h, monodiet.c, class.c: Remove
5120         mono_class_setup_properties where possible. Remove this ftn from
5121         the header file, and make it static.
5122
5123 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
5124
5125         * loader.c: Add missing setup_... call.
5126
5127         * class.c: Add missing setup_... calls.
5128
5129         * class.c (mono_class_init): Switch on lazy initialization of 
5130         the generic vtable.
5131         
5132         * class.c (mono_class_init): Fix generics broken by the recent changes.
5133
5134         * monodiet.c (handle_type): Add missing setup_... calls.
5135
5136         * class.c: Back out garbage in previous patch.
5137         
5138         * class.c: Add missing setup_... calls.
5139
5140         * class.c (mono_class_get_method_from_name_flags): Avoid calling
5141         mono_class_setup_methods () if possible.
5142
5143         * class-internals.h (MonoClass): Add 'has_cctor' flag.
5144
5145         * class-internals.h (MonoCachedClassInfo): New structure.
5146
5147         * class.c: Initialize properties and events fields of MonoClass lazily.
5148
5149         * class.c: Add infrastructure for lazily initializing the methods and
5150         vtable fields of MonoClass. Not yet used.
5151
5152         * class.c (mono_class_get_finalizer): New helper function.
5153
5154         * class.c: Add infrastructure for loading some class related data from
5155         an AOT file.
5156
5157         * object.c: Add infrastructure for initializing the vtable from data
5158         in the AOT file.
5159
5160         * gc.c (run_finalize): Use mono_class_get_finalizer ().
5161
5162         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
5163         appropriate initialization function before accessing parts of the
5164         MonoClass structure.
5165
5166         * marshal.c: Fix warnings.
5167         
5168         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
5169
5170         * mono-debug-debugger.c (get_exception_message): Use 
5171         mono_class_get_method_from_name_flags ().
5172
5173 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
5174
5175         * reflection.c, appdomain.c: Replace a few manual searches that
5176         Zoltan missed. (Paolo approved this part of my initial patch).
5177
5178 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
5179
5180         * profiler.c: disable recording statistical events at report time.
5181
5182 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
5183
5184         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
5185         to byteswap arrays of enum values, too (bug #72080).
5186
5187 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
5188
5189         * appdomain.c (set_domain_search_path): Allow this to be called if
5190         domain->setup is not yet set.
5191
5192         * loader.c (mono_method_get_index): New helper function.
5193
5194         * loader.c reflection.c: Use mono_method_get_index ().
5195
5196         * class.c (mono_class_get_method_from_name_flags): New helper method.
5197
5198         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
5199         this.
5200
5201         * class.c (mono_class_get_cctor): New helper method.
5202
5203         * string-icalls.c object.c class.c marshal.c reflection.c: Use
5204         mono_class_get_method () to look up methods.
5205
5206 2005-02-01  Miguel de Icaza  <miguel@novell.com>
5207
5208         * console-io.c: Fix the build, this should work on Windows.
5209
5210 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
5211
5212         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
5213         be set to null to keep things valid
5214
5215 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5216
5217         * icall.c: added Console 2.0 icalls.
5218         * Makefile.am: added console-io.[ch]
5219         * console-io.[ch]: internal calls for Console 2.0 API.
5220
5221 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
5222
5223         * class.c: make sure we consider all the interfaces
5224         when calculating max_interface_id (bug found by
5225         Jeroen Frijters running ikvm).
5226
5227 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
5228
5229         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
5230         valuetype fields to null.
5231
5232         * object.c (set_value): Ditto. Fixes #71669.    
5233
5234 2005-01-31  Martin Baulig  <martin@ximian.com>
5235
5236         * metadata.c (mono_metadata_has_generic_params): New public
5237         function; checks whether something is a generic method.
5238
5239 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
5240
5241         * appdomain.c: fix infinite recursion when adding assemblies.
5242
5243 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
5244
5245         * object.c: Fix small typo to return all items for Environment.
5246         GetCommandLineArgs.
5247
5248 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
5249
5250         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
5251         reflection.c: more domain and assembly-unload related fixes
5252         and memory leaks plugs.
5253
5254 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
5255
5256         * 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.
5257
5258 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
5259
5260         * loader.c (mono_method_signature): Make this method lazy
5261         (mono_get_method_from_token): Don't computate the signature here.
5262
5263         Doing this saves quite a bit of memory. I got 90 kb on starting up
5264         monodoc. It should also save some disk reads on startup.
5265
5266         * *: MonoMethod->signature might be NULL now. You *MUST* use
5267         mono_method_signature.
5268
5269 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
5270
5271         * object.c (mono_runtime_get_main_args): Return an array from the
5272         current domain here. Fixes #71938.
5273
5274 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
5275
5276         * monitor.c: formatting changes to comply with the
5277         mono coding style and remove #ifdefs from the code.
5278
5279 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
5280
5281         * metadata.c, private.h: remove some unneeded data
5282         and use a more compact representation for table schemas.
5283
5284 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
5285
5286         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
5287         to get a better distribution in hash tables.
5288         * *.c: use mono_aligned_addr_hash() where appropriate.
5289         * assembly.c: make var static.
5290
5291 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
5292
5293         * domain-internals.h: Put MonoJitInfo on a diet.
5294
5295         * domain.c: Fix a warning.
5296
5297 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
5298
5299         * gc.c: rework the gc handles code to reuse handles
5300         when freed.
5301
5302 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
5303
5304         * domain.c: fixed long standing bug in mono_string_equal() which
5305         was brought to light with the ldstr changes.
5306
5307 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
5308
5309         * reflection.c: Remove warning by adding missing include for marshal.h
5310
5311 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
5312
5313         * domain.c, object.c: change the ldstr_table to hold
5314         MonoString* as keys: makes the runtime isinterned lookup
5315         faster and simplifies memory management.
5316
5317 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
5318  
5319         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
5320         possible to add imperative security checks before calling the icall.
5321         * reflection.c: Return security attributes on the original MonoMethod
5322         (and not the wrapped one). This fix permissions on icalls.
5323
5324 2005-01-25  Dick Porter  <dick@ximian.com>
5325
5326         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
5327         the check for mktime() support actually test the mktime() return
5328         value.  "Fixes" bug 71682, though the output is still different to
5329         MS.
5330
5331 2005-01-25  Martin Baulig  <martin@ximian.com>
5332
5333         * class.c (mono_class_is_assignable_from): Make this work for
5334         generic instances.
5335
5336 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
5337
5338         * marshal.c (mono_string_utf8_to_builder)
5339         (mono_string_builder_to_utf16): We might not have ownership of the
5340         string. In thise case, we need to create a new buffer.
5341
5342         * object-internals.h (mono_stringbuilder_capacity): sb->str might
5343         be null, in which case, use the default capacity.
5344
5345 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
5346
5347         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
5348         GC events to the profiler.
5349
5350 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
5351
5352         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
5353         if you don't want the GC to run.
5354
5355 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
5356
5357         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
5358         start providing a GC API and keeping different implementations in
5359         their own file.
5360         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
5361
5362 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
5363
5364         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
5365         mmap rather than allocating a huge buffer.
5366         (mono_debug_close_mono_symbol_file): Free the buffer allocated
5367         above.
5368
5369 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
5370
5371         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
5372         and CheckExecutionRights.
5373         * reflection.c|h: Keep the index of the declarative security to be 
5374         used, instead of the pointer, when AOT compiler is used. Also add 
5375         class initialization when requesting demands.
5376         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
5377         CheckExecutionRights. Both properties are now FALSE by default, and
5378         unmodifiable, unless the --security option is used.
5379
5380 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
5381
5382         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
5383         reflection.c: properly refcount images and assemblies, many leaks fixed.
5384
5385 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5386
5387         * threadpool.c: increase the timeout for threads in the thread pool to
5388         10s.  Fixes bug #67159.
5389
5390 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
5391
5392         * class-internals.h: Sun's compiler insists on explicit
5393         signed on bit fields to handle then correctly.
5394
5395 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
5396
5397         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
5398         Make the size of the array fit only the number of invalid path
5399         chars that we have.
5400
5401         * class.c (_mono_class_get): Improve the error reporting when a
5402         class referenced is not found, to assist debugging. 
5403
5404 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
5405
5406         * threads.c: fix off-by-one error.
5407         * domain.c: free data allocated in the domain.
5408
5409 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
5410
5411         * reflection.c (mono_method_body_get_object): Fill out exception info
5412         as well.
5413
5414         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
5415         structure.
5416         
5417 2005-01-19  Martin Baulig  <martin@ximian.com>
5418
5419         * loader.c (mono_get_method_constrained): Make this work again.
5420
5421 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
5422
5423         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
5424         guint16 to match the managed side.
5425
5426         * reflection.c (mono_reflection_body_get_object): Fill out local
5427         variables array.
5428
5429         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
5430         as well.
5431
5432         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
5433         'local_var_sig_token'.
5434
5435 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
5436
5437         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
5438         System.Drawing.
5439
5440         * reflection.c (mono_method_body_get_object): Handle abstract and
5441         runtime methods.
5442
5443 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
5444
5445         * marshal.c, loader.c, class-internals.h, reflection.c:
5446         store the emthod data for a wrapper in an array instead of a list.
5447
5448 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
5449
5450         * marshal.c: change the code to allocate memory more
5451         conservatively for method wrappers.
5452
5453 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
5454
5455         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
5456         fields from MonoClass to the marshal info structure where they belong.
5457
5458 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
5459
5460         * class.c, object.c, class-internals.h, marshal.c: rearrange
5461         some fields and tweak some types to lower memory usage.
5462
5463 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
5464
5465         * threads.c (signal_thread_state_change): Handle the case when the
5466         target thread is the current thread.
5467
5468         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
5469
5470         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
5471         emit_ptr_to_object_conv. 
5472
5473         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
5474         marshalling. Fixes #71352.
5475
5476 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
5477
5478         * metadata.h, blob.h: move table enum to blob.h so it can be included
5479         in any header.
5480         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
5481         cut the size of MonoImage/MonoDynamicImage.
5482
5483 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
5484
5485         * profiler.c (mono_profiler_install_simple): Fix default arguments.
5486
5487 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
5488
5489         * reflection.c, reflection.h, icall.c: add a function to check
5490         if an attribute type is defined for a metadata object.
5491
5492 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
5493
5494         * object-internals.h: Added some needed fields from StringBuilder class.
5495         * marshal.c: Set the maxCapacity when creating a StringBuilder.
5496
5497 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
5498
5499         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
5500         threads before shutting down the runtime.
5501
5502         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
5503
5504 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
5505
5506         * object-internal.h, threads.c: implement stacksize and 
5507         parameterized thread start functionality (requires
5508         matching corlib). Marked broken code for later removal.
5509
5510 2005-01-12  Martin Baulig  <martin@ximian.com>
5511
5512         * class-internals.h (MonoGenericClass): Moved the `initialized'
5513         flag to MonoDynamicGenericClass, removed `init_pending'.
5514         (MonoGenericInst): Added `is_reference' flag.
5515
5516 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
5517
5518         * reflection.c (mono_image_create_pefile): Only set the pe_offset
5519         inside the MSDOS header. Fixes #71201.
5520
5521         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
5522         gc thread.
5523         (mono_domain_finalize): Ditto.
5524
5525 2005-01-12  Martin Baulig  <martin@ximian.com>
5526
5527         * class.c (mono_get_shared_generic_class): Use the cache for
5528         non-dynamic generic classes.
5529
5530         * class-internals.h (mono_class_create_generic_2): Removed
5531         function prototype, this function is now static inside class.c.
5532
5533         * class.c (mono_class_create_generic_2): Made this static, only
5534         call it from mono_class_init() and mono_class_setup_parent().
5535         (collect_implemented_interfaces_aux): Call mono_class_init() on
5536         the interfaces we collect.
5537         (mono_class_setup_vtable): Call mono_class_init (class->parent).
5538
5539 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
5540
5541         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
5542         it a real thread handle.
5543
5544         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
5545         MonoJitExceptionInfo, since each catch clause needs its own variable.
5546         
5547 2005-01-11  Dick Porter  <dick@ximian.com>
5548
5549         * image.c (mono_pe_file_open): New variant on mono_image_open()
5550         that does not set up the CLI metadata; used for FileVersionInfo so
5551         it can get the data for windows binaries too.
5552         
5553         * process.c (process_read_string_block): Don't read off the end of
5554         the StringTable block.
5555
5556         These both fix bug 70766.
5557
5558 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
5559
5560         * gc.c: set some fields to NULL at GC cleanup time.
5561         * threads.c: if we quit the main thread, call exit ().
5562
5563 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
5564
5565         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
5566
5567 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
5568
5569         * threads.h, threads.c, object.c: added accessor and settor for
5570         main_thread. Handle it specially when exiting from it: wait
5571         for other foreground threads to exit.
5572
5573 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
5574
5575         * process.c, verify.c: remove some bloat.
5576
5577 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
5578
5579         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
5580         the calling convention to cdecl under win32.
5581
5582 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
5583
5584         * object.c (mono_object_get_size): New function to get the size of
5585         an object instance.
5586
5587         * profiler.c (simple_allocation): Use above.
5588
5589 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
5590
5591         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
5592         ves_icall_System_AppDomain_getRootDomain (as it's not required to
5593         get an appdomain by it's id and we can't assume the root's id is 0).
5594         * domain-internals.h: Change the function prototype to match.
5595         * icall.c: Change the icall table for AppDomain.
5596
5597 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
5598
5599         * locales.c (string_invariant_compare_char): Only compute
5600         GUnicodeTypes in the case where we need them.  Test for ordinality
5601         first and return if so.
5602
5603         From the commit:
5604
5605                 /*
5606                  * FIXME: here we must use the information from c1type and c2type
5607                  * to find out the proper collation, even on the InvariantCulture, the
5608                  * sorting is not done by computing the unicode values, but their
5609                  * actual sort order.
5610                  */
5611
5612 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
5613
5614         * loader.c: for P/Invoke methods, allow the "Internal" shared
5615         library name to refer to the calling process symbol namespace.
5616
5617 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
5618
5619         * Makefile.am: Add the security manager to the build.
5620         * security-manager.c|h: New. Initialization of the security manager.
5621
5622 2005-01-07  Dick Porter  <dick@ximian.com>
5623
5624         * threads.c: 
5625         * monitor.c: Update thread state during Monitor and WaitHandle
5626         waits.  Fixes bug 71031.
5627
5628 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
5629
5630         * reflection.c (property_encode_signature): Correctly handle when the
5631         property has no methods.
5632
5633 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
5634
5635         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
5636         
5637         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
5638         fields from mb, not rmb. Fixes #71017.
5639
5640         * marshal.c (emit_ptr_to_str_conv): Add support for 
5641         ByValTStr -> string conversion. Fixes #71015.
5642
5643         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
5644
5645         * mempool.c (mono_mempool_contains_addr): New helper function.
5646
5647 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
5648
5649         * metadata.c (mono_metadata_compute_size): Fix size calculation of
5650         HasSematics encoded fields.
5651         
5652         * metadata.c (mono_type_to_unmanaged): Improve error message for 
5653         invalid string marshalling.
5654
5655         * metadata.c: Fix warnings.
5656         
5657 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
5658
5659         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
5660         profiler support.
5661
5662 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
5663
5664         * domain.c object.c domain-internals.h: Revert part of r38077 since the
5665         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
5666         tests.
5667
5668 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
5669
5670         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
5671         so methods containing these can be AOTed.
5672
5673 2005-01-03  Martin Baulig  <martin@ximian.com>
5674
5675         * loader.c (find_method): Removed the hack for generic instances.
5676         (method_from_memberref): If our parent is a generic instance, pass
5677         its generic type definition to find_method() and then inflate the
5678         method.
5679         (mono_get_method_constrained): Pass the generic type definition to
5680         find_method() and inflate the method later.
5681
5682         * class-internals.h (MonoStats): Added `generic_class_count'.
5683
5684         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
5685         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
5686
5687         * reflection.c (mono_custom_attrs_from_params): Don't ignore
5688         generic type definitions.
5689
5690 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
5691
5692         * loader.c icall.c: Fix warnings.
5693
5694 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
5695
5696         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
5697         blittable types. Fixes #70864.
5698
5699 2004-12-29  Martin Baulig  <martin@ximian.com>
5700
5701         * icall.c
5702         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
5703
5704         * reflection.c (mono_method_get_object): Create a
5705         "System.Reflection.MonoGenericMethod" for inflated methods; don't
5706         call mono_get_inflated_method().
5707
5708         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
5709
5710 2004-12-27  Martin Baulig  <martin@ximian.com>
5711
5712         * class-internals.h (MonoMethod): Added `is_inflated' flag.
5713         (MonoMethodInflated): Added `inflated' field.
5714
5715         * class.c (mono_class_inflate_generic_method): Don't really
5716         inflate the method here; just set the `is_inflated' flag in the
5717         MonoMethod.
5718         (mono_class_get_inflated_method): Actually inflate the method here
5719         if it's not already inflated; we use the MonoMethodInflated's new
5720         `inflated' field as a cache.
5721
5722 2004-12-26  Martin Baulig  <martin@ximian.com>
5723
5724         * class.c
5725         (inflate_generic_class): Moved some code out of inflate_generic_type().
5726         (mono_class_inflate_generic_method): If we're already inflated,
5727         inflate the context and use the declaring method; ie. make sure
5728         the declaring method of an inflated method is always the generic
5729         method definition.
5730         (mono_class_create_from_typedef): Create
5731         `class->generic_container->context->gclass'.
5732
5733 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
5734
5735         * metadata-internals.h, marshal.c, reflection.c: More
5736         MonoGHashTable->GHashTable.
5737
5738         * domain-internals.h, class.c: Change MonoGHashTable's into
5739         GHashTables for some cases where no gc stuff is used
5740
5741         All users: update apis
5742
5743 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
5744
5745         * metadata.c (builtin_types): Make this `const'. Makes this get
5746         put into the shareable section.
5747         (mono_metadata_init): Casts to make gcc happy.
5748
5749 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
5750
5751         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
5752
5753 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
5754
5755         * icall.c: Added an internal call to retrieve the position and length
5756         of assembly-level declarative security attributes (RequestMinimum, 
5757         RequestOptional and RequestRefuse). This is used by the Assembly class
5758         to re-create the corresponding permission sets.
5759
5760 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
5761
5762         * marshal.c: fix the stelemref wrapper to be type correct
5763         (and faster).
5764
5765 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
5766
5767         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
5768         to do key & 0x7fffffff. Hashtable already does this. It just
5769         results in longer code.
5770
5771 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
5772
5773         * appdomain.c: Bump corlib version.
5774         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
5775         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
5776         * reflection.c|h: Add functions to get declarative security infos
5777         (blob position and length) for assemblies, classes and methods.
5778
5779 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
5780
5781         * reflection.c: sort the constant table (bug #70693).
5782
5783 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
5784
5785         * object-internals.h, threads.c, domain.c: add accessors for
5786         the MonoThread and MonoDomain tls keys.
5787
5788 2004-12-18  Martin Baulig  <martin@ximian.com>
5789
5790         * class.c (inflate_generic_type): If we're inflating a generic
5791         instance, set `ngclass->context->container = context->container';
5792         ie. the container we inflated into.
5793
5794         * metadata.c (mono_metadata_parse_generic_param): Reflect above
5795         inflate_generic_type() changes.
5796
5797 2004-12-17  Martin Baulig  <martin@ximian.com>
5798
5799         * class-internals.h
5800         (MonoGenericClass): Replaced `MonoType *generic_type' with
5801         `MonoClass *generic_class'.  Removed `dynamic_info'; if
5802         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
5803         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
5804
5805 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
5806
5807         * exception.c (mono_exception_from_token): New helper function.
5808
5809 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
5810
5811         * assembly.c (mono_assembly_load_with_partial_name): Call 
5812         mono_assembly_loaded before invoking the preload hooks. Fixes
5813         #70564.
5814
5815         * object-internals.h (MonoThread): Change culture_info and 
5816         ui_culture_info into an array.
5817
5818         * threads.c: Cache culture info objects from more than one appdomain.
5819
5820         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
5821         current UI culture.
5822
5823 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
5824
5825         * threads.h threads.c appdomain.c: Clear the culture_info field of
5826         all threads during unloading if they point to an object in the dying
5827         appdomain.
5828
5829 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
5830
5831         * culture-info.h (TextInfoEntry): New struct
5832         * object-internals.h: sync with managed
5833         * locales.c: fill the `text_info_data' field
5834         * culture-info-tables.h: update
5835
5836 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
5837
5838         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
5839         collector.
5840
5841 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
5842
5843         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
5844         (ves_icall_ModuleBuilder_getMethodToken): Ditto
5845
5846 2004-12-12  Martin Baulig  <martin@ximian.com>
5847
5848         * mono-debug-debugger.c (write_type): If we're an enum and the
5849         builtin types have already been initialized, call mono_class_init().
5850
5851 2004-12-11  Martin Baulig  <martin@ximian.com>
5852
5853         * metadata.c (mono_metadata_load_generic_params): Added
5854         `MonoGenericContainer *parent_container' argument; automatically
5855         compute `container->is_method'; pass the correct owner to
5856         get_constraints().      
5857
5858         * reflection.c (compare_genericparam): Sort the GenericParam table
5859         according to increasing owners. 
5860
5861 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
5862
5863         * profiler.c: allow disabling the default profiler.
5864
5865 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
5866
5867         * decimal.c, icall.c: allow disabling System.Decimal support.
5868
5869 2004-12-09  Marek Safar <marek.safar@seznam.cz>
5870
5871         * reflection.c: Add support for null attribute arguments.
5872
5873 2004-12-09  Martin Baulig  <martin@ximian.com>
5874
5875         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
5876         names to get rid of compiler warnings.
5877
5878 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
5879
5880         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
5881         mono_marshal_load_type_info (). Fixes #69625.
5882         (mono_marshal_get_ptr_to_struct): Likewise.
5883
5884 2004-12-08  Martin Baulig  <martin@ximian.com>
5885
5886         * mono-debug.h: Bumped version number to 47.
5887
5888         * mono-debug-debugger.c
5889         (mono_debugger_event_handler, mono_debugger_event): Take two
5890         guint64 arguments insteed of a gpointer and a guint32.  
5891
5892 2004-12-08  Martin Baulig  <martin@ximian.com>
5893
5894         * debug-mono-symfile.h
5895         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
5896         `address' to `native_offset'.
5897
5898 2004-12-08  Martin Baulig  <martin@ximian.com>
5899
5900         * class.c (mono_class_create_from_typespec): Only inflate if we
5901         either have `context->gclass' or `context->gmethod'.
5902
5903 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
5904
5905         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
5906
5907         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
5908
5909         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
5910
5911         * reflection.c (mono_assembly_get_object): Remove the workaround put
5912         in for the release.
5913         
5914         * appdomain.c: Use the corlib_internal field from MonoAssembly.
5915
5916         * appdomain.c: Bump corlib version.
5917
5918         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
5919         be visible in other appdomains.
5920
5921 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
5922
5923         * threads.c: Interlocked inc and dec for longs were messed up,
5924         use a KISS based impl for this. Fixes 70234
5925
5926 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
5927
5928         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
5929
5930 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
5931
5932         * icall.c: fix to follow policy not to allow struct
5933         arguments in icalls.
5934
5935 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5936
5937         * process.c: make the patch that handles spaces in file paths work
5938         on mono/windows too.
5939
5940 2004-12-06  Martin Baulig  <martin@ximian.com>
5941
5942         * class.c (mono_class_create_generic): Call
5943         mono_class_setup_supertypes() if we're dynamic.
5944         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
5945
5946 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
5947
5948         * object-internals.h: Add new fields to MonoThread.
5949
5950         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5951
5952         * icall.c threads-types.h threads.c: Add new icalls.
5953
5954         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
5955
5956         * object-internals.h (MonoReflectionAssembly): Sync object layout with
5957         managed side.
5958
5959         * appdomain.c: Bump corlib version.
5960
5961         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
5962         internal assemblies. Fixes #69181.
5963
5964 2004-12-05  Martin Baulig  <martin@ximian.com>
5965
5966         * class.c (mono_class_inflate_generic_signature): Make this a
5967         no-op if `context' is NULL or we don't have any type parameters;
5968         also copy `sentinelpos'.        
5969
5970 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
5971
5972         * image.c: Add unbox_wrapper_cache.
5973
5974         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
5975
5976         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
5977         function generator.
5978         
5979         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
5980         Fixes #70173.
5981
5982         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
5983         
5984 2004-12-04  Martin Baulig  <martin@ximian.com>
5985
5986         * loader.c (mono_method_get_signature_full): New public function;
5987         like mono_method_get_signature(), but with an additional
5988         `MonoGenericContext *' argument.
5989
5990         * class.c (mono_class_inflate_generic_signature): Formerly known
5991         as inflate_generic_signature(); make this public.
5992
5993 2004-12-04  Martin Baulig  <martin@ximian.com>
5994
5995         * metadata.c
5996         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
5997         instead of a `MonoGenericContainer *'.  
5998         (mono_metadata_parse_array_full): Likewise.
5999         (mono_metadata_parse_signature_full): Likewise.
6000         (mono_metadata_parse_method_signature_full): Likewise.
6001         (mono_metadata_parse_generic_inst): Likewise.
6002         (mono_metadata_parse_generic_param): Likewise.
6003         (mono_metadata_parse_mh_full): Likewise.
6004         (mono_type_create_from_typespec_full): Likewise.
6005
6006 2004-12-03  Martin Baulig  <martin@ximian.com>
6007
6008         * class-internals.h (MonoGenericContainer): Replaced the
6009         `MonoGenericContext * pointer with a `MonoGenericContext'
6010         structure and made it the first element.
6011
6012 2004-12-03  Martin Baulig  <martin@ximian.com>
6013
6014         * class.c
6015         (inflate_generic_type): Set the `context->container' when creating
6016         a new MonoGenericContext.
6017         (mono_class_inflate_generic_method): Likewise.
6018         (mono_class_create_from_typespec): Just use `context->container'
6019         to get the container.
6020
6021         * loader.c (method_from_methodspec): Set `context->parent' from
6022         `context->container' - and if that's a method container, use its
6023         parent.  Also set the `context->container' when creating a new
6024         MonoGenericContext.
6025         (mono_get_method_from_token): Use just `context->container' to get
6026         the container.
6027
6028         * metadata.c (do_mono_metadata_parse_generic_class): Also set
6029         `gclass->context->container'.
6030
6031         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
6032         the `context->container' when creating a new MonoGenericContext.
6033
6034 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
6035
6036         * reflection.c (compare_genericparam): Sort params with identical
6037         owner by their number. Fixes gen-111 on sparc.
6038
6039 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
6040
6041         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
6042         around the domain changes.
6043
6044         * appdomain.c (mono_domain_unload): Handle the case when the thread
6045         calling Unload is itself being aborted during unloading. Fixes #70022.
6046
6047         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
6048
6049         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
6050         checkpoint_func as an icall so it gets a wrapper.
6051         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
6052         in the cross-appdomain wrappers too.
6053
6054         * threads.c (mono_thread_has_appdomain_ref): Make this public.
6055
6056         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
6057
6058         * reflection.c: Fix some memory leaks.
6059         
6060 2004-12-02  Martin Baulig  <martin@ximian.com>
6061
6062         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
6063
6064         * metadata.c (generic_class_cache): New static hashtable.
6065         (mono_metadata_lookup_generic_class): New public method.
6066
6067 2004-12-02  Martin Baulig  <martin@ximian.com>
6068
6069         * class.c (mono_class_create_from_typedef): Call
6070         mono_class_setup_parent() and mono_class_create_mono_type() before
6071         parsing the interfaces.
6072
6073 2004-12-02  Martin Baulig  <martin@ximian.com>
6074
6075         * metadata.c (generic_inst_cache): New static hashtable.
6076         (mono_metadata_lookup_generic_inst): New public function.
6077         (mono_metadata_inflate_generic_inst): New public function.
6078         (mono_metadata_parse_generic_inst): New public function.
6079         (do_mono_metadata_parse_generic_class): Use the new
6080         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
6081         since this'll also use the cache.
6082
6083         * reflection.c (mono_reflection_bind_generic_method_parameters):
6084         Use mono_metadata_lookup_generic_inst() to use the new cache.
6085
6086         * class.c (inflate_mono_type): Use
6087         mono_metadata_inflate_generic_inst() to inflate a generic
6088         instance; this'll also use the new cache.
6089
6090         * loader.c (method_from_methodspec): Use
6091         mono_metadata_parse_generic_inst() and
6092         mono_metadata_inflate_generic_inst() rather than parsing it
6093         manually, so we can use the new cache.
6094
6095 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
6096
6097         * threads.c (wait_for_tids): Do not incorrectly free threads when 
6098         the wait times out.
6099
6100 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
6101
6102         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
6103         iter->args based on whether parameters are passed in registers (i.e.
6104         MONO_ARCH_REGPARMS is defined)
6105
6106 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
6107
6108         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
6109         the exception message. Fixes #70070.
6110         (method_from_methodspec): Fix warnings.
6111
6112 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6113
6114         * process.c: (complete_path) return the path quoted
6115
6116 2004-12-01  Martin Baulig  <martin@ximian.com>
6117
6118         * class-internals.h (MonoGenericInst): New structure.
6119         (MonoGenericClass): Replaced `type_argc', `type_argv' and
6120         `is_open' with `MonoGenericInst *inst'.
6121         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
6122         `is_open' with `MonoGenericInst *inst'.
6123
6124 2004-11-30  Martin Baulig  <martin@ximian.com>
6125
6126         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
6127
6128         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
6129         to `generic_class_cache'.
6130
6131         * metadata.c
6132         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
6133         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
6134         (mono_generic_inst_is_valuetype): Renamed to
6135         mono_generic_class_is_valuetype().
6136
6137         * class-internals.h
6138         (MonoGenericInst): Renamed to MonoGenericClass.
6139         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
6140         (MonoClass): Renamed `generic_inst' to `generic_class'.
6141         (MonoGenericContext): Renamed `ginst' to `gclass'.
6142
6143         * object-internals.h
6144         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
6145
6146         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
6147         mono_reflection_generic_class_initialize().
6148
6149         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
6150         now known as "System.Reflection.MonoGenericClass".
6151         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
6152
6153 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
6154
6155         * class-internals.h: Added a flag field to MonoClass to cache the
6156         declarative security attributes actions associated with the class.
6157         * domain-internals.h: Added booleans to MonoJitInfo to cache the
6158         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
6159         applicable to the JITted method.
6160         * reflection.c|h: Added functions to extract (as flags) which security
6161         actions are available (declaratively) for a method, class or assembly.
6162         * metadata.c|h: Added functions to search the declarative security
6163         table in the metadata.
6164         
6165 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
6166
6167         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
6168         EXPORTEDTYPES are already in the class name cache, so there is no
6169         need to add extra code here to look at them. Just removes a bit of
6170         cruft.
6171
6172         (ves_icall_System_Environment_get_TickCount): No need for #if
6173         WINDOWS. We already have the code in io-layer.
6174
6175 2004-11-28  Martin Baulig  <martin@ximian.com>
6176
6177         * loader.c
6178         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
6179         Fixes gen-112.cs.
6180
6181 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
6182
6183         * assembly.c (do_mono_assembly_open): Instead of having a
6184         conditional WITH_BUNDLE, incorporate support for bundles here, by
6185         having a global `bundles' variable holding a pointer to the actual
6186         bundles. 
6187
6188         (mono_register_bundled_assemblies): New API call used by the
6189         bundle code. 
6190
6191         See mkbundle.1 for details.
6192         
6193 2004-11-27  Martin Baulig  <martin@ximian.com>
6194
6195         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
6196         the vtable for generic methods.
6197
6198 2004-11-26  Martin Baulig  <martin@ximian.com>
6199
6200         * metadata.c
6201         (mono_metadata_generic_method_hash): New public function.
6202         (mono_metadata_generic_method_equal): Likewise.
6203
6204         * class-internals.h
6205         (MonoGenericContainer): Added `GHashTable *method_hash'.
6206
6207         * reflection.c (ReflectionMethodBuilder): Added
6208         `MonoGenericContainer *generic_container'.
6209         (reflection_methodbuilder_to_mono_method): Don't create a new
6210         MonoGenericContainer each time we're called.
6211         (mono_reflection_bind_generic_method_parameters): Use
6212         `container->method_hash' to cache the results so we don't create a
6213         different method if we're called several times with the same
6214         arguments.
6215
6216         * loader.c (method_from_methodspec): Use the new
6217         `container->method_hash' here, too.
6218
6219 2004-11-26  Martin Baulig  <martin@ximian.com>
6220
6221         * class.c (inflate_generic_signature): Correctly compute
6222         `res->has_type_parameters'.
6223         (mono_class_vtable): Use the `has_type_parameters' flag to
6224         determine whether we're a generic method.
6225
6226         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
6227
6228 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
6229
6230         * object.c (mono_runtime_run_main): Fix a small memory leak.
6231
6232 2004-11-25  Martin Baulig  <martin@ximian.com>
6233
6234         * class.c (set_generic_param_owner): Fixed the loop.
6235
6236 2004-11-25  Martin Baulig  <martin@ximian.com>
6237
6238         * object.c (mono_class_vtable): Don't create any JIT wrappers for
6239         generic methods.
6240
6241 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
6242
6243         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
6244         names. Fixes #69787.
6245
6246 2004-11-24  Martin Baulig  <martin@ximian.com>
6247
6248         * class.c (mono_class_create_generic_2): If we don't have a
6249         `ginst->parent', inflate `gklass->parent' to get our parent.
6250
6251 2004-11-24  Martin Baulig  <martin@ximian.com>
6252
6253         * reflection.c (compare_genericparam): Correctly sort the
6254         GenericParam table; fixes #69779.
6255
6256 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
6257
6258         * reflection.c: When writing a PE file, don't create a huge
6259         buffer in memory. Just write the arrays we have to the file.
6260         This reduces memory usage.
6261
6262         * metadata-internals.h: MonoDynamicStream pefile is no longer used
6263         globally.
6264
6265 2004-11-17  Martin Baulig  <martin@ximian.com>
6266
6267         * class.c (mono_class_init): Don't setup `class->parent' for
6268         dynamic instances; moved this to mono_class_generic_2().
6269         (mono_class_create_generic): Also set `klass->inited' for dynamic
6270         generic instances.
6271         (mono_class_create_generic_2): Don't do anything for dynamic
6272         generic instances.  Set `klass->parent' here and also call
6273         mono_class_setup_parent() here. 
6274
6275         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
6276         `MonoType *parent' argument; set `ginst->parent' before calling
6277         mono_class_create_generic_2(), so we set the correct parent.
6278
6279 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
6280
6281         * reflection.c: allow getting attributes from ModuleBuilder
6282         (used by ikvm).
6283
6284 2004-11-17  Martin Baulig  <martin@ximian.com>
6285
6286         * class.c (mono_class_create_from_typedef): If a type parameter is
6287         inherited from an outer class, set its owner to that class.
6288
6289 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
6290
6291         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
6292           for (int*) written size. This fixes bug #69592.
6293
6294 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
6295
6296         * icall.c: Added IsAuthenticodePresnet internal call.
6297         * image.c|h: New function that check a MonoImage for an Authenticode
6298         signature in the certificate PE data directory.
6299         * security.c|h: New internal call to ask the runtime if an 
6300         Authenticode signature seems referenced in the PE header.
6301
6302 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
6303
6304         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
6305
6306         * reflection.c (mono_image_create_pefile): Free the assembly streams
6307         after writing out the assembly file.
6308
6309         * object.c (mono_runtime_run_main): Fix small memory leak.
6310
6311         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
6312         property access modifiers. Fixes #69389.
6313
6314 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
6315
6316         * domain.c, object.c, object-internals.h, domain-internals.h,
6317         object.h, marshal.c: keep dynamic code info per domain.
6318
6319 2004-11-15  Martin Baulig  <martin@ximian.com>
6320
6321         * class.c (mono_type_get_name_recurse): Put type arguments in
6322         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
6323         see bug #68387.
6324
6325 2004-11-15  Martin Baulig  <martin@ximian.com>
6326
6327         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
6328         (mono_class_setup_vtable): When computing `the_cname' for a
6329         generic instance, don't include the namespace since we'd otherwise
6330         add it twice.
6331
6332 2004-11-15  Martin Baulig  <martin@ximian.com>
6333
6334         * class.c (mono_class_create_generic): Changed return type to void.
6335         (mono_class_create_generic_2): New public function; setup
6336         `class->method', `class->field' and `class->interfaces' here
6337         instead of in mono_class_init().
6338
6339         * class.h (mono_class_create_generic): Moved to class-internals.h.
6340
6341 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
6342
6343         * reflection.c (mono_image_create_pefile): take a file HANDLE.
6344         rather than writing to memory, write to this file. Right now,
6345         we are just writting into a buffer, and copying that. However
6346         we can avoid the buffer later.
6347
6348         (mono_dynamic_stream_reset): new function
6349
6350         * icall.c, object-internals.h: update for the above.
6351
6352 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
6353
6354         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
6355         have been using gc'd memory. First it is slower, unlikely
6356         the comment in the source code said, secondly, it increases
6357         our footprint to do it in the gc.
6358
6359         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
6360         the method so that it does not have to copy to managed code.
6361
6362 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
6363
6364         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
6365
6366 2004-11-12  Martin Baulig  <martin@localhost>
6367
6368         * reflection.c (mono_image_create_token): Allow generic method
6369         definitions here, since they may appear in an `.override'; see
6370         gen-98/gen-99 for an example.
6371
6372 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
6373
6374         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
6375         #69365.
6376
6377         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
6378         descriptive.
6379
6380 2004-11-11  Martin Baulig  <martin@ximian.com>
6381
6382         * class.c (mono_class_setup_vtable): In an explicit interface
6383         implementation, the method name now includes the arity.
6384
6385 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
6386
6387         * object.c (mono_array_full_copy): Fix warning.
6388
6389 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
6390
6391         * appdomain.c: Removed look_for_method_by_name(). Use the new method
6392         mono_class_get_method_from_name() instead.
6393         
6394         * class-internals.h: Added two new types of wrappers. 
6395         Added MonoRemotingTarget enum. Added new trampoline function type, which
6396         takes an additional MonoRemotingTarget value as parameter, so it is
6397         possible to request a trampoline for a specific target.
6398         
6399         * class.c: Added new mono_class_get_method_from_name() method.
6400         
6401         * class.h: In MonoRemoteClass, we can have now to vtables, one for
6402         general remoting sinks and one specific for cross domain calls.
6403         
6404         * debug-helpers.c: Added new wrapper names.
6405         
6406         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
6407         of a remote class.
6408         
6409         * image.c: Porperly delete value objects form the remoting invoke hashtable.
6410         
6411         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
6412         with several other methods (mono_marshal_get_xappdomain_dispatch,
6413         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
6414         and others) can generate a fast remoting wrapper for cross domain calls.
6415         More information can be found in docs/remoting.
6416         Other changes: Removed mono_find_method_by_name, and used
6417         mono_class_get_method_from_name instead.
6418         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
6419         is stored in the remoting invoke hashtable.
6420         
6421         * marshal.h: published the new method for getting the xdomain wrapper,
6422         and also added a method for getting the adequate wrapper for a given
6423         method and target.
6424         
6425         * object-internals.h, object.c: Added a couple of methods for capying and
6426         cloning arrays.
6427         Modified mono_install_remoting_trampoline, which takes the new remoting
6428         trampoline that has a remoting target as parameter.
6429         mono_class_proxy_vtable now also takes a remoting target as parameter, and
6430         will return the most suitable vtable for the target.
6431         Added mono_remote_class_vtable, which returns the vtable of a remote class
6432         (which can be the normal remoting vtable or the xdomain vtable).
6433         
6434         * threads.c: the xdomain invoke and dispatch wrappers must also be
6435         protected against interruptions.
6436
6437 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6438
6439         * icall.c: use memmove in BlockCopyInternal when the source and
6440         destination arrays are the same.
6441
6442 2004-11-09  Martin Baulig  <martin@ximian.com>
6443
6444         * class-internals.h (MonoGenericContainer): Removed `method' and
6445         `signature', replaced them with `is_method' and `is_signature'
6446         flags.  Added `context'.
6447
6448         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
6449         instead of a `MonoGenericContainer *'.
6450
6451         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
6452         for dynamic type parameters.
6453         (mono_metadata_load_generic_params): Setup `container->context'.
6454
6455         * reflection.c (mono_reflection_setup_generic_class): Setup
6456         `tb->generic_container->context'.
6457         (do_mono_reflection_bind_generic_parameters): Use
6458         mono_class_inflate_generic_type() to correctly inflate types,
6459         rather than using our own hack just for MONO_TYPE_VAR.
6460
6461 2004-11-09  Martin Baulig  <martin@ximian.com>
6462
6463         * class.c (mono_class_inflate_generic_method): Small fix; don't
6464         crash here.
6465
6466         * icall.c
6467         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
6468         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
6469         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
6470         (ves_icall_Type_BindGenericParameters): Likewise.
6471         (ves_icall_Type_get_IsGenericInstance): Likewise.
6472         (ves_icall_Type_GetGenericParameterPosition): Likewise.
6473         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
6474         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
6475         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
6476
6477 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
6478
6479         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
6480         assembly versions and public key tokens. Fixes #69113.
6481
6482 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
6483
6484         * metadata.c: fix bug introduced with the type cache changes
6485         on 2004-11-06.
6486
6487 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
6488
6489         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
6490         the MonoClass pointer instead of the token in exception clauses.
6491         * reflection.c: updates for the above and make the code not depend
6492         on the structure of MonoExceptionClause.
6493
6494 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
6495
6496         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
6497         Add support for dynamic assemblies. Fixes #69114.
6498
6499         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
6500
6501 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
6502
6503         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
6504         since most only those methods use it. the code member of
6505         MonoMethodPInvoke was dead, so that can be removed too. Also,
6506         remove inline_count (again, not used), and move slot so that it
6507         can share bits with some other flags. This saves 8 bytes in the
6508         structure and gives us about 50 kb back for mcs helloworld.cs
6509
6510         * *.[ch]: Do naming changes for the above.
6511
6512         * loader.c (mono_method_get_header): Lazily init the header
6513         on first access.
6514         (mono_get_method_from_token): don't init the header here
6515         (mono_free_method): the header may never be allocated
6516
6517         Overall, this saves 150 kb of unmanaged allocations
6518         for mcs helloworld.cs. That accounts for 10% of the unmanaged
6519         memory at runtime.
6520         
6521         * loader.c, loader.h (mono_method_get_header): new accessor.
6522
6523         * *.[ch]: use the above method. Prepares us to lazily load
6524         the header.
6525
6526         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
6527         three warnings, which are actual bugs (see 69206).
6528
6529         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
6530         unused. Saves a cool 4 bytes / method.
6531
6532 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
6533
6534         * metadata.c (builtin_types): Add types for System.Object here.
6535         (mono_metadata_parse_type_full): Cache MonoType*'s that are
6536         for a class or valuetype from klass->this_arg or klass->byval_arg.
6537
6538         On mcs for a hello world, this gets us down from 21836 MonoType's
6539         to 14560.
6540
6541         (mono_metadata_free_type): Account for the above change.
6542
6543 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
6544
6545         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
6546         exception instead of asserting if name is null.
6547         (ves_icall_System_AppDomain_GetData): Ditto.
6548
6549 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
6550
6551         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
6552         EnumBuilder.
6553
6554         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
6555         Return NULL when the domain does not have entry_assembly set.
6556
6557         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
6558         Add a 'resource_modules' argument.
6559         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
6560
6561         * reflection.c (mono_reflection_create_runtime_class): Move setting
6562         of wastypebuilder here, so mono_get_type_object () returns a MonoType
6563         for enums too.
6564
6565         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
6566         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
6567         Throw an ArgumentNullException if 'ptr' is null.
6568
6569         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
6570         assemblies here. Fixes #69020.
6571
6572 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
6573
6574         * reflection.c (build_compressed_metadata): Fix the previous patch for
6575         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
6576         the stack.
6577
6578 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
6579
6580         * assembly.c (mono_assembly_names_equal): Allow a match if one of
6581         the cultures is false. Fixes #69090.
6582
6583         * reflection.c (build_compressed_metadata): Fix invalid memory read 
6584         detected by valgrind.
6585         
6586         * reflection.c (mono_reflection_get_type): Avoid triggering a 
6587         TypeResolve multiple times for the same type. Fixes #65577.
6588
6589 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
6590
6591         * marshal.c: Avoid using ldftn to call managed functions. It is
6592         much slower than just a call.
6593
6594         * reflection.c (mono_module_get_object): free the basename we
6595         allocate here from glib.
6596         
6597         * reflection.c (ensure_runtime_vtable): make sure to free
6598         overrides.  Also, we were allocating an array of MonoMethod not an
6599         array of MonoMethod*.
6600
6601         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
6602
6603         * image.c (mono_image_close): free image->guid here.
6604
6605 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
6606
6607         * reflection.c: Fix some spec conformance issues with the PE file
6608         structures so mcs compiled apps run on the Net 2.0 beta.
6609
6610 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
6611
6612         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
6613         Implement this. Fixes #67264.
6614
6615         * debug-helpers.h debug-helpers.c marshal.c: Move 
6616         mono_find_method_by_name to debug-helpers.c.
6617
6618 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
6619
6620         * object.c (mono_release_type_locks): type_initialization_hash is
6621         a GHashTable.
6622
6623         * reflection.c object.c object-internals.h: Fix warnings.
6624
6625         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
6626         without accessors. Fixes #61561.
6627
6628         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
6629         application base from the root domain if not set. Fixes #65641.
6630         (mono_runtime_init): Fix warning.
6631
6632 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6633
6634         * appdomain.c: call mono_thread_pool_init.
6635         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
6636         of worker threads based on the number of CPUs and the environment
6637         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
6638         for non-windows (windows) systems.
6639
6640 2004-10-27  Chris Toshok  <toshok@ximian.com>
6641
6642         * mono-debug-debugger.c (write_class): don't call mono_class_init
6643         here, as even with the check for (!klass->init_pending), we get
6644         into a situation where we're hitting cycles in class
6645         initialization.  Fixes #68816.
6646
6647 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
6648
6649         * image.c: Avoid overwriting values in the loaded_images_hash when an
6650         assembly is loaded multiple times. Fixes #61152.
6651
6652         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
6653         so multiple satellite assemblies for the same name can be loaded.
6654         Fixes #68259.
6655
6656         * mono_domain_assembly_preload: Actually return the loaded assembly, 
6657         not NULL.
6658
6659         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
6660         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
6661
6662         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
6663         pending finalizers are not invoked after the appdomain has been 
6664         unloaded. Fixes #67862.
6665
6666 2004-10-22  Martin Baulig  <martin@ximian.com>
6667
6668         * mono-debug-debugger.c
6669         (mono_debugger_runtime_invoke): Don't box valuetypes.
6670
6671 2004-10-22  Chris Toshok  <toshok@ximian.com>
6672
6673         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
6674         don't hide private methods.
6675
6676 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
6677
6678         * icall.c: Allows the runtime to "share" (when known) the public key
6679         token of an assembly. This avoid the need to recalculate the token 
6680         (from the public key) in managed code.
6681
6682 2004-10-21  Chris Toshok  <toshok@ximian.com>
6683
6684         * debug-helpers.c (append_class_name): argh, revert last patch.
6685         
6686 2004-10-21  Chris Toshok  <toshok@ximian.com>
6687
6688         * debug-helpers.c (append_class_name): use '+' as the delimiter,
6689         not '/', so that it matches what the debugger uses to look up
6690         methods.
6691
6692 2004-10-21  Martin Baulig  <martin@ximian.com>
6693
6694         * mono-debug-debugger.c (mono_debugger_throw_exception): New
6695         public method; this is called each time an exception is thrown and
6696         allows the debugger to use exception catch points.
6697
6698 2004-10-21  Martin Baulig  <martin@ximian.com>
6699
6700         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
6701         the stack pointer and the exception object in some struct and pass
6702         that to the debugger.
6703
6704 2004-10-21  Chris Toshok  <toshok@ximian.com>
6705
6706         * mono-debug-debugger.c (do_write_class): add instance/static
6707         event support.  We don't expose "raise" or "other" yet.
6708         (event_is_static): new method.
6709
6710 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
6711
6712         * mono-debug-debugger.c
6713         (mono_debugger_handle_exception): Remove
6714         bogus return value for fussy compilers.
6715
6716 2004-10-20  Martin Baulig  <martin@ximian.com>
6717
6718         * mono-debug-debugger.c
6719         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
6720         (mono_debugger_handled_exception): Likewise.
6721
6722 2004-10-20  Martin Baulig  <martin@ximian.com>
6723
6724         * mono-debug-debugger.h (MonoDebuggerEvent): Added
6725         MONO_DEBUGGER_EVENT_EXCEPTION.
6726
6727         * mono-debug-debugger.c (mono_debugger_handle_exception): New
6728         public function to send the debugger a notification for an
6729         exception and inform it about a catch/finally clause.
6730
6731 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
6732
6733         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
6734         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
6735         fix 2.95 build. 
6736
6737         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
6738
6739 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
6740
6741         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
6742         marshalled as [In,Out]. Fixes #58325.
6743
6744 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
6745
6746         * reflection.c (mono_method_body_get_object): Implement some fields.
6747
6748 2004-10-12  Martin Baulig  <martin@ximian.com>
6749
6750         * reflection.c (mono_reflection_bind_generic_parameters): Small
6751         fix, correctly retrieve our parent from a generic instance.
6752
6753 2004-10-12  Martin Baulig  <martin@ximian.com>
6754
6755         * metadata.c (mono_metadata_generic_param_equal): We always have
6756         an owner.
6757
6758         * class.c
6759         (mono_class_from_generic_parameter): We need to have an owner.
6760         (my_mono_class_from_generic_parameter): Likewise.
6761
6762         * reflection.c (mono_reflection_setup_generic_class): Renamed to
6763         mono_reflection_create_generic_class() and added a new
6764         mono_reflection_setup_generic_class().  
6765         (mono_reflection_initialize_generic_param): If we're a nested
6766         generic type and inherited from the containing class, set our
6767         owner to the outer class.
6768
6769 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
6770
6771         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
6772
6773         * reflection.c (mono_method_body_get_object): New function to create
6774         a MethodBody object.
6775
6776         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
6777
6778 2004-10-11  Martin Baulig  <martin@ximian.com>
6779
6780         * metadata.c (_mono_metadata_type_equal): Renamed to
6781         do_mono_metadata_type_equal() and made static.
6782
6783 2004-10-11  Martin Baulig  <martin@ximian.com>
6784
6785         * appdomain.c: Bump corlib version number to 28.
6786
6787 2004-10-10  Martin Baulig  <martin@ximian.com>
6788
6789         * class-internals.h
6790         (MonoGenericInst): Added `MonoGenericContainer *container'.
6791         (MonoGenericMethod): Likewise.
6792         (MonoGenericContext): Likewise.
6793         (MonoGenericParam): Added `MonoGenericContainer *owner'.
6794
6795         * metadata.c
6796         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
6797         (do_mono_metadata_parse_generic_inst): Likewise.
6798         (mono_metadata_parse_type_full): New public method.  This is the actual
6799         mono_metadata_parse_type() implementation - with an additional
6800         `MonoGenericContainer *' argument.
6801         (mono_metadata_parse_array_full): Likewise.
6802         (mono_metadata_parse_signature_full): Likewise.
6803         (mono_metadata_parse_method_signature_full): Likewise.
6804         (mono_metadata_parse_mh_full): Likewise.
6805         (mono_type_create_from_typespec): Likewise.
6806         (mono_metadata_interfaces_from_typedef_full): New public method;
6807         this is similar to the other _full() methods, but we take a
6808         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
6809         (mono_metadata_parse_generic_param): Take an additional
6810         `MonoGenericContainer *' argument and lookup the MonoGenericParam
6811         from that container.
6812         (mono_metadata_generic_param_equal): New static method to compare
6813         two type parameters.
6814         (_mono_metadata_type_equal): New static method; takes an
6815         additional `gboolean signature_only' argument - if true, we don't
6816         compare the owners of generic parameters.
6817         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
6818         with a TRUE argument - do a signature-only comparision.
6819
6820         * loader.c: Use the new _full() methods and pass the
6821         MonoGenericContainer to them.
6822
6823         * object-internals.h (MonoReflectionTypeBuilder): Added
6824         `MonoGenericContainer *generic_container' field.
6825         (MonoReflectionMethodBuilder): Likewise.
6826
6827 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
6828
6829         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
6830         case initial images of dynamic assemblies.
6831
6832         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
6833
6834         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
6835
6836         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
6837         length of event->other array.
6838         (typebuilder_setup_events): Ditto.
6839
6840         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
6841         'assembly_by_name' and add an 'assemblies' list.
6842
6843         * assembly.h assembly.c: Add a new search hook for determining whenever
6844         an assembly is already loaded. Use this instead of searching in the
6845         loaded_assemblies list.
6846
6847         * domain.c appdomain.c: Implement the new search hook so loaded 
6848         assemblies are now scoped by appdomain. Fixes #67727.
6849
6850 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
6851
6852         * threads.c (mono_thread_attach): Initialize synch_lock field so
6853         mono_thread_detach works again.
6854
6855         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
6856         'lib' too. Fixes #63130.
6857
6858 2004-10-06  Jackson Harper  <jackson@ximian.com>
6859
6860         * culture-info-tables.h: regenerated.
6861
6862 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
6863
6864         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
6865         implemented by other interfaces in the result. Fixes #65764.
6866         
6867         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
6868         Handle unloadable modules without crashing.
6869
6870         * image.c (load_modules): Revert the previous patch since modules must
6871         have a fixed index inside the array.
6872         
6873         * image.c (load_modules): Don't include native modules in the modules
6874         array.
6875
6876 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
6877
6878         * reflection.h: Add param_defaults field.
6879
6880         * reflection.c: Add support for parameter defaults in dynamic methods.
6881         Fixes #64595.
6882
6883         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
6884         an empty string when a type has no namespace. Fixes #64230.
6885
6886 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
6887
6888         * tabledefs.h: Added "internal" security actions to support non-CAS
6889         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
6890         Note: they do not seems to be used anymore in 2.0 (new metadata format)
6891
6892 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
6893
6894         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
6895         constructor of abstract class. Fixes #61689.
6896
6897 2004-10-04  Martin Baulig  <martin@ximian.com>
6898
6899         * class-internals.h (MonoGenericContainer): New type.
6900         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
6901         `MonoGenericContainer *generic_container'.
6902         (MonoClass): Replaced `gen_params' and `num_gen_params' with
6903         `MonoGenericContainer *generic_container'.
6904
6905         * metadata.c (mono_metadata_load_generic_params): Return a
6906         `MonoGenericContainer *' instead of a `MonoGenericParam *';
6907         removed the `num' argument.
6908
6909 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
6910
6911         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
6912         for dynamic images.
6913
6914         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
6915         machine fields.
6916
6917         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
6918
6919         * reflection.c: Save pe_kind and machine values into the generated
6920         image file.
6921
6922         * appdomain.c: Bump corlib version number.
6923
6924         * object-internals.h: Reorganize layout of LocalBuilder.
6925
6926         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
6927         New helper function.
6928
6929         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
6930         created MonoType for dynamic types. Fixes #66180.
6931
6932 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
6933
6934         * threadpool.c: the ares hashtable needs a critical section around it.
6935         this prevents some nasty segfaults
6936
6937 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
6938
6939         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
6940         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
6941         bug 67324).
6942         
6943 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
6944
6945         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
6946         
6947 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
6948
6949         * image.c: Always canonicalize image file names, to avoid loading
6950         the same assembly twice when referenced using a relative path.
6951
6952 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
6953
6954         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
6955
6956         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
6957
6958         * marshal.c: Fix warnings.
6959
6960 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
6961
6962         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
6963         attempting to marshal the delegate_trampoline as the method_addr.
6964         This patch has a static hashtable of marshalled delegates so that 
6965         we can map delegate_trampoline addresses back to delegates.  This
6966         allows a delegate passed to managed code to be passed back into native
6967         code.  Fixes #67039
6968
6969 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
6970
6971         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
6972
6973         * reflection.c (method_encode_code): Align method headers properly.
6974         Fixes #66025.
6975
6976 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
6977
6978         * marshal.c: In the runtime invoke wrapper, reset the abort
6979         exception if it is cached. This avoids the automatic rethrowal of 
6980         the exception after the catch of the wrapper. Also check for pending
6981         interruptions before calling the managed method. This is done using
6982         the new method emit_thread_force_interrupt_checkpoint, since the
6983         normal checkpoint method is ignored when running the invoke wrapper.
6984         * object.c: If the abort exception is rethrown, set the abort_exc
6985         field of the thread, so it will be rethrown aftere every catch.
6986         * threadpool.c: Only run an interruption checkpoint if what has been
6987         requested is a stop of the thread (aborts will be ignored).
6988         * threads.c: By default, a thread will now never be interrumped while
6989         running the runtime invoke wrapper (this ensures that runtime_invoke
6990         will always return to the caller if an exception pointer is provided).
6991         There is a new special method mono_thread_force_interruption_checkpoint()
6992         to force an interruption checkpoint even if running a protected
6993         wrapper, which is used by the same runtime invoke wrapper to do a check
6994         at a safe point.
6995
6996 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
6997
6998         * object.c, object-internals.h: Implemented mono_release_type_locks,
6999         which releases the cctor locks held by a thread.
7000         * threads.c, threads.h: In thread_cleanup, release cctor locks held
7001         by a thread. Added mono_thread_exit() method to be used to safely stop
7002         a thread.
7003
7004 2004-09-28  Raja R Harinath  <rharinath@novell.com>
7005
7006         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
7007         Move null check before dereference.  Avoid indexing beyond the end
7008         of the 'modules' array.
7009
7010 2004-09-28  Raja R Harinath  <rharinath@novell.com>
7011
7012         * metadata-internals.h (MonoImage): Add module_count field.
7013         * image.c (load_modules): Set image->module_count.
7014         (mono_image_load_file_for_image): Use image->module_count.
7015         * reflection.c (mono_image_load_module): Append to image->modules array 
7016         of dynamic assembly.
7017         (mono_module_get_object): Fix loop to actually increment index.
7018         Use image->module_count.
7019         * assembly.c (mono_assembly_load_references): Use image->module_count.
7020         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
7021         Likewise.
7022
7023 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
7024
7025         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
7026         Avoid assert on generic types.
7027
7028 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
7029
7030         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
7031
7032         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
7033
7034         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
7035         function to convert a MarshalSpec structure to its managed counterpart.
7036
7037         * reflection.c: Fix warnings.
7038         
7039         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
7040         field.
7041
7042         * icall.c (mono_create_icall_signature): Fix build.
7043
7044 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
7045
7046         * icall.c: Add MakePointType icall.
7047
7048         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
7049         warnings.
7050
7051 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7052
7053         * threadpool.c: reuse allocated slots in the queue.
7054
7055 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
7056
7057         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
7058
7059         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
7060
7061         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
7062         previous change.
7063
7064         * tabledefs.h: Add constants for pinvoke attributes BestFit and
7065         ThrowOnUnmappableChar.
7066
7067         * icall.c (ves_icall_Type_GetPacking): New icall.
7068
7069 2004-09-24  Martin Baulig  <martin@ximian.com>
7070
7071         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
7072
7073 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7074
7075         * appdomain.c:
7076         (mono_domain_set): allow setting a domain that is being unloaded.
7077         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
7078         being unloaded.
7079
7080 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
7081
7082         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
7083         the GetCustomAttributes icall.
7084
7085 2004-09-23  Martin Baulig  <martin@ximian.com>
7086
7087         * object-internals.h (MonoReflectionGenericParam): Replaced
7088         'has_ctor_constraint', `has_reference_type' and `has_value_type'
7089         with `guint32 attrs'.
7090
7091 2004-09-23  Martin Baulig  <martin@ximian.com>
7092
7093         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
7094
7095 2004-09-23  Martin Baulig  <martin@ximian.com>
7096
7097         * object-internals.h (GenericParameterAttributes): New enum.
7098
7099 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
7100
7101         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
7102         
7103         * class.c (init_events): Fill out event->other field.
7104
7105         * class.c: Fix warnings.
7106
7107         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
7108
7109 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
7110
7111         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
7112         walk which doesn't supply the IL offset.
7113
7114 2004-09-22  Martin Baulig  <martin@ximian.com>
7115
7116         * reflection.c (mono_reflection_setup_internal_class): If we're
7117         System.ValueType, System.Object or System.Enum, set
7118         `klass->instance_size' and create the vtable.
7119         (mono_reflection_create_internal_class): If we're an enum type,
7120         get the base class from our current corlib.
7121
7122 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
7123
7124         * reflection.h (MonoResolveTokenError): New type.
7125
7126         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
7127         icall.
7128
7129         * icall.c: Add an 'error' argument to the ResolveToken icalls.
7130
7131 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
7132
7133         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
7134         Support also calling constructors, but only for already allocated objects.
7135
7136 2004-09-17  Geoff Norton <gnorton@customerdna.com>
7137
7138         * reflection.c (type_get_qualified_name): If the klass is null
7139         return the typename to avoid a NullRefEx.
7140         (encode_cattr_value): Get the qualified name of the boxed type,
7141         not the underlying enumtype.  Fixes #62984.
7142
7143 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
7144
7145         * marshal.c: Fix problems with previous checkin.
7146
7147 2004-09-21    <vargaz@freemail.hu>
7148
7149         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
7150         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
7151
7152         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
7153
7154 2004-09-21  Geoff Norton <gnorton@customerdna.com>
7155
7156         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
7157         should only return a type for pointers, arrays, and passbyref types.
7158         Fixes bug #63841.
7159
7160 2004-09-21  Martin Baulig  <martin@ximian.com>
7161
7162         * domain.c (mono_debugger_check_runtime_version): New public
7163         function.
7164
7165         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
7166
7167 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
7168
7169         * reflection.c: Added missing sort to the declarative security 
7170         attributes table. MS implementation stops seeing the attributes if the
7171         token number regress in the table (as shown by ildasm and permview).
7172
7173 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
7174
7175         * object-internals.h (MonoReflectionModule): Add 'token' field.
7176         
7177         * reflection.c (mono_reflection_get_token): Add support for Module
7178         and Assembly.
7179         (mono_module_get_object): Set 'token' field.
7180         (mono_module_file_get_object): Set 'token' field.
7181
7182         * icall.c: Add new Assembly and Module icalls.
7183
7184         * appdomain.c: Bump corlib version.
7185
7186 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
7187
7188         * loader.h loader.c class.h class.c: Add helper functions for obtaining
7189         tokens of metadata objects.
7190
7191         * reflection.h reflection.c (mono_reflection_get_token): New function
7192         to obtain the token of a metadata object.
7193
7194         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
7195
7196 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
7197
7198         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
7199         
7200         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
7201
7202 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
7203
7204         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
7205         * object-internals.h: Added 3 MonoArray* members to MonoReflection
7206         AssemblyBuilder to access the permissions set in the class lib.
7207         * reflection.c: Added security attributes encoding step in 
7208         mono_image_build_metadata.
7209         * tabledefs.h: Added new security actions defined in 2.0:
7210         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
7211
7212 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
7213
7214         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
7215         macro parameter.
7216
7217 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
7218  
7219         * locales.c: nullify the ICU_collator member of CompareInfo when it is
7220           finalized. There where random SIGSEVs at program termination, when
7221           an object being finalized was trying to do a string comparison and
7222           the current culture was already finalized.
7223  
7224 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7225
7226         * threads.c: call thread_cleanup before finishing the thread if we get
7227         there.
7228
7229 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
7230
7231         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
7232         assemblies from the parent. Fixes #65665.
7233
7234 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
7235
7236         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
7237         modifiers.
7238
7239 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
7240
7241         * reflection.h: add prototype for mono_get_dbnull_object
7242         * reflection.c: add prototypes for get_default_param_value_blobs 
7243         and mono_get_object_from_blob for fussier compilers
7244
7245 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
7246  
7247         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
7248         false deadlock checks in class initialization.
7249  
7250 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
7251
7252         * image.c (mono_image_addref): Fix comment.
7253
7254         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
7255         possible.
7256
7257 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
7258
7259         * reflection.c (mono_param_get_objects): Modified to return
7260         ParameterInfo.DefaultValue object.
7261
7262         (get_default_param_value_blobs):
7263         (mono_get_object_from_blob):
7264         (mono_get_dbnull_object): New helper routines. 
7265
7266         * object.c (mono_get_constant_value_from_blob): New helper routine
7267         carved out from get_default_field_value ()
7268
7269         * object-internals.h (mono_get_constant_value_from_blob): Added
7270         function declaration.
7271
7272 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
7273
7274         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
7275         referenced assemblies. Fixes #62135.
7276
7277         * exception.h exception.c (mono_get_exception_file_not_found2): New
7278         helper function.
7279
7280 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
7281
7282         * class.h class.c: Add mono_type_get_underlying_type ().
7283
7284 2004-09-09  Geoff Norton <gnorton@customerndna.com>
7285
7286         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
7287         Fix GetTypes() to support dynamically created assemblies.
7288
7289 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
7290
7291         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
7292         
7293         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
7294         previous patch.
7295
7296         * reflection.h reflection.c loader.c: Allow dynamic construction of
7297         pinvoke methods. Fixes #65571.
7298         
7299         * reflection.c (mono_reflection_get_type): Revert previous change since
7300         it causes regressions.
7301
7302 2004-09-08  Martin Baulig  <martin@ximian.com>
7303
7304         * class.c (class_compute_field_layout): Don't call
7305         mono_class_layout_fields() for open generic instances.
7306
7307 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
7308         * threads.c appdomain.c: fix typo in GC macro
7309
7310 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7311
7312         * threads.c: don't call mono_thread_detach() in start_wrapper(),
7313         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
7314
7315 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
7316
7317         * image.c (mono_image_close): Applied patch from 
7318         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
7319         assembly is loaded multiple times from data.
7320         
7321         * image.c (mono_image_open): Fix warning.
7322
7323 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
7324
7325         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
7326         once. Fixes #58334.
7327         
7328         * reflection.c (mono_reflection_create_runtime_class): Initialize
7329         klass->nested_classes. Fixes #61224.
7330
7331 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
7332
7333         * threads.c: sched_yield() on exit, to allow threads to quit.
7334
7335 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
7336
7337         * object.c (mono_unhandled_exception): Remove leftover debug code.
7338
7339 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
7340
7341         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
7342
7343 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
7344
7345         * marshal.c (emit_marshal_array): Really null terminate string arrays.
7346         
7347         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
7348
7349 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
7350
7351         * marshal.c (emit_marshal_array): Null terminate string arrays.
7352         
7353         * marshal.c (raise_auto_layout_exception): Fix warning.
7354
7355         * reflection.c (mono_param_get_objects): Initialize the default value
7356         with DBNull.Value, not null. Fixes #62123.
7357
7358 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
7359
7360         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
7361         throw an exception with a cute explanation.
7362
7363 2004-09-06  Dick Porter  <dick@ximian.com>
7364
7365         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
7366         Close the new process's thread handle, as we don't use it.  The
7367         handle stays around forever otherwise.
7368
7369 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
7370
7371         * object.c (arith_overflow): Fix warning.
7372
7373         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
7374         calling conventions in method refs. Fixes #65352.
7375
7376         * reflection.c: Fix warnings.
7377
7378 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
7379
7380         * icall.c: Add a new icall for Array.Clear
7381
7382 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
7383
7384         * object.c: When allocating an array, we have to throw
7385         an overflow exception if any of the lengths are < 0.
7386
7387 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
7388
7389         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
7390         properly. Also move implementation of string array marshalling to 
7391         managed code. Fixes #42316.
7392
7393 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7394
7395         * assembly.c: provide more information when loading an assembly fails.
7396
7397 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7398
7399         * filewatcher.c: don't expect the development fam package to be
7400         installed.
7401
7402 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
7403
7404         * marshal.c: Make a copy of the signature cookie since it will be
7405         freed by the caller.
7406         
7407         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
7408
7409         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
7410
7411         * metadata.c (mono_metadata_free_marshal_spec): New function to free
7412         marshal specs.
7413
7414         * marshal.c: More refactoring.
7415         
7416         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
7417         smaller functions.
7418
7419 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
7420
7421         * object.c: In mono_message_invoke, fill the output parameter array after
7422           calling the managed method (it was done before the call). This fixes
7423           bug #59299.
7424
7425 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
7426
7427         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
7428         as well.
7429
7430 2004-09-02  Martin Baulig  <martin@ximian.com>
7431
7432         * class.c (mono_class_instance_size): Don't allow generic type
7433         definitions or open generic instances.
7434         (mono_class_array_element_size): If we're a value type, call
7435         mono_class_instance_size() on the original class.
7436
7437         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
7438         handle generic instances.
7439
7440         * mono-debug-debugger.c (write_type): Handle generic instances
7441         like classes.
7442
7443 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
7444
7445         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
7446         the allocation request fails. Fixes #65089.
7447
7448         * object.c (mono_runtime_free_method): Do not call mono_free_method.
7449         
7450         * object.c (mono_runtime_free_method): New function to free a dynamic
7451         method.
7452
7453         * marshal.c (mono_delegate_free_ftnptr): New function to free the
7454         delegate trampoline.
7455
7456         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
7457         with hasthis as dynamic,
7458
7459         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
7460
7461         * domain.c (mono_jit_info_table_remove): New function to remove an
7462         entry from the jit info table.
7463
7464         * class-internals.h (MonoMethod): Add 'dynamic' field.
7465
7466         * loader.c: Fix warnings.
7467
7468 2004-09-01  Martin Baulig  <martin@ximian.com>
7469
7470         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
7471         instead of mono_debugger_lock() because the latter one is a no-op
7472         unless running in the debugger.
7473
7474 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
7475
7476         * class.c (class_compute_field_layout): Classes with auto-layout or
7477         reference fields are not blittable.
7478         
7479 2004-09-01  Dick Porter  <dick@ximian.com>
7480
7481         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
7482         mono_image_get_filename() to get the assembly location.
7483
7484         * icall.c:
7485         * metadata.h: Fix compile warnings
7486
7487 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
7488
7489         * class.c (class_compute_field_layout): System.Object is blittable.
7490
7491         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
7492         as in/out. Fixes #59909.
7493
7494 2004-09-01  Martin Baulig  <martin@ximian.com>
7495
7496         * metadata.h (MONO_TYPE_ISREFERENCE): Call
7497         mono_metadata_generic_inst_is_valuetype() if we're a generic
7498         instance to check whether our underlying type is a reference type.
7499
7500 2004-09-01  Martin Baulig  <martin@ximian.com>
7501
7502         * metadata.c (mono_type_size): If we're a generic instance, call
7503         mono_class_value_size() for value types.
7504
7505 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
7506
7507         * marshal.c: Implement more custom marshalling functionality. Fixes
7508         #64915.
7509
7510 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
7511
7512         * mono-debug.c, debug-mono-symfile.c: add some locking love.
7513
7514 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
7515
7516         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
7517
7518         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
7519
7520         * icall.c: Fix some warnings.
7521
7522         * threads.c (abort_appdomain_thread): Fix unref errors.
7523         (mono_thread_current): Fix THREAD_DEBUG define.
7524
7525 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
7526
7527         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
7528
7529         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
7530
7531 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
7532
7533         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
7534         string arrays.
7535
7536 2004-08-28  Martin Baulig  <martin@ximian.com>
7537
7538         * metadata.c
7539         (mono_metadata_generic_inst_is_valuetype): New public function.
7540
7541         * metadata.h (MONO_TYPE_ISSTRUCT): Call
7542         mono_metadata_generic_inst_is_valuetype() if we're a generic
7543         instance to check whether our underlying type is a valuetype.
7544
7545 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
7546
7547         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
7548         #63768.
7549
7550 2004-08-25  Martin Baulig  <martin@ximian.com>
7551
7552         * loader.c (mono_get_method_from_token): Abstract methods can also
7553         be generic and thus have type parameters.
7554
7555         * metadata-internals.h
7556         (MonoDynamicImage): Added `GPtrArray *gen_params'.
7557
7558         * reflection.c (mono_image_get_generic_param_info): Don't create a
7559         metadata row, just add an entry to the `gen_params' array.
7560         (build_compressed_metadata): Sort the `gen_params' array and then
7561         actually create the metadata.
7562
7563 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7564
7565         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
7566
7567 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
7568
7569         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
7570
7571 2004-08-24  Martin Baulig  <martin@ximian.com>
7572
7573         * class.cs (mono_class_is_subclass_of): Like an interface, a
7574         generic instance also derives from System.Object.
7575
7576 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
7577
7578         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
7579         custom modifiers to be in any order. Fixes #61990.
7580
7581 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
7582
7583         * object.c: Register mono_object_new_fast icall.
7584         
7585         * object.c (mono_class_get_allocation_ftn): Return to calling
7586         mono_object_new_fast, since it seems faster to compute the object 
7587         size in unmanaged code than passing it as a parameter.
7588
7589         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
7590
7591         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
7592         this function with Boehm as the oom handler, so we don't have to check
7593         the result of GC_malloc.
7594
7595         * object.c: Remove checks for oom.
7596
7597         * object.h object.c (mono_class_get_allocation_ftn): New function to
7598         return the icall which can be used to allocate an instance of a given
7599         class. 
7600
7601         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
7602
7603         * class-internals.h: Add 'enabled' field.
7604
7605 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
7606
7607         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
7608
7609 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
7610         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
7611         value 0x0010.
7612
7613 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
7614
7615         * appdomain.c: use the Tls function for appdomain too,
7616         at Zoltan's request. Actually return in mono_context_get
7617
7618         * appdomain.c, profiler.c, threads.c: use __thread
7619
7620 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
7621
7622         * appdomain.c threads.c: Call GC_CreateThread on windows.
7623
7624         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
7625         multiple libraries since this don't work on windows.
7626
7627 2004-08-18  Martin Baulig  <martin@ximian.com>
7628
7629         * class-internals.h
7630         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
7631         MonoMethodHeader.
7632
7633         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
7634         MonoMethodNormal since we also need it for abstract and interface
7635         methods.
7636
7637         * reflection.c
7638         (build_compressed_metadata): Sort the GenericParam table.
7639         (mono_image_create_token): Added `gboolean create_methodspec'
7640         argument; this is false when generating a MethodImpl token.
7641         (reflection_methodbuilder_to_mono_method): Abstract and interface
7642         methods may also have generic parameters.
7643
7644 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
7645
7646         * appdomain.c: thread local alloc
7647
7648 2004-08-17  Martin Baulig  <martin@ximian.com>
7649
7650         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
7651
7652         * icall.c
7653         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
7654         argument.
7655
7656         * class.c (mono_type_get_full_name): New public function.
7657         (mono_type_get_name): Don't include the type arguments.
7658
7659 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
7660
7661         * Makefile.am: Build static versions of libmetadata and libmonoruntime
7662         for inclusion into the mono executable.
7663
7664 2004-08-16  Martin Baulig  <martin@ximian.com>
7665
7666         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
7667         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
7668
7669 2004-08-14  Martin Baulig  <martin@ximian.com>
7670
7671         * class.c (dup_type): Also copy the `byref' field.
7672
7673 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
7674
7675         * reflection.c (create_dynamic_mono_image): Revert the last change 
7676         since it breaks bootstrap.
7677
7678 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
7679
7680         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
7681
7682         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
7683         not free them with g_free.
7684
7685 2004-08-11  Martin Baulig  <martin@ximian.com>
7686
7687         * reflection.c (mono_reflection_setup_internal_class): Also call
7688         mono_class_setup_mono_type() if we already have a `tb->type.type'.
7689
7690 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
7691
7692         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
7693         called during default (first) AppDomain creation. Keep track of
7694         Evidence when loading assemblies.
7695
7696 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
7697
7698         * opcodes.c, opcodes.h: reduce runtime relocations.
7699
7700 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
7701
7702         * culture-info.h, locales.c: fixes and chages to sue the new
7703         optimized format of the locale data.
7704         * culture-info-tables.h: regenerated.
7705
7706 2004-08-06  Geoff Norton <gnorton@customerdna.com>
7707         
7708         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
7709
7710 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
7711
7712         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
7713         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
7714         * domain-internals.h: icall declaration.
7715         * icall.c: icall registration.
7716         * object-internals.h: New fields in MonoAssembly for CAS.
7717
7718 2004-08-05  Duncan Mak  <duncan@ximian.com>
7719
7720         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
7721         CEE_LDELEM_ANY.
7722
7723 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
7724
7725         * reflection.c: fix to deal with object[] arrays in custom ctors
7726         (bug #62550).
7727
7728 2004-08-05  Martin Baulig  <martin@ximian.com>
7729
7730         * class.c (mono_class_array_element_size): Added support for
7731         generic instances and correctly handle "recursive" types.
7732
7733 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
7734
7735         * assembly.c: Fix warnings.
7736
7737 2004-08-04  Martin Baulig  <martin@ximian.com>
7738
7739         * class.c
7740         (mono_type_get_name_recurse): Added `gboolean include_arity'
7741         argument specifying whether or not we should include the generic
7742         arity in the type name.
7743         (_mono_type_get_name): New static function.
7744         (mono_class_setup_vtable): If we're a generic instance, don't
7745         include the generic arity in the names of explicit method
7746         implementations.        
7747
7748 2004-08-03  Martin Baulig  <martin@ximian.com>
7749
7750         * class.c (mono_type_get_name_recurse): Enclose the generic type
7751         arguments in `<', '>'.
7752
7753 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
7754
7755         * gc.c: make GC warning messages use the trace API, they are just
7756         noise to most of the users.
7757
7758 2004-08-03  Martin Baulig  <martin@ximian.com>
7759
7760         * debug-mono-symfile.c (read_string): Correctly read the string.
7761
7762 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
7763
7764         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
7765         
7766         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
7767         icalls.
7768         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
7769
7770 2004-07-30  Martin Baulig  <martin@ximian.com>
7771
7772         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
7773         Reflect latest symbol writer changes.   
7774
7775 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
7776
7777         * object.c: always create an object if null is passed
7778         to Invoke() where a valuetype is expected.
7779
7780 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
7781
7782         * marshal.c (mono_marshal_init): make managed
7783         signatures match native ones better for 64bits.
7784
7785 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7786
7787         * appdomain.c: hack to build correctly the private bin path on windows.
7788         Fixes bug #61991.
7789
7790 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
7791
7792         * assembly.c: Load mscorlib from the correct framework directory
7793           (mono/<version>/mscorlib.dll).
7794         * appdomain.h: Added prototypes for new functions.
7795         * internals.h: Added some prototypes.
7796         * domain.c: When initializing the runtime, get from the executable and
7797           the configuration files the runtime version that the app supports.
7798           Added support methods for reading app.exe.config. Added list of versions
7799           supported by the JIT. Added two new methods: mono_init_from_assembly,
7800           which initializes the runtime and determines the required version from
7801           the provided exe file, and mono_init_version, which initializes
7802           the runtime using the provided version.
7803         * icall.c: Get machine.config from version-specific directory.
7804         * reflection.c: When generating an image, embed the version number
7805           of the current runtime.
7806
7807 2004-07-28  Dick Porter  <dick@ximian.com>
7808
7809         * socket-io.c
7810         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
7811         returned sockaddr size before creating the remote address object.
7812         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
7813         61608.
7814
7815 2004-07-28  Dick Porter  <dick@ximian.com>
7816
7817         * locales.c (string_invariant_compare_char): Fix invariant char
7818         compares between upper and lower cases.  Fixes bug 61458.
7819
7820 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
7821         
7822         * marshal.c: actually cache stelem.ref wrappers.
7823         
7824 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
7825
7826         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
7827         sections and remove the mono_cli_rva_map () function.
7828
7829 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
7830
7831         * debug-mono-symfile.c: fix one more endianess issue, from a patch
7832         by Geoff Norton (<gnorton@customerdna.com>).
7833
7834 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
7835
7836         * class.c: fix class loads for pointer types (typeof(int) !=
7837         typeof(int*)).
7838
7839 2004-07-27  Martin Baulig  <martin@ximian.com>
7840
7841         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
7842         reading the debugging information from an external ".mdb" file.
7843
7844 2004-07-24  Martin Baulig  <martin@ximian.com>
7845
7846         * reflection.c (mono_image_get_type_info): Only write a class
7847         layout entry if we actually have a size or a packing size.
7848
7849 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
7850
7851         * reflection.c (type_get_fully_qualified_name): 
7852         insert cast to get type checking of ?: with non-gcc compilers
7853
7854 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
7855
7856         * rand.c: use g_getenv for both lookups of
7857         MONO_EGD_SOCKET
7858
7859 2004-07-17  Martin Baulig  <martin@ximian.com>
7860
7861         * reflection.c (mono_reflection_bind_generic_method_parameters):
7862         Set `gmethod->reflection_info'.
7863
7864 2004-07-17  Martin Baulig  <martin@ximian.com>
7865
7866         * class.c (mono_class_create_from_typedef): Insert the newly
7867         created class into the hash table before computing the interfaces
7868         since we could be called recursively.
7869
7870 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
7871
7872         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
7873         function to implement stelem.ref in managed code
7874         * class-internals.h, debug-helpers.c: a new wrapper type
7875         for the above.
7876
7877 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
7878
7879         * gc.c: allow GC handles to work even when no GC is compiled in.
7880         Fix part of bug #61134 (GetAddrOfPinnedObject).
7881
7882 2004-07-13  Peter Williams  <peter@newton.cx>
7883  
7884         * process.c (complete_path): Make sure we don't attempt to execute
7885         directories.
7886  
7887 2004-07-12  Geoff Norton <gnorton@customerdna.com>
7888
7889         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
7890           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
7891           and will add/subtract the hour if needed
7892
7893 2004-07-12  Martin Baulig  <martin@ximian.com>
7894
7895         * reflection.c (mono_field_get_object): If we have
7896         `field->generic_info', take the attributes from
7897         `field->generic_info->generic_type'.    
7898
7899 2004-07-12  Martin Baulig  <martin@ximian.com>
7900
7901         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
7902         This function must be called before initializing the runtime.
7903         (mono_debug_init_1): New function; call this after initializing
7904         the runtime, but before loading the assembly.  It tells the
7905         debugger to load corlib and the builtin types.
7906
7907         * mono-debug-debugger.c: Did some larger changes in the debugging
7908         code; support recursive class declarations, make sure we actually
7909         add all classes.
7910
7911 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7912
7913         * debug-helpers.c: undo my previous patch and fixed the real issue in
7914         ../mini/exceptions-x86.c
7915
7916 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7917
7918         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
7919         when no HOME env. variable was set and a NullRef was thrown in a .cctor
7920         called from other .cctors.
7921
7922 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
7923
7924         * loader.c: Removed the mono_loader_wine_init hack now that we are
7925         doing a managed version of Windows.Forms.
7926
7927 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
7928
7929         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
7930         threadpool.c, threads.c: remove static data from rootset.
7931
7932 2004-07-09  Dick Porter  <dick@ximian.com>
7933
7934         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
7935         Don't do any more processing if the matched length was 0.  It was
7936         increasing the size of the string before.  Fixes bug 61167.
7937
7938 2004-07-09  Dick Porter  <dick@ximian.com>
7939
7940         * socket-io.h:
7941         * socket-io.c
7942         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
7943         Add support for SO_PEERCRED if its available.
7944
7945 2004-07-09  Peter Bartok <pbartok@novell.com>
7946         * loader.c: winelib.exe.so error message is now only displayed if
7947         MONO_DEBUG is set. To help us avoid questions when people are trying
7948         out the new Managed.Windows.Forms.
7949
7950 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
7951
7952         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
7953         for isinst and castclass wrappers.
7954
7955         * class-internals.h icall.c: Move registration and lookup of JIT icalls
7956         to libmetadata from the JIT, so they could be used by the marshalling
7957         code and the interpreter.
7958
7959         * marshal.c: Register marshalling related JIT icalls here instead of
7960         in mini.c. Use CEE_MONO_ICALL instead of the family of 
7961         CEE_MONO_PROC<x> opcodes to call marshalling functions.
7962
7963         * metadata.h: Remove unneeded marshalling conversions.
7964
7965         * opcodes.c: Update for new opcodes.
7966         
7967 2004-07-08  Martin Baulig  <martin@ximian.com>
7968
7969         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
7970         (mono_debug_get_domain_data): Make this function static.
7971
7972 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
7973
7974         * gc.c, object.h: add nice GC handle API for embedders.
7975
7976 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
7977
7978         * reflection.c: more changes for the new api
7979
7980         * object.c: When we reflect on a field w/ a constant value, it
7981         will not have a memory location, so we must access metadata. Also,
7982         allow easier reading of strings so that we can read them from
7983         the constant data.
7984
7985         * class.c (mono_class_layout_fields): no need for literal fields here.
7986
7987         * class-internals.h: api changes for const fields
7988
7989         * icall.c (ves_icall_get_enum_info): use new apis for const fields
7990
7991 2004-07-06  Martin Baulig  <martin@ximian.com>
7992
7993         * mono-debug.h: Increment version number to 44.
7994
7995         * mono-debug.c (mono_debug_add_wrapper): The second argument is
7996         now a gpointer, rewrote this whole method.
7997
7998         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
7999         function.  Add information about the wrapper in a new "misc table".
8000
8001         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
8002         for the new misc table.
8003
8004 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
8005
8006         * metadata-internals.h image.c: Add a cache for helper signatures.
8007
8008         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
8009
8010 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
8011
8012         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
8013         delegates from a delegate. Fixes #61033.
8014         
8015         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
8016         marshalling of stringbuilder arrays. Fixes #59900.
8017
8018 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
8019
8020         * icall.c: Add EnumBuilder:setup_enum_type icall.
8021
8022 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
8023
8024         * icall.c: Added a new icall for the property version of
8025         OffsetOfStringData.
8026
8027 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
8028
8029         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
8030         it has a constant size across platforms.
8031
8032         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
8033         stack trace.
8034
8035 2004-06-29  Martin Baulig  <martin@ximian.com>
8036
8037         * mono-debug.c (mono_debug_add_method): Protect the whole function
8038         in mono_debugger_lock(), not just parts of it.
8039
8040 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
8041
8042         * reflection.c: make sure padding bytes in heaps are zeroed.
8043
8044 2004-06-24  David Waite  <mass@akuma.org>
8045
8046         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
8047         image.c, loader.c, locales.c, marshal.c, metadata.c,
8048         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
8049         string-icalls.c, threads.c: change to C90-style comments from C99 /
8050         C++ -style
8051
8052 2004-06-24  Dick Porter  <dick@ximian.com>
8053
8054         * threads.c
8055         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
8056         return createdNew.  Fixes bug 60412.
8057
8058         * threads-types.h: 
8059         * icall.c: Add createdNew parameter to CreateMutex icall
8060
8061 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
8062
8063         * reflection.c, object-internals.h: save default value in params.
8064
8065 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8066
8067         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
8068         no need to build a new path combining that with the application base.
8069         Fixes bug #60442.
8070
8071 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
8072
8073         * reflection.c: fixed minor standard compliance issues.
8074
8075 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
8076
8077         * reflection.c: fixed issue with encoding some custom attributes
8078         (arrays in properties and fields, bug #60411).
8079
8080 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8081
8082         * reflection.c: fix start address when copying the public key token.
8083
8084 2004-06-23  Martin Baulig  <martin@ximian.com>
8085
8086         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
8087         the `exc' object in a static object to put it into the GC's root set.
8088
8089 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
8090
8091         * reflection.c: make mono_reflection_setup_internal_class ()
8092         callable a second time to setup a new parent class.
8093
8094 2004-06-23  Dick Porter  <dick@ximian.com>
8095
8096         * threads.c: Check for WAIT_IO_COMPLETION return values.
8097
8098 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
8099
8100         * appdomain.c: Removed the g_free on the public key token. Now copy 
8101         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
8102         * assembly.c: Added public key token string value when loading 
8103         assemblies. Fix bug #60439.
8104         * icall.c: Added missing informations (like public key) in 
8105         GetReferencedAssemblies. Fix #60519.
8106         * image.h: Changed definition for public key token from const char*
8107         public_tok_value to guchar public_key_token [17];
8108         * reflection.c: Updated for changes to public key token.
8109
8110 2004-06-22  Lluis Sanchez Gual
8111
8112         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
8113         for the field in base classes.
8114
8115 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
8116
8117         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
8118         mark headers as not supported, they are installed only for use by the
8119         debugger.
8120
8121 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
8122
8123         * *.c, *.h: avoid namespace pollution in public headers.
8124
8125 2004-06-21  Martin Baulig  <martin@ximian.com>
8126
8127         * exception.c (mono_get_exception_security): It's in
8128         "System.Security", not in "System".
8129
8130         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
8131         the exception classes.
8132
8133 2004-06-21  Martin Baulig  <martin@ximian.com>
8134
8135         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
8136         Protect the exception object from being finalized.
8137
8138 2004-06-21  Martin Baulig  <martin@ximian.com>
8139
8140         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
8141         public function.
8142
8143 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
8144
8145         * reflection.c: Load the assembly in mono_reflection_type_from_name,
8146         if it was not loaded before. Fix parts of #60439.
8147
8148 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
8149
8150         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
8151         code that was broken since Ben's change: wrappers are now
8152         dependent on the method signature only again.
8153
8154 2004-06-21  Martin Baulig  <martin@ximian.com>
8155
8156         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
8157         added interface support.
8158
8159 2004-06-21  Martin Baulig  <martin@ximian.com>
8160
8161         * class.c (mono_vtable_get_static_field_data): New public method.
8162
8163 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
8164
8165         * filewatcher.c : Windows build fix to be compliant with API changes.
8166
8167 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
8168
8169         * class.h, class.c: more accessors.
8170         * metadata.h, metadata.c: prepare for hiding MonoType and
8171         MonoMethodSignature: people should use the accessors from now on
8172         outside of the tree.
8173
8174 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
8175
8176         * *.c, *.h: more API cleanups.
8177
8178 2004-06-18  Jackson Harper  <jackson@ximian.com>
8179
8180         * assembly.c: Trace loading assemblies.
8181         * loader.c: Trace loading native libraries.
8182         * mono-config.c: Trace loading config files.
8183         
8184 2004-06-18  Dick Porter  <dick@ximian.com>
8185
8186         * locales.c: Tell ICU the lengths of strings, it can cope with
8187         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
8188
8189 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
8190
8191         * image.c: swapped name/filename;
8192
8193 2004-06-18  Martin Baulig  <martin@ximian.com>
8194
8195         * mono-debug-debugger.c (write_class): Write the parent class at
8196         the end of the header.
8197
8198 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
8199
8200         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
8201
8202 2004-06-17  Raja R Harinath  <rharinath@novell.com>
8203
8204         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
8205         (bundle_obj): New conditional define.
8206         (BUILT_SOURCES): Remove.
8207         ($(bundle_srcs)): Make parallel-make safe.
8208         (libmonoruntime_la_LIBADD): Make unconditional.
8209         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
8210         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
8211
8212 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
8213
8214         * culture-info-tables.h: It was inconsistent with the latest
8215           supp info files.
8216
8217 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
8218
8219         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
8220         be loaded.
8221
8222         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
8223         with gcc 2.95.
8224
8225 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
8226
8227         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
8228         cleaned up public header threads.h.
8229
8230 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
8231
8232         * Makefile.am, *.c, *.h: more API cleanups.
8233
8234 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
8235
8236         * Makefile.am: removed monosn from compilation.
8237         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
8238         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
8239         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
8240         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
8241         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
8242         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
8243
8244 2004-06-15  Jackson Harper  <jackson@ximian.com>
8245
8246         * assembly.c: Make locales lower case when searching the GAC for
8247         assemblies. gacutil will always make locales lowercase when
8248         installing so this effectively makes them case insensitive.
8249         
8250 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
8251
8252         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
8253         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
8254           parameter which allows to choose whether the wait can be interrupted or 
8255           not. Also added the method mono_monitor_enter(), which locks the monitor
8256           using an infinite wait and without allowing interruption.
8257           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
8258           interrupted.
8259         * object.h: Added new fields in MonoThread. suspend_event holds the event
8260           used to susped/resume the thread. synch_lock is the lock object to use for
8261           modifying the thread state.
8262         * threads.c: Use the new synch_lock object for locking, instead of "this",
8263           which can generate deadlocks.
8264           Moved thread state change in Thread.Sleep and Thread.Join from managed
8265           to unmanaged code. This avoids a deadlock when the thread was suspended
8266           just after acquiring the thread lock.
8267           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
8268           Implemented Thread.Suspend using an event instead of ThreadSuspend,
8269           which is not fully implemented in the io-layer.
8270         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
8271
8272 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
8273
8274         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
8275         threads-types.h: more API cleanups.
8276
8277 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
8278
8279         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
8280         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
8281         threadpool.c, threads.c: first pass at the exported API cleanup.
8282
8283 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
8284
8285         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
8286
8287 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8288
8289         * icall.c: added internalGetHome.
8290
8291 2004-06-14  Dick Porter  <dick@ximian.com>
8292
8293         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
8294         possible to return successfully when '.' or '..' were the only
8295         entries in a directory, but were skipped.  The MonoIOStat was not
8296         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
8297         Fixes bug 59574.
8298
8299 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
8300
8301         * reflection.c: make binaries run on .Net 1.1 by default.
8302
8303 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
8304
8305         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
8306
8307 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
8308
8309         * marshal.c: keep track of struct size with explicit layout
8310         (bug #59979).
8311
8312 2004-06-12  Martin Baulig  <martin@ximian.com>
8313
8314         * mono-debug-debugger.c: Comment out a debugging g_message().
8315
8316 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
8317
8318         * reflection.c, reflection.h: do not free custom attrs that are cached.
8319         * icall.c: use braces to make code clearer.
8320
8321 2004-06-11  Martin Baulig  <martin@ximian.com>
8322
8323         * class.h (MonoInflatedField): New type.
8324         (MonoClassField): Replaced `MonoType *generic_type' with
8325         `MonoInflatedField *generic_info'.
8326
8327         * icall.c
8328         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
8329
8330 2004-06-11  Martin Baulig  <martin@ximian.com>
8331
8332         * reflection.c (mono_image_create_method_token): Correctly encode
8333         varargs methods.
8334
8335 2004-06-11  Martin Baulig  <martin@ximian.com>
8336
8337         * metadata.c (mono_metadata_parse_method_signature): When parsing
8338         a MethodDef which has VarArgs, also set sentinelpos if we don't
8339         have any parameters.
8340
8341 2004-06-11  Martin Baulig  <martin@ximian.com>
8342
8343         * verify.c (mono_method_verify): In CEE_CALL, use
8344         mono_method_get_signature() to get the method's signature, unless
8345         we're a PInvoke method.
8346
8347 2004-06-10  Jackson Harper  <jackson@ximian.com>
8348
8349         * assembly.c: Use <path>/lib/mono/gac for the extra paths
8350         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
8351         logical name as the supplied path is just a prefix to the gac not
8352         the direct path to it.
8353         
8354 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
8355
8356         * reflection.c: make the token for a created method match
8357         the token of the MethodBuilder it was created from
8358         (IKVM requires this behaviour now).
8359
8360 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
8361
8362         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
8363         reflection.c, socket-io.c: leak fixes.
8364
8365 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
8366
8367         * icall.c: handle sentinel pos in vararg methods in position different
8368         from 0.
8369
8370 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8371
8372         * culture-info-tables.h: freshly generated.
8373
8374 2004-06-09  Martin Baulig  <martin@ximian.com>
8375
8376         * loader.c (mono_get_method_constrained): Call `mono_class_init
8377         (constrained_class)'.   
8378
8379 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
8380
8381         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
8382         any methods. Fixes #59629.
8383
8384 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
8385
8386         * culture-info-tables.h: reflecting locale-builder updates.
8387
8388 2004-06-08  Dick Porter  <dick@ximian.com>
8389
8390         * object.h:
8391         * locales.c: Fixed compile warnings, including a real bug in
8392         CompareInfo_internal_compare.
8393         
8394 2004-06-08  Dick Porter  <dick@ximian.com>
8395
8396         * locales.c
8397         (ves_icall_System_Globalization_CompareInfo_internal_index):
8398         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
8399         Double-check the resuls of usearches, because ICU currently
8400         ignores most of the collator settings here.  Fixes bug 59720.
8401         
8402 2004-06-08  Dick Porter  <dick@ximian.com>
8403
8404         * locales.c
8405         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
8406         Fix memory leak and segfault-causing typo.  No idea how this one
8407         lasted so long without being noticed.
8408
8409 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
8410
8411         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
8412         any methods. Fixes #59629.
8413
8414 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8415
8416         * assembly.c:
8417         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
8418         own the critical section before). Removed dead code (that's done
8419         in the preload hook).
8420
8421         (mono_assembly_load_with_partial_name): call the preload hook.
8422
8423 2004-06-08  Martin Baulig  <martin@ximian.com>
8424
8425         * metadata.c (mono_metadata_signature_alloc): Default
8426         `sentinelpos' to -1.
8427
8428         * reflection.c (mono_image_get_array_token): Likewise.
8429
8430 2004-06-08  Martin Baulig  <martin@ximian.com>
8431
8432         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
8433
8434         * metadata.c (mono_metadata_parse_method_signature): When parsing
8435         a MethodDef which has VarArgs, set sentinelpos.
8436
8437         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
8438         `gint16' since we're using -1 for non-varargs methods.
8439
8440         * reflection.c
8441         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
8442         (method_encode_signature): Added varargs support.
8443         (method_builder_encode_signature): Likewise.
8444         (mono_image_get_varargs_method_token): New static method.
8445         (mono_image_create_method_token): New public method; this is
8446         called via an icall instead of mono_image_create_token() when
8447         calling a varargs method.       
8448
8449 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
8450
8451         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
8452
8453 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
8454
8455         * culture-info-tables.h : Reflecting the latest locale-builder that
8456           fixed empty array representation ({} to {0}).
8457
8458 2004-06-07  Jackson Harper  <jackson@ximian.com>
8459
8460         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
8461         looking up extra gac paths. This allows MONO_GAC_PATH to act
8462         exactly like a prefix.
8463         
8464 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
8465
8466         * reflection.c (mono_reflection_type_from_name): Make a copy of the
8467         type name before modifying it. Fixes #59405.
8468
8469 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
8470
8471         * culture-info.h: added fields for "all datetime patterns".
8472         * locales.c: (  ves_icall_System_Globalization_CultureInfo
8473           _construct_datetime_format ()): fill xxx_patterns fields.
8474         * object.h: added fields for "all datetime patterns" to
8475           MonoDateTimeFormatInfo.
8476         * culture-info-tables.h: reflecting locale-builder updates.
8477
8478 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
8479
8480         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
8481         the event has no add and remove methods. Fixes #59629.
8482
8483 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
8484
8485         * object.c: Fixed possible integer overflow when allocating large
8486         strings.
8487
8488 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
8489
8490         * culture-info-tables.h: reflecting locale-builder updates.
8491
8492 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
8493
8494         * culture-info-tables.h: reflecting locale-builder updates.
8495
8496 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
8497
8498         * culture-info-tables.h: reflecting locale-builder updates.
8499
8500 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
8501
8502         * threads.c: Made Thread.Sleep abortable.
8503
8504 2004-06-02  Martin Baulig  <martin@ximian.com>
8505
8506         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
8507
8508         * debug-mono-symfile.h: Bumped symbol file version number to 37.
8509
8510 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
8511
8512         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
8513
8514 2004-05-30  Jackson Harper  <jackson@ximian.com>
8515
8516         * reflection.c: Do not hardcode assembly versions or public key
8517         tokens anymore. All of this except the corlib section was dead
8518         code anyways.
8519         
8520 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
8521
8522         * object.c (mono_runtime_invoke_array): Automatically create boxed
8523         objects for byref valuetypes if needed. Fixes #59300.
8524         
8525         * object.c (mono_method_return_message_restore): Handle 
8526         MONO_TYPE_OBJECT as well.
8527
8528 2004-05-28  Jackson Harper  <jackson@ximian.com>
8529
8530         * reflection.c: The modified type encoding was causing build
8531         problems. Reverted for now.
8532         
8533 2004-05-28  Jackson Harper  <jackson@ximian.com>
8534
8535         * reflection.c/h: Take an assembly ref so that we dont create
8536         fully qualified names when encoding types in the same assembly as
8537         the custom attribute being emitted.
8538         * appdomain.c: Increment version number.
8539         
8540 2004-05-26  Duncan Mak  <duncan@ximian.com>
8541
8542         * icall.c
8543         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
8544         Set the full version number (major, minor, build, revision).
8545
8546 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
8547
8548         * marshal.c (emit_struct_conv): increment src/dst after blit
8549         (mono_marshal_get_managed_wrapper,
8550         mono_marshal_get_native_wrapper): make sure we have marshalling
8551         info before marshalling params (info computation affects
8552         blittable)
8553
8554         * class.c (class_compute_field_layout): correctly deal with
8555         blittable
8556         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
8557         value types (as per what windows dows by default)
8558         (mono_class_setup_mono_type): System.ValueType is blittable
8559         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
8560         blittable
8561
8562         * marshal.c (mono_marshal_load_type_info): flag types  as
8563         non-blittable if the native layout doesn't match the managed
8564         layout
8565
8566 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8567
8568         * appdomain.c: don't add stuff in the private search path that is
8569         above the application base. If application base is not set, there's
8570         no private search path.
8571
8572 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
8573
8574         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
8575         byref struct arguments in native->managed marshalling.
8576
8577 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
8578
8579         * marshal.c (mono_marshal_get_runtime_invoke): correctly
8580         cache methods using signature (special case for methods
8581         that are value type or string class)
8582         
8583         * image.c (mono_image_close): clean up allocated GSList's
8584         in runtime_invoke_cache.
8585
8586 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8587
8588         * mono-config.c: set the correct path for mono_cfg_dir on windows when
8589         there's no MONO_CFG_DIR environment variable defined.
8590
8591 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8592
8593         * threads.c: windows version must be >= 0x0500 to include OpenThread.
8594
8595 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
8596
8597         * threadpool.c: Really wait for 500ms after the async call, even if the wait
8598           is interrumped.
8599         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
8600           before waiting for it, and call CloseHandle after the wait to unref it.
8601           This will make sure that handles are not disposed too early.
8602
8603 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8604
8605         * appdomain.c:
8606         * appdomain.h:
8607         * icall.c: removed
8608         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
8609         needed now.
8610
8611         * object.c: se the application_base only for the domain that runs
8612         Main. Fixes bug #59216,
8613
8614 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8615
8616         * appdomain.c:
8617         * object.c: only the domain in which Main is run have
8618         SetupInformation.ConfigurationFile set, so moved a few lines from
8619         appdomain.c to object.c.
8620
8621 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8622
8623         * appdomain.c: we tried to load [name].(dll|exe), but according
8624         to bug #57710, we must also try [culture]/[name].(dll|exe) and
8625         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
8626         There's a test case attached to bug #58922.
8627
8628 2004-05-27  Dick Porter  <dick@ximian.com>
8629
8630         * icall.c:
8631         * file-io.c: Implemented icalls for locking and unlocking regions
8632         in a file.
8633         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
8634         FALSE on error (fixes both compiler warning and real bug.)
8635
8636 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
8637
8638         * culture-info-tables.h: reflecting locale-builder updates.
8639
8640           (Added missing ChangeLog entry for 05/26)
8641
8642 2004-05-27  Jackson Harper  <jackson@ximian.com>
8643
8644         * locales.c: Fix some cut and paste errors.
8645         
8646 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8647
8648         * mono-config.c: set the correct path for config. directory on windows.
8649
8650 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
8651
8652         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
8653           on win32.
8654
8655 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
8656
8657         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
8658         from pinvoke functions.
8659         
8660         * marshal.c (mono_ftnptr_to_delegate): Implement this.
8661
8662 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
8663
8664         * culture-info-tables.h: reflecting locale-builder updates.
8665
8666 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
8667
8668         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
8669         #59086.
8670
8671 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
8672
8673         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
8674         * icall.c: Modified icalls for RNG.
8675         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
8676         Windows (CryptoAPI).
8677
8678 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
8679
8680         * locales.c: Fix build.
8681
8682 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
8683
8684         * culture-info-tables.h: reflecting locale-builder updates.
8685
8686 2004-05-25  Jackson Harper  <jackson@ximian.com>
8687
8688         * locales.c: When creating the current culture use the $LANGs
8689         specific culture. So DateTimeFormat and NumberFormat entries are created.
8690         
8691 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
8692
8693         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
8694         a char array as parameter.
8695
8696 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
8697
8698         * image.c: In mono_image_open(), always use an absolute path name to
8699           look for already loaded images.
8700
8701 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
8702
8703         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
8704         missing in the windows build (like older cygwin include files).
8705
8706 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
8707
8708         * icall.c: Fixed check for possible integer overflow in Buffer_
8709         BlockCopy icall. Replaced comments style // by /* */.
8710
8711 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
8712
8713         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
8714         
8715         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
8716         check after MONO_VTADDR. Fixes pinvoke2.exe.
8717
8718         * marshal.h marshal.c metadata.h: Add beginnings of support for
8719         ftnptr -> delegate marshalling.
8720
8721 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
8722
8723         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
8724         * threads.c: Fix warnings.
8725
8726 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
8727
8728         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
8729         * icall.c: Registered icalls for Suspend and Resume.
8730         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
8731           Thread.Abort.
8732         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
8733         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
8734         * process.c: Use WaitForSingleObjectEx.
8735         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
8736           checkpoints.
8737         * threads.c, threads.h: Make use of new Ex wait methods. Improved
8738           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
8739           for Suspend and Resume. Added new mono_thread_stop, used for stoping
8740           background threads. Added basic support for Abort in Windows.
8741           Start new threads using a managed delegate invoke wrapper. This wrapper
8742           has an interruption checkpoint that is needed since an interruption
8743           can be requested before the thread leaves the unmanaged code that starts 
8744           the thread.
8745         * marshal.c: Added interruption checkpoint after every native call, and
8746           also before managed calls for wrappers called from unmanaged code to
8747           go into managed code.
8748         * object.h: Added new field in MonoThread to keep track of interruption
8749           requests.
8750
8751 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
8752
8753         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
8754         calls.
8755
8756 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8757
8758         * appdomain.c:
8759         * assembly.c:
8760         * gc.c:
8761         * locales.c:
8762         * mono-config.c:
8763         * rand.c: getenv -> g_getenv (windows!)
8764
8765         * process.c: complete_path is also used on non-windows platforms.
8766
8767 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8768
8769         * icall.c: new signature for Process_Start.
8770
8771         * process.[ch]: new signature for Process_Start. If we're on windows
8772         and UseShellExecute is false, we have to search for the program by
8773         ourselves if we don't get a full path.
8774
8775 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
8776
8777         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
8778         marshalling and call CleanUpNativeData if needed. Fixes #58646.
8779
8780 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8781
8782         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
8783         Fixes bug #58373.
8784
8785 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8786
8787         * process.c: use double quotes to quote program name and arguments on
8788         windows. Fixes bug #58575.
8789
8790 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8791
8792         * file-io.c: don't return "." and ".." when using windows Find*File.
8793
8794 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
8795
8796         * marshal.c: Don't pass wrappers to message init because method 
8797         addressed used to lookup metadata. part of remoting[2|3] fix.
8798
8799 2004-05-15  Jackson Harper  <jackson@ximian.com>
8800
8801         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
8802         path is essentially the same as MONO_PATH except that it points to
8803         GACs instead of lib directories.
8804         * loader.h: The user gac is gone so we dont need function to
8805         enable/disable it.
8806         * mono-config.c: user gac option is now gone.
8807         
8808 2004-05-15  Jackson Harper  <jackson@ximian.com>
8809
8810         * culture-info.h: Make defines more consistent, add calendar data
8811         to the culture info table.
8812         * culture-info-tables.h: Add basic calendar data. Basically
8813         everyone gets default gregorian until all the data is
8814         updated.
8815         * locales.c: Use the new consistent defines. Set calendar data for
8816         culture info objects.
8817         * object.h: add a field for calendar data to CultureInfo
8818         
8819 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
8820
8821         * image.c: image->runtime_invoke_cache is keyed on signatures now.
8822         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
8823         a signature.
8824         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
8825         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
8826         an extra param that is the pointer of the method to invoke. The IL for
8827         the invoke method is no longer specific to the method, but to the
8828         signature of the method. Thus, we can share the same code for multiple
8829         methods. This reduces the number of methods that have to be compiled.
8830
8831 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
8832
8833         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
8834
8835         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8836
8837         * icall.c: Optimize Buffer.BlockCopy.
8838
8839 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8840
8841         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
8842         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
8843         quote). Changed them to "MMMM yyyy".
8844
8845 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
8846
8847         * rand.c
8848         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
8849
8850 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
8851
8852         * reflection.h: Updated after changes to managed structures.
8853
8854         * appdomain.c: Bump corlib version.
8855
8856 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8857
8858         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
8859         windows.
8860
8861 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8862
8863         * Makefile.am: link to ../os/libmonoos.la on windows.
8864
8865         * assembly.c:
8866                 -If MONO_DEBUG, warn about non-existing directories in
8867                 MONO_PATH.
8868                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
8869                 compile time variable.
8870                 -Removed init_default_path and call mono_set_rootdir from
8871                 libmonoos.a instead (windows only).
8872
8873         * assembly.h: declare mono_assembly_getrootdir().
8874
8875         * domain.c:
8876         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
8877
8878         * loader.c: s/getenv/g_getenv/
8879
8880 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
8881
8882         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
8883
8884         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
8885
8886         * metadata.h: Add new marshalling conversions.
8887
8888         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
8889         function.
8890
8891         * reflection.c (mono_reflection_get_type): Lookup the type in all
8892         modules of a multi-module assembly. Fixes #58291.
8893
8894 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
8895
8896         * threads.c: Before aborting a background, set the StopRequested
8897         state.  This avoids throwing the Abort exception.
8898         In mono_thread_manage, don't continue with the shutdown until all
8899         aborted threads have actually stopped.
8900
8901 2004-05-10  Jackson Harper  <jackson@ximian.com>
8902
8903         * locales.c: Remove the modifier from culture names.
8904         
8905 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8906
8907         * Makefile.am: monosn is not installed any more. It has been deprecated
8908         in favor of sn.
8909
8910 2004-05-07  Jackson Harper  <jackson@ximian.com>
8911
8912         * locales.c
8913         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
8914         Fix array construction, add bailout if the length is 0.
8915
8916 2004-05-07  Dick Porter  <dick@ximian.com>
8917
8918         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
8919         machine doesn't have a DNS entry.  Patch by Urs Muff
8920         (umuff@quark.com), fixes bug 57928.
8921
8922 2004-05-06  Jackson Harper  <jackson@ximian.com>
8923
8924         * reflection.c: Handle null PublicTokens properly. alloc mem for
8925         assembly names culture so we dont crash when freeing it.
8926         
8927 2004-05-06  Jackson Harper  <jackson@ximian.com>
8928
8929         * assembly.c: Check the usergac when loading with partial names.
8930         
8931 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
8932
8933         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
8934         does nothing for now (not required for Linux/Windows) but the class
8935         library can call it (and a newer or modified runtime could need it).
8936         * icall.c: Registred icall.
8937
8938 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8939
8940         * loader.c: prints a message on module loading error we set MONO_DEBUG
8941         environment variable.
8942
8943 2004-05-05  Jackson Harper  <jackson@ximian.com>
8944
8945         * appdomain.c: Handle PublicKeyToken=null properly.
8946         
8947 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
8948
8949         * environment.c|h: Added icall ves_icall_System_Environment_
8950         GetOSVersionString to get the current OS version as a string.
8951         * icall.c: Registred icall.
8952
8953 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
8954
8955         * object.c: in mono_object_get_virtual_method(), take into account that
8956         non-virtual methods don't have a slot in the vtable. Check needed when
8957         the object is a proxy.
8958
8959 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
8960
8961         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
8962         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
8963
8964         * object.c (mono_class_compute_gc_descriptor): Fix warning.
8965
8966         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
8967         passed when a valuetype is expected.
8968
8969         * object.c (mono_unhandled_exception): Only set the exit code if the
8970         exception happens in the main thread. Fixes thread5.exe.
8971
8972         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
8973         invalid names. Fixes #58047.
8974
8975 2004-05-03  Jackson Harper  <jackson@ximian.com>
8976
8977         * assembly.c: This line was committed accidently and is unneeded.
8978         
8979 2004-05-03  Jackson Harper  <jackson@ximian.com>
8980
8981         * icall.c: Add new icall for Assembly::LoadWithPartialName
8982         * assembly.c/.h: new function that probes the GAC to load partial
8983         assembly names by Paolo Molaro.
8984         
8985 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8986
8987         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
8988         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
8989         (type_get_fully_qualified_name): Added PublicKeyToken when building a
8990         full type name.
8991
8992 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8993
8994         * appdomain.c: fixed check for 'neutral' culture and removed warning.
8995         * reflection.c: fix bug when parsing a full type name and Version is not
8996         the last thing in the string.
8997
8998 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
8999
9000         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
9001         crashes when it is freed.
9002
9003 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9004
9005         * assembly.c: print the compat warning to stderr.
9006
9007 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
9008
9009         * assembly.c (mono_assembly_load_references): Add a compatibility
9010         hack to run old applications that might be still referencing the
9011         3300-based assemblies, only do this for System.xxx.
9012
9013 2004-05-01  Jackson Harper  <jackson@ximian.com>
9014
9015         * appdomain.c: If the culture is neutral we set it to "".
9016         
9017 2004-04-29  Jackson Harper  <jackson@ximian.com>
9018
9019         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
9020
9021 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
9022  
9023         * string-icalls.c: added low overhead function for copying chars
9024         * icall.c: added needed icall for the above function
9025  
9026 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9027
9028         * icall.c: fix return value of get_global_assembly_cache.  Implemented
9029         Environment.GetLogicalDrives.
9030
9031 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
9032
9033         * rand.c: try and talk to egd or prngd
9034         for random bytes if opening devices fail.
9035
9036 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
9037
9038         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
9039         alignment for the type using the native alignment of its members 
9040         instead of using klass->min_align.
9041
9042         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
9043
9044 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9045
9046         * file-io.c:
9047         * socket-io.c: added check for sys/aio.h.
9048
9049 2004-04-28  Dick Porter  <dick@ximian.com>
9050
9051         * threads.c: Don't abort a thread thats already aborting, when
9052         terminating everything.
9053
9054 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9055
9056         * icall.c: added 2 new async calls for Socket.
9057
9058         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
9059         IO on *nix systems.
9060
9061         * threadpool.c: removed unused variable.
9062
9063 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
9064
9065         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
9066
9067 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
9068
9069         * locales.c: put back string_invariant_tolower () and
9070         string_invariant_toupper ().
9071
9072 2004-04-26 David Waite <mass@akuma.org>
9073
9074         * file-io.h:
9075         * socket-io.h:
9076         * threads.h:
9077         * unicode.h: remove comma from end of enumeration declarations
9078
9079 2004-04-26 David Waite <mass@akuma.org>
9080
9081         * debug-mono-symfile.h:
9082         * decimal.c:
9083         * mono_debug.h:
9084         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
9085
9086
9087 2004-04-26  Jackson Harper  <jackson@ximian.com>
9088
9089         * appdomain.c: Increment version number.
9090         
9091 2004-04-26  Jackson Harper  <jackson@ximian.com>
9092
9093         * appdomain.c: Set assembly references public token value when
9094         PublicKeyToken is specified, not the hash_value. Free public token
9095         values when free assembly name data. Previously the public key
9096         token was hex decoded, however we are using hex encoded public key
9097         tokens, so this is not neccasary.
9098         * assembly.c: Lookup assemblies in the gac if their public token
9099         value is set. Add function to allow enabling user gac
9100         lookups. Specify whether or not the assembly was loaded from the
9101         GAC. Compare full assembly names when checking the cache for
9102         assemblies (Temporarily disabled see comment in code). Remove
9103         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
9104         specifies trace-loader they get extra info to stdout on the
9105         loading of assemblies.
9106         * image.h: Add a field for an assembly references public token
9107         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
9108         whether an assembly has been loaded from the GAC.
9109         * image.c: Remove a corlib -> mscorlib name mapping.
9110         * loader.h: Add function to enable/disable the user gac.
9111         * mono-config.c: Check if the usergac is enabled in the config
9112         file.
9113         * icall.c: New icall to determine whether or not an assembly has
9114         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
9115         * tabldefs.h: Add constant for assemblyref flag that specifies a
9116         full public key is used instead of a public token.
9117         * reflection.c: Remove mscorlib -> corlib mappings. Set
9118         PublicTokenValue instead of hash value. This value is a hex
9119         string so it does not need to be expanded.
9120
9121 2004-04-26  Martin Baulig  <martin@ximian.com>
9122
9123         * mono-debug-debugger.c (mono_debugger_initialize): Set
9124         `mono_debugger_initialized' before calling mono_debug_lock().
9125
9126 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
9127
9128         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
9129           InternalToUpper/InternalToLower.
9130         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
9131           removed invariant culture shortcut.  This is now done in managed code.
9132         * locales.c: (string_invariant_toupper/tolower) removed.
9133
9134 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9135
9136         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
9137         Added Poll internal call.
9138
9139         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
9140         call for Poll. Select was too heavy for polling a single socket.
9141
9142         * threadpool.[ch]: added mono_threadpool_cleanup.
9143         * threads.c: use it. Don't use Thread_Abort on windows.
9144
9145 2004-04-23  Martin Baulig  <martin@ximian.com>
9146
9147         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
9148
9149 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
9150
9151         * icall.c: Registred new icalls for key pair protection and added an
9152         icall for Environment.GetFolderPath on Windows.
9153         * security.c|h: Added new icalls for key pair protection.
9154
9155 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9156
9157         * socket-io.c: don't display the non-supported family warning for known
9158         families. Now this is not displayed on windows when checking support
9159         for IPv4/IPv6.
9160
9161 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9162
9163         * class.c: don't display the layout warning for static fields.
9164
9165 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
9166
9167         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
9168         * locales.c, locales.h: Added new icalls for culture-specific
9169         Char.ToLower and Char.ToUpper.
9170
9171 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9172
9173         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
9174         by David Waite.
9175
9176 2004-04-20  Martin Baulig  <martin@ximian.com>
9177
9178         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
9179         of the type name before passing it to mono_reflection_type_from_name().
9180
9181 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
9182
9183         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
9184         encodings here. Fixes #56965.
9185
9186 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
9187
9188         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
9189         fix test on strstr result not that I can see anything that
9190         relies on the result.
9191
9192 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
9193
9194         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
9195         Fixes #57081.
9196
9197         * marshal.c (mono_marshal_get_string_encoding): New helper function.
9198
9199         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
9200         function to determine which marshalling to use for strings. Fixes
9201         #56965.
9202
9203         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
9204
9205         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
9206
9207 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
9208
9209         * icall.c: #include mono-config.h
9210
9211 2004-04-15  Jackson Harper  <jackson@ximian.com>
9212
9213         * culture-info-tables.h: Fix date formats for en-US culture.
9214         
9215 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
9216
9217         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
9218         ThreadPool.SetMinThreads.
9219         * threadpool.c: Implemented ThreadPool.GetMinThreads and
9220         ThreadPool.SetMinThreads.
9221
9222 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
9223
9224         * mono-config.c: also load the .config file in the directory
9225         where the assembly was found.
9226
9227 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
9228
9229         * assembly.c: load per-assembly config files.
9230         * icall.c: decrapified code to get the config dir and moved to
9231         mono-config.c.
9232         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
9233         per-assembly config files. When doing a dll map lookup give precedence
9234         to the per-assembly data.
9235
9236 2004-04-14  Martin Baulig  <martin@ximian.com>
9237
9238         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
9239         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
9240         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
9241
9242         * mono-debugger-debugger.c: While the debugger is locked, remember
9243         whether the symbol tables have changes and send one single
9244         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
9245
9246 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
9247
9248         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
9249
9250         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
9251         function.
9252
9253         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
9254         account when marshalling string arrays. Fixes #56965.
9255
9256 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
9257
9258         * icall.c: Add new icalls mapping for security.
9259         * security.c|h: Add internal calls for WindowsIdentity,
9260         WindowsImpersonationContext and WindowsPrincipal.
9261
9262 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
9263
9264         * class.c: Added comment to ensure the System.MonoDummy class
9265         is removed when no longer necessary
9266
9267 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
9268
9269         * appdomain.c: Pass arguments to the bootstraping exceptions to
9270         minimize JITed methods at boot
9271
9272         * metadata.c (mono_exception_from_name_two_strings): Allow for the
9273         second string to be null.
9274
9275         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
9276         Change the protocol to minimize the JIT methods at startup.  Now
9277         it Returns the internal codepage, if the value of "int_code_page"
9278         is 1 at entry, and we can not compute a suitable code page
9279         number, returns the code page as a string.
9280
9281 2004-04-13  Jackson Harper  <jackson@ximian.com>
9282
9283         * culture-info-tables.h: Fix number of decimal digits for all
9284         english locales.
9285
9286 2004-04-13  Jackson Harper  <jackson@ximian.com>
9287
9288         * icall.c: Clairfy out of sync error message. It is not always
9289         your corlib that is out of sync.
9290
9291 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
9292
9293         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
9294         properties when only the set accessor is overriden. Fixes #55874.
9295
9296 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
9297
9298         * assembly.c (mono_assembly_load_references): Make this thread safe.
9299         Fixes #56327.
9300
9301 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
9302
9303         * monosn.c: Add missing initialization calls.
9304
9305 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
9306
9307         * locales.c:
9308         ves_icall_System_Globalization_CultureInfo_construct_number_format
9309         Fix g_assert so it compiles on fussier compilers re int/ptr
9310         mismatch
9311
9312 2004-04-08  Dick Porter  <dick@ximian.com>
9313
9314         * socket-io.h:
9315         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
9316         53992.  Also rearrange the code so that the internal calls return
9317         an error value and exceptions are thrown from managed code.
9318
9319         * icall.c: Add type info to the socket icalls.
9320
9321 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9322
9323         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
9324         owes me a beer.
9325
9326 2004-04-07  Martin Baulig  <martin@ximian.com>
9327
9328         * class.c (mono_class_from_generic_parameter): Don't default
9329         `klass->parent' to `mono_defaults.object_type'.
9330
9331 2004-04-07  Martin Baulig  <martin@ximian.com>
9332
9333         * reflection.c (mono_reflection_initialize_generic_parameter): Set
9334         `param->pklass->reflection_info'.       
9335
9336 2004-04-07  Jackson Harper  <jackson@ximian.com>
9337
9338         * culture-info-tables.h: Fix date separator symbol.
9339         
9340 2004-04-07  Martin Baulig  <martin@ximian.com>
9341
9342         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
9343         from System.Type to System.MonoType.
9344
9345 2004-04-07  Martin Baulig  <martin@ximian.com>
9346
9347         * reflection.h
9348         (MonoReflectionGenericParam): Added `has_reference_type' and
9349         `has_value_type' fields.
9350
9351         * reflection.c (mono_image_get_generic_param_info): Encode the
9352         correct flags if we have the `class' or `struct' constraint.
9353
9354 2004-04-07  Martin Baulig  <martin@ximian.com>
9355
9356         * reflection.h
9357         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
9358
9359 2004-04-07  Jackson Harper  <jackson@ximian.com>
9360
9361         * appdomain.c: Revert extra patches, just wanted to bump the
9362         version number.
9363         
9364 2004-04-07  Jackson Harper  <jackson@ximian.com>
9365
9366         * Makefile.am: Add culture-info private headers.
9367         * icall.c: Add new icalls for contructing locales.
9368         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
9369         * locales.h: Declare new culture info construction methods.
9370         * object.h: Add new fields used to avoid the CultureMap to
9371         MonoCultureInfo.
9372         * culture-info.h: Definition of structs used in the culture info
9373         tables.
9374         * culture-info-tables.h: Autogenerated tables that contain culture
9375         info data. This file was generated with the locale-builder tool.
9376         * appdomain.c: Incement corlib version number.
9377         
9378 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
9379
9380         * appdomain.c: (mono_runtime_init) move mono_thread_init
9381         to before mono_object_new calls so critical sections
9382         are initialized before use.
9383
9384 2004-04-07  Martin Baulig  <martin@ximian.com>
9385
9386         * icall.c
9387         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
9388         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
9389         (ves_icall_MonoGenericParam_initialize): Removed.
9390         (monogenericparam_icalls): Removed.
9391         (generictypeparambuilder_icalls): Added new table for
9392         System.Reflection.Emit.GenericTypeParameterBuilder.
9393
9394         * reflection.c
9395         (mono_reflection_define_generic_parameter): Removed.
9396         (mono_reflection_initialize_generic_parameter): This is now called
9397         from GenericTypeParameterBuilder's .ctor.
9398
9399 2004-04-06  Martin Baulig  <martin@ximian.com>
9400
9401         * class.c (mono_class_init): Don't inflate nested classes in a
9402         generic instance.
9403         (mono_type_get_name_recurse): Include the generic arguments for
9404         generic instances and generic type declarations.
9405         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
9406         (_mono_class_get_instantiation_name): Removed.
9407         (mono_class_create_generic): Always use `gklass->name' as our name.
9408
9409         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
9410
9411         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
9412         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
9413         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
9414         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
9415         closed generic methods here.
9416
9417         * reflection.c
9418         (mono_reflection_generic_inst_get_nested_types): Removed.
9419         (inflate_mono_method): Copy the generic parameters from the
9420         MonoMethodHeader into out MonoGenericMethod.
9421
9422 2004-04-06  Martin Baulig  <martin@ximian.com>
9423
9424         * row-indexes.h
9425         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
9426
9427         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
9428
9429         * reflection.c (build_compressed_metadata): If we have any entries
9430         in the GenericParam, MethodSpec or GenericParamConstraint tables,
9431         set the header version to 1.1.
9432
9433 2004-04-06  Martin Baulig  <martin@ximian.com>
9434
9435         * class.c (mono_class_init): If we're a generic instance,
9436         initialize our nested classes, too.
9437         (_mono_class_get_instantiation_name): Deal with the new `!%d'
9438         suffix. 
9439
9440 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9441
9442         * process.c: quote the argument passed to the shell on windows.
9443
9444 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
9445
9446         * threads.c (mono_alloc_special_static_data): Allow this to be
9447         called during startup.
9448
9449 2004-04-02  Martin Baulig  <martin@ximian.com>
9450
9451         * icall.c
9452         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
9453
9454 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
9455
9456         * icall.c: Fix build.
9457
9458 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
9459
9460         * Makefile.am: Added security.c|h.
9461         * icall.c: Added icall for get_UserName;
9462         * security.c: New file for security related icalls. Added function
9463         get_UserName for System.Environment (fix #56144).
9464         * security.h: New. Header file for security.c
9465
9466 2004-04-02  Dick Porter  <dick@ximian.com>
9467
9468         * icall.c: Deleted the icalls that were obsoleted some time ago
9469         by the ICU string code, and which were mixed into the icall
9470         rearranging.  Fixes bug 55969.
9471
9472         * string-icalls.h: 
9473         * string-icalls.c: Deleted the code that those icalls reference.
9474
9475 2004-04-01  Martin Baulig  <martin@ximian.com>
9476
9477         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
9478
9479         * class.c (mono_class_from_generic_parameter): Don't set 
9480         TYPE_ATTRIBUTE_INTERFACE.
9481         (my_mono_class_from_generic_parameter): Likewise.
9482
9483 2004-04-01  Martin Baulig  <martin@ximian.com>
9484
9485         * loader.c (find_method): Added an optional `MonoClass *ic'
9486         argument to search in a specific interface.
9487         (mono_get_method_constrained): New public function.
9488
9489 2004-04-01  Martin Baulig  <martin@ximian.com>
9490
9491         * reflection.c (mono_image_get_generic_field_token): Use the
9492         `handleref' cache here.
9493
9494 2004-04-01  Martin Baulig  <martin@ximian.com>
9495
9496         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
9497
9498         * reflection.c (create_generic_typespec): Use the `typespec' hash
9499         here, not the `typeref' one.    
9500
9501 2004-04-01  Martin Baulig  <martin@ximian.com>
9502
9503         * class.c (mono_class_inflate_generic_type): Moved the
9504         functionality into a new static inflate_generic_type() which
9505         returns NULL if it didn't do anything.  Only increment the
9506         `mono_stats.inflated_type_count' if we actually inflated
9507         something.
9508         (mono_class_get_full): Check the classes type to see whether we
9509         need to inflate it; also inflate MONO_TYPE_(M)VAR.
9510
9511 2004-04-01  Jackson Harper  <jackson@ximian.com>
9512
9513         * reflection.c: Set culture for assembly references.
9514         
9515 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
9516
9517         * reflection.[ch], icall.[ch], Fix support for pinning variables.
9518
9519 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9520
9521         * assembly.c:
9522         (do_mono_assembly_open): the critical section also covers
9523         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
9524
9525 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9526
9527         * threads.c:
9528         (mono_manage_threads): abort the background threads when finishing.
9529         Fixes bug #47232.
9530
9531 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9532
9533         * gc.c: only close the done_event handle if there was no timeout.
9534         C-ified comments.
9535
9536 2004-03-30  Martin Baulig  <martin@ximian.com>
9537
9538         * icall.c (icall_entries): It's called "System.Activator", not
9539         "System.Activation".    
9540
9541 2004-03-30  Martin Baulig  <martin@ximian.com>
9542
9543         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
9544         (mono_class_create_from_typespec): Likewise.
9545
9546 2004-03-30  Martin Baulig  <martin@ximian.com>
9547
9548         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
9549         `has_ctor_constraint' and `initialized'.
9550
9551 2004-03-30  Martin Baulig  <martin@ximian.com>
9552
9553         * reflection.c (encode_new_constraint): New static function to add
9554         the constructor constraint attribute to a type parameter.
9555         (encode_constraints): Call encode_new_constraint() if necessary.
9556
9557         * reflection.h
9558         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
9559
9560         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
9561         
9562 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
9563
9564         * reflection.c, icall.c: add support for pinning variables. 
9565
9566 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
9567
9568         * marshal.c (mono_marshal_get_managed_wrapper):
9569         init bool local with zero rather than null.
9570
9571 2004-03-29  Martin Baulig  <martin@ximian.com>
9572
9573         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
9574         the "official" behavior here.
9575         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
9576
9577 2004-03-29  Martin Baulig  <martin@ximian.com>
9578
9579         * icall.c: Reflect latest API changes.
9580
9581 2004-03-29  Martin Baulig  <martin@ximian.com>
9582
9583         * loader.c (mono_get_method_from_token): Also call
9584         mono_metadata_load_generic_params () for abstract and interface
9585         methods; replace the type arguments in the method signature with
9586         the ones which are loaded from the metadata.
9587
9588 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
9589
9590         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
9591         of the lock is not the current thread. MS.NET don't do it, in spite of
9592         what the documentation says. See bug #56157.
9593
9594 2004-03-28  Martin Baulig  <martin@ximian.com>
9595
9596         * class.c (mono_class_init): Don't call init_properties() and
9597         init_events() for generic instances; set `prop->parent' when
9598         inflating properties.
9599
9600         * reflection.c (mono_generic_inst_get_object): Call
9601         `mono_class_init (ginst->klass)'.
9602         (mono_type_get_object): Only create a MonoGenericInst if your
9603         generic type is a TypeBuilder.
9604         (do_mono_reflection_bind_generic_parameters): Only set
9605         `ginst->is_dynamic' if our generic type is a TypeBuilder.
9606
9607 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
9608
9609         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
9610         Fixes #56091.
9611
9612 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9613
9614         * icall.c: added Kill_internal icall.
9615         * process.[ch]: added Kill_internal icall.
9616
9617 2004-03-25  Martin Baulig  <martin@ximian.com>
9618
9619         * class.h (MonoStats): Added `generic_instance_count',
9620         `inflated_method_count', `inflated_type_count' and
9621         `generics_metadata_size'.       
9622
9623 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9624
9625         * reflection.c: no warnings now.
9626
9627 2004-03-25  Martin Baulig  <martin@ximian.com>
9628
9629         * class.c (mono_class_get_full): New public function; does a
9630         mono_class_get(), but also takes a `MonoGenericContext *'.
9631
9632         * loader.c (mono_field_from_memberref): Renamed to
9633         `field_from_memberref', made static and added `MonoGenericContext *'
9634         argument.
9635         (mono_field_from_token): Added `MonoGenericInst *' argument.
9636         (method_from_memberef): Likewise.
9637         (mono_get_method_from_token): Likewise.
9638         (mono_get_method_full): New public function; does a
9639         mono_get_method(), but also takes a `MonoGenericContext *'.
9640
9641         * verify.c (mono_method_verify): Get the method's generic context
9642         and pass it to mono_field_from_token(), mono_get_method_full() and
9643         mono_class_get_full().
9644
9645 2004-03-25  Martin Baulig  <martin@ximian.com>
9646
9647         * class.c (mono_class_inflate_generic_type): Take a
9648         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
9649         `MonoGenericMethod *'.
9650
9651 2004-03-25  Martin Baulig  <martin@ximian.com>
9652
9653         * loader.h (MonoMethodInflated): Store the MonoGenericContext
9654         instead of the MonoGenericMethod here.
9655
9656 2004-03-25  Martin Baulig  <martin@ximian.com>
9657
9658         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
9659         each time we create a new MonoGenericInst, we also create a new
9660         context which points back to us.
9661
9662         * class.c (inflate_method): Use `ginst->context' instead of
9663         creating a new context.
9664
9665         * loader.c (method_from_memberref): Use
9666         `klass->generic_inst->context' instead of creating a new context.
9667
9668 2004-03-25  Martin Baulig  <martin@ximian.com>
9669
9670         * class.h (MonoGenericContext): New struct.
9671         (MonoGenericMethod): Removed `generic_inst'.
9672
9673         * class.c (mono_class_inflate_generic_method): Take a
9674         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
9675
9676 2004-03-25  Martin Baulig  <martin@ximian.com>
9677
9678         * loader.h (MonoMethodInflated): New typedef.
9679
9680         * metadata.h (MonoMethodSignature): Removed `gen_method', make
9681         `generic_param_count' consume just 30 bits, added `is_inflated'
9682         and `has_type_parameters' flags (one bit each).
9683
9684         * class.c (mono_class_inflate_generic_method): Create a
9685         MonoMethodInflated instead of a MonoMethodNormal and set
9686         `is_inflated' in the method signature.
9687
9688         * class.h (MonoGenericMethod): Removed `generic_method'.
9689
9690 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
9691
9692         * image.c: Make sure the name of a MonoImage is always an absolute path.
9693           This fixes bug #54415.
9694
9695 2004-03-24  Martin Baulig  <martin@ximian.com>
9696
9697         * class.c (mono_class_setup_vtable): If we're a generic instance,
9698         use our generic type's vtable size.
9699
9700 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
9701
9702         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
9703         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
9704         problems.
9705
9706 2004-03-23  Martin Baulig  <martin@ximian.com>
9707
9708         * class.h (MonoDynamicGenericInst): Added `int count_events' and
9709         `MonoEvent *events'.
9710
9711         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
9712         (typebuilder_icalls): Added "get_event_info"; calls
9713         mono_reflection_event_builder_get_event_info(). 
9714
9715         * reflection.c (mono_reflection_generic_inst_initialize): Added
9716         `MonoArray *events'.
9717         (mono_reflection_event_builder_get_event_info): New function.
9718
9719 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
9720
9721         * object.h: add mono_type_initialization_init
9722
9723         * object.c (mono_runtime_class_init): 
9724         implement class constructor synchronization rules
9725         to cope with threading issues.  
9726         add mono_type_initialization_init
9727
9728         * appdomain.c (mono_runtime_init): call 
9729         mono_type_initialization_init
9730
9731         * class.h: removing initializing field from MonoVTable
9732
9733 2004-03-23  Martin Baulig  <martin@ximian.com>
9734
9735         * class.c (my_mono_class_from_generic_parameter): Use
9736         `param->name' if it's not NULL. 
9737
9738 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
9739
9740         * class.c: do not insert non-virtual methods in the vtable.
9741         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
9742         that means the method is non-virtual. This never would have
9743         happened before.
9744
9745 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
9746
9747         * profiler.c: Added lock for accessing coverage_hash.
9748
9749 2004-03-22  Martin Baulig  <martin@ximian.com>
9750
9751         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
9752         `method->method->signature->generic_param_count != 0' to make it
9753         work for interface methods.
9754
9755 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9756
9757         * process.c: quote the string passed to the shell using g_shell_quote.
9758
9759 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9760
9761         * threads.c:
9762         (mono_threads_manage): don't remove the finalizer thread and self
9763         from the threads hash table so that mono_thread_manage can be called
9764         more than once.
9765
9766 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9767
9768         * process.c: quote the arguments when UseShellExecute is true. Fixes
9769         bug #55790.
9770
9771 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9772
9773         * threads.c: set mono_thread_detach as a cleanup routine for every
9774         thread. This way it's always executed upon thread termination, either
9775         aborted or finished normally. No more xsp hangs!
9776
9777 2004-03-17  Martin Baulig  <martin@ximian.com>
9778
9779         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
9780         `int count_nested' and a `MonoType **nested'.
9781
9782         * reflection.c (mono_reflection_bind_generic_parameters): Moved
9783         most of the functionality into a new static
9784         do_mono_reflection_bind_generic_parameters() and don't take a
9785         `MonoType *nested_in' argument any more.  Don't compute nested
9786         types here.
9787         (mono_reflection_generic_inst_get_nested_types): New public method
9788         to get nested types.
9789
9790         * class.c (mono_class_create_generic): Set `klass->nested_in' if
9791         we're a nested class.
9792
9793         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
9794         mono_reflection_generic_inst_get_nested_types() to compute the
9795         nested types.
9796
9797 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
9798
9799         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
9800         descriptive error message under windows.
9801         
9802 2004-03-17  Martin Baulig  <martin@ximian.com>
9803
9804         * class.c (dup_type): Added `const MonoType *original' argument;
9805         copy the attrs from the original type.
9806
9807 2004-03-17  Martin Baulig  <martin@ximian.com>
9808
9809         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
9810         `m->generic_inst_cache' here.
9811
9812 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
9813
9814         * exception.h exception.c: Add stack_overflow_exception.
9815
9816 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9817
9818         * threadpool.c:
9819         (overlapped_callback): call SetEvent *after* invoking the callback.
9820         No need to call CloseHandle.
9821
9822 2004-03-16  Martin Baulig  <martin@ximian.com>
9823
9824         * reflection.c (mono_image_get_fieldref_token): Take a
9825         `MonoReflectionField *' instead of a `MonoClassField *' and a
9826         `MonoClass *'; store the `MonoReflectionField *' in the hash.
9827
9828 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9829
9830         * appdomain.c: don't add the culture to the filename we're looking for
9831         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
9832
9833 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9834
9835         * locales.c: don't ignore symbols when doing case insensitive compares.
9836         Thanks Dick! Fixes bug #54046.
9837
9838         * threads.c: surround 'threads' usage with enter/leave in
9839         mono_thread_manage.
9840
9841 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
9842
9843         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
9844         implicitly marshalled as [Out]. Fixes #55450.
9845
9846         (mono_marshal_get_runtime_invoke): Zero out the result if there is
9847         an exception.
9848
9849 2004-03-16  Martin Baulig  <martin@ximian.com>
9850
9851         * class.c (mono_class_from_generic_parameter): Use the actual
9852         parameter name. 
9853
9854 2004-03-16  Martin Baulig  <martin@ximian.com>
9855
9856         * reflection.c (type_get_signature_size): New static function.
9857         Compues the size of the type in a method signature.
9858         (method_get_signature_size): New static function; calls
9859         type_get_signature_size() to compute the actual size of the
9860         method's signature.
9861         (method_encode_signature): Use method_get_signature_size() to get
9862         the signature's size rather than using `nparams * 10'.
9863
9864 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9865
9866         * file-io.h: define here WapiOverlapped on windows. I don't want the
9867         regular OVERLAPPED one.
9868
9869         * file-io.c:
9870         * threadpool.c: somehow, BindIoCompletionCallback is not found.
9871         Disabling AIO on windows.
9872
9873 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9874
9875         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
9876         bug #55385.
9877
9878 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9879
9880         * appdomain.c: upgraded corlib version.
9881
9882         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
9883         and BeginWrite. Allow opening files for asynchrnous operations.
9884
9885         * file-io.h: new struct that maps FileStreamAsyncResult.
9886         * icall.c: added new icalls.
9887         * process.[ch]: support setting child process environment variables
9888         and use the SHELL or COMSPEC when UseShellExecute is true.
9889
9890         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
9891         callback for async. IO is here and also BindHandle.
9892
9893         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
9894         from here.
9895
9896 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
9897
9898         * reflection.c (create_custom_attr): Allow len == 0.
9899
9900         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
9901         computation on big-endian machines.
9902
9903 2004-03-13  Martin Baulig  <martin@ximian.com>
9904
9905         * class.h (MonoGenericInst): Added `int count_ifaces'.
9906
9907         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
9908         `ginst->count_ifaces' instead `klass->interface_count' since we
9909         may get called before the vtable is created.
9910
9911         * loader.c (mono_method_get_param_names): If we're a generic
9912         instance, return and don't initialize the class.
9913
9914         * reflection.c (mono_reflection_setup_generic_class): Don't call
9915         ensure_runtime_vtable().
9916         (mono_reflection_bind_generic_parameters): Set
9917         `ginst->count_ifaces'.
9918
9919 2004-03-11  Jackson Harper <jackson@ximian.com>
9920
9921         * icall.c:
9922         * unicode.c:
9923         * unicode.h: Remove unused System.Char icalls.
9924         
9925 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
9926
9927         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
9928         code when we P/Invoke the first library in Windows.Forms, instead
9929         of when we first open the assembly.
9930
9931         * assembly.c: Drop the lookup from here.
9932
9933 2004-03-10  Martin Baulig  <martin@ximian.com>
9934
9935         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
9936         class for properties, fields and events.  Finally fixes #54945.
9937
9938 2004-03-10  Martin Baulig  <martin@ximian.com>
9939
9940         * metadata.c (mono_metadata_class_equal): New static function;
9941         checks whether two generic instances or two generic parameters are
9942         equal.
9943         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
9944         compare classes.        
9945
9946 2004-03-10  Martin Baulig  <martin@ximian.com>
9947
9948         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
9949
9950         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
9951         argument and write it into the `reflection_info' field.
9952
9953         * icall.c
9954         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
9955         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
9956
9957 2004-03-09  Jackson Harper  <jackson@ximian.com>
9958
9959         * char-conversions.h: use 8 bits for numeric data its all we need
9960         * icall.c: numeric data is only 8 bits now.
9961
9962 2004-03-09  Martin Baulig  <martin@ximian.com>
9963
9964         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
9965
9966         * class.c (init_properties, init_events): Initialize the new
9967         `parent' field.
9968
9969         * reflection.c (typebuilder_setup_properties): Likewise.
9970         (typebuilder_setup_events): Likewise.
9971
9972         * reflection.h (MonoEventInfo): Replaced `parent with
9973         `declaring_type' and `reflected_type'.
9974
9975         * icall.c (ves_icall_get_property_info): Distinguish between
9976         declaring and reflected type.
9977         (ves_icall_get_event_info): Likewise.
9978
9979 2004-03-09  Martin Baulig  <martin@ximian.com>
9980
9981         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
9982         (ves_icall_Type_GetField): Correctly set field->klass.
9983
9984 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
9985
9986         * loader.h: Fix warning.
9987
9988 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
9989
9990         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
9991         library routine if present.  Notice that it will still continue
9992         executing even if its missing, for those working on the Gtk#
9993         edition of Windows.Forms.
9994
9995         * assembly.c (do_mono_assembly_open): If loading the
9996         System.Windows.Forms call mono_loader_wini_init.
9997
9998 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
9999
10000         * class.h: Added MonoRemoteClass struct.
10001         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
10002         function for MonoStrings.
10003         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
10004         Added internal call for getting the proxy type.
10005         * marshal.c: Get the type of transparent proxies from its remote_class.
10006         Added methods that generate the IL for type checks and casts:
10007         mono_marshal_get_isinst, mono_marshal_get_castclass, 
10008         mono_marshal_get_proxy_cancast.
10009         * marshal.h: Declaration of the previous new methods.
10010         * object.c: Added new moethods for creating and updating MonoRemoteClass
10011         instances: mono_remote_class, mono_upgrade_remote_class, 
10012         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
10013         * verify.c: FIx transparent_proxy_fields layout.
10014         * appdomain.c: Bump corlib version.
10015
10016 2004-03-04  Jackson Harper  <jackson@ximian.com>
10017
10018         * icall.c: Add icall to access char conversion tables.
10019         * char-conversions.h: Character conversion tables.
10020         * Makefile.am: Add char-conversions.h private header file.
10021         
10022 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
10023
10024         * appdomain.c (unload_thread_main): Increase unloading timeout to
10025         10 sec as a temporary workaround for Nant problems.
10026
10027 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
10028
10029         * gc.c: Add checks for GC_enable and GC_disable.
10030
10031         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
10032         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
10033         (bug #54988).
10034         
10035 2004-02-27  Martin Baulig  <martin@ximian.com>
10036
10037         * reflection.c (mono_reflection_bind_generic_parameters): Take a
10038         `MonoReflectionType *' instead of a `MonoType *'.
10039
10040 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
10041
10042         * gc.c (run_finalize): Avoid finalizing the object representing the
10043         finalizer thread.
10044         (finalizer_thread): Fix warning.
10045
10046 2004-02-25  Martin Baulig  <martin@ximian.com>
10047
10048         * class.c (_mono_class_get_instantiation_name): Added `int offset'
10049         argument for nested types.
10050         (mono_class_create_generic): Added support for nested generictypes.
10051
10052         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
10053         `GList *nested'.
10054
10055         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
10056
10057         * reflection.c (method_encode_signature): Increase the minimum
10058         value of `size' from 10 to 11.
10059         (mono_reflection_bind_generic_parameters): Take `int type_argc'
10060         and `MonoType **types' arguments instead of the `MonoArray
10061         *types'; added `MonoType *nested_in'.  Recursively instantiate
10062         nested classes. 
10063
10064 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
10065
10066         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
10067         stack_overflow_ex members which are used by exception handling.
10068
10069         * appdomain.c (mono_runtime_init): Initialize the new members.
10070
10071         * gc.c (mono_gc_enable): New helper function.
10072         * gc.c (mono_gc_disable): New helper function.
10073
10074 2004-02-23  Martin Baulig  <martin@ximian.com>
10075
10076         * icall.c: I must have been really stupid - make it actually work
10077         this time ;-)
10078
10079 2004-02-23  Martin Baulig  <martin@ximian.com>
10080
10081         * loader.c (method_from_memberref): Only inflate the method if
10082         it's in another klass.
10083
10084 2004-02-23  Martin Baulig  <martin@ximian.com>
10085
10086         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
10087         (mono_class_init): If we're a generic instance and an interface,
10088         compute `class->interface_id'; also create `class->interfaces'
10089         here and inflate them.
10090
10091         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
10092         `ginst->is_open'.
10093         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
10094
10095         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
10096
10097 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
10098
10099         * reflection.c (method_encode_code): Improved the error message
10100         generated by the exception.
10101
10102 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10103
10104         * icall.c: Martin did not do what he said in the ChangeLog for
10105         2004-02-18, but put back the changes for properties and events.
10106         Commenting those changes out again and adding comment to bug #54518.
10107         
10108         * process.c: removed warning.
10109
10110 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
10111
10112         * marshal.c (emit_struct_conv): Print an error message instead of
10113         asserting when a type does not have the StructLayout attribute.
10114
10115 2004-02-20  Martin Baulig  <martin@ximian.com>
10116
10117         * reflection.c (mono_type_get_object): Also use the cache for
10118         generic instances.
10119         (mono_reflection_bind_generic_parameters): Always compute
10120         `ginst->ifaces'.        
10121
10122 2004-02-20  Martin Baulig  <martin@ximian.com>
10123
10124         * class.h (MonoGenericMethod): Removed `klass'.
10125
10126         * class.c (mono_class_inflate_generic_method): Added `MonoClass
10127         *klass' argument.
10128
10129 2004-02-20  Martin Baulig  <martin@ximian.com>
10130
10131         * reflection.c (method_encode_methodspec): Actually use the
10132         uninflated signature for the memberref.
10133
10134 2004-02-20  Martin Baulig  <martin@ximian.com>
10135
10136         * class.h (MonoGenericMethod): Removed `declaring'.
10137
10138         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
10139         is NULL, compute it here.
10140
10141 2004-02-20  Martin Baulig  <martin@ximian.com>
10142
10143         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
10144
10145         * metadata.c (mono_metadata_generic_inst_hash): New method.
10146         (mono_metadata_generic_inst_equal): New method.
10147
10148         * reflection.c (mono_reflection_bind_generic_parameters): Use the
10149         `klass->image->generic_inst_cache' cache to avoid creating
10150         duplicate MonoGenericInst's.
10151
10152         * class.c (mono_class_inflate_generic_type): Use the cache.
10153
10154 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
10155
10156         * object.c: fixed gc descriptor calculation for embedded valuetypes.
10157
10158 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10159
10160         * icall.c: added Socket.WSAIoctl icall.
10161
10162         * socket-io.[ch]: implemented
10163         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
10164
10165 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
10166
10167         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
10168
10169 2004-02-18  Urs C Muff  <umuff@quark.com>
10170
10171         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
10172         this work on PPC and other big-endian architectures.
10173
10174         * debug-mono-symfile.h: Prepended the names of all the `guint32'
10175         fields with an underscore to make sure they're only accessed by
10176         the read32() macro.
10177
10178 2004-02-18  Martin Baulig  <martin@ximian.com>
10179
10180         * icall.c: Put the klass->refclass changes back for methods and
10181         fields, but not for properties and events.  We're currently not
10182         distinguishing between DeclaringType and ReflectedType for
10183         properties and events, that's what caused the regressions.
10184
10185 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10186
10187         * object.c:
10188         (mono_async_result_new): the handle can be NULL.
10189
10190         * threadpool.c: Use an event instead of a semaphore, don't initialize
10191         it until needed. This saves quite a few semaphores from being created
10192         when using the threadpool.
10193
10194 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
10195
10196         * object.c (mono_string_is_interned_lookup): Fix interning of long
10197         strings. Fixes #54473.
10198
10199         * domain.c (ldstr_equal): Optimize if the two strings are equal.
10200
10201         * icall.c: Revert the klass->refclass changes since they introduce
10202         regressions (bug #54518).
10203
10204 2004-02-18  Martin Baulig  <martin@ximian.com>
10205
10206         * class.c (mono_class_init): If we're a generic instance and don't
10207         come from a TypeBuilder, inflate our members here.
10208         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
10209         (mono_class_create_generic): New public method.
10210         (mono_class_initialize_generic): Removed.
10211         (get_instantiation_name): Renamed to
10212         _mono_class_get_instantiation_name() and made it public.
10213
10214 2004-02-18  Martin Baulig  <martin@ximian.com>
10215
10216         * class.c (mono_class_inflate_generic_type): Clear the new
10217         instance's `nginst->klass' when inflating a generic instance.
10218         (mono_class_is_subclass_of): Added (basic) support for generic
10219         instances.
10220
10221 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
10222
10223         * appdomain.h, domain.c: use a MonoCodeManager instead of a
10224         MonoMempool to hold compiled native code.
10225
10226 2004-02-17  Martin Baulig  <martin@ximian.com>
10227
10228         * class.h (MonoDynamicGenericInst): Added `count_properties' and
10229         `properties'.
10230
10231         * reflection.c (mono_reflection_generic_inst_initialize): Added
10232         `MonoArray *properties' argument.
10233
10234         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
10235
10236 2004-02-17  Martin Baulig  <martin@ximian.com>
10237
10238         * icall.c (ves_icall_Type_GetFields): Renamed to
10239         ves_icall_Type_GetFields_internal() and added a
10240         `MonoReflectionType *rtype' argument; pass it to
10241         mono_field_get_object() to set the field's "reflected" type.
10242         (ves_icall_Type_GetConstructors): Likewise.
10243         (ves_icall_Type_GetEvents): Likewise.
10244         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
10245         argument; pass it to mono_method_get_object() to set the method's
10246         "reflected" type.       
10247
10248 2004-02-17  Martin Baulig  <martin@ximian.com>
10249
10250         * class.h (MonoDynamicGenericInst): New type.
10251         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
10252
10253         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
10254         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
10255         (ves_icall_MonoGenericInst_GetFields): New interncall.
10256
10257         * class.c (mono_class_from_generic): Don't call
10258         mono_class_initialize_generic() if this is a dynamic instance;
10259         ie. it's being created from a TypeBuilder.
10260         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
10261         `class->byval_arg.type'.
10262
10263         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
10264         to `inflate_method' and made static.
10265         (mono_reflection_inflate_field): Removed.
10266         (mono_reflection_generic_inst_initialize): New public method.
10267
10268         * reflection.h (MonoReflectionGenericInst): Removed `methods',
10269         `ctors' and `fields'; added `initialized'.
10270
10271 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
10272
10273         * debug-helpers.c (mono_method_full_name): Fix output for empty
10274         namespaces.
10275
10276 2004-02-12  Martin Baulig  <martin@ximian.com>
10277
10278         * class.h (MonoClassField): Added `MonoType *generic_type'.
10279
10280         * reflection.c (mono_image_get_fieldref_token): Added support for
10281         instantiated generic types.
10282         (field_encode_inflated_field): Removed.
10283         (mono_image_get_inflated_field_token): Removed.
10284         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
10285
10286         * reflection.h (MonoReflectionInflatedField): Removed.
10287
10288 2004-02-12  Martin Baulig  <martin@ximian.com>
10289
10290         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
10291         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
10292
10293         * reflection.c (mono_image_get_methodspec_token): Take a
10294         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
10295         (mono_image_create_token): Check whether we have a
10296         `method->signature->gen_method' and call
10297         mono_image_get_methodspec_token() if appropriate.
10298         (inflated_method_get_object): Removed.
10299         (mono_reflection_bind_generic_method_parameters): Return a
10300         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
10301         (mono_reflection_inflate_method_or_ctor): Likewise.
10302
10303         * reflection.h (MonoReflectionInflatedMethod): Removed.
10304
10305 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
10306
10307         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
10308         for custom valuetype marshalling.
10309
10310         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
10311
10312 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10313
10314         * icall.c: fixed WSAGetLastError_internal name.
10315
10316 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
10317
10318         * threads.c (mono_thread_attach): Allow this to be called multiple
10319         times for a thread.
10320         
10321         * threads.c (build_wait_tids): Do not wait for ourselves.
10322
10323         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
10324         appdomain list is empty.
10325
10326         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
10327         memory returned by mono_string_builder_to_utf16, since it points into
10328         managed memory. Thanks to Bernie Solomon for noticing this.
10329
10330         * icall.c: Add AppDomainSetup icalls.
10331
10332         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
10333
10334         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
10335         types.
10336
10337         * reflection.c (reflection_methodbuilder_to_mono_method): Save
10338         custom attributes to the method_aux struct. Also fix array indexes etc.
10339
10340         * loader.c (mono_method_get_param_names): Make dynamic case work again.
10341         
10342 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
10343
10344         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
10345         (both static and runtime) and reduce startup time.
10346
10347 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
10348
10349         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
10350         AsAny marshalling conversion instead of crashing.
10351
10352         * marshal.c: Fix warnings.
10353
10354 2004-02-09  Martin Baulig  <martin@ximian.com>
10355
10356         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
10357
10358         * reflection.h (MonoReflectionInflatedMethod): Removed the
10359         `declaring' field, it's now in the unmanaged MonoGenericMethod.
10360
10361         * reflection.c (method_encode_methodspec): Removed the `method'
10362         argument; we get it from `gmethod->declaring'.
10363         (inflated_method_get_object): Removed the `declaring' argument.
10364
10365 2004-02-09  Martin Baulig  <martin@ximian.com>
10366
10367         * class.h (MonoGenericMethod): New type.
10368         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
10369         `generic_method'.
10370
10371         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
10372         a `MonoGenericMethod *gen_method' one.
10373
10374         * class.c (mono_class_inflate_generic_type): Take an additional
10375         `MonoGenericMethod * argument.  This is only non-NULL if we're
10376         inflating types for a generic method.   
10377         (mono_class_inflate_generic_signature): Renamed to
10378         inflate_generic_signature() and made static; take a
10379         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
10380         (inflate_generic_header): Take a `MonoGenericMethod *' argument
10381         instead of a `MonoGenericInst *' one.
10382         (mono_class_inflate_generic_method): Likewise.
10383
10384         * reflection.c (encode_generic_method_sig): Take a
10385         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
10386         (method_encode_methodspec): Likewise.
10387         (inflated_method_get_object): Likewise. 
10388
10389         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
10390         field with a `MonoGenericMethod *gmethod' one.  
10391
10392 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
10393
10394         * class.h (mono_class_has_parent): add parens to expansion
10395         so you can ! this.
10396
10397 2004-02-08  Martin Baulig  <martin@ximian.com>
10398
10399         * image.h (MonoImage): Removed `generics_cache'.
10400
10401         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
10402         instead of a `MonoType *' argument; removed the `inflate_methods'
10403         argument.  Don't inflate methods here.
10404
10405         * loader.c (find_method): If it's a generic instance, call
10406         mono_class_init() on the `sclass->generic_inst->generic_type'.
10407
10408         * metadata.c (mono_type_size): Make this work on uninitialized
10409         generic instances; call it on the `ginst->generic_type's class.
10410
10411         * reflection.c (mono_reflection_bind_generic_parameters): Call
10412         mono_class_from_generic() to create the `ginst->klass'.
10413
10414 2004-02-08  Martin Baulig  <martin@ximian.com>
10415
10416         * class.h (MonoClass): Changed type of `generic_inst' from
10417         `MonoType *' to `MonoGenericInst *'.
10418
10419 2004-02-08  Martin Baulig  <martin@ximian.com>
10420
10421         * icall.c (ves_icall_Type_BindGenericParameters): Just call
10422         mono_type_get_object(), this is now creating a `MonoGenericInst'
10423         for MONO_TYPE_GENERICINST.
10424         (ves_icall_MonoGenericInst_GetParentType): Likewise.
10425         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
10426
10427         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
10428         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
10429         (inflated_method_get_object): Added `MonoClass *refclass' argument.
10430         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
10431         and reflected type.
10432
10433         * reflection.h (MonoReflectionInflatedMethod): Removed
10434         `declaring_type' and `reflected_type'.
10435
10436 2004-02-08  Martin Baulig  <martin@ximian.com>
10437
10438         * class.h (MonoGenericInst): Added `MonoType *parent' and
10439         `MonoType **ifaces'.
10440
10441         * reflection.h (MonoReflectionGenericInst): Removed `klass',
10442         `parent' and `interfaces'.
10443
10444         * reflection.c (mono_reflection_bind_generic_parameters): Take a
10445         `MonoType *' argument and return a `MonoType *'.
10446
10447         * icall.c
10448         (ves_icall_MonoGenericInst_GetParentType): New interncall.
10449         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
10450
10451 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
10452
10453         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
10454         valuetype marshalling.
10455
10456 2004-02-06  Martin Baulig  <martin@ximian.com>
10457
10458         * class.c
10459         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
10460         (my_mono_class_from_generic_parameter): Likewise.
10461
10462 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
10463
10464         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
10465         contents of the symbol files lazily.
10466
10467         * object.h (MonoThread): Add 'name' and 'name_len' fields.
10468
10469         * threads.h threads.c icall.c: New icalls for getting and setting the
10470         threads name.
10471
10472 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
10473
10474         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
10475         Raise an exception when the domain is not found.
10476
10477 2004-02-03  Martin Baulig  <martin@ximian.com>
10478
10479         * reflection.c (mono_image_get_methodspec_token): Use the
10480         uninflated signature; fixes gen-33.
10481
10482 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
10483
10484         * gc.c threads.c: Make the finalizer thread a normal managed thread so
10485         the finalizer code can use thread functionality.
10486
10487         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
10488         the finalizer thread.
10489
10490         * threads.c: Make some functions more robust.
10491
10492         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
10493
10494         * metadata.h: Add new marshalling conventions.
10495
10496         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
10497         stringbuilder marshalling. Fixes #53700.
10498
10499         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
10500
10501         * reflection.c (mono_image_get_type_info): Save declarative security
10502         info.
10503
10504         * reflection.c (mono_image_get_field_info): Handle uninitialized 
10505         unmanaged fields as well.
10506
10507         * appdomain.c: Bump corlib version.
10508
10509 2004-02-01  Martin Baulig  <martin@ximian.com>
10510
10511         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
10512         method type arguments.  
10513
10514 2004-01-30  Duncan Mak  <duncan@ximian.com>
10515
10516         * marshal.h: Add prototype for
10517         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
10518         and
10519         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
10520         fix the build.
10521
10522 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
10523
10524         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
10525         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
10526
10527 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
10528
10529         * marshal.c (mono_marshal_get_native_wrapper): Add support for
10530         custom marshalling of valuetypes.
10531
10532         * marshal.c: Fix some warnings.
10533
10534 2004-01-29  Martin Baulig  <martin@ximian.com>
10535
10536         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
10537         for generic method parameters.
10538
10539         * reflection.c (method_encode_methodspec): Write the uninflated
10540         signature into the methodspec table.
10541         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
10542         is always the uninflated method.
10543         (reflection_methodbuilder_to_mono_method): Copy the generic
10544         parameters from the MethodBuilder into `header->gen_params'.
10545
10546 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
10547
10548         * class.c (mono_class_from_generic_parameter): Fix warning.
10549
10550 2004-01-27  Martin Baulig  <martin@ximian.com>
10551
10552         * class.c (mono_class_from_generic_parameter): Don't create
10553         `klass->methods' here.  
10554
10555 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
10556
10557         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
10558         extension since it does not work with libraries named lib<FOO>.dll.so.
10559
10560 2004-01-25  Martin Baulig  <martin@ximian.com>
10561
10562         * class.c (mono_class_inflate_generic_type): Added support for
10563         MONO_TYPE_GENERICINST.
10564
10565         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
10566         inflate methods on open constructed types.      
10567
10568 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10569
10570         * object.c: fire ProcessExit event in the root AppDomain after running
10571         Main. Fixes bug #53299.
10572
10573 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
10574
10575         * socket-io.c: include the new socket-wrappers.h header.
10576         Use the wrappers instead of the unix socket functions to make the code
10577         more clear.
10578
10579 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
10580
10581         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
10582
10583         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
10584         Fixes #22532.
10585
10586 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
10587
10588         * reflection.c (mono_image_create_pefile): Handle the case when the
10589         entry point is not a MethodBuilder.
10590
10591         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
10592         field to ReflectionMethod since it is not allways a builder.
10593
10594         * reflection.c (type_get_fully_qualified_name): New helper function to
10595         return the fully qualified name of a type.
10596
10597         * reflection.c (encode_marshal_blob): Always emit the fully qualified
10598         type name for custom marshallers.
10599
10600         * reflection.c (mono_marshal_spec_from_builder): Ditto.
10601
10602         * class.c (mono_class_setup_vtable): If a parent class already 
10603         implements an interface, use the implementing methods from that class.
10604         Fixes #53148.
10605
10606 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10607
10608         * threadpool.c: just return instead of ExitThread to allow for thread
10609         clean up earlier.
10610
10611 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
10612
10613         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
10614         when closing resource modules.
10615
10616         * reflection.c (mono_image_create_pefile): Handle the case when the
10617         entry point is not a MethodBuilder.
10618
10619         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
10620         field to ReflectionMethod since it is not allways a builder.
10621
10622 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
10623
10624         * marshal.c (mono_marshal_get_managed_wrapper): 
10625         mono_marshal_alloc takes native int so CONV_I
10626         the arg for 64bits.
10627
10628 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
10629
10630         * reflection.c (fixup_cattrs): New function to fixup the methoddef
10631         tokens in the cattr table. Fixes #53108.
10632
10633 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10634
10635         * loader.c: don't trim ".dll" before looking up in the config file.
10636         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
10637
10638 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
10639
10640         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
10641         Return the module which contains the resource as well.
10642         (ves_icall_System_Reflection_Module_Close): New icall.
10643
10644         * appdomain.c: Bump corlib version number.
10645
10646         * image.c (mono_image_addref): New public function.
10647
10648         * assembly.c: Call mono_image_addref.
10649
10650         * reflection.c (mono_module_get_object): Increase reference count of 
10651         the image.
10652
10653         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
10654         Fixes #22532.
10655
10656         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
10657         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
10658         proper exceptions on DllImport problems.
10659
10660 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
10661
10662         * class.c, metadata.c: eliminate CSIZE macro.
10663
10664 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
10665
10666         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
10667         * object.h: Added async_callback field in MonoAsyncResult.
10668         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
10669         * verify.c: Added async_callback in MonoAsyncResult layout.
10670
10671 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
10672
10673         * reflection.c (mono_reflection_get_custom_attrs): Add support
10674         for Modules.
10675
10676 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
10677
10678         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
10679         marshalling.
10680         (mono_marshal_method_from_wrapper): Add null pointer check.
10681
10682 2004-01-16  Martin Baulig  <martin@ximian.com>
10683
10684         * debug-mono-symfile.h: Set version number to 36 and reflect
10685         latest symbol writer changes.
10686
10687 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
10688
10689         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
10690         multi-dimensional arrays.
10691         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
10692         (mono_class_from_mono_type): Use bounded_array_class_get.
10693         
10694         * class.c (mono_bounded_array_class_get): New function which takes
10695         a 'bounded' bool argument to distinguish vectors from one dimensional
10696         arrays.
10697
10698         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
10699         bounded_array_class_get if the array has bounds.
10700
10701         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
10702         Search modules loaded using AssemblyBuilder:AddModule as well.
10703
10704 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10705
10706         * appdomain.c: increased corlib version.
10707         * filewatcher.c: removed g_print.
10708         * icall.c:
10709         (get_property_info): only allocate what is actually requested.
10710         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
10711
10712 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10713
10714         * Makefile.am: added filewatcher.[ch]
10715         * filewatcher.[ch]: FileSystemWatcher runtime support.
10716         * icall.c: added new FSW icalls.
10717
10718 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
10719
10720         * string-icalls.c: fix stringbuilder regression as suggested by
10721         Iain McCoy <iain@mccoy.id.au>.
10722
10723 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
10724
10725         * process.c (process_read_stringtable_block): Recognize '007f' as
10726         a language neutral stringtable block.
10727
10728 2004-01-12  Patrik Torstensson
10729
10730         * object.h (MonoStringBuilder) : Changed layout to support our
10731         new stringbuilder class.
10732         * marshal.c: Change marshalling to support the new layout of 
10733         string builder.
10734         * appdomain.c: increased version number because new layout of
10735         string builder.
10736
10737 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
10738
10739         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
10740         assembly name as an string instead of an AssemblyName, since it is
10741         easier to extract info from it.
10742
10743         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
10744         the culture subdirectories too. Fixes #52231.
10745
10746 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10747
10748         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
10749         It takes 2 new parameters with an optional name for the method to look
10750         for and case ignoring info.
10751
10752         * threadpool.c: removed unused variable.
10753
10754 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10755
10756         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
10757         It takes 2 new parameters with an optional name for the property to look
10758         for and case ignoring info.
10759         Fixes bug #52753.
10760
10761 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
10762
10763         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
10764         Fix #52451.
10765
10766 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10767
10768         * appdomain.c:
10769         * assembly.c: escape the uri before passing it to g_filename_from_uri.
10770         Fixes bug #52630.
10771
10772 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
10773
10774         * reflection.c: Add support for more than one unmanaged resource.
10775
10776         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
10777         in field->def_value, as done in all other cases.
10778
10779         * reflection.c (mono_reflection_get_custom_attrs): Add support for
10780         TypeBuilders.
10781
10782         * reflection.c (mono_reflection_create_runtime_class): Remove 
10783         errorneous assignment to klass->element_class, since it is already
10784         done in mono_reflection_setup_internal_class.
10785
10786 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10787
10788         * gc.c: added missing LeaveCriticalSection.
10789         * icall.c: indented a couple of lines.
10790         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
10791         if we call EndInvoke inside a callback. Fixes bug #52601.
10792
10793 2004-01-07  Martin Baulig  <martin@ximian.com>
10794
10795         * mono-debug-debugger.h
10796         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
10797
10798 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
10799
10800         * appdomain.c: Use messages in NotImplementedException.
10801
10802         * exception.c (mono_get_exception_not_implemented): Now this takes
10803         a message argument.
10804
10805         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
10806         exception instead of g_asserting an aborting when something is not
10807         implemented.
10808
10809         Add some inline docs.
10810
10811 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
10812
10813         * reflection.h: Update after changes to object layout.
10814
10815         * reflection.c: Implement saving of unmanaged aka win32 resources.
10816
10817         * appdomain.c: Bump version number.
10818
10819         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
10820         Handle missing domains gracefully.
10821
10822 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
10823
10824         * file-io.c : On Windows, there are much more invalid_path_chars.
10825
10826 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
10827
10828         * class.h, object.c: prepare for GetType () speedup.
10829
10830 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
10831
10832         * profiler.c: workaround for --profile null reference exception on
10833           cygwin. Patch by Patrik Torstensson.
10834
10835 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
10836
10837         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
10838         make work for unaligned access.
10839
10840 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
10841
10842         * class.c: small cleanup (class->fields [i] -> field).
10843         * image.c: check address of metadata is valid.
10844
10845 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
10846
10847         * assembly.h assembly.c (mono_assembly_loaded): New public function to
10848         search the list of loaded assemblies.
10849
10850         * reflection.c (mono_reflection_type_from_name): Use 
10851         mono_assembly_loaded instead of mono_image_loaded.
10852
10853         * reflection.c: Fix warnings.
10854
10855 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
10856
10857         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
10858         is dynamic. This is needed since an assembly can contain both dynamic and
10859         non-dynamic images.
10860
10861         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
10862         assembly->dynamic.
10863
10864         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
10865
10866         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
10867         to store modules loaded using AddModule.
10868
10869         * reflection.c (mono_image_fill_file_table): Generalize this so it works
10870         on Modules.
10871
10872         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
10873
10874         * reflection.c (mono_image_fill_export_table_from_module): New function to
10875         fill out the EXPORTEDTYPES table from a module.
10876
10877         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
10878         into a separate function. Also handle loaded non-dynamic modules.
10879
10880         * reflection.c (mono_image_basic_init): Fix memory allocation.
10881
10882         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10883
10884         * assembly.c (mono_assembly_load_references): Make this public.
10885
10886 2003-12-19  Martin Baulig  <martin@ximian.com>
10887
10888         * class.c (mono_class_initialize_generic): Made this static, take
10889         a `MonoGenericInst *' instead of a `MonoClass *'.
10890         (mono_class_from_generic): Call mono_class_initialize_generic()
10891         unless we're already initialized or being called from
10892         do_mono_metadata_parse_generic_inst().
10893
10894         * class.h (MonoGenericInst): Added `initialized' and
10895         `init_pending' flags.
10896
10897         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
10898         `mono_class_init (gklass)' or mono_class_initialize_generic()
10899         here; set `generic_inst->init_pending' while parsing the
10900         `type_argv'.
10901
10902 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
10903
10904         * locales.c: include string.h for memxxx prototypes
10905
10906 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
10907
10908         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
10909         constructor when accessing literal fields.
10910
10911 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
10912
10913         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10914
10915         * reflection.c (assembly_add_resource_manifest): New function to fill
10916         the MANIFESTRESOURCE table.
10917
10918         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
10919
10920         * reflection.h: Update to changes in class layout.
10921
10922         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
10923         Reenable call to mono_runtime_is_shutting_down ().
10924
10925         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
10926         determine if the runtime is shutting down.
10927
10928 2003-12-16  Jackson Harper <jackson@ximian.com>
10929
10930         * icall.c: comment out call to mono_runtime_is_shutting_down to
10931         fix build.
10932         
10933 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
10934
10935         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
10936         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
10937
10938 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
10939
10940         * reflection.c: move definition of swap_with_size
10941         to before its first call
10942
10943 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
10944
10945         * appdomain.c (mono_runtime_is_shutting_down): New public function.
10946
10947         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
10948         icall.
10949
10950         * object.c: Fix warnings.
10951
10952         * icall.c (ves_icall_Type_Get...): Only consider inherited static
10953         members if FlattenHierarchy is set.
10954
10955         * reflection.c (mono_image_add_decl_security): New function to emit
10956         declarative security.
10957
10958         * reflection.h reflection.c: Add support for declarative security.
10959
10960         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
10961         
10962 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
10963
10964         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
10965         
10966         * appdomain.c verify.c: Moved corlib version checking into its own
10967         function in appdomain.c since it needs to create vtables etc.
10968
10969 2003-12-13  Patrik Torstensson <p@rxc.se>
10970
10971         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
10972         instead of unwrapped server.
10973
10974 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
10975
10976         * verify.c (check_corlib): Fix field index.
10977
10978 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
10979
10980         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
10981         GetGacPath icall.
10982
10983 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
10984
10985         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
10986         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
10987         cope with sizeof(size_t) != sizeof(guint32).
10988
10989 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10990
10991         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
10992         in case of failure.
10993
10994 2003-12-10  Mark Crichton <crichton@gimp.org>
10995
10996         * icall.c: removed the GetNonZeroBytes.  We now handle this case
10997         in managed code.
10998
10999         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
11000
11001 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
11002
11003         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
11004         marked as deleted.
11005
11006 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
11007
11008         * verify.c (check_corlib): Handle the case when the version field is 
11009         initialized by a static constructor.
11010
11011 2003-12-08  Patrik Torstensson  <p@rxc.se>
11012
11013     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
11014
11015 2003-12-08  Martin Baulig  <martin@ximian.com>
11016
11017         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
11018         a MonoReflectionGenericParameter, also take the parameter index
11019         and name as arguments.
11020         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
11021         (ves_icall_MonoGenericParam_initialize): New interncall.
11022         (ves_icall_Type_make_byref_type): New interncall.
11023
11024         * reflection.h (MonoReflectionGenericParam): Derive from
11025         MonoReflectionType, not just from MonoObject.  Added `refobj' and
11026         `index' fields.
11027
11028         * reflection.c (mono_reflection_define_generic_parameter): Create
11029         and return a new MonoReflectionGenericParam; don't initialize the
11030         constraints here.
11031         (mono_reflection_initialize_generic_parameter): New public method;
11032         initializes the constraints and creates the `param->pklass'.
11033
11034 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
11035
11036         * reflection.h reflection.c: Use the new fields 'num_types', 
11037         'num_fields' and 'num_methods' to track the number of types etc.
11038
11039         * verify.c (check_corlib): Check corlib version number.
11040
11041 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
11042
11043         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
11044         function works on all methods.
11045
11046 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
11047
11048         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
11049         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
11050         the custom_type_info flag of the transparent proxy.
11051         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
11052         objects that supports IRemotingTypeInfo.
11053         * object.h: Added custom_type_info field in transparent proxy.
11054
11055 2003-12-06  Martin Baulig  <martin@ximian.com>
11056
11057         * class.c (mono_class_create_from_generic): Removed.
11058         (mono_class_from_generic): Check `ginst->klass' before doing
11059         anything else.  This is important to fully support "recursive"
11060         generic types.
11061
11062         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
11063         empty `generic_inst->klass' before doing anything else.
11064
11065 2003-12-06  Dick Porter  <dick@ximian.com>
11066
11067         * verify.c: 
11068         * object.h:
11069         * icall.c:
11070         * locales.c: Use C structs to access class fields.  Don't do a
11071         conversion between MonoString and UChar because both are
11072         platform-endian UTF-16.  Compare now takes startindex and count
11073         parameters.  Add a char overload for IndexOf.  Speed up the
11074         invariant string IndexOf.
11075
11076 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
11077
11078         * Makefile.am (monosn_LDADD): Fix parallel build.
11079
11080 2003-12-04  Martin Baulig  <martin@ximian.com>
11081
11082         * icall.c
11083         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
11084         (ves_icall_Type_make_array_type): New interncall.       
11085
11086 2003-12-04  Martin Baulig  <martin@ximian.com>
11087
11088         * locales.c: also change it in the !HAVE_ICU case.
11089
11090 2003-12-04  Dick Porter  <dick@ximian.com>
11091
11092         * icall.c:
11093         * locales.c: construct_compareinfo is now in CompareInfo, not
11094         CultureInfo.
11095
11096 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
11097
11098         * image.c (mono_image_load_file_for_image): Cache loaded images in the
11099         image->files array.
11100
11101         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
11102         table as well.
11103
11104         * assembly.c (mono_assembly_load_references): Only load references
11105         once.
11106
11107         * class.c (mono_class_from_name): Avoid linear search of the 
11108         EXPORTEDTYPE table.
11109
11110         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
11111
11112 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
11113
11114         * image.h (MonoImage): Add 'field_cache' field.
11115
11116         * loader.c (mono_field_from_token): Cache field lookups.
11117         
11118         * reflection.c (mono_module_get_object): Fix name property.
11119
11120         * icall.c (ves_icall_get_enum_info): Update after changes to 
11121         mono_metadata_get_constant_index ().
11122
11123         * icall.c: Get rid of get_type_info icall, use a separate icall for
11124         each type property to avoid needless memory allocations. Fixes #51514.
11125
11126         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
11127         to avoid needless binary searches.
11128
11129         * class.c (class_compute_field_layout): Move the initialization of
11130         field->def_value to mono_class_vtable ().
11131
11132         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
11133         non-corlib types.
11134
11135         * object.c (mono_object_allocate): Make it inline.
11136
11137         * object.c (mono_object_allocate_spec): Make it inline.
11138         
11139 2003-12-02  Dick Porter  <dick@ximian.com>
11140
11141         * locales.c (create_NumberFormat): NumberFormatInfo construction.
11142         Patch by Mohammad DAMT (mdamt@cdl2000.com).
11143
11144 2003-12-01  Dick Porter  <dick@ximian.com>
11145
11146         * threads.c: Fix signature and call in CreateMutex and
11147         CreateEvent.
11148
11149 2003-12-01  Dick Porter  <dick@ximian.com>
11150
11151         * icall.c: 
11152         * locales.c: Implement string compares and searching
11153
11154         * object.h: Add extra Thread field
11155
11156 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
11157
11158         * reflection.c (fixup_method): Add support for MonoCMethod.
11159
11160 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
11161
11162         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
11163
11164         * reflection.c (assembly_name_to_aname): Allow extra characters in
11165         assembly names. Fixes #51468.
11166
11167 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
11168
11169         * exception.c (mono_exception_from_name_domain): New helper function.
11170
11171         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
11172         exception object in the correct domain.
11173
11174         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
11175         formatting + make a copy a the input data.
11176
11177         * loader.c (mono_get_method_from_token): Methods which contain
11178         native code do not have entries in the ImplMap.
11179
11180         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
11181         Thanks to Gonzalo for spotting this.
11182         
11183         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
11184         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
11185
11186         * assembly.h (mono_assembly_load_from): Split the second part of 
11187         assembly loading into a new public function.
11188
11189         * exception.h (mono_get_exception_bad_image_format): New function.
11190
11191 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
11192
11193         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
11194         Enumerate all modules inside a dynamic assembly. Fixes #51293.
11195         
11196         * icall.c: Add new icall for creating dynamic methods.
11197
11198         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
11199
11200         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
11201
11202         * reflection.c (mono_reflection_create_dynamic_method): New icall to
11203         create a dynamic method.
11204
11205         * reflection.c (resolve_object): New helper function.
11206
11207         * reflection.c: Generalize ReflectionMethodBuilder and the functions
11208         which manipulate it so they can also work on dynamic methods.
11209
11210         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
11211         creating the MonoReflectionMethodAux structure if it is not needed.
11212         
11213         * reflection.h verify.c: Update after changes to object layout.
11214
11215         * reflection.c (method_builder_encode_signature): Fix compilation on
11216         gcc 2.95.x.
11217
11218 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
11219
11220         * appdomain.h: Added support for context static fields. Added static_data
11221           field to MonoAppContext and renamed thread_static_fields to a more
11222           generic special_static_fields in MonoAppDomain, since it can now contain
11223           context static fields.
11224         * domain.c: Updated hashtable name.
11225         * object.c: Replaced field_is_thread_static() for a more generic
11226           field_is_special_static() which also checks for context static attribute.
11227           In mono_class_vtable(), added support for static context fields.
11228         * threads.c: Changed methods that manage thread static fields to more
11229           generic methods so they can be reused both for thread and context static
11230           data.
11231         * threads.h: Declared some new methods.
11232
11233 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
11234
11235         * reflection.h: Update after changes to the managed types.
11236
11237         * reflection.c (encode_custom_modifiers): New helper function.
11238
11239         * reflection.c (method_encode_signature): Emit custom modifiers.
11240
11241         * reflection.c (field_encode_signature): Emit custom modifiers.
11242
11243 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
11244
11245         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
11246
11247         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
11248         implementation.
11249
11250         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
11251         icall.
11252
11253         * object.c (mono_field_get_value_object): New function.
11254
11255         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
11256         specific.
11257
11258 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
11259
11260         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
11261         return a preallocated out-of-memory exception instance.
11262
11263         * object.c (out_of_memory): Use the new function.
11264
11265         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
11266         flag is before the custom modifiers. Fixes #49802.
11267
11268 2003-11-16  Martin Baulig  <martin@ximian.com>
11269
11270         * class.c (mono_class_is_open_constructed_type): Implemented the
11271         MONO_TYPE_GENERICINST case.
11272
11273 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
11274
11275         * assembly.c (mono_assembly_fill_assembly_name): New function to
11276         fill out the MonoAssemblyName structure.
11277         (mono_assembly_open): Use the new function.
11278
11279         * icall.c (fill_reflection_assembly_name): New helper function.
11280
11281         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
11282         new function.
11283
11284         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
11285
11286 2003-11-15  Martin Baulig  <martin@ximian.com>
11287
11288         * class.c (mono_class_is_open_constructed_type): New public
11289         function; checks whether a type is an open constructed type,
11290         ie. whether it still contains type parameters.
11291         (mono_class_inflate_generic_type): If we're a type parameter and
11292         the inflated type is also a MONO_TYPE_(M)VAR, return the original
11293         type.
11294
11295         * class.h (MonoGenericInst): Added `guint32 is_open'.
11296
11297         * loader.c (method_from_methodspec): Check whether we're an open
11298         or closed constructed type and set `ginst->is_open'.
11299
11300         * reflection.c (mono_reflection_bind_generic_parameters): Check
11301         whether we're an open or closed constructed type and set
11302         `ginst->is_open'.
11303         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
11304         from open constructed types.
11305
11306 2003-11-15  Martin Baulig  <martin@ximian.com>
11307
11308         * reflection.c (mono_reflection_bind_generic_parameters): If we're
11309         a generic instance (instead of a generic type declaration) with
11310         unbound generic parameters, bind them to our actual types.
11311
11312 2003-11-14  Martin Baulig  <martin@ximian.com>
11313
11314         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
11315
11316         * reflection.c (mono_reflection_bind_generic_parameters): If we're
11317         an interface type, populate `res->interfaces' with instantiated
11318         versions of all the interfaces we inherit.
11319
11320 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
11321
11322         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
11323         when MONO_PATH is set but doesn't contain the install dir.
11324
11325 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11326
11327         * icall.c:
11328         (ves_icall_Type_GetInterfaces): don't return an interface twice when
11329         it's also implemented in base classes. Fixes bug #50927.
11330
11331 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
11332
11333         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
11334         if this method is called from a finalizer. Fixes #50913.
11335
11336 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
11337
11338         * threads.c: Implement VolatileRead/VolatileWrite
11339
11340         * icall.c: Add new icalls for VolatileRead/VolatileWrite
11341
11342 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
11343
11344         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
11345         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
11346         2.95.3.
11347
11348         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
11349         from Peter Ross (pro@missioncriticalit.com).
11350         
11351 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
11352
11353         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
11354
11355 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
11356
11357         * assembly.c (mono_assembly_load_references): Disable check because it
11358         triggers on older corlibs which lots of people have.
11359
11360 2003-11-12  Jackson Harper  <jackson@ximian.com>
11361
11362         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
11363         load corlib.dll if mscorlib.dll is not found.
11364         * assembly.h: Remove corlib name define.
11365         * class.c:
11366         * domain.c:
11367         * image.c: Change corlib name to mscorlib.
11368         
11369 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
11370
11371         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
11372
11373 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
11374
11375         * appdomain.h: Added loader_optimization here to sync with the C#
11376         code, and add disallow_binding_redirects field.
11377
11378 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
11379
11380         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
11381
11382         * reflection.c (mono_image_build_metadata): Fix crash on modules
11383         with no types.
11384
11385         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
11386
11387         * icall.c (ves_icall_get_method_info): Return callingConvention as
11388         well.
11389
11390         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
11391         namespaces from the EXPORTEDTYPE table as well.
11392
11393         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
11394         from all modules inside the assembly.
11395         
11396 2003-11-11  Martin Baulig  <martin@ximian.com>
11397
11398         * reflection.c (mono_reflection_bind_generic_parameters): Make
11399         this work for interfaces.
11400
11401 2003-11-11  Martin Baulig  <martin@ximian.com>
11402
11403         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
11404
11405 2003-11-11  Martin Baulig  <martin@ximian.com>
11406
11407         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
11408         "MonoInflatedMethod" and "MonoInflatedCtor".
11409
11410 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
11411
11412         * reflection.c (resolution_scope_from_image): Use the assembly table
11413         from the manifest module, since other modules don't have it.
11414
11415         * debug-helpers.c (mono_type_full_name): New helper function.
11416
11417         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
11418
11419         * image.c (mono_image_load_file_for_image): New public function which
11420         is a replacement for the load_file_for_image in class.c.
11421
11422         * assembly.c (mono_assembly_load_module): A wrapper for the function
11423         above which does assembly association and reference loading too.
11424
11425         * class.c (mono_class_from_name): Call mono_assembly_load_module.
11426
11427 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11428
11429         * appdomain.c: not all of the attributes for the full assembly name
11430         are required and the order doesn't matter. Fixes bug #50787.
11431
11432 2003-11-10  Dick Porter  <dick@ximian.com>
11433
11434         * locales.c: Use platform-endian UTF16
11435
11436 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
11437
11438         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
11439         
11440 2003-11-10  Martin Baulig  <martin@ximian.com>
11441
11442         * metadata.c
11443         (mono_metadata_load_generic_params): Make this actually work.
11444
11445         * reflection.c (mono_reflection_bind_generic_parameters): If our
11446         parent is a generic instance, pass all the `types' to it, no
11447         matter whether it has the same number of type parameters or not.
11448
11449 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
11450
11451         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
11452
11453         * assembly.c (mono_assembly_load_references): Move the image<->assembly
11454         assignment code to this function so it gets called recursively for all
11455         modules.
11456
11457         * image.c (load_modules): Remove the assembly assignment since it is
11458         now done by mono_assembly_load_references.
11459         
11460         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
11461         Add 'module' argument.
11462         (mono_module_get_types): New helper function.
11463         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
11464
11465 2003-11-08  Martin Baulig  <martin@ximian.com>
11466
11467         * class.c (mono_class_inflate_generic_method): Interface method
11468         don't have a header.
11469
11470         * reflection.c (mono_image_get_methodspec_token): Take an
11471         additional `MonoGenericInst *' argument instead of reading it from
11472         the header; this is necessary to support interfaces.
11473         (mono_image_create_token): Pass the `MonoGenericInst *' from the
11474         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
11475         (inflated_method_get_object): Take an additional `MonoGenericInst *'
11476         argument.
11477
11478         * reflection.h (MonoReflectionInflatedMethod): Added
11479         `MonoGenericInst *ginst'.
11480
11481 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
11482
11483         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
11484
11485 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
11486
11487         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
11488
11489 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
11490
11491         * reflection.c 
11492         (reflection_methodbuilder_from_method_builder):
11493         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
11494         initialize a ReflectionMethodBuilder structure.
11495         (mono_image_get_methodbuilder_token):
11496         (mono_image_get_ctorbuilder_token): New functions to emit memberref
11497         tokens which point to types in another module inside the same assembly.
11498
11499         * reflection.c: Use the new helper functions.
11500         
11501         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
11502
11503         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
11504         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
11505
11506         * reflection.c (resolution_scope_from_image): Emit a moduleref if
11507         neccesary.
11508
11509         * reflection.c (mono_image_build_metadata): Emit metadata only for the
11510         current module. Emit the manifest only for the main module.
11511
11512         * reflection.c (mono_image_create_token): Add assertion when a 
11513         memberref needs to be created.
11514
11515         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
11516
11517         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
11518         larger buffer for the custom attribute blob. Fixes #50637.
11519         
11520 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11521
11522         * threadpool.c: notify listener on async processing handles after
11523         invoking the async callback. Thanks to Zoltan.
11524
11525 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
11526
11527         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
11528         avoid code duplication.
11529
11530         * reflection.h (MonoDynamicImage): New type which is currently unused,
11531         but will be used through the ref.emit code in place of 
11532         MonoDynamicAssembly.
11533
11534         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
11535         object layout.
11536
11537         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
11538         a MonoDynamicImage instead of just a MonoImage.
11539         
11540         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
11541         icalls to ModuleBuilder but keep their semantics, so they will work
11542         with moduleb->assemblyb. This will change later.
11543         
11544 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
11545
11546         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
11547         object layout.
11548
11549         * reflection.c (mono_image_build_metadata): Avoid creation of a default
11550         main module, since it is now done by the managed code.
11551
11552 2003-11-03  Martin Baulig  <martin@ximian.com>
11553
11554         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
11555         `ginst->klass' here.
11556         (method_encode_methodspec): Don't use the `ginst->generic_method's
11557         klass if it's a generic instance, use `ginst->klass' in this case.
11558
11559 2003-11-03  Martin Baulig  <martin@ximian.com>
11560
11561         * reflection.c (mono_image_get_generic_method_param_info):
11562         Removed, use mono_image_get_generic_param_info() instead.
11563         (mono_image_get_type_info): Write the GenericParam table before
11564         the Method table.  This is neccessary because in the GenericParam
11565         table, type parameters of the class (ie. '!0' etc.) must come
11566         before the ones from its generic methods (ie. '!!0' etc).
11567
11568 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
11569
11570         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
11571
11572 2003-11-02  Martin Baulig  <martin@ximian.com>
11573
11574         * reflection.c (create_generic_typespec): Take a
11575         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
11576         the generic parameters from it.
11577
11578 2003-11-02  Martin Baulig  <martin@ximian.com>
11579
11580         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
11581         instead of a `MonoClassField *' since we just need the type.
11582         (create_generic_typespec): New static function.  Creates a
11583         TypeSpec token for a generic type declaration.
11584         (mono_image_get_generic_field_token): New static function.
11585         (mono_image_create_token): If we're a FieldBuilder in a generic
11586         type declaration, call mono_image_get_generic_field_token() to get
11587         the token.
11588
11589 2003-11-02  Martin Baulig  <martin@ximian.com>
11590
11591         * reflection.h
11592         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
11593         `MonoReflectionGenericInst *declaring_type' and
11594         `MonoReflectionGenericInst *reflected_type' fields.
11595
11596         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
11597         `MonoReflectionGenericInst *declaring_type' and a
11598         `MonoReflectionGenericInst *reflected_type' argument instead of a
11599         single `MonoReflectionGenericInst *type' one.  Set
11600         `res->declaring_type' and `res->reflected_type' from them.
11601         (mono_reflection_inflate_field): Likewise.      
11602
11603 2003-11-02  Martin Baulig  <martin@ximian.com>
11604
11605         * class.c (mono_class_setup_vtable): Don't store generic methods
11606         in the vtable.  
11607
11608 2003-11-02  Martin Baulig  <martin@ximian.com>
11609
11610         * reflection.h (MonoReflectionGenericInst): Added
11611         `MonoReflectionType *declaring_type'.
11612
11613         * reflection.c (mono_reflection_bind_generic_parameters): Use
11614         `if (tb->parent)' instead of `klass->parent'.
11615
11616 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
11617
11618         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
11619         with an empty ASSEMBLY table.
11620
11621         * reflection.c (mono_image_build_metadata): Avoid using the same loop
11622         variable in the inner and outer loops.
11623
11624 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
11625
11626         * metadata.h (mono_metadata_make_token): Put parentheses around macro
11627         argument.
11628
11629         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
11630         
11631         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
11632         icalls. Instead, do everything in managed code. This is needed since
11633         it is hard to restore the original domain etc. in unmanaged code in the
11634         presence of undeniable exceptions.
11635
11636         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
11637         New icalls to push and pop appdomain refs.
11638
11639 2003-10-31  Martin Baulig  <martin@ximian.com>
11640
11641         * class.c (inflate_generic_type): Renamed to
11642         mono_class_inflate_generic_type() and made it public.
11643
11644         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
11645         New interncall.
11646
11647         * loader.c (mono_field_from_memberref): Also set the retklass for
11648         typespecs.
11649
11650         * fielder.c (mono_image_get_inflated_field_token): New static
11651         method; creates a metadata token for an inflated field.
11652         (mono_image_create_token, fixup_method): Added support for
11653         "MonoInflatedField".
11654         (fieldbuilder_to_mono_class_field): New static function.
11655         (mono_reflection_inflate_field): New public function.
11656
11657         * reflection.h
11658         (MonoReflectionGenericInst): Added `MonoArray *fields'.
11659         (MonoReflectionInflatedField): New typedef.     
11660
11661 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
11662
11663         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
11664         for Solaris and other platforms without s6_addr16
11665
11666 2003-10-30  Martin Baulig  <martin@ximian.com>
11667
11668         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
11669         argument instead of two.
11670         (mono_class_inflate_generic_signature): Likewise.
11671         (inflate_generic_header): Likewise.
11672         (mono_class_inflate_generic_method): Likewise.  In addition, if
11673         `ginst->klass' is set, it becomes the new `method->klass'.
11674
11675         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
11676         field.
11677
11678         * reflection.c (encode_generic_method_sig): Write a 0xa as the
11679         first byte. [FIXME]
11680         (method_encode_methodspec): If we have generic parameters, create
11681         a MethodSpec instead of a MethodRef.
11682         (fixup_method): Added support for "MonoInflatedMethod" and
11683         "MonoInflatedCtor".
11684         (mono_image_create_token): Added support for "MonoInflatedMethod"
11685         and "MonoInflatedCtor".
11686         (inflated_method_get_object): New static function; returns a
11687         managed "System.Reflection.MonoInflatedMethod" object.
11688         (mono_reflection_bind_generic_method_parameters): Return a
11689         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
11690         (mono_reflection_inflate_method_or_ctor): Likewise.
11691         (mono_image_get_generic_method_param_info): Initialize unused
11692         fields to zero.
11693         (mono_image_get_generic_param_info): Likewise.
11694
11695         * reflection.h (MonoReflectionInflatedMethod): New public
11696         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
11697         "S.R.MonoInflatedCtor" classes.
11698
11699         * loader.c (method_from_memberref): If we're a TypeSpec and it
11700         resolves to a generic instance, inflate the method.
11701
11702 2003-10-28  Dick Porter  <dick@ximian.com>
11703
11704         * object.c (mono_runtime_run_main): Convert command-line arguments
11705         into utf8, falling back to the user's locale encoding to do so.
11706
11707 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
11708
11709         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
11710         at this time.
11711
11712         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
11713
11714         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
11715         up icalls at method definition time. Partially fixes #33569.
11716
11717 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
11718
11719         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
11720         marshalling of arrays. Fixes #50116.
11721
11722         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
11723
11724         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
11725         points to a vtable in the dying appdomain.
11726
11727         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
11728         listeners into unmanaged code inside the lock.
11729
11730         * object.c (mono_class_vtable): Turn off typed allocation in non-root
11731         domains and add some comments.
11732
11733 2003-10-25  Martin Baulig  <martin@ximian.com>
11734
11735         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
11736
11737         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
11738
11739         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
11740         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
11741         currently parsing.  Create the generic class and store it in
11742         `generic_inst->klass' before parsing the type arguments.  This is
11743         required to support "recursive" definitions; see mcs/tests/gen-23.cs
11744         for an example.
11745         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
11746         to support recursive typespec entries.
11747
11748         * class.c (mono_class_setup_parent): If our parent is a generic
11749         instance, we may get called before it has its name set.
11750         (mono_class_from_generic): Splitted into
11751         mono_class_create_from_generic() and mono_class_initialize_generic().
11752
11753 2003-10-25  Martin Baulig  <martin@ximian.com>
11754
11755         * icall.c (ves_icall_Type_BindGenericParameters): Return a
11756         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
11757         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
11758         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
11759
11760         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
11761         (create_typespec): Likewise.
11762         (mono_reflection_bind_generic_parameters): Return a
11763         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
11764         (mono_reflection_inflate_method_or_ctor): New public function.
11765
11766         * reflection.h (MonoReflectionGenericInst): New typedef.        
11767
11768 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
11769
11770         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
11771         inside the domain lock. Fixes #49993.
11772         
11773         * object.c (mono_class_vtable): When typed allocation is used, 
11774         allocate vtables in the GC heap instead of in the mempool, since the
11775         vtables contain GC descriptors which are used by the collector even
11776         after the domain owning the mempool is unloaded.
11777
11778         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
11779
11780         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
11781         reflect what it does. Also invalidate mempools instead of freeing
11782         them if a define is set.
11783
11784         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
11785         of the appdomain.
11786         
11787         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
11788         hold the finalizable objects in this domain.
11789
11790         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
11791         appdomain.
11792
11793         * appdomain.c (mono_domain_set): New function to set the current
11794         appdomain, but only if it is not being unloaded.
11795
11796         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
11797         appdomain which is being unloaded.
11798         
11799         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
11800         unloading of the root appdomain.
11801
11802         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
11803         icall to execute a method in another appdomain. Intended as a 
11804         replacement for InternalSetDomain, which can confuse the code 
11805         generation in the JIT.
11806
11807         * appdomain.c (mono_domain_is_unloading): New function to determine
11808         whenever an appdomain is unloading.
11809
11810         * appdomain.c (mono_domain_unload): New function to correctly unload
11811         an appdomain.
11812
11813         * assembly.c (mono_assembly_load_references): Check that an assembly
11814         does not references itself.
11815
11816         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
11817         domain manually, it asks the finalizer thread to do it, then waits for
11818         the result. Also added a timeout.
11819
11820         * icall.c: Register the new icalls.
11821
11822         * threads.h threads.c: Export the mono_gc_stop_world and 
11823         mono_gc_start_world functions.
11824         
11825         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
11826         function to fill out the mempool with 0x2a.
11827
11828 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
11829
11830         * reflection.h (MonoReflectionMethodAux): New structure to store
11831         information which is rarely used, thus is not in the MonoMethod
11832         structure.
11833
11834         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
11835         store the aux info.
11836
11837         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
11838         and marshalling info into the aux structure.
11839
11840         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
11841         from the aux structure.
11842
11843         * loader.c (mono_method_get_param_names): Retrieve the param names from
11844         the aux structure.
11845         
11846 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
11847
11848         * exception.h exception.c: Add AppDomainUnloadedException && fix 
11849         warning.
11850
11851 2003-10-21  Dick Porter  <dick@ximian.com>
11852
11853         * socket-io.c
11854         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
11855         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
11856
11857 2003-10-21  Martin Baulig  <martin@ximian.com>
11858
11859         * reflection.c (mono_reflection_bind_generic_parameters):
11860         `klass->parent' is NULL for interfaces.
11861
11862 2003-10-21  Martin Baulig  <martin@ximian.com>
11863
11864         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
11865
11866 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
11867
11868         * exception.c (mono_exception_from_name_msg): New helper function for
11869         creating exceptions and initializing their message field.
11870
11871         * exception.c: Simplify functions using the new helper.
11872
11873         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
11874         New function.
11875
11876         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
11877         mono_raise_exception, since otherwise gcc doesn't generate the function
11878         epilog for raise_exception, confusing the stack unwinding in the JIT.
11879         Fixes #45043.
11880
11881         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
11882         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
11883         Fixes #49499.
11884
11885 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11886
11887         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
11888         utf8.
11889
11890 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
11891
11892         * icall.c: Removed GetUninitializedObject method because
11893           AllocateUninitializedClassInstance does the same.
11894
11895 2003-10-18  Martin Baulig  <martin@ximian.com>
11896
11897         * class.c (inflate_generic_signature): Renamed to
11898         mono_class_inflate_generic_signature() and made it public.
11899         (my_mono_class_from_generic_parameter): New static function; if we
11900         don't already have the generic parameter's MonoClass, create a
11901         very simple one which is just used internally in the runtime and
11902         not passed back to managed code.
11903
11904         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
11905
11906         * metadata.h (MonoMethodSignature): Moved the
11907         `MonoGenericParam *gen_params' to the MonoMethodHeader.
11908         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
11909
11910         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
11911         ves_icall_MonoMethod_GetGenericArguments(); this is now an
11912         interncall on the MonoMethod class, not on MethodInfo.
11913         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
11914         calling mono_reflection_bind_generic_method_parameters() directly.
11915
11916         * loader.c (mono_method_get_signature): If this is a MethodSpec;
11917         return the already computed `method->signature'.
11918         (method_from_methodspec): New static function to load a method
11919         from a MethodSpec entry.
11920         (mono_get_method_from_token): Call the new method_from_methodspec()
11921         for MethodSpec tokens.  
11922         (mono_get_method_from_token): If we're a generic method, load the
11923         type parameters.
11924
11925         * reflection.c (mono_image_get_memberref_token): Allow
11926         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
11927         table.
11928         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
11929         (mono_image_create_token): First check whether it's a generic
11930         method (so we'd need to create a MethodSpec), then do the other
11931         two alternatives.
11932         (mono_reflection_bind_generic_method_parameters): Return a
11933         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
11934         called directly from the interncall.
11935
11936 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
11937
11938         * reflection.c (load_public_key): Move loading of the public key
11939         into managed code.
11940
11941         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
11942
11943         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
11944         fields.
11945
11946         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
11947         culture, hash_alg and public_key. Fixes #49555.
11948
11949 2003-10-17  Martin Baulig  <martin@ximian.com>
11950
11951         * class.h (MonoGenericInst): Moved this declaration here and added
11952         `MonoMethod *generic_method'.
11953
11954         * icall.c
11955         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
11956         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
11957
11958         * metadata.c (mono_metadata_type_equal): Two types of
11959         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
11960         index; ie. don't compare the address of the `MonoGenericParam'
11961         structure.
11962         (mono_metadata_load_generic_params): Removed the `MonoMethod
11963         *method' argument.
11964
11965         * metadata.h (MonoGenericInst): Moved declaration to class.h.
11966         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
11967
11968         * reflection.c (method_encode_signature): Encode the number of
11969         generic parameters.
11970         (encode_generic_method_sig): New static function.
11971         (method_encode_methodspec): New static function; creates an entry
11972         in the MethodSpec table for a generic method.
11973         (mono_image_get_methodspec_token): New static function.
11974         (mono_image_create_token): Call mono_image_get_methodspec_token()
11975         for generic methods.
11976         (mono_reflection_bind_generic_method_parameters): New public
11977         function.  Instantiates a generic method.
11978
11979 2003-10-16  Martin Baulig  <martin@ximian.com>
11980
11981         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
11982         *gen_params' here from MonoMethodHeader.
11983
11984         * metadata.c (mono_metadata_parse_method_signature): If we have
11985         generic parameters, initialize `method->gen_params' and then set
11986         the correct `type->data.generic_param' in all the parameters.
11987
11988 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
11989
11990         * threads.c (mono_threads_get_default_stacksize): New function to 
11991         return the default stacksize.
11992
11993         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
11994         termination of the finalizer thread, since the previous method had
11995         race conditions. Fixes #49628.
11996
11997         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
11998         as for the other managed threads.
11999
12000 2003-10-16  Martin Baulig  <martin@ximian.com>
12001
12002         * class.c (inflate_generic_signature): Copy `generic_param_count'
12003         and `gen_params'.
12004
12005         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
12006         New interncall.
12007
12008         * metadata.c (mono_metadata_parse_method_signature): Actually set
12009         the `method->generic_param_count' here.
12010         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
12011
12012 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
12013
12014         * object.h: Add a new field to TypedRef to simplify the implementation
12015         of the REFANY opcodes in the JIT.
12016
12017         * icall.c: Make use of the new field.
12018
12019         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
12020         dynamically.
12021
12022 2003-10-15  Martin Baulig  <martin@ximian.com>
12023
12024         * class.c (mono_class_from_gen_param): Renamed to
12025         mono_class_from_generic_parameter() and moved most of the
12026         functionality from mono_reflection_define_generic_parameter()
12027         here; ie. we create a "real" class here.
12028         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
12029         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
12030         previously been called.
12031
12032         * class.h (MonoGenericParam): Moved the declaration of this struct
12033         here from metadata.h and added `MonoMethod *method'.
12034
12035         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
12036         interncall.
12037
12038         * loader.c (mono_get_method_from_token): If we have any generic
12039         parameters, call mono_metadata_load_generic_params() to read them
12040         from the MONO_TABLE_GENERICPAR.
12041
12042         * metadata.c (mono_metadata_load_generic_params): Added
12043         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
12044
12045         * metadata.h (MonoMethodSignature): Replaced
12046         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
12047         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
12048
12049         * reflection.c (mono_reflection_define_generic_parameter): Moved
12050         most of the functionality into the new
12051         mono_class_from_generic_parameter(); set the `method' field if
12052         we're a method parameter.       
12053
12054 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
12055
12056         * marshal.c (emit_struct_conv): if native size is 0
12057         emit no code.
12058
12059 2003-10-14  Martin Baulig  <martin@ximian.com>
12060
12061         * icall.c: The generics API has changed in the spec since it was
12062         added to System.Type; these modifications make it match the spec
12063         again.
12064         (ves_icall_Type_GetGenericParameters): Renamed to
12065         `ves_icall_Type_GetGenericArguments'.
12066         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
12067         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
12068         `ves_icall_MonoType_get_HasGenericArguments'.
12069         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
12070         `ves_icall_MonoType_get_IsGenericParameter'.
12071         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
12072         this is no interncall anymore.
12073         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
12074         `ves_icall_TypeBuilder_get_IsGenericParameter'.
12075
12076 2003-10-14  Martin Baulig  <martin@ximian.com>
12077
12078         * reflection.c (mono_reflection_bind_generic_parameters): Also
12079         inflate generic methods if we're reading the class from IL.
12080
12081 2003-10-13  Martin Baulig  <martin@ximian.com>
12082
12083         * reflection.c (mono_reflection_define_generic_parameter): This
12084         method isn't called directly from the icall anymore; take a
12085         `MonoReflectionAssemblyBuilder *' so we can use this for type and
12086         method generic parameters.
12087         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
12088         (method_builder_encode_signature): Encode generic parameters.
12089         (mono_image_get_method_info): Write generic params to the
12090         MONO_TABLE_GENERICPARAM table.
12091
12092         * reflection.h (MonoReflectionMethodBuilder): Added
12093         `MonoArray *generic_params'.
12094
12095         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
12096
12097         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
12098         wrapper for mono_reflection_define_generic_parameter().
12099         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
12100
12101 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
12102
12103         * marshal.h: Add missing function to fix build.
12104
12105         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
12106         the SetLastError pinvoke attribute.
12107
12108         * marshal.c (mono_marshal_set_last_error): New helper function called
12109         by the generated code.
12110         
12111         * marshal.c (mono_mb_emit_branch): New helper function.
12112
12113         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
12114
12115         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
12116         classes as parameters and return values of delegates. Fixes #29256. 
12117
12118 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
12119
12120         * locales.c: use gint32 in non HAVE_ICU case
12121
12122 2003-10-11  Martin Baulig  <martin@ximian.com>
12123
12124         * mono-debug.c (mono_debug_add_method): Added a workaround for
12125         bug #48591.
12126
12127 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
12128
12129         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
12130         delegates passed to native code must use the STDCALL calling 
12131         convention. Fixes #35987.
12132
12133 2003-10-10  Martin Baulig  <martin@ximian.com>
12134
12135         * class.c (inflate_generic_type): If we're inflating for a generic
12136         type instance (and not for a generic method), return
12137         MONO_TYPE_MVAR unchanged.
12138
12139 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12140
12141         * string-icalls.c: Join ignores null strings in the source array.
12142         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
12143         * threads.c: GetAvailableTheads is slightly more accurate.
12144
12145 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
12146
12147         * threads.h threads.c : add mono_threads_set_default_stacksize
12148         and pass default to CreateThread calls.
12149
12150 2003-10-09  Dick Porter  <dick@ximian.com>
12151
12152         * icall.c:
12153         * locales.h:
12154         * locales.c: Internal calls for constructing CultureInfo and
12155         related objects from libicu (if its available.)
12156
12157 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
12158
12159         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
12160
12161 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12162
12163         * threadpool.c: added an argument to async_invoke_thread that is the
12164         item to process, pass the MonoAsyncResult to the thread start function
12165         when creating a new thread. This way we don't need to acquire any lock
12166         when we're creating a new thread. Readded a semaphore for faster
12167         response times (instead of that Sleep i added).
12168
12169 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
12170
12171         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
12172         get daylight change dates better on Windows, fix handling
12173         of platforms without tm_gmtoff.
12174
12175 2003-10-06  Martin Baulig  <martin@ximian.com>
12176
12177         * class.c (inflate_generic_method): Renamed to
12178         mono_class_inflate_generic_method() and made public.
12179         (mono_class_init): Don't inflate the generic methods here.
12180         (mono_class_from_generic): Added `gboolean inflate_methods'
12181         argument.  Inflate the methods here.
12182
12183         * loader.c (mono_method_get_param_names): Ignore instances of
12184         generic types for the moment.
12185
12186         * reflection.c (fixup_method): Added support for inflated methods.
12187         (mono_image_create_token): Use mono_image_get_methodref_token()
12188         for inflated methods.
12189         (mono_custom_attrs_from_param): Ignore instances of generic types
12190         for the moment.
12191         (mono_reflection_bind_generic_parameters): New public function.
12192         Moved all the functionality from
12193         ves_icall_Type_BindGenericParameters() here and added support for
12194         dynamic types.
12195         (mono_reflection_define_generic_parameter): Initialize
12196         `klass->methods' here.
12197
12198         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
12199         functionality into mono_reflection_define_generic_parameter().
12200         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
12201         TypeBuilder, return that TypeBuilder.
12202
12203 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12204
12205         * appdomain.c: removed mono_delegate_semaphore.
12206
12207         * threadpool.c:
12208         (mono_thread_pool_add): moved hash table creation inside and the thread 
12209         creation outside of the critical region.
12210         (mono_thread_pool_finish): removed obsolete code.
12211         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
12212         continue or exit the thread depending on the queue.
12213
12214 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
12215
12216         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
12217         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
12218         handle more bool marshalling options
12219
12220 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
12221
12222         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
12223         arrays of structs. Also add a more descriptive error message when
12224         a structure member is marshalled as LPArray.
12225
12226 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
12227
12228         * marshal.c (mono_marshal_get_native_wrapper): Add support for
12229         marshalling arrays of complex types. Fixes #29098. Also remove an
12230         usused and incomplete function.
12231
12232 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
12233
12234         * gc.c: report heap_size - free_bytes as total memory allocated
12235         (bug#49362).
12236
12237 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
12238
12239         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
12240         fix timezone handling problems on Windows.
12241         
12242         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
12243         asserts when the year is outside the range handled by ms the functions.
12244
12245         * class.c (setup_interface_offsets): If the class is an interface,
12246         fill out its interface_offsets slot.
12247
12248 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12249
12250         * threadpool.c: mark threadpool threads as background.
12251
12252 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
12253
12254         * decimal.c - define DECINLINE to nothing if not using GCC
12255
12256 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
12257
12258         * assembly.c: More refcount fixes.
12259
12260 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12261
12262         * string-icalls.c: if we're not trimming, return the same string.
12263         When not splitting, don't create a new string.
12264
12265 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12266
12267         * image.c:
12268         (mono_image_open): increment the ref_count inside the critical section.
12269
12270 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
12271
12272         * image.c (mono_image_open): Fix reference counting bug.
12273
12274 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
12275
12276         * marshal.c (mono_marshal_type_size) struct alignment changed for 
12277         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
12278         64bits. Avoid leak in mono_marshal_get_native_wrapper when
12279         mono_lookup_pinvoke_call throws.        
12280
12281 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
12282
12283         * reflection.c (mono_reflection_parse_type): Fix #49114.
12284
12285         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
12286         temporary workaround for cygwin header problem.
12287
12288         * object.c (mono_object_isinst): Synchronize this with the code
12289         generated by the JIT for casts.
12290
12291 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
12292
12293         * reflection.c (encode_type): Fix #38332.
12294
12295 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
12296
12297         * marshal.c (mono_marshal_method_from_wrapper): New function to return
12298         the original method from the wrapper method.
12299
12300 2003-09-25  Martin Baulig  <martin@ximian.com>
12301
12302         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
12303         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
12304         (ves_icall_Type_get_IsGenericInstance): New interncall.
12305
12306 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
12307
12308         * object.c: fix cast warning in big endian code.
12309
12310 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
12311
12312         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
12313         
12314 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12315
12316         * assembly.c: don't call check_env from mono_assembly_load. It's
12317         already done once in mono_assemblies_init and may cause headaches when
12318         multiple threads are loading assemblies.
12319
12320 2003-09-19  Martin Baulig  <martin@ximian.com>
12321
12322         * reflection.c (mono_reflection_define_generic_parameter): Don't
12323         allocate `klass->methods', set `klass->flags' to
12324         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
12325
12326 2003-09-18  Martin Baulig  <martin@ximian.com>
12327
12328         * class.c (mono_class_init): Don't create `class->methods' if it's
12329         already initialized.
12330
12331         * metadata.c (mono_metadata_load_generic_params): Make this
12332         actually work.
12333
12334         * reflection.c (mono_reflection_define_generic_parameter): Set
12335         parent class and interfaces from the constraints.
12336
12337         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
12338         to keep this struct in sync with the declaration in TypeBuilder.cs.
12339
12340 2003-09-17  Martin Baulig  <martin@ximian.com>
12341
12342         * metadata.h (MonoType): Replaced the data's `int type_param'
12343         field with `MonoGenericParam *generic_param'.
12344         (MonoGenericParam): Added `MonoClass *klass'.
12345
12346         * class.c (mono_class_from_gen_param): Removed the
12347         `MonoImage *image' and `int type_num' arguments.
12348
12349         * metadata.c (mono_metadata_parse_generic_param): New static
12350         method; creates a MonoGenericParam which just contains the index.
12351         (do_mono_metadata_parse_type): Call
12352         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
12353         MONO_TYPE_MVAR.
12354
12355         * reflection.c (mono_image_typedef_or_ref): Generic type
12356         parameters may be in the same assembly, but never use a typedef
12357         for them.
12358         (mono_reflection_define_generic_parameter): We're now creating a
12359         "real" class for the type parameter; it's now safe to call
12360         mono_class_from_mono_type() on the class'es type, it'll do the
12361         right thing.
12362
12363 2003-09-16  Martin Baulig  <martin@ximian.com>
12364
12365         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
12366         `symfile->range_entry_size' and `symfile->class_entry_size' here;
12367         the `symfile' data structure must be fully initialized before it
12368         gets added to the table.
12369
12370 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
12371
12372         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
12373
12374         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
12375         class init trampolines.
12376
12377 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
12378
12379         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
12380         to the built-in profiler to turn off time and allocation profiling
12381         respectively.
12382
12383 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
12384
12385         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
12386         g_direct_equal.
12387
12388         * debug-helpers.c (mono_method_full_name): Print the wrapper type
12389         in human readable form.
12390
12391 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
12392
12393         * reflection.c icall.c: Fixed warnings.
12394
12395         * image.c (load_class_names): Use a temporary hash table to hold the
12396         namespaces in order to avoid doing many string comparisons.
12397
12398         * image.h: Fix typo.
12399
12400         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
12401         Pass NULL instead of g_direct_equal to the GHashTable constructor 
12402         since the NULL case is short-circuited inside g_hash_table_lookup, 
12403         leading to better performance.  
12404
12405         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
12406         obtain the first custom attribute for a given index. Depends on the
12407         CustomAttribute table being sorted by the parent field.
12408
12409         * reflection.c (mono_custom_attrs_from_index): Use the new function 
12410         for better performance.
12411
12412 2003-09-07  Martin Baulig  <martin@ximian.com>
12413
12414         * class.c (mono_class_init): If we're a generic instance, inflate
12415         all our methods instead of loading them from the image.
12416         (mono_class_from_generic): Set `class->methods = gklass->methods'.
12417
12418 2003-09-07  Martin Baulig  <martin@ximian.com>
12419
12420         * mono-debug-debugger.c: Added support for constructors.
12421
12422 2003-09-06  Martin Baulig  <martin@ximian.com>
12423
12424         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
12425         New interncall.
12426
12427         * reflection.c (mono_reflection_setup_generic_class): Call
12428         ensure_runtime_vtable() to create the vtable.
12429
12430 2003-09-05  Martin Baulig  <martin@ximian.com>
12431
12432         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
12433         MONO_TYPE_MVAR.
12434
12435 2003-09-04  Martin Baulig  <martin@ximian.com>
12436
12437         * reflection.c (mono_reflection_define_generic_parameter): Generic
12438         parameters start with zero.
12439
12440 2003-09-04  Martin Baulig  <martin@ximian.com>
12441
12442         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
12443
12444         * reflection.h (MonoReflectionGenericParam): New typedef.
12445         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
12446         the generic parameters from the managed TypeBuilder.
12447
12448         * reflection.c (mono_reflection_define_generic_parameter): New function.
12449         (mono_reflection_create_runtime_class): Encode generic parameters.
12450         (mono_reflection_setup_generic_class): New function; this is
12451         called after adding adding all generic params to the TypeBuilder.
12452         (encode_type): Added MONO_TYPE_VAR.
12453
12454 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
12455
12456         * class.h class.c (mono_class_needs_cctor_run): Moved this method
12457         here from the JIT.
12458
12459         * assembly.h assembly.c: Moved the AOT loading code into an assembly
12460         load hook.
12461
12462 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
12463
12464         * reflection.h reflection.c class.h class.c: Delete duplicate 
12465         definition of mono_type_get_name () from reflection.c and export the
12466         one in class.c.
12467
12468         * class.c: Class loading fixes from Bernie Solomon 
12469         (bernard@ugsolutions.com).
12470
12471         * reflection.c: Endianness fixes from Bernie Solomon 
12472         (bernard@ugsolutions.com).
12473         
12474 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
12475
12476         * assembly.h assembly.c: Define a file format version for AOT
12477         libraries.
12478         
12479         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
12480
12481         * appdomain.h (MonoJitInfo): New field to determine whenever the
12482         code is domain neutral.
12483         
12484 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
12485
12486         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
12487
12488 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
12489
12490         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
12491         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
12492         Avoid caching the result since strings must be domain specific. Fixes
12493         #48050.
12494
12495 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
12496
12497         * marshal.c (mono_marshal_init): Make this callable multiple times
12498         since it is hard to find a correct place to call it.
12499
12500         * object.c (mono_runtime_class_init): Execute static constructors in
12501         the correct appdomain.
12502
12503         * image.c (build_guid_table): Handle the case when multiple images have
12504         the same GUID.
12505
12506 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12507
12508         * icall.c: added a couple of icalls for System.Web.
12509
12510 2003-08-28  Martin Baulig  <martin@ximian.com>
12511
12512         * icall.c (ves_icall_Type_BindGenericParameters): Use
12513         `klass->generic_inst' instead of `&klass->byval_arg' in the
12514         mono_type_get_object() call.  The returned type must be
12515         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
12516
12517 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
12518
12519         * NOTES: New file.
12520
12521         * object.c (mono_class_proxy_vtable): Make it thread safe.
12522
12523         * pedump.c: Fix warning.
12524
12525         * object.c appdomain.h: Get rid of metadata_section. 
12526         It is no longer needed and it was causing deadlocks with domain->lock.
12527
12528         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
12529
12530 2003-08-26  Martin Baulig  <martin@ximian.com>
12531
12532         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
12533
12534 2003-08-26  Martin Baulig  <martin@ximian.com>
12535
12536         * pedump.c (main): Call mono_metadata_init(),
12537         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
12538         and mono_loader_init().
12539
12540 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
12541
12542         * loader.h: Add missing include to fix build.
12543
12544         * image.h: mono_image_load_references is no more.
12545
12546         * assembly.c: Reworked assembly loading to make it really thread safe.
12547         After these changes, the assembly returned by mono_assembly_open is
12548         fully initialized, i.e. all its references assemblies are loaded.
12549
12550         * assembly.c (mono_image_load_references): Renamed to 
12551         mono_assembly_load_references, and made private, since clients no
12552         longer need to call it.
12553
12554         * class.c: Removed calls to mono_assembly_load_references, since it was
12555         a source of deadlocks.
12556
12557         * loader.h loader.c class.h class.c: Protect data structures using a 
12558         new lock, the loader lock.
12559
12560         * class.c (mono_class_setup_vtable): Create temporary hash tables and
12561         GPtrArrays only when needed.
12562
12563         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
12564         into empty structures by mcs. Fixes pinvoke7.cs.
12565         
12566         * domain.c (mono_init): Call a new initialization function.
12567
12568         * appdomain.c (mono_runtime_init): Call the new initializer function
12569         of the marshal module.
12570
12571         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
12572         inserted into empty structures by mcs. Fixes pinvoke7.cs.
12573
12574         * marshal.h marshal.c: Added locks around the wrapper caches to make
12575         this module thread safe.
12576
12577         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
12578         this argument. Fixes pinvoke1.exe.
12579
12580 2003-08-25  Lluis Sanchez <lluis@ximian.com>
12581
12582         * object.h: Added call_type field to MonoMethodMessage and the corresponding
12583         enumeration of values. Removed fields to store remote call output values in
12584         MonoAsyncResult. Not needed any more.
12585         * object.c: Initialize call_type and async_result fields in mono_message_init.
12586         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
12587         dispatching the message.
12588         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
12589         async call to finish. To do it use a message with EndInvoke call type.
12590
12591 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
12592
12593         * loader.h loader.c (mono_method_hash_marhal_info): New function which
12594         determines whenever a method has marshalling info.
12595
12596 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12597
12598         * assembly.c: fix the build on windows.
12599
12600 2003-08-22 Lluis Sanchez <lluis@ximian.com>
12601
12602         * object.cs: Fixed bug #47785.
12603
12604 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
12605
12606         * string-icalls.c (StringReplace): If their are no occurances of
12607         the old string found return a reference to the supplied
12608         string. This saves some memory and matches MS behavoir.
12609         
12610 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12611
12612         * socket-io.c: fixed compilation for systems that define AF_INET6
12613         and don't define SOL_IP/SOL_IPV6.
12614
12615 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
12616
12617         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
12618         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
12619
12620         * rawbuffer.c rawbuffer.h: Make this module thread safe.
12621
12622         * domain.c: Make this module thread safe.
12623
12624         * domain.c (mono_init): Call new initialization function.
12625
12626         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
12627         reference types too. Fixes #38812.
12628
12629         * image.c (mono_image_init): Fixed warnings.
12630
12631         * class.c (mono_class_from_typeref): Handle assembly load failure
12632         correctly.
12633
12634         * appdomain.c (add_assemblies_to_domain): Handle the case when
12635         the references of an assembly are not yet loaded.
12636
12637         * metadata.c image.c assembly.c: Moved initialization of global
12638         variables to a separate function called at startup since lazy 
12639         initialization of these variables is not thread safe.
12640         
12641         * image.c assembly.c: Made this module thread safe by adding locks in 
12642         the appropriate places.
12643
12644         * domain.c (mono_init): Call the new initialization functions of the
12645         three modules.
12646
12647 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
12648
12649         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
12650           make a direct call. It is proxy's work to make the call asynchronous.
12651           mono_delegate_end_invoke(): If the targe is a proxy, just collect
12652           the return values.
12653         * object.cs: mono_method_call_message_new(): read AsyncResult and
12654           state object from parameters list, if this info is requested.
12655         * object.h: Added fields to store remote call output values in
12656           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
12657
12658 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
12659
12660         * object.h: add needed fields to MonoThread.
12661         * threads.c, threads.h: allow registering a function to cleanup data
12662         allocated per thread by the JIT.
12663
12664 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
12665
12666         * loader.h: portability fix by Bernie Solomon
12667         * <bernard@ugsolutions.com>.
12668
12669 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
12670
12671         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
12672         return a MonoArray. This simplifies the code and also ensures that
12673         the cache allways contains an object reference as a value.
12674
12675         * icall.c (ves_icall_get_parameter_info): Simplified using the new
12676         function.
12677
12678 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12679
12680         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
12681         fixes a problem with byte ordering when getting the address family for
12682         a socket.
12683
12684 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
12685
12686         * .cvsignore: Added monosn.
12687
12688         * reflection.h reflection.c loader.c: Added support for parameter
12689         marshalling to dynamically created types. Fixes #47295.
12690
12691 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
12692
12693         * rand.c: remove useless warnings.
12694
12695 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
12696
12697         * class.c: implemented ldtoken for methods and fieldrefs.
12698
12699 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12700
12701         * threadpool.c: when mono_async_invoke was called, no one took care of
12702         monitoring the queue. So if the method invoked took some time and we
12703         got new async invoke requests after 500 ms (the thread created waited
12704         that long in WaitForSingleObject), the new async invoke was not called
12705         until the previous one finished.
12706
12707         This is fixed now. Thanks to Totte for helping with it.
12708
12709 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12710
12711         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
12712
12713 2003-08-11  Martin Baulig  <martin@ximian.com>
12714
12715         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
12716
12717 2003-08-06  Martin Baulig  <martin@ximian.com>
12718
12719         * mono-debug-debugger.c: Added support for static fields,
12720         properties and methods.
12721
12722 2003-08-06  Martin Baulig  <martin@ximian.com>
12723
12724         * mono-debug-debugger.c: Don't store the MonoString's vtable to
12725         make this work for applications with multiple application domains.
12726
12727 2003-08-04  Martin Baulig  <martin@ximian.com>
12728
12729         * mono-debug-debugger.c: Completely reworked the type support; the
12730         most important thing is that we're now just using one single
12731         `MonoType' instance per type.
12732
12733 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
12734
12735         * mono-endian.h, mono-endian.c, icall.c: Added icall
12736         ves_icall_System_Double_AssertEndianity to assert double word endianity
12737         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
12738
12739 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
12740
12741         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
12742         support, icalls and fixes.
12743
12744 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
12745
12746         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
12747         classes that are a punctuation character in .NET is not the same a
12748         g_unichar_ispunct.
12749
12750 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
12751
12752         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
12753
12754 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
12755
12756         * icall.c: Add new MemCopy internalcall.
12757         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
12758         Simplified code; It is not necessary to handle all the cases here,
12759         as the C# code takes care of it.  Only handle the case of the name
12760         resource embedded into the assembly.
12761
12762         Changed signature to return the data pointer and the size of the
12763         data. 
12764
12765 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
12766
12767         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
12768         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
12769
12770 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
12771
12772         * socket-io.c: ignore EINTR error in select.
12773
12774 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
12775
12776         * class.h, class.c: removed unused subclasses field in MonoClass.
12777
12778 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
12779
12780         * icall.c: improve fix of get_base_definition(). If the parent class
12781           doesn't have the mehod, look at the parent of the parent.
12782         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
12783           to check if a parameter is an in or out parameter
12784           (PARAM_ATTRIBUTE_IN is not set by default).
12785           mono_method_return_message_restore(): Use mono_class_value_size to
12786           get the size of a value type. mono_type_stack_size (parameterType)
12787           does not return the correct value if parameterType is byRef.
12788           mono_load_remote_field(), mono_load_remote_field_new(),
12789           mono_store_remote_field(), mono_store_remote_field_new():
12790           raise exception if the remote call returns an exception.
12791
12792 2003-07-28  Martin Baulig  <martin@ximian.com>
12793
12794         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
12795         method.  This is a wrapper around mono_runtime_invoke() which
12796         boxes the instance object if neccessary.
12797
12798 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
12799
12800         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
12801         metadata.h, row-indexes.h, verify.c: first cut of generics support.
12802
12803 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
12804
12805         * icall.c: disable mcs bug workaround.
12806
12807 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
12808
12809         * object.c (mono_runtime_class_init): Take the metadata_section
12810         mutex before obtaining the domain mutex.
12811
12812         * appdomain.h: Added definition of metadata_section mutex here. 
12813
12814         * object.c: define metadata_mutex here.
12815
12816 2003-07-24  Ravi Pratap  <ravi@ximian.com>
12817
12818         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
12819         fixed.
12820
12821 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
12822
12823         * reflection.c: Fix bug #46669
12824
12825 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12826
12827         * exception.c:
12828         * exception.h:
12829         * icall.c:
12830         * object.h: fill in the type name for TypeLoadException.
12831
12832 2003-07-23  Ravi Pratap  <ravi@ximian.com>
12833
12834         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
12835         relationship between TypeBuilders while compiling corlib) and bug
12836         45993 (Array types returned from the runtime while compiling
12837         corlib were from the loaded corlib).
12838
12839 2003-07-22  Martin Baulig  <martin@ximian.com>
12840
12841         * mono-debug-debugger.c: Reworked the type support a bit more;
12842         distinguish between types and classes.
12843
12844 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
12845
12846         * icall.c: add IsArrayImpl icall.
12847
12848 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
12849
12850         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
12851         initializing real_size only once. Also fix bug #46602.
12852
12853 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
12854
12855         * object.c: Renamed mono_metadata_section to metadata_section.
12856
12857 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
12858
12859         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
12860           empty array if the type is an array. Fixed.
12861           ves_icall_MonoMethod_get_base_definition: if the base method
12862           is abstract, get the MethodInfo from the list of methods of
12863           the class.
12864         * reflection.c: ParameterInfo.PositionImpl should be zero-based
12865           and it was 1-based. Fixed in mono_param_get_objects.
12866
12867 2003-07-20  Martin Baulig  <martin@ximian.com>
12868
12869         * mono-debug.h: Set version number to 31.
12870         (mono_debug_init): Added `MonoDomain *' argument.
12871
12872         * mono-debug-debugger.c: Reworked the type support; explicitly
12873         tell the debugger about builtin types; pass the `klass' address to
12874         the debugger.
12875
12876 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
12877
12878         * image.c: Allow new metadata tables to be loaded without a
12879         warning. Also update the warning message to give the new constant value.
12880                 
12881 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
12882
12883         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
12884         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
12885         array type representation changes.
12886
12887 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
12888
12889         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
12890         on Environment.Exit () call.
12891
12892 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
12893
12894         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
12895         requires a matching corlib.
12896
12897 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
12898
12899         * Changelog: My editor decided to add a CR to each line. Sorry about that.
12900           Committed again without the CRs.
12901         
12902 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
12903
12904         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
12905           getting it from the "this" socket instance. Did not work
12906           if the socket is a subclass of Socket.
12907           Also fixed bug #35371.
12908
12909 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
12910
12911         * metadata.c: fixed size for TypedByRef.
12912         * loader.c: when searching for a method, consider the vararg amrker.
12913         * unicode.c, decimal.c: constify some arrays.
12914
12915 2003-07-15  Dick Porter  <dick@ximian.com>
12916
12917         * socket-io.c: Fixed compilation for gcc < 3.2.
12918
12919         Fixed compilation for machines that don't have AF_INET6 (thanks to
12920         Bernie Solomon <bernard@ugsolutions.com> for that part.)
12921
12922         Fixed compile warnings.
12923         
12924         Fixed formatting and line endings.
12925
12926 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
12927
12928         * socket-io.h:
12929         * socket-io.c: Added IPv6 support.
12930
12931 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
12932
12933         * class.c (mono_class_is_assignable_from): New function to implement
12934         the is_assignable_from logic. Used by mono_object_isinst, 
12935         Type::IsAssignableFrom () and the interpreter.
12936
12937         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
12938         Object, even interfaces.
12939         
12940         * object.c (mono_object_isinst): Implement in terms of 
12941         is_assignable_from.
12942
12943         * icall.c (ves_icall_type_is_assignable_from): New icall.
12944
12945 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
12946
12947         * domain.c (foreach_domain): fix compiler warning.
12948
12949 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
12950
12951         * image.c (load_metadata_ptrs): use g_strndup because strndup is
12952         not available on all plattforms
12953
12954 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
12955
12956         * image.h image.c: Store the metadata version string in MonoImage.
12957         * icall.c: New icall to retrieve the image version.
12958         * reflection.c (create_dynamic_image): Fill in the image version field
12959         * reflection.c (build_compressed_metadata): Use the image version
12960         from the image structure.
12961
12962 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12963
12964         * appdomain.c: modified comment.
12965         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
12966         That will be its last iteration when mono_gc_cleanup is called from
12967         mono_runtime_cleanup and before the domain is unloaded.
12968
12969         Fixes bug #45962.
12970
12971 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
12972
12973         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
12974         attributes.
12975
12976 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
12977
12978         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
12979         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
12980         Bernie Solomon <bernard@ugsolutions.com>.
12981
12982 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
12983
12984         * object.c, object.h: provide mono_object_new_fast() for faster
12985         allocation in some special cases.
12986
12987 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
12988
12989         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
12990         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
12991
12992 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
12993
12994         * threadpool.c: fix leaks.
12995
12996 2003-07-01  Dick Porter  <dick@ximian.com>
12997
12998         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
12999         using MonoGHashTables.  Fixes threadpool bug posted to list.
13000
13001 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
13002
13003         * image.h, image.c: added support to load an assembly from a byte array.
13004         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
13005         assembly bundle support.
13006
13007 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
13008
13009         * threadpool.c (mono_thread_pool_add): keep a reference to the
13010         AsyncResult to prevent GC
13011
13012 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
13013
13014         * class.c: leak fix.
13015
13016 2003-06-25  Dick Porter  <dick@ximian.com>
13017
13018         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
13019         for the async object, the WaitHandle object will close the handle.
13020         Fixes bug 45321.
13021
13022 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
13023
13024         * class.c: in mono_array_class_get (), lookup from the hash with the
13025         same type we insert: this works around a bug in
13026         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
13027         lluis. The real fix will have to wait for after the release.
13028
13029 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
13030
13031         * icall.c: fix memory leak when getting type members.
13032
13033 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
13034
13035         * reflection.c: added more pubtoken special cases.
13036
13037 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
13038
13039         * class.c: handle field offset correctly when class size
13040         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
13041
13042 2003-06-20  Martin Baulig  <martin@ximian.com>
13043
13044         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
13045         *image' field.
13046
13047 2003-06-20  Martin Baulig  <martin@ximian.com>
13048
13049         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
13050
13051 2003-06-20  Martin Baulig  <martin@ximian.com>
13052
13053         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
13054         just distinguish between variables in registers and variables at
13055         an offset relative to a register.
13056
13057 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13058
13059         * icall.c: #ifdef out latest changes until mcs is fixed.
13060
13061 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
13062
13063         * icall.c: return members in metadata order.
13064
13065 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
13066
13067         * icall.c: avoid infinite loop in GetTimeZoneData.
13068
13069 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
13070
13071         * icall.c: added Marshal.Prelink/All icalls.
13072
13073 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
13074
13075         * object.c, object.h: fix warnings and do some overflow checking
13076         when creating arrays.
13077
13078 2003-06-17  Dick Porter  <dick@ximian.com>
13079
13080         * file-io.h:
13081         * file-io.c: File attributes need to be tweaked slightly when
13082         passed from the managed to the w32 world.
13083
13084 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
13085         * profiler.h profiler-private.h profiler.c: Rework last patch
13086         based on suggestion by Paolo.
13087         
13088 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
13089
13090         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
13091         instruction level coverage data collection.
13092         * profiler.h profiler.c (: Added new callback function which can be
13093         used by the profiler to limit which functions should have coverage
13094         instrumentation.
13095         * profiler.c (mono_profiler_load): Call g_module_build_path to
13096         generate the file name of the profiler library.
13097
13098 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
13099
13100         * profiler.c, profiler.h, profiler-private.h: added basic block 
13101         coverage profiling API.
13102
13103 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
13104
13105         * reflection.c (mono_reflection_create_runtime_class): Add support
13106         for events in dynamically generated code.
13107
13108         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
13109         not allocated.
13110
13111 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
13112
13113         * icall.c: when getting timezone info, return reasonable values if we
13114         can't get the actual data.
13115
13116 2003-06-14  Dick Porter  <dick@ximian.com>
13117
13118         * threads.c (start_wrapper): Remove the reference to the thread
13119         object in the TLS data, so the thread object can be finalized.
13120         This won't be reached if the thread threw an uncaught exception,
13121         so those thread handles will stay referenced :-( (This is due to
13122         missing support for scanning thread-specific data in the Boehm GC
13123         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
13124
13125 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
13126
13127         * reflection.c: ensure streams and tables are first allocated with
13128         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
13129
13130 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
13131
13132         * icall.c: fixed GetElementType for byrefs (bug# 44792).
13133
13134 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
13135
13136         * reflection.c (mono_reflection_create_runtime_class): Add support for
13137         properties to dynamically created classes.
13138         * reflection.c: Fix a few places where non-MonoObjects were inserted
13139         into the tokens hashtable.
13140
13141 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
13142
13143         * object.c: some support to handle out of memory exceptions.
13144
13145 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
13146
13147         * marshal.c (mono_marshal_get_native_wrapper): support reference
13148         return types
13149
13150 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
13151
13152         * object.h, object.c: more portability stuff from Bernie Solomon.
13153         Unexport mono_object_allocate(). Added mono_object_unbox ().
13154         Set exitcode when an unhandled exception is thrown.
13155
13156 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
13157
13158         * marshal.c (mono_marshal_get_native_wrapper): use custom
13159         marshaler for return types.
13160
13161 2003-06-10  Dick Porter  <dick@ximian.com>
13162
13163         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
13164         ip_mreq is available
13165
13166 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
13167
13168         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
13169         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
13170         by Bernie Solomon <bernard@ugsolutions.com>.
13171
13172 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
13173
13174         * gc.c (mono_gc_init): Avoid error message on shutdown when
13175         GC_DONT_GC=1 is used.
13176
13177         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
13178         New icall to return the GUID of a module.
13179
13180 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
13181
13182         * class.c: ensure instance size always includes the parent's size
13183         even whem class size is set explicitly (fixes bug#44294).
13184
13185 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
13186
13187         * profiler.h, profiler.c: made the simple profiler thread-safe,
13188         get more accurate timing info. Allow the loading of an
13189         externally-developed profiler module.
13190
13191 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
13192
13193         * marshal.c (mono_marshal_get_native_wrapper): improved
13194         class/byref arguments.
13195         (mono_marshal_get_native_wrapper): better string marshaling support.
13196
13197 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
13198
13199         * class.c: ensure .pack and .size are handled correctly and
13200         simplified layout of static fields.
13201
13202 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
13203
13204         * appdomain.c
13205         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
13206
13207         * loader.c (mono_lookup_pinvoke_call): look for modules in the
13208         current directory (fix bug 44008)
13209
13210 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
13211
13212         * marshal.c (mono_marshal_get_native_wrapper): started support for
13213         custom marshalers.
13214         (mono_delegate_to_ftnptr): consider marshalling specifications
13215
13216 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
13217
13218         * reflection.c, reflection.h: emit custom marshal info.
13219
13220 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13221
13222         * object.c: free the GError.
13223         * icall.c: added CloseEvent_internal.
13224         * threads.[ch]:
13225         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
13226         call.
13227
13228 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
13229
13230         * loader.c (mono_method_get_signature): Add support for dynamic
13231         assemblies.
13232
13233 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
13234
13235         * reflection.c: fixed bug #43905.
13236
13237 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
13238
13239         * class.c, domain.c, icall.c, metadata.h, object.h: support for
13240         handling TypedReference and ArgIterator.
13241         * loader.c, loader.h: added function to get signature at call site.
13242
13243 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
13244
13245         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
13246         data readonly. Buglets and warning fixes. Some MethodSpec support.
13247
13248 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
13249
13250         * class.h, class.c, object.c: remove relative numbering support.
13251
13252 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
13253
13254         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
13255         free the string, until we get a chance to fix Gtk#
13256
13257 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13258
13259         * marshal.c: revert last patch.
13260
13261 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
13262
13263         * icall.c: updates for new mono_class_vtable() not calling
13264         the type constructor anymore.
13265
13266 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
13267
13268         * object.h, object.c: separate vtable creation from type
13269         initialization. Make running the .cctor thread safe.
13270
13271 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
13272
13273         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
13274
13275 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
13276
13277         * loader.c (mono_get_method): consider calling convention
13278
13279 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
13280
13281         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
13282         to return the invisible global type for a module.
13283
13284         * reflection.c (mono_image_build_metadata): Emit global fields too.
13285
13286 2003-05-20  Peter Williams  <peterw@ximian.com>
13287
13288         * loader.c (mono_lookup_internal_call): Add a few newlines.
13289
13290 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
13291
13292         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
13293         literal strings.
13294
13295         * appdomain.c (set_domain_search_path): Recalculate search path when
13296         AppDomainSetup.PrivateBinPath changes.
13297
13298         * object.c (mono_class_compute_gc_descriptor): It turns out some
13299         parts of the class libs (like System.Thread) holds pointers to
13300         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
13301         to treat native int a pointer type here.
13302         
13303 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
13304
13305         * appdomain.h, domain.c: add hashtable for jump target resolution.
13306
13307 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
13308
13309         * reflection.h reflection.c icall.c: Added new icalls 
13310         GetManifestResourceInfoInternal, GetModulesInternal and support
13311         infrastructure.
13312
13313 2003-05-16  Dick Porter  <dick@ximian.com>
13314
13315         * icall.c:
13316         * file-io.h:
13317         * file-io.c: Implement System.IO.MonoIO::GetTempPath
13318
13319 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
13320
13321         * object.c: mono_store_remote_field: little fix to previous patch.
13322
13323 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
13324
13325         * class.c: add constructors to array classes.
13326         * icall.c: special case array construction for InternalInvoke (),
13327
13328 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
13329
13330         * class.h class.c reflection.c object.c: Added support for field
13331         defaults in dynamically generated classes.
13332
13333 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
13334
13335         * reflection.c: properly encode charset for ddlimport.
13336
13337 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
13338
13339         * threads.c: allow compiling without GC.
13340
13341 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
13342
13343         * appdomain.h, object.c, object.h, threads.c, threads.h: added
13344         handling of thread static data.
13345
13346 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
13347
13348         * reflection.h, reflection.c: added mono_custom_attrs_free ().
13349
13350 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
13351
13352         * class.c (mono_array_class_get): always set the serializable flags
13353         (mono_array_class_get): always set the SEALED attribute for array types
13354
13355 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
13356
13357         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
13358         attributes (fix for bug 42021).
13359
13360 2003-05-12  Dick Porter  <dick@ximian.com>
13361
13362         * gc.c: Don't run finalizers when the finalizer thread is
13363         finishing up, because the default domain has already been
13364         destroyed.
13365
13366 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
13367
13368         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
13369         value is null, we should throw an exception.   This is slightly
13370         different than the other conventions used for the constructor.
13371
13372 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13373
13374         * socket-io.c: fixed windows build.
13375
13376 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13377
13378         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
13379
13380 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
13381
13382         * object.c (mono_string_new_wrapper): Compatibility fix for MS
13383         compilers.
13384
13385 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
13386
13387         * class.c (mono_class_layout_fields): Add experimental GC aware
13388         auto layout facility. Requires class library changes to work correctly.
13389
13390         (mono_class_setup_vtable): Avoid overriding explicit interface
13391         method implementations. Fixes iface3.exe test.
13392
13393         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
13394         object reference.
13395         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
13396         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
13397
13398         * metadata.h: Add new type classification macro which determines
13399         whenever the type holds an object reference.
13400
13401 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
13402
13403         * marshal.c (mono_marshal_get_native_wrapper): cleanups
13404
13405 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
13406
13407         * gc.c (finalizer_thread): Work around a GC bug.
13408
13409 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
13410
13411         * marshal.c (emit_struct_conv): allow unions
13412
13413         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
13414
13415 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
13416
13417         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
13418
13419 2003-05-06  Martin Baulig  <martin@ximian.com>
13420
13421         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
13422
13423 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13424
13425         * socket-io.c:
13426         (Select_internal): allow NULLs, don't create arrays if not needed.
13427         Coupled with Socket.cs changes.
13428
13429         * threadpool.c:
13430         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
13431         register a finalizer for it that will close the semaphore handle. This
13432         fixes the leak and make Lupus' test run with > 4080 loops.
13433
13434 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
13435
13436         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
13437         Jerome Laban (bug #42287)
13438
13439 2003-05-02  Martin Baulig  <martin@ximian.com>
13440
13441         * debug-mono-symfile.h
13442         (MonoSymbolFile): Moved declaration into mono-debug.h.
13443         (MonoDebugMethodJitInfo): Likewise.
13444         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
13445         argument.
13446         (_mono_debug_address_from_il_offset): Take a
13447         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
13448
13449         * mono-debug.h
13450         (MonoDebugDomainData): New struct.
13451         (mono_debug_get_domain_data): New function.
13452         (mono_debug_add_method): Take an additional `MonoDomain *'
13453         argument.
13454         (mono_debug_source_location_from_address): Likewise.
13455         (mono_debug_il_offset_from_address): Likewise.
13456         (mono_debug_address_from_il_offset): Likewise.
13457
13458 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
13459
13460         * reflection.c: one more check for null type in custom attrs.
13461
13462 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13463
13464         * reflection.c: avoid warning (comparison is always false due to limited
13465         range of data type).
13466
13467 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13468
13469         * icall.c: throw an exception in Type.GetField if the argument 'name'
13470         is NULL.
13471
13472 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
13473
13474         * reflection.c: fixed handling of enums in named arguments to custom
13475         attributes (bug #42123).
13476
13477 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
13478
13479         * reflection.c: use the right array element type and handle
13480         a null for a Type argument, too.
13481
13482 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
13483
13484         * reflection.c: handle arrays as arguments to custom attributes.
13485
13486 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
13487
13488         * reflection.c: handle a string value in a custom attr
13489         ctor that takes an object.
13490
13491 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
13492
13493         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
13494         (fix bug #42063)
13495
13496 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
13497
13498         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
13499
13500 2003-04-27  Martin Baulig  <martin@ximian.com>
13501
13502         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
13503         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
13504         MONO_DEBUGGER_EVENT_BREAKPOINT.
13505         (mono_breakpoint_trampoline_code): Removed.
13506         (mono_debugger_event_handler): The last argument is now a
13507         `guint32'.
13508         (mono_debugger_insert_breakpoint_full): Removed the
13509         `use_trampoline' argument.
13510         (mono_debugger_method_has_breakpoint): Likewise.
13511         (mono_debugger_trampoline_breakpoint_callback): Renamed to
13512         mono_debugger_breakpoint_callback(); take the method and
13513         breakpoint number as arguments.
13514
13515 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
13516
13517         * metadata.c: fix off by one when loading parameters attributes.
13518
13519 2003-04-24  Martin Baulig  <martin@ximian.com>
13520
13521         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
13522
13523 2003-04-24  Martin Baulig  <martin@ximian.com>
13524
13525         * mono-debug-debugger.c: Moved all code which interacts with the
13526         Mono Debugger here.
13527
13528         * debug-mono-symfile.c: This code now just deals with the symbol
13529         file itself, the debugger code is now in mono-debug-debugger.c.
13530
13531 2003-04-23  Martin Baulig  <martin@ximian.com>
13532
13533         * mono-debug.c (mono_debug_source_location_from_il_offset):
13534         New method; like mono_debug_source_location_from_address(), but
13535         takes an IL offset instead of a machine address.
13536
13537 2003-04-23  Martin Baulig  <martin@ximian.com>
13538
13539         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
13540         `line' field; this is now computed by the debugger.
13541
13542 2003-04-23  Martin Baulig  <martin@ximian.com>
13543
13544         * mono-debug.[ch]: New files.  This is the new debugging interface.
13545
13546         * mono-debug-debugger.[ch]: New files.  Moved all code which
13547         interacts with the Mono Debugger here.
13548
13549 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
13550
13551         * domain.c (mono_init): initialize mono_defaults.monitor_class
13552
13553 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
13554
13555         * reflection.c (method_encode_code): Add a spicy exception to help
13556         future compiler authors.
13557
13558 2003-04-21  Martin Baulig  <martin@ximian.com>
13559
13560         * icall.c
13561         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
13562         Make this work with relative pathnames; g_filename_to_uri() needs
13563         an absolute filename.
13564
13565 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
13566
13567         * icall.c: Track name changes in Object and ValueType.
13568
13569 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
13570
13571         * metadata.c (mono_type_stack_size): size should be a multiple of
13572         sizeof (gpointer)
13573
13574 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13575
13576         * gc.c:
13577         (internal_domain_finalize): moved into mono_domain_finalize. No need
13578         to create another thread because the finalizers will be run in the
13579         finalizer thread.
13580         
13581         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
13582         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
13583         to be run (MS does this too).
13584
13585 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
13586
13587         * object.c (mono_class_compute_gc_descriptor): Update comment.
13588
13589         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
13590
13591         * image.h: Add synchronized wrapper cache.
13592
13593         * image.c (do_mono_image_open): Initialize cache.
13594
13595         * reflection.c (create_dynamic_mono_image): Initialize cache.
13596
13597 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13598
13599         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
13600         ves_icall_System_Buffer_ByteLengthInternal.
13601
13602 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
13603
13604         * reflection.c: setup klass->nested_in earlier. Allow
13605         a dash in the assembly name.
13606
13607 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
13608
13609         * metadata.c (mono_type_to_unmanaged): dont access
13610         type->data.klass for MONO_TYPE_OBJECT
13611         (mono_type_to_unmanaged): consider System.Delegate class
13612
13613 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
13614
13615         * class.c: just setup supertypes in the proper place instead of
13616         initializing the full element class for arrays.
13617
13618 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
13619
13620         * class.c: ensure the element class of arrays is initialized.
13621         Setup the supertype info for array classes, too.
13622
13623 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
13624
13625         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
13626
13627 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13628
13629         * Makefile.am: re-added -m option when running cygpath. This way,
13630         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
13631         separator.
13632         * mono-config.c: same codepath for locating mono config file for WIN32
13633         and the rest.
13634         * assembly.c: if mono_assembly_setrootdir is called, don't override
13635         the value set.
13636
13637 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13638
13639         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
13640         MONO_ASSEMBLIES variable.
13641
13642 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
13643
13644         * icall.c: added Assembly::GetNamespaces() icall.
13645
13646 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13647
13648         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
13649
13650 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
13651
13652         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
13653         * object.c: fixed bug in the construction of vtable for proxies
13654
13655 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
13656
13657         * object.c (mono_array_new): Mark mono_array_new as an icall.
13658
13659 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13660
13661         * class.c: fixed test for public method when overriding interfaces.
13662         Closes bug #40970.
13663
13664 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
13665
13666         * appdomain.h, domain.c: added mono_domain_foreach() to
13667         be able to access the currently loaded appdomains.
13668         * object.c: make string interning work across sppdomains.
13669         Mark some functions for use as icalls.
13670
13671 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
13672
13673         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
13674
13675         * reflection.h reflection.c: Allocate long living data using 
13676         GC_MALLOC_ATOMIC so the collector does not need to scan it.
13677
13678         * reflection.c: Double the allocation size in streams instead of
13679         increasing it, to prevent unneccesary copying on large assemblies.
13680         
13681         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
13682         creation if the assembly does not have the Run flag set.
13683
13684 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
13685
13686         * class.h: avoid the C++ keywords in header files (Jerome Laban
13687         spotted and fixed this).
13688
13689 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13690
13691         * object.c:
13692         (mono_unhandled_exception): fill in the arguments for the
13693         UnhandledException event. Only trigger that event for the default
13694         domain (as MS does).
13695
13696 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
13697
13698         * object.c: Improve typed allocation stuff based on suggestions from
13699         Paolo. Also turn it on if the GC library supports it.
13700
13701 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
13702
13703         * object.c object.h class.h: Added experimental typed allocation
13704         facility using the interfaces in gc_gcj.h.
13705
13706         * os/gc_wrapper.h: Added new include files.
13707         
13708 2003-04-03  Martin Baulig  <martin@ximian.com>
13709
13710         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
13711         which is not yet enabled by default.
13712
13713         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
13714         functions.
13715         (mono_gc_lock, mono_gc_unlock): New static functions.
13716
13717         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
13718         functions; stop/start the world for the garbage collector.  This
13719         is using the windows API; we need to complete the SuspendThread()/
13720         ResumeThread() implementation in the io-layer to make this work on Unix.
13721         (mono_gc_push_all_stacks): New public function; tells the garbage
13722         collector about the stack pointers from all managed threads.
13723
13724 2003-04-03  Martin Baulig  <martin@ximian.com>
13725
13726         * object.h (MonoThread): Added `gpointer stack_ptr'.
13727
13728         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
13729
13730 2003-04-03  Martin Baulig  <martin@ximian.com>
13731
13732         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
13733
13734 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
13735
13736         * reflection.c (typebuilder_setup_fields): Initialize field.first and
13737         field.last.
13738
13739 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
13740
13741         * loader.c (mono_lookup_internal_call): Report the corlib that is
13742         out of sync.
13743
13744 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
13745
13746         * icall.c (ves_icall_type_GetTypeCode): fixed check for
13747         System.DBNull (it's class not valuetype).
13748
13749 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
13750
13751         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
13752         if the array method was already assigned a token (fixes bug#40646).
13753
13754 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
13755
13756         * reflection.c (mono_reflection_get_type): Attempt type resolve even
13757         if no assembly is given.
13758
13759 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
13760
13761         * metadata.h: Added the new tables.
13762
13763         * row-indexes.h: Added definitions for new tables.
13764
13765         * metadata.c: Add schemas for new tables, and add support for
13766         computing the sizes of them.
13767
13768         * class.c: Update for handling the new type cases.
13769
13770 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
13771
13772         * metadata.h (MONO_TYPE_IS_VOID): new macro
13773
13774 2003-03-31  Martin Baulig  <martin@ximian.com>
13775
13776         * threads.h (MonoThreadCallbacks): Added `thread_created'.
13777
13778         * threads.c (mono_thread_new_init): Call `thread_created' in the
13779         mono_thread_callbacks.
13780
13781 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
13782
13783         * loader.h: added marshalbyrefobject_class to mono_defaults
13784         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
13785         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
13786           generation of output parameters.
13787           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
13788         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
13789           contextbound and the target object belongs to the context of the caller.
13790         * object.h: added context and unwrapped_server variables in MonoRealProxy.
13791         * object.c: Implemented support for interfaces and abstract classes
13792           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
13793           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
13794
13795 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
13796
13797         * class.h class.c (mono_class_is_subclass_of): New function.
13798         
13799         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
13800         routines for most common case (calls from ArrayList::ToArray).
13801
13802         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
13803         routine so programs which call Environment::Exit() can be profiled.
13804
13805         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
13806         Added MONO_ARCH_SAVE_REGS.
13807
13808         * icall.c (ves_icall_type_is_subtype_of): Use new function.
13809
13810 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
13811
13812         * blob.h: Add a couple of new MonoType types definitions.
13813
13814         * tabledefs.h: Add a couple of new call convs.
13815
13816 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
13817
13818         * reflection.h (MonoReflectionDynamicAssembly): track changes in
13819         the layout of the class.
13820
13821         * reflection.c (alloc_table): double the size on overflow to avoid
13822         unnecessary copying.
13823
13824         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
13825         avoid filling out metadata tables and blobs. Also set mb->ilgen to
13826         null so it can be garbage collected.
13827         
13828 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
13829
13830         * reflection.c (mono_reflection_get_type): Return the resolved type
13831         only if it is in the assembly we searched.
13832
13833         * reflection.c (ensure_runtime_vtable): Initialize method slots.
13834
13835         * class.c (mono_class_setup_vtable): Set the slot of the overriding
13836         method.
13837
13838 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13839
13840         * appdomain.c:
13841         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
13842         the right one is 'file:///blah', but MS allows it.
13843         * assembly.c:
13844         (mono_assembly_open): allow 'file://blah'
13845
13846         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
13847
13848 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
13849
13850         * socket-io.c: fixes bug #40310.
13851
13852 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
13853
13854         * reflection.c (mono_reflection_parse_type): handle deeply nested
13855         types correctly.
13856
13857         * reflection.c (mono_image_create_token): Use unique token values
13858         since they will be put into a hash table.
13859
13860         * class.c (mono_class_setup_vtable): If a method occurs in more than
13861         one place in the vtable, and it gets overriden, then change the
13862         other occurances too.
13863
13864         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
13865         object as return type.
13866
13867 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
13868
13869         * icall.c: Deleted "ToString" implementation for double and float
13870         because they are full implemented in managed code.
13871
13872 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
13873
13874         * reflection.c, reflection.h: implemented and exported functions
13875         to retrieve info about custom attributes.
13876
13877 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13878
13879         * appdomain.c: moved Uri handling to assembly.c
13880         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
13881         work when using a file Uri in *nix and windows.
13882
13883         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
13884         GetReferencedAssemblies.
13885
13886 2003-03-18  Dick Porter  <dick@ximian.com>
13887
13888         * icall.c: Rename a couple of internal calls
13889
13890         * threads.c: Set the thread state to Stopped when a thread exits.
13891         Fixes bug 39377.
13892
13893 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
13894
13895         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
13896         New icall.
13897
13898         * object.c (mono_class_vtable): fix warning.
13899
13900 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
13901
13902         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
13903
13904         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
13905         memory.
13906         (method_encode_clauses): Create exception info structures in the right
13907         order.
13908         (mono_reflection_setup_internal_class): Initialize supertypes field.
13909
13910         * class.c object.c: Handle interfaces which implement other interfaces 
13911         correctly.
13912
13913         * class.h class.c: Move the supertypes array initialization code into 
13914         a separate function so it can be used for dynamic types too. Also call
13915         it earlier, in mono_class_init(), since it can be used before the
13916         type is initialized.
13917
13918 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13919
13920         * Makefile.am:
13921         * assembly.c:
13922         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
13923
13924         * appdomain.c:
13925         * appdomain.h:
13926         * marshal.c:
13927         * object.c: remove warnings.
13928
13929 2003-03-13  Martin Baulig  <martin@ximian.com>
13930
13931         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
13932         (MonoDebugLexicalBlockEntry): New types.
13933
13934         * debug-mono-symfile.c
13935         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
13936
13937 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13938
13939         * process.c: ret can be any non-zero value accroding to MS doc.
13940
13941 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
13942
13943         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
13944         fixing a warning for a miss-used prototype, would have cause
13945         random memory corruption.
13946
13947 2003-03-07  Martin Baulig  <martin@ximian.com>
13948
13949         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
13950         getting really annoying ....
13951
13952 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
13953
13954         * reflection.c (fixup_method): added support for array methods.
13955
13956 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
13957
13958         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
13959         (pointed out by Michael Adams).
13960
13961 2003-03-04  Dick Porter  <dick@ximian.com>
13962
13963         * icall.c: Temporarily reverted the Double and Single ToString()
13964         change, because it broke nunit.
13965
13966 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
13967
13968         * object.h, threads.h: make include files compatible with C++
13969         (patch by Jerome Laban <jlaban@wanadoo.fr>).
13970
13971 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
13972
13973         * icall.c: Erased ToString helper functions for Double and Single.
13974         Now, that implementations ar all in managed code (Double and Single
13975         Formatters).
13976
13977 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
13978
13979         * appdomain.c: Added method for initializing the default context of
13980         a domain. Added internal call for getting the default context.
13981         * appdomain.h: Added context variable in MonoDomain struct.
13982         * domain.c: mono_domain_set also sets the default context of the domain
13983         * icall.c: Mapped internal method InternalGetDefaultContext.
13984         * object.c: mono_object_get_virtual_method returns always a remoting
13985         wrapper if the object is a transparent proxy.
13986         mono_runtime_invoke_array: when creating an object by calling the
13987         constructor, if the created object is a proxy, then the constructor should
13988         be called using the a remoting wrapper.
13989
13990 2003-03-03  Dick Porter  <dick@ximian.com>
13991
13992         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
13993         variable so it compiles on solaris.  Problem spotted by
13994         Christopher Taylor <ct@cs.clemson.edu>
13995
13996 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13997
13998         * appdomain.c:
13999         (get_info_from_assembly_name): don't leak value.
14000
14001         * icall.c:
14002         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
14003         result.
14004
14005 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
14006
14007         * assembly.c: export mono_image_load_references ().
14008         * class.c: handle function pointers. mono_class_from_name() now
14009         supports nested type names directly.
14010
14011 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
14012
14013         * reflection.h reflection.c: Encode already created dynamic methods 
14014         and fields correctly as a DEF instead of a REF.
14015
14016         * reflection.c: Get rid of the force_ref argument to 
14017         mono_image_typedef_or_ref since it was wrong in the first place.
14018
14019         * string-icalls.c: add error checking to string constructors according
14020         to the MSDN docs.
14021
14022         * reflection.c: Emit types in the order their TypeBuilders were 
14023         created. Previously, a new table index was assigned to each type before
14024         the tables were emitted. This was wrong because the signature blob
14025         might already refer to a type by its original table index.
14026
14027 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
14028
14029         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
14030         change.
14031         
14032 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14033
14034         * Makefile.am: make assemblies dir have \ instead of / on windows.
14035
14036 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
14037
14038         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
14039         iterate over the NESTEDCLASS table using a linear search since the
14040         table is not guaranteed to be sorted by the secondary key.
14041
14042         * class.c (mono_class_create_from_typedef): fixed up call to
14043         mono_metadata_nesting_typedef.
14044         
14045 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
14046
14047         * marshal.c (mono_string_to_byvalstr): clear the memory as
14048         suggested by Jerome Laban <jlaban@wanadoo.fr>
14049
14050 2003-02-26  Dick Porter  <dick@ximian.com>
14051
14052         * process.c: Cope with padding in .rsrc blocks
14053
14054 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
14055
14056         * metadata.h: reverted the filter_len change, it breaks reflection
14057         
14058 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
14059
14060         * metadata.h: added a new field to store the filter_len
14061         
14062
14063 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
14064
14065         * reflection.c: handle custom attributes for types and members
14066         created with Reflection.Emit (bug#38422).
14067
14068 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
14069
14070         * reflection.c: define RTSpecialName automatically for constructors for
14071         compatibility with MS.NET.
14072
14073         * reflection.c (mono_reflection_create_runtime_class): initialize
14074         nested_in field of dynamically created classes.
14075
14076 2003-02-22  Martin Baulig  <martin@ximian.com>
14077
14078         * debug-mono-symfile.h: Incremented version number.
14079
14080 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
14081
14082         * object.h icall.c process.c: fix warnings.
14083
14084 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
14085
14086         * appdomain.h appdomain.c:
14087         (mono_domain_try_type_resolve): split the 
14088         name_or_tb argument into a name and a tb argument.
14089         (mono_domain_has_type_resolve): new function to check whenever the
14090         application has registered a TypeResolve event handler.
14091         
14092         * icall.c reflection.h reflection.c: move the type resolve logic into
14093         mono_reflection_get_type () so it will be invoked when 
14094         Assembly::GetType () is called.
14095
14096         * reflection.c:
14097         (mono_reflection_get_type): renamed to get_type_internal.
14098         (mono_reflection_get_type): fixed type name generation so it works 
14099         for nested types too.
14100         (mono_reflection_get_type): call has_type_resolve () to avoid the 
14101         costly type name generation if there is no resolve event handler.
14102
14103 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
14104
14105         * class.c, image.c: load exported types from file references.
14106
14107 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
14108
14109         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
14110           used to cache the managed methods used to create proxies and make 
14111           remote invocation of methods.
14112         * class.h: Added in MonoVTable a flag to indicate that a class needs 
14113           to be remotely created.
14114         * object.c: Modified the method mono_class_vtable(). It now initializes 
14115           the remote flag of the vtable. Modified mono_object_new_specific(), 
14116           so now it checks the remote flag.
14117         * icall.c: Added a couple of internal methods, one for enabling instance 
14118           creation interception for a type, and one for creating objects bypassing
14119           the remote check.
14120
14121 2003-02-18  Martin Baulig  <martin@ximian.com>
14122
14123         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
14124         New interncall to get a method's metadata token.
14125
14126         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
14127         New interncall for the debugger.
14128
14129 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
14130
14131         * class.c (mono_class_setup_vtable): allocate supertype array
14132
14133 2003-02-18  Martin Baulig  <martin@ximian.com>
14134
14135         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
14136
14137 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14138
14139         * reflection.c:
14140         (assembly_name_to_aname): jump over unknown properties (i've found
14141         something like: 'type, assembly, version=xxx, custom=null, public...',
14142         so now will ignore custom=null and still get the rest of the values).
14143
14144 2003-02-17  Dick Porter  <dick@ximian.com>
14145
14146         * threads.c: Have Thread.Start() wait for a semaphore to signal
14147         that the thread has set up all its local data.  This fixes bug
14148         34323, where Abort() raced the new thread's TLS data.
14149
14150         Also removes the handle_store() call from start_wrapper, because
14151         threads are now always created suspended and there is no longer a
14152         race between the parent and child threads to store the info.
14153
14154 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
14155
14156         * image.c: explain the #- heap issue in a message, hopefully
14157         avoiding FAQs on mono-list.
14158
14159 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14160
14161         * icall.c:
14162         (GetEntryAssembly): if the domain has not invoked
14163         AppDomain.ExecuteAssembly yet, return the assembly of the default
14164         AppDomain.
14165
14166 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
14167
14168         * class.c (mono_ldtoken): make it work in dynamic assemblies.
14169
14170 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
14171
14172         * metadata.c, reflection.c: simple speedup to type hash
14173         and equals code.
14174
14175 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
14176
14177         * image.c, image.h, class.c, assembly.c: move module loading
14178         to MonoImage. When loading metadata, consider alignemnet from
14179         the start of metadata, not from the metadata address in memory.
14180
14181 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
14182
14183         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
14184         AssemblyBuilder objects. Factored out custom attribute creation into
14185         a separate function.
14186         (create_custom_attr): new function to create custom attributes.
14187
14188 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
14189
14190         * Makefile.am: Got tired of typing the full pathname to pedump.
14191         Until there is another option, am installing this.
14192
14193 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
14194
14195         * class.c (class_compute_field_layout): always set field->parent 
14196         (mono_ldtoken): use mono_defaults.fieldhandle_class;
14197
14198 2003-02-11  Dick Porter  <dick@ximian.com>
14199
14200         * threads-types.h:
14201         * monitor.c: Rewrote Monitor, making lock much faster and
14202         Pulse/Wait work as specified.  Also uses much fewer handles, and only
14203         creates them as needed.
14204
14205         * exception.c: Added SynchronizationLockException
14206
14207         * threads.c: Deleted old Monitor implementation.  The new one is
14208         in a new file.
14209
14210 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
14211
14212         * class.c: handled TypedReference type code. Set the correct size for
14213         class data. Setup interface_offsets for interface classes, too.
14214
14215 2003-02-09  Martin Baulig  <martin@ximian.com>
14216
14217         * debug-mono-symfile.h: Reflect latest symbol writer changes.
14218
14219 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
14220
14221         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
14222         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
14223         * object.c: fixed mono_object_get_virtual_method () for interfaces.
14224         * verify.c: check for code that runs after the end of the method.
14225
14226 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
14227
14228         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
14229         "System.Math::Round2".
14230         * sysmath.h: Added Floor, Round and Round2 definitions.
14231         * sysmath.c: Modified certain functions that were not 100% compliant
14232         with MS.NET (math precision) and added the implementation of Floor,
14233         Round and Round2.
14234
14235 2003-02-07  Martin Baulig  <martin@ximian.com>
14236
14237         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
14238
14239 2003-02-07  Martin Baulig  <martin@ximian.com>
14240
14241         * debug-mono-symfile.c: Reflected latest symwriter changes.
14242         (mono_debug_create_mono_symbol_file): Removed.
14243         (mono_debug_open_mono_symbol_file): Take an argument which
14244         specifies whether to create a dynamic symbol file.
14245
14246 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
14247
14248         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
14249
14250 2003-02-05  Martin Baulig  <martin@ximian.com>
14251
14252         * reflection.c (mono_image_build_metadata): Make this public,
14253         protect it against being called multiple times, don't create
14254         resources and don't build the compressed metadata here.
14255         (mono_image_create_pefile): Do this here.
14256
14257         * icall.c
14258         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
14259
14260 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14261
14262         * socket-io.c: fixed bug #36322.
14263
14264 2003-02-06  Piers Haken <piersh@friskit.com>
14265
14266         * appdomain.[ch]:
14267         * class.h:
14268         * debug-mono-symfile.c:
14269         * icall.c:
14270         * loader.c:
14271         * mono-config.c:
14272         * monosn.c:
14273         * reflection.c:
14274         * socket-io.c: warning cleanups
14275
14276 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
14277
14278         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
14279         function. works like remoting invoke, but does a check for the Proxy first.
14280
14281 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
14282
14283         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
14284
14285 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
14286
14287         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
14288         array of pointers.
14289         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
14290         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
14291
14292         * object.c (mono_store_remote_field_new): used by the new jit
14293         instead of mono_store_remote_field
14294         (mono_load_remote_field_new): used by the new jit
14295         instead of mono_load_remote_field
14296
14297 2003-02-05  Patrik Torstensson
14298
14299         * appdomain.c: changed unload to take the domain id instead
14300         of domain
14301         
14302         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
14303
14304
14305 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14306
14307         * appdomain.c: don't look for assemblies in ApplicationBase if
14308         PrivateBinPathProbe is set.
14309
14310 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14311
14312         * object.c: make the first argument in main_args contain the absolute
14313         path to the assembly. Fixes bug #37511.
14314
14315 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14316
14317         * icall.c: get correct UTC offset for countries not using daylight
14318         time saving. Fixes bug #30030.
14319
14320 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14321
14322         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
14323         and 1 are the family).
14324
14325 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
14326
14327         * icall.c (ves_icall_InternalExecute): removed wrong assertion
14328
14329         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
14330
14331 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
14332
14333         * reflection.c: added support for SignatureHelper tokens, which is
14334         needed by the Calli opcode.
14335
14336         * reflection.h: track changes to SignatureHelper class.
14337
14338         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
14339
14340 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14341
14342         * appdomain.c: fixed loading assemblies from PrivateBinPath.
14343
14344 2003-02-03  Patrik Torstensson
14345         * appdomain.[c|h], domain.c : 
14346          - Added support for getting a domain via domain id
14347          - Support for setting and getting domain from System.AppDomain 
14348            (used in cross appdomain channel)
14349          - Added support for get/set for a MonoAppContext on a thread 
14350            (Context class in System.Runtime.Remoting.Contexts),
14351          - Removed hack in Get/SetData and ExecuteAssembly.
14352         
14353         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
14354         the managed world to get control when a proxy is created.
14355
14356         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
14357         
14358 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
14359
14360         * icall.c
14361         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
14362         Populate the codebase field as well.
14363
14364 2003-02-02  Martin Baulig  <martin@ximian.com>
14365
14366         * debug-mono-symfile.c
14367         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
14368         (mono_debug_symfile_add_method): Allow interncalls.
14369
14370 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14371
14372         * icall.c: throw parse exception if strtod fails or the string is empty.
14373
14374 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
14375
14376         * marshal.c: handle object type separately from defined
14377         class types.
14378
14379 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
14380
14381         * marshal.c: handle NATIVE_LPSTR for strings when it's
14382         explicitly specified.
14383
14384 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
14385
14386         * reflection.c, reflection.h, icall.c: setup the reflection
14387         handle cache for ModuleBuilders and AssemblyBuilders.
14388
14389 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
14390
14391         * reflection.c (reflection_methodbuilder_to_mono_method): set
14392         pinvoke flag
14393
14394 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14395
14396         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
14397
14398 2003-01-29  Dick Porter  <dick@ximian.com>
14399
14400         * threads.c: No need for the fake_thread kludge now that Thread
14401         doesn't run a class constructor
14402         
14403 2003-01-29  Dick Porter  <dick@ximian.com>
14404
14405         * threads.c: Use g_direct_hash instead of the rather bogus
14406         g_int_hash
14407
14408 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
14409
14410         * marshal.c (mono_marshal_get_native_wrapper): add check for null
14411         (fix pinvoke12.exe)
14412         (mono_marshal_get_struct_to_ptr): generate valid IL code
14413         (mono_marshal_get_ptr_to_struct): generate valid IL code
14414         (*): correctly set sig->pinvoke, we need to memdup the signature
14415         to do that
14416
14417 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
14418
14419         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
14420         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
14421
14422 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
14423
14424         * profiler.c: provide more callers information.
14425
14426 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
14427
14428         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
14429
14430         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
14431
14432         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
14433
14434 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
14435
14436         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
14437         exception instead of going into an infinite loop on dates which it 
14438         can't yet handle.
14439
14440         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
14441         out-of-range exception if needed.
14442
14443         * class.c (mono_class_setup_vtable): allow a virtual method to provide
14444         an implementation for an interface method and to override an inherited
14445         method at the same time. 
14446         Imagine a scenario when a virtual method is used to override a
14447         virtual abstract method in a parent class, and this same method 
14448         provides an implementation for an method inherited from an interface. 
14449         In this case, the interface resolution code will set im->slot, which 
14450         means that the virtual method override pass will skip this method 
14451         which means a pointer to the abstract method inherited from the parent
14452         will remain in the vtable of this non-abstract class.
14453
14454         * class.c: (mono_class_setup_vtable): continue search for a real 
14455         method if only an abstract method is found.     
14456
14457 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
14458
14459         * reflection.c: add size to encoding for ByValStr and ByValArray
14460         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
14461
14462 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
14463
14464         * class.c (mono_class_setup_vtable): pass the override info as an
14465         argument.
14466
14467         * class.c (mono_class_setup_vtable): set the slot of overriding methods
14468         correctly.
14469         
14470         * reflection.c (ensure_runtime_vtable); add support for method 
14471         overrides.
14472         
14473 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
14474
14475         * reflection.c (resolution_scope_from_image): Hack to work to work with
14476         dynamic assemblies.
14477
14478         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
14479         added a 'force_ref' argument to force this function to allways return 
14480         a TypeRef. This is needed by mono_image_get_memberref_token ().
14481         
14482 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
14483
14484         * reflection.c (mono_image_get_type_info): interfaces really don't have
14485         a parent.
14486
14487         * reflection.c (mono_image_basic_init): fill out missing fields of
14488         image structure.
14489
14490         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
14491         dynamic assemblies. This is required so dynamic assemblies show up in
14492         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
14493         Type::GetType() etc. This is consistent with MS behaviour.
14494
14495         * image.c image.h reflection.c: add newly created classes to the name 
14496         cache so mono_class_get () will find them.      
14497
14498 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
14499
14500         First part of changes to get IKVM.NET running under mono.
14501         
14502         * appdomain.h, appdomain.c: added new function 
14503         mono_domain_try_type_resolve() which will emit TypeResolve events. 
14504         This function will call AppDomain::DoTypeResolve to do the actual work.
14505
14506         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
14507         moved existing code dealing with dynamic tokens to a new function 
14508         called mono_reflection_lookup_dynamic_token (). This function will 
14509         raise TypeResolve events when appropriate. Since reflection.c is not 
14510         part of libmetadata, a new hook function called 
14511         mono_lookup_dynamic_token() is added to class.c which will call this.
14512
14513         * assembly.h assembly.c: make the invoke_load_hook function public,
14514         so it can be called for dynamic assemblies.
14515
14516         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
14517
14518         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
14519         type isn't found.
14520
14521         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
14522         MonoGHashTable, since it contains pointers to objects which the GC 
14523         needs to track.
14524
14525         * assembly.c (search_loaded): remove unused variable.
14526         
14527 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
14528
14529         * object.c: fixed issue exposed by gcc-generated IL programs
14530         that use RVA data for pointers.
14531
14532 2003-01-25  Martin Baulig  <martin@ximian.com>
14533
14534         * threads.c (start_wrapper): Moved the initialization of
14535         `start_func' above the mono_new_thread_init() call to which we
14536         pass it as argument.
14537
14538 2003-01-24  Martin Baulig  <martin@ximian.com>
14539
14540         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
14541         the MonoThread pointer.
14542
14543 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
14544
14545         * icall.c: Rename `PowImpl' to Pow.
14546
14547 2003-01-23  Dick Porter  <dick@ximian.com>
14548
14549         * threads.c (start_wrapper): Create a Thread object if needed, so
14550         the Main() thread can do the class initialisation in a subthread
14551         that has been set up to allow managed code execution.
14552
14553         Pass the thread ID instead of the MonoThread pointer to the thread
14554         start and attach callbacks.  This change is required, because the
14555         jit thread start callback must be called _before_ the Thread
14556         object can be created.
14557         
14558         (mono_thread_init): Removed much object creation code that is no
14559         longer needed.  No managed code is called from here now.
14560
14561         * object.c (mono_runtime_exec_managed_code): Create a subthread
14562         for Main, and call back to the runtime to use it.
14563         Set the exit code when Main exits.
14564
14565         * gc.c: Make sure domain finalisation happens in a subthread.
14566         Re-enable threaded GC, fixing bug 31333 (again).
14567
14568         * environment.c: System.Environment internall calls (so far just
14569         ExitCode is here, the others are still in icall.c)
14570
14571         * appdomain.c (mono_runtime_cleanup): All threads running managed
14572         code should have finished before mono_runtime_cleanup() is
14573         reached, so no need to clean up threads.
14574
14575 2003-01-22  Martin Baulig  <martin@ximian.com>
14576
14577         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
14578         `gpointer func' arguments.      
14579         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
14580         but added `MonoThread *thread' argument.
14581         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
14582
14583         * threads.c (mono_new_thread_init): Added `gpointer func' argument
14584         and pass it to the mono_thread_start_cb callback.
14585         (mono_install_thread_callbacks): New public function to install a
14586         set of callbacks which are set by the debugger.
14587         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
14588
14589 2003-01-22  Martin Baulig  <martin@ximian.com>
14590
14591         * Makefile.am: Install debug-mono-symfile.h.
14592
14593 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
14594
14595         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
14596
14597 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
14598
14599         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
14600         * class.c (mono_ptr_class_get): correctly set access levels of pointers
14601         (mono_array_class_get): correctly set access levels of arrays
14602
14603 2003-01-20      Patrik Torstensson
14604         * image.h (MonoAssemblyName): changed major, minor, build, revision
14605         from signed to unsigned.
14606
14607 2003-01-20  sean kasun <skasun@azstarnet.com>
14608
14609         * reflection.c (load_cattr_value): Now this handles
14610         MONO_TYPE_SZARRAY.  Fixes bug #35629
14611
14612 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
14613
14614         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
14615         integer value
14616
14617 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14618
14619         * decimal.c: fixed bug #26056.
14620
14621 2003-01-17  Martin Baulig  <martin@ximian.com>
14622
14623         * gc.c: Raise an ExecutionEngineException instead of using g_error().
14624
14625 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14626
14627         * exception.[ch]:
14628         (mono_get_exception_type_initialization): new function.
14629
14630         * object.c: throw a TypeInitializationException when an exception is
14631         thrown invoking the class constructor.
14632
14633 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14634
14635         * reflection.c: fixed attribute reading.
14636
14637 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14638
14639         * icall.c:
14640         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
14641         provided, look for the type in the calling assembly and then in
14642         mscorlib; if the assembly name is provided, only try that one.
14643
14644 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
14645
14646         * object.c: register the vtable before there is a chance it's
14647         queried again recursively.
14648
14649 2003-01-13  Duncan Mak  <duncan@ximian.com>
14650
14651         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
14652         gc-internal.h. 
14653         
14654 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
14655
14656         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
14657
14658 2003-01-11  Martin Baulig  <martin@ximian.com>
14659
14660         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
14661         this to 20 for the release.
14662
14663 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
14664
14665         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
14666
14667         * loader.c (mono_method_get_marshal_info): bug fix
14668
14669         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
14670         structures with explicit layout
14671
14672 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
14673
14674         * profiler.c: made the output more readable (and sorted). 
14675         Added caller information for the allocation profiler.
14676
14677 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
14678
14679         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
14680
14681 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14682
14683         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
14684         to get value types.
14685         
14686 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
14687
14688         * object.c, profiler.h, profiler.c, profiler-private.h:
14689         Added object allocation profiler.
14690
14691 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
14692
14693         * reflection.h, reflection.c: handle global methods.
14694         Compress blob entries.
14695
14696 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
14697
14698         * marshal.c: fix compilation.
14699
14700 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
14701
14702         * loader.c (mono_method_get_marshal_info): impl.
14703
14704         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
14705
14706 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14707
14708         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
14709         for reference types.
14710
14711 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
14712
14713         * loader.c: fixed off by one error in loaded parameter names.
14714
14715 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
14716
14717         * marshal.c (mono_marshal_get_icall_wrapper): like
14718         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
14719         instead of a MonoMethod.
14720
14721 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14722
14723         * decimal.c: fixed bug #36537.
14724
14725 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
14726
14727         * marshal.c: throw a missing method exception if a
14728         P/Invoke method is not found.
14729
14730 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
14731
14732         * icall.c: allow a null this for constructors.
14733
14734 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
14735
14736         * icall.c: raise the proper exceptions if the arguments to the
14737         internal Invoke are incorrect.
14738
14739 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
14740
14741         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
14742
14743 2003-01-03  Martin Baulig  <martin@ximian.com>
14744
14745         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
14746
14747 2002-12-31  Martin Baulig  <martin@ximian.com>
14748
14749         * debug-mono-symfile.c: Completely rewrote the type section.
14750         Instead of using individual malloc()ed fields, we use one big
14751         continuous memory area and offsets into this area.
14752         See the comments in the source code for details.
14753
14754 2002-12-30  Martin Baulig  <martin@ximian.com>
14755
14756         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
14757
14758 2002-12-30  Martin Baulig  <martin@ximian.com>
14759
14760         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
14761         line number table in this data blob instead of using an external
14762         pointer.
14763
14764 2002-12-28  Martin Baulig  <martin@ximian.com>
14765
14766         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
14767
14768 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
14769
14770         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
14771         as a boxed return type.
14772
14773 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
14774
14775         * appdomain.c
14776         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
14777         g_build_filename to properly get separators on the filename created.
14778
14779         * object.h: Small change, introduce MonoMarshalByRefObject to
14780         track the layout of that structure in the C# universe as we make
14781         changes there.
14782
14783 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
14784
14785         * object.c: removed assert to allow static fields on interfaces.
14786         * loader.c: a TypeSpec may be used for any type, not just arrays.
14787
14788 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
14789
14790         * class.c, class.h: added mono_class_array_element_size ().
14791         Ignore static methods in interfaces.
14792
14793 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14794
14795         * threads.c: fixed the build under cygwin.
14796
14797 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
14798
14799         * reflection.c: handle nullref constants. Allocate keys for
14800         reflection handles with the GC.
14801
14802 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
14803
14804         * threads.c, threads.h: added mono_thread_get_abort_signal()
14805         to get a suitable signal for thread abort.
14806
14807 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
14808
14809         * metadata.c: fix handling of ExportedType table.
14810
14811 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14812
14813         * icall.c: added WriteWindowsDebugString internal call.
14814
14815 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14816
14817         * reflection.h: added fields to match C# implementation.
14818
14819 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14820
14821         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
14822
14823 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
14824
14825         * gc.h, gc-internal.h: Rename header for GC internal calls to
14826         gc-internal.h from gc.h as to not clash with Boehm GC having its
14827         header installed as <gc.h> in outside include paths.
14828         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
14829         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
14830
14831 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14832
14833         * icall.c: assign minor, build and revision in FillName.
14834
14835 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
14836
14837         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
14838         Added support for running code generated by Reflection.Emit.
14839
14840 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14841
14842         * appdomain.c: check for NULL argument in LoadFrom.
14843
14844 2002-12-10  Dick Porter  <dick@ximian.com>
14845
14846         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
14847
14848 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14849
14850         * appdomain.c: fix buglet when building exe file name.  Handle full
14851         assembly name (needed after latest changes to AssemblyName).
14852         * image.c:
14853         (mono_image_close): free some hashtables.
14854
14855 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
14856
14857         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
14858         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
14859         on some systems (redhat 7.3) 
14860
14861 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
14862
14863         * threads.c: delete the critical section of a sync block,
14864         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
14865
14866 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
14867
14868         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
14869
14870 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14871
14872         * appdomain.[ch]: handle the assembly preload event to try loading the
14873         assemblies using the paths we have in the current domain.
14874
14875         * assembly.[ch]: created an assembly preload hook that is called to try
14876         loading the assembly by other means that the ones provided here.
14877
14878         * domain.c: initialize the domain search path.
14879
14880         From now on, assemblies (TODO: except corlib and System) are loaded
14881         according to these rules when using mono_assembly_load ():
14882
14883                 1. It tries to load the assembly from the ApplicationBase
14884                 of the current domain appending .dll and .exe (TODO: have to
14885                 try loading from name/name.dll and name/name.exe).
14886
14887                 2. It tries the search path specified in PrivateBinPath for the
14888                 current domain (if any).
14889
14890                 3. Previous behavior.
14891
14892 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
14893
14894         * icall.c: implemented GetInterfaceMap() related icall.
14895         * domain.c, loader.h: load MethodInfo in mono_defaults.
14896
14897 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
14898
14899         * gc.c: disable the finalizer thread for now, untill all the issues
14900         with it are resolved.
14901
14902 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
14903
14904         * string-icalls.c: handle embedded nulls in string ctor when the
14905         length is specified.
14906
14907 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
14908
14909         * class.c: look for explicit interface implementation in parent
14910         classes, too.
14911
14912 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
14913
14914         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
14915
14916 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
14917
14918         * gc.c: protect handles with a critical section.
14919
14920 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14921
14922         * icall.c:
14923         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
14924         parameters. If no assembly specified, try getting the type from all
14925         the assemblies in the current domain, else, load the assembly and get
14926         the type from it.
14927
14928 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14929
14930         * marshal.c: applied patch from Aleksey Demakov that fixes
14931         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
14932
14933 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14934
14935         * icall.c: fixed get_location.
14936
14937 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
14938
14939         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
14940         declarations to make it work with older gcc. 
14941
14942         * loader.c (mono_get_method): set signature->pinvoke for native calls
14943
14944 2002-11-20  Dick Porter  <dick@ximian.com>
14945
14946         * threads.c (mono_thread_init): Set the main thread's handle
14947
14948 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
14949
14950         * gc.c: allow compilation without GC support. Changed to match the
14951         mono coding style.
14952
14953 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
14954
14955         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
14956
14957 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
14958
14959         * reflection.c: set a public key token on the core assemblies.
14960
14961 2002-11-18  Dick Porter  <dick@ximian.com>
14962
14963         * threads.c: Split out some thread initialisation so that other
14964         files can set the start callback function.
14965
14966         * gc.c: Run finalisers in a separate thread, to avoid stack
14967         overflow.  Fixes bug 31333.
14968
14969         * appdomain.c: Set up GC finalisation thread.
14970
14971         * reflection.c: 
14972         * object.c: 
14973         * domain.c: Use gc.h macros for GC_malloc
14974         
14975 2002-11-15  Dick Porter  <dick@ximian.com>
14976
14977         * threadpool.c: 
14978         * threads.c:
14979         * appdomain.c: Removed mono_runtime_init_with_attach(),
14980         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
14981         merging the extra parameter with the existing function.  Removed
14982         unneeded code in mono_thread_attach().
14983
14984 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
14985
14986         * image.c (mono_image_loaded_by_guid): a method to get loaded
14987         images by guid. 
14988         (load_metadata_ptrs): we store the guid as string.
14989
14990 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
14991
14992         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
14993
14994         * metadata.c (mono_guid_to_string): imported method form Zoltan
14995         Varga (slightly modified)
14996
14997         * assembly.c (mono_assembly_open): load precompiled code
14998
14999         * loader.h (MonoMethod): we store the method token for use in the
15000         aot compiler. 
15001
15002 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15003
15004         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
15005         the hook function called when an assembly is loaded.
15006         
15007         * domain.c: Modified file.
15008         (mono_domain_assembly_load): removed hash table insertion of assemblies.
15009
15010         Fixes bug #33196.
15011
15012 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
15013
15014         * reflection.c: Map PEFileKind to the value expected by the WinNT
15015         image loader. 
15016
15017 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15018
15019         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
15020         Read until the buffer is filled completely.
15021
15022 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15023
15024         * icall.c: implemented MonoType.InternalGetEvent ().
15025
15026 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15027
15028         * appdomain.c: implemented InitAppDomainSetup. Delayed
15029         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
15030         the entry_assembly.
15031
15032         * assembly.c: base_dir is now an absolute path ending with
15033         G_DIR_SEPARATOR.
15034
15035         * icall.c: modified get_location according to the above changes.
15036
15037         * object.c: init AppDomain.SetupInformation for the default domain after
15038         we have the entry assembly.
15039
15040         * domain.c: when unloading a domain, setup = NULL.
15041
15042 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
15043
15044         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
15045
15046 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
15047
15048         * object.h, object.c: introduced mono_object_get_virtual_method ()
15049         to lookup the method invoked on an object when a callvirt is done on
15050         a method.
15051         * icall.c: make MethodInfo::Invoke() always do a virtual call.
15052
15053 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15054
15055         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
15056         current domain when loaded an assembly and failed to load it.
15057
15058         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
15059
15060 2002-10-31  Dick Porter  <dick@ximian.com>
15061
15062         * icall.c: 
15063         * file-io.h: 
15064         * file-io.c: Return the error status in a parameter, as the
15065         GetLastError() value has long since been blown away if we try and
15066         look it up in a subsequent internal call invocation.  Delete the
15067         GetLastError() internal call, because it's useless.
15068
15069 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
15070
15071         * class.[ch]: added cast_class to fix bug 29517
15072
15073 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
15074
15075         * marshal.c: create valid IL code in the filter clause:
15076         the new JIT is less forgiving:-)
15077
15078 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15079
15080         * icall.c: removed get_property internal call.
15081
15082 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
15083
15084         * appdomain.h domain.c: Added an ID to appdomains.
15085         
15086         * threads.c threads.h icall.c: Implement icall
15087         Thread:GetDomainID(), and remove unused icall 
15088         CurrentThreadDomain_internal.
15089
15090 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15091
15092         * icall.c: Don't recurse through the base types in GetConstructor.
15093         Fixes bug #32063. 
15094
15095 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
15096
15097         * mempool.h, mempool.c: added mono_mempool_empty() and
15098         mono_mempool_stats().
15099
15100 2002-10-23  Dick Porter  <dick@ximian.com>
15101
15102         * file-io.c: 
15103         * file-io.h: 
15104         * icall.c: Added MonoIO.GetFileType internal call
15105
15106 2002-10-17  Dick Porter  <dick@ximian.com>
15107
15108         * appdomain.c (mono_runtime_cleanup): Don't signal the async
15109         delegate semaphore before waiting for all threads to finish,
15110         because new threads can also call async delegates.  Fixes bug
15111         32004.
15112
15113         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
15114         of 3 seconds, in case another async job is queued.  (This part is
15115         needed because the bug fix reintroduced the 3s exit lag.)  This
15116         makes the mono_runtime_shutdown flag superfluous.
15117
15118 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
15119
15120         * reflection.c: include ehader size in method section headers.
15121         Really check for suplicated modules entries.
15122
15123 2002-10-17  Martin Baulig  <martin@gnome.org>
15124
15125         * debug-mono-symfile.c: Added back support for locals.
15126
15127 2002-10-14  Martin Baulig  <martin@gnome.org>
15128
15129         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
15130         MONO_TYPE_VOID.
15131
15132 2002-10-14  Martin Baulig  <martin@gnome.org>
15133
15134         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
15135         mono_class_get() instead of looking in the class cache. 
15136
15137 2002-10-13  Martin Baulig  <martin@gnome.org>
15138
15139         * debug-mono-symfile.c: Set version number to 28, include the
15140         signature in method names.
15141
15142 2002-10-13  Martin Baulig  <martin@gnome.org>
15143
15144         * debug-mono-symfile.h: Set version number to 27.
15145
15146 2002-10-11  Martin Baulig  <martin@gnome.org>
15147
15148         * gc.c: Don't register/unregister NULL pointers as disappearing links.
15149
15150 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
15151
15152         * metadata.c, metadata.h: added helper function to allocate signatures.
15153
15154 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15155
15156         * icall.c: added internal call to get the location of machine.config.
15157
15158 2002-10-08  Martin Baulig  <martin@gnome.org>
15159
15160         * debug-mono-symfile.c: Ignore classes with a pending init for the
15161         moment.
15162
15163 2002-10-03  Dick Porter  <dick@ximian.com>
15164
15165         * threads.c: Freebsd pthread_t is a pointer
15166
15167 2002-10-03  Dick Porter  <dick@ximian.com>
15168
15169         * socket-io.c: Implemented GetHostName_internal
15170
15171 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15172
15173         * mono-config.c:
15174         (mono_config_parse_file): don't leak the text.
15175
15176 2002-10-02  Martin Baulig  <martin@gnome.org>
15177
15178         * debug-mono-symfile.c: Added support for methods.
15179
15180 2002-10-01  Martin Baulig  <martin@gnome.org>
15181
15182         * debug-mono-symfile.c: Don't emit methods and line numbers for
15183         the dynamic symbol file, just write the type table.  We can easily
15184         have an external helper program which creates a symbol file for an
15185         IL file.        
15186
15187 2002-10-01  Dick Porter  <dick@ximian.com>
15188
15189         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
15190         Only add the handle to the cleanup array when we're about to
15191         launch the thread.  Bug 31425 deadlocked when the test was run on
15192         mono under w32.
15193
15194 2002-10-01  Martin Baulig  <martin@gnome.org>
15195
15196         * debug-mono-symfile.c: Added support for properties.
15197
15198 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
15199
15200         * reflection.c: unaligned store fix from Mark Crichton
15201         <crichton@gimp.org>.
15202
15203 2002-09-27  Martin Baulig  <martin@gnome.org>
15204
15205         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
15206         New interncall.
15207
15208 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
15209
15210         * assembly.h, assembly.c: use a sane API to hook into the assembly
15211         loading process instead of a useless special-purpouse hack
15212         (ngen needs a hook, too, for example).
15213
15214 2002-09-27  Dick Porter  <dick@ximian.com>
15215
15216         * threads.c (mono_thread_init): Call GetCurrentProcess() so
15217         io-layer can set up some process handle info.  Not needed on w32,
15218         but doesn't hurt either.
15219
15220         * process.c: Pass the program name in the second parameter to
15221         CreateProcess, so the path is searched.  Include the working
15222         directory. Implemented process name, process enumeration, and some
15223         process detail internal calls.
15224         
15225         * icall.c: Added internal calls for process lookup, and some
15226         process details
15227
15228 2002-09-26  Martin Baulig  <martin@gnome.org>
15229
15230         * assembly.c (mono_install_open_assembly_hook): New global
15231         function to install a function to be invoked each time a new
15232         assembly is loaded.
15233         (mono_assembly_open): Run this callback function if set.
15234
15235         * debug-mono-symfile.c: Put back line numbers for the dynamic
15236         symbol file and also record the .il file as source file.  This
15237         allows us to install the temporary symbol file as `file.dbg' just
15238         like a compiler-generated one.
15239
15240 2002-09-26  Nick Zigarovich <nick@chemlab.org>
15241
15242         * Corrected typo in gc.c (BOHEM vs BOEHM).
15243
15244 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15245
15246         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
15247         GetProperties. Also avoid calling g_slist_length in GetProperties and
15248         GetMethods.
15249
15250 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
15251
15252         * reflection.c: avoid unaligned stores (bug spotted by
15253         Mark Crichton  <crichton@gimp.org>).
15254
15255 2002-09-25  Martin Baulig  <martin@gnome.org>
15256
15257         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
15258         instead of guint64 for addresses and added prologue/epilogue info.
15259
15260 2002-09-25  Martin Baulig  <martin@gnome.org>
15261
15262         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
15263         store line number info.  For the dynamic symbol file, we only need
15264         to provide the JIT generated dynamic line number info for the dynamic
15265         symbol file.
15266
15267 2002-09-25  Martin Baulig  <martin@gnome.org>
15268
15269         * debug-mono-symfile.h: Incremented version number.
15270
15271 2002-09-24  Martin Baulig  <martin@gnome.org>
15272
15273         * class.c (mono_debugger_class_init_func): New global function
15274         pointer variable.
15275         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
15276         call it.
15277
15278         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
15279         function.  This is called via the mono_debugger_class_init_func
15280         hook to add all types to the dynamic type table.
15281         (ves_icall_MonoDebugger_GetType): New interncall to get a class
15282         from its metadata token.
15283
15284         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
15285         New interncall for the debugger.
15286
15287 2002-09-24  Nick Drochak <ndrochak@gol.com>
15288
15289         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
15290         before using it in case it is null.
15291         
15292 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
15293
15294         * metadata.c: allow custom modifiers in local var signatures
15295         (bug spotted by Zoltan Varga).
15296
15297 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
15298
15299         * class.c: deal with the <Module> class that may have a NULL vtable.
15300         Eliminate warnings.
15301
15302 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
15303
15304         * image.c, image.h: more strong name helpers.
15305         * monosn.c: more work: convert pem keys to cryptoapi format.
15306
15307 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
15308
15309         * string-icalls.c: speedup IndexOf.
15310
15311 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
15312
15313         * icall.c: updates from Zoltan.2.Varga@nokia.com.
15314
15315 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
15316
15317         * icall.c: cleanup: use mono_object_domain ().
15318
15319 2002-09-23  Martin Baulig  <martin@gnome.org>
15320
15321         * debug-mono-symfile.c: Improved type support.
15322
15323 2002-09-22  Martin Baulig  <martin@gnome.org>
15324
15325         * debug-mono-symfile.c: Added support for reference types and strings.
15326
15327 2002-09-22  Martin Baulig  <martin@gnome.org>
15328
15329         * debug-mono-symfile.c: Started to work on the type table.
15330
15331 2002-09-21  Martin Baulig  <martin@gnome.org>
15332
15333         * debug-mono-symfile.c: Largely reworked the symbol table format.
15334         The symbol table is now incrementally updated each time a new
15335         method is added.  We're now also using our own magic and version
15336         so that you don't need to recompile all your classes if the
15337         dynamic table changes.
15338         (mono_debug_update_mono_symbol_file): Removed.
15339         (mono_debug_symfile_add_method): New function to add a method.
15340
15341 2002-09-21  Martin Baulig  <martin@gnome.org>
15342
15343         * icall.c
15344         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
15345         New interncall.
15346
15347         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
15348         New interncall to get a method from its metadata token.
15349
15350 2002-09-21  Martin Baulig  <martin@gnome.org>
15351
15352         * debug-mono-symfile.c: Create type table.
15353
15354 2002-09-20  Martin Baulig  <martin@gnome.org>
15355
15356         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
15357
15358 2002-09-20  Martin Baulig  <martin@gnome.org>
15359
15360         * debug-mono-symfile.c: Provide information about params and locals.
15361
15362 2002-09-20  Martin Baulig  <martin@gnome.org>
15363
15364         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
15365         New interncall.
15366
15367         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
15368         interncall to get a method from its metadata token.
15369
15370 2002-09-20  Martin Baulig  <martin@gnome.org>
15371
15372         * debug-mono-symfile.c: Added a few checks for method->header
15373         being non-NULL.  This should never happen, but for the moment
15374         let's use a g_warning() rather than a g_assert().
15375
15376 2002-09-19  Mark Crichton  <crichton@gimp.org>
15377
15378         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
15379         even if support for it isn't present.  Added an #ifdef to fix this.
15380
15381         * socket-io.c: Added checks back for Solaris support.
15382
15383 2002-09-19  Martin Baulig  <martin@gnome.org>
15384
15385         * debug-mono-symfile.c (read_string, write_string): Reflect latest
15386         changes in the symbol file format.
15387
15388 2002-09-18  Martin Baulig  <martin@gnome.org>
15389
15390         * debug-mono-symfile.c: Set version number to 21.
15391
15392 2002-09-18  Dick Porter  <dick@ximian.com>
15393
15394         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
15395         on netbsd.  Fixes bug 30051.
15396
15397 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15398
15399         * reflection.c:
15400         (set_version_from_string): little fix.
15401
15402 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
15403
15404         * monosn.c, Makefile.am: added strong name utility.
15405         * reflection.h, reflection.c: implemented delayed signing,
15406         locale, version and hash id assembly attributes.
15407
15408 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
15409
15410         * loader.c, metadata.c: load param attributes in signatures.
15411
15412 2002-09-16  Martin Baulig  <martin@gnome.org>
15413
15414         * debug-mono-symfile.c: Added string table with all method names.
15415
15416 2002-09-14  Martin Baulig  <martin@gnome.org>
15417
15418         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
15419         fast method lookup.
15420
15421 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
15422
15423         * reflection.c: record the public key token of referenced assemblies.
15424
15425 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
15426
15427         * image.c, image.h: added functions to get the strong name and the
15428         public key of an assembly.
15429         * pedump.c: use them.
15430
15431 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
15432
15433         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
15434
15435 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
15436
15437         * marshal.c (mono_marshal_get_managed_wrapper): Added
15438         MONO_TYPE_BOOLEAN 
15439
15440 2002-09-11  Martin Baulig  <martin@gnome.org>
15441
15442         * gc.c: Call GC_unregister_disappearing_link() on all links when
15443         finalizing them, this is necessary to aviod a crash in boehm's
15444         finalize handler.
15445
15446 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
15447
15448         * gc.c: handle GetTarget for finalized objects spotted and fixed by
15449         nick@chemlab.org.
15450
15451 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
15452
15453         * icall.c: implemented MonoType::Module.
15454         * reflection.c, reflection.h: mono_module_get_object () from
15455         Tomi Pakarinen <tomi.pakarinen@welho.com>.
15456
15457 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
15458
15459         * icall.c: ignore overridden methods in GetMethods ().
15460         Fix for FieldInfo::SetValue().
15461         * object.c: handle float/double in runtime invoke.
15462
15463 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
15464
15465         * object.c: allow a constructor to be called again on an object.
15466
15467 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
15468
15469         * class.h, class.c: move field layout code to it's own function and
15470         export it. Get an interface id earlier. Move fields in MonoClass
15471         so they are more cache friendly and align the bitfields.
15472         * loader.c: temporary handle get_param_names() for a runtime method.
15473         * reflection.c, reflection.h: more code to handle runtime creation of
15474         types.
15475
15476 2002-09-09  Martin Baulig  <martin@gnome.org>
15477
15478         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
15479         signature with the pinvoke field being set for the actual call.
15480
15481 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
15482
15483         * icall.c: removed some unused icalls. Start of map of glib charsets
15484         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
15485
15486 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
15487
15488         * debug-helpers.c: break infinite loop (found and fixed by
15489         Holger Arnold <harnold@gmx.de>).
15490
15491 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
15492
15493         * icall.c: target may be null in create_delegate.
15494
15495 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
15496
15497         * marshal.c: handle a boolean return type.
15498
15499 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
15500
15501         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
15502
15503 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
15504
15505         * gc.c: fix weakreferences.
15506
15507 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
15508
15509         * icall.c: added icall to get default codepage.
15510
15511 2002-09-03  Dick Porter  <dick@ximian.com>
15512
15513         * threads.h: 
15514         * threads.c: Use MonoThread instead of MonoObject where
15515         apropriate.
15516
15517         Store running thread objects in a hash table, so that we have all
15518         the info to hand when waiting for them to finish
15519         (means we don't need OpenThread() any more, so mingw builds should
15520         be fully functional again.)
15521
15522         * verify.c:
15523         * object.h: Added thread ID to MonoThread
15524
15525 2002-09-03  Martin Baulig  <martin@gnome.org>
15526
15527         * icall.c (System.Reflection.Assembly::get_location): New interncall.
15528
15529 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15530
15531         * icall.c: fixed leak in get_temp_path. Thanks lupus.
15532
15533 2002-09-03  Martin Baulig  <martin@gnome.org>
15534
15535         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
15536         argument to store the end address of the disassembled instruction.
15537
15538         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
15539         here from debug-symfile.h.
15540         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
15541         JIT into this struct.
15542         (MonoSymbolFile): Added `char *image_file' field.
15543         (MonoDebugGetMethodFunc): Removed.
15544         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
15545         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
15546         (mono_debug_find_method): New method.
15547
15548         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
15549         create a full symbol file.
15550         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
15551         and static symbol files.
15552         (mono_debug_find_method): The symbol file keeps an internal method hash,
15553         call this to get a MonoDebugMethodInfo from a MonoMethod.
15554
15555         * debug-symfile.[ch]: Removed.
15556
15557 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
15558
15559         * image.c (do_mono_image_open): Remove linker version check.
15560
15561 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
15562
15563         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
15564         wrappers for instance methods.
15565         
15566 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15567
15568         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
15569
15570 2002-08-28  Dick Porter  <dick@ximian.com>
15571
15572         * Makefile.am: Export HOST_CC for w32 builds
15573
15574 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
15575
15576         * file-io.c process.c: MonoString are null terminated, no
15577         need for mono_string_to_utf16() anymore.
15578
15579 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
15580
15581         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
15582
15583 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
15584
15585         * icall.c, reflection.h: speedup System.MonoType.
15586
15587 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
15588
15589         * reflection.c: allow null as the value of a string argument in
15590         custom attributes constructors.
15591
15592 2002-08-27  Martin Baulig  <martin@gnome.org>
15593
15594         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
15595         `trampoline_address' field.
15596
15597 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
15598
15599         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
15600         check (fixes bug #29486) 
15601
15602 2002-08-27  Martin Baulig  <martin@gnome.org>
15603
15604         * debug-mono-symfile.c: Changed the file format in a way that allows us
15605         open it read-only and to use a specially malloced area for all the
15606         dynamic data.  We can now also generate a symbol file on-the-fly if we're
15607         debugging IL code and there is no MCS generated symbol file for it.
15608
15609 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
15610
15611         * object.c: added a define for a good string and array
15612         creation speedup (not enabled by default because we need to deal with
15613         the synch stuff).
15614
15615 2002-08-26  Martin Baulig  <martin@gnome.org>
15616
15617         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
15618         function to create a dynamic symbol file.  This is used by the
15619         debugger to create a symbol file for IL code on-the-fly.
15620
15621 2002-08-26  Martin Baulig  <martin@gnome.org>
15622
15623         * loader.c (mono_lookup_pinvoke_call): Include the error message
15624         from g_module_error() in the error message.
15625
15626 2002-08-24  Martin Baulig  <martin@gnome.org>
15627
15628         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
15629         function to update the symbol file.  The symbol file is mmap()ed
15630         writable, but private.  This allows us to install the symbol file
15631         together with the assembly.
15632
15633 2002-08-24  Martin Baulig  <martin@gnome.org>
15634
15635         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
15636         but they can read the new symbol file format which mcs is now creating.
15637
15638         * debug-symfile.c (mono_debug_find_source_location): Moved to
15639         debug-mono-symfile.c; this is now operating on the new symbol file.
15640
15641 2002-08-23  Martin Baulig  <martin@gnome.org>
15642
15643         * debug-helpers.c (mono_method_desc_from_method): New function to get
15644         a MonoMethodDesc from a MonoMethod.
15645
15646 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
15647
15648         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
15649         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
15650
15651 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
15652
15653         * string-icalls.[ch]: make helper methods static.
15654
15655 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15656
15657         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
15658         types to it and to SetValueInternal.
15659
15660         * object.c: Moved handle_enum label to its proper place. This was the
15661         f... bug! ;-)
15662
15663         This time i compiled mcs and gtk-sharp and they both work.
15664
15665 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15666
15667         * icall.c: reverted partially my previous patch until 
15668         object.c:set_value handles enums correcly.
15669
15670 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15671
15672         * icall.c:
15673         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
15674         (ves_icall_System_Environment_get_MachineName): removed warning when
15675         compiling under cygwin.
15676
15677 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
15678
15679         * object.c: fixed field_get_value() for reference types.
15680
15681 2002-08-22  Dick Porter  <dick@ximian.com>
15682
15683         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
15684         Don't free a buffer while it's still needed.  Patch from Jonathan
15685         Liger <Jonathan.liger@wanadoo.fr>
15686
15687 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
15688
15689         * icall.c (ves_icall_System_Environment_get_Platform): Add new
15690         internal call.
15691
15692 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
15693
15694         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
15695         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
15696
15697         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
15698         we call unmanaged code which throws exceptions.
15699
15700 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
15701
15702         * appdomain.h: added per-domain entry_assembly.
15703         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
15704         arguments.
15705         * icall.c: Assembly::GetEntryAssembly icall.
15706         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
15707         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
15708
15709 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
15710
15711         * appdomain.h, gc.c: added mono_domain_finalize ().
15712
15713 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15714
15715         * object.c:
15716         (mono_print_unhandled_exception): changed g_warning by g_printerr
15717         because g_log has a 1024 characters limit (yeah, i got a big stack
15718         trace). Don't print exception name, that should be in ToString 
15719         returned string.
15720
15721 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15722
15723         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
15724         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
15725
15726 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15727
15728         * object.c:
15729         (mono_print_unhandled_exception): after previous commit, i realized
15730         that MS calls ToString on the exception. I changed this function to
15731         do that. This way we get stack_trace for free.
15732
15733 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15734
15735         * object.c:
15736         (mono_print_unhandled_exception): invoke Message property instead of
15737         getting 'message' field from Exception. Don't allocate memory for
15738         'trace' and 'message' if not needed.
15739
15740 2002-08-18  Dick Porter  <dick@ximian.com>
15741
15742         * unicode.c: Fix asserts to match Encoder.cs checks
15743
15744 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
15745
15746         * marshal.c: fix unaligned store issue and a few wrong
15747         opcode argument types.
15748
15749 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15750
15751         * icall.c: added GetUninitializedObjectInternal internal call.
15752
15753 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
15754
15755         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
15756         to the right domain.
15757
15758 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
15759
15760         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
15761
15762         * class.c (class_compute_field_layout): set blittable to false for Strings
15763
15764         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
15765
15766 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
15767
15768         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
15769         first chunk of code to create types at runtime. Code to
15770         handle ReflectedType/DeclaringType. Make reflection handles
15771         domain specific.
15772
15773 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
15774
15775         * class.c: set correct name in arrays.
15776
15777 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
15778
15779         * appdomain.c (mono_domain_transfer_object): make it work with
15780         valuetypes. bug fixes.
15781
15782 2002-08-12  Dick Porter  <dick@ximian.com>
15783
15784         * object.h: Rename some parameters to avoid c++ keywords (Patch
15785         from Joseph Wenninger <kde@jowenn.at>)
15786
15787 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
15788
15789         * icall.c: added icall to implement Assembly.GetFile*.
15790
15791 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
15792
15793         * reflection.h, reflection.c: code to embed managed resources.
15794
15795 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
15796
15797         * class.c: move all the type size stuff into
15798         class_compute_field_layout().
15799
15800 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
15801
15802         * class.c: ensure enums have always the correct instance size.
15803         * unicode.c: remove wrong assert.
15804
15805 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
15806
15807         * assembly.c: fix mem corruption issue.
15808         * image.h, image.c: added mono_image_get_resource () to access
15809         managed resources.
15810         * icall.c: implemented Assembly.EntryPoint property and some
15811         Managed Resources related internalcalls.
15812
15813
15814 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
15815
15816         * image.c, image.h: impemented mono_image_get_entry_point ().
15817         * appdomain.c: use mono_image_get_entry_point.
15818
15819 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
15820
15821         * reflection.c: support the object type argument when loading
15822         custom attributes.
15823
15824 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
15825
15826         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
15827         String as return type.
15828
15829 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
15830
15831         * reflection.c: fix encoding of named args for custom attrs to match
15832         the ms implementation. Read them back when instantiating custom
15833         attributes.
15834
15835 2002-08-02  Radek Doulik  <rodo@ximian.com>
15836
15837         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
15838         by Dietmar as quick fix
15839         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
15840         16 as stack size, used on more places as quick fix before Dietmar
15841         will fix it properly
15842
15843 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
15844
15845         * object.h, object.c: added accessors for fields and properties.
15846
15847 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
15848
15849         * class.c, class.h: made mono_class_get_field_from_name ()
15850         loop on parent types.
15851         Added mono_class_get_property_from_name ().
15852
15853 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
15854
15855         * class.c, class.h: move the code to setup the type vtable in its own
15856         function so that it can be reused also for types created at runtime.
15857         Eliminate the "class" identifier from the header file.
15858         * reflection.c: setup the vtable for enums so that we can create
15859         objects for use in SetConstant ().
15860
15861 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
15862
15863         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
15864         instead of the delegate itself as this pointer (bug #28383)
15865
15866 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
15867
15868         * marshal.c (mono_marshal_get_managed_wrapper): added return type
15869         conversions.
15870
15871 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
15872
15873         * loader.c: don't set the pinvoke bit on icalls.
15874
15875 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
15876
15877         * debug-helpers.c (mono_method_full_name): only print a number to
15878         indicate wrapper type (so that the output is more readable in traces).
15879
15880 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
15881
15882         * class.c (mono_class_init): include method override patch from Paolo
15883
15884 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
15885
15886         * icall.c: fixed GetTypeCode().
15887
15888 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
15889
15890         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
15891         use real delegate invoke function to make it work with multicast
15892         delegates (fix bug# 28291).
15893
15894 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
15895
15896         * object.c: load constant strings.
15897
15898 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
15899
15900         * reflection.c: no magic numbers.
15901         * tabledefs.h: security action enum.
15902
15903 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
15904
15905         * assembly.c: fix possible memory corruption.
15906
15907 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
15908
15909         * reflection.h, reflection.c: added support for linking resources.
15910         * verify.c: check we have an updated corlib.
15911
15912 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
15913
15914         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
15915         string arrays.
15916         (mono_marshal_string_array): null terminate unmanaged string arrays.
15917         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
15918
15919 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
15920
15921         * icall.c: Type.GetType () can now return also types from the
15922         calling assembly.
15923
15924 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
15925
15926         * loader.h, loader.c: stack walking support.
15927         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
15928         GetCallingAssembly.
15929
15930 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
15931
15932         * marshal.c: added optimisations for blittable types 
15933
15934         * class.c (mono_array_class_get): do not set blittable attribute on arrays
15935         (mono_class_setup_mono_type): set blittable attribute for single
15936         and double.
15937
15938         * marshal.c (mono_string_utf8_to_builder): impl.
15939         (mono_string_builder_to_utf8): impl.
15940         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
15941
15942 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
15943
15944         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
15945         (mono_marshal_get_managed_wrapper): impl. byref types
15946
15947 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15948
15949         * icall.c:
15950         (search_method): don't display debug message. 
15951
15952 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
15953
15954         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
15955
15956 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
15957
15958         * appdomain.c: set the missing filename when throwing exception.
15959
15960 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
15961
15962         * metadata.c (mono_type_size): code cleanup
15963         (mono_type_stack_size): removed some test code
15964
15965 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
15966
15967         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
15968         mono_get_exception_file_not_found now.
15969
15970         * exception.c (mono_exception_from_name_two_strings): New version
15971         that will call a constructor with two string arguments. 
15972         (mono_get_exception_file_not_found): New helper routine, used to
15973         report file-not-found errors.
15974
15975 2002-07-20  Dick Porter  <dick@ximian.com>
15976
15977         * process.h:
15978         * process.c: Pass file handles to CreateProcess
15979         
15980         * icall.c:
15981         * file-io.h:
15982         * file-io.c: Implemented CreatePipe
15983
15984 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
15985
15986         * metadata.c (mono_get_param_info): set alignment for value types
15987
15988 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
15989
15990         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
15991         Constify mono_domain_assembly_open().
15992         * loader.c: handle null namespace in icalls.
15993
15994 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
15995
15996         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
15997         (emit_str_to_ptr_conv): marshal object as structs
15998
15999         * metadata.c (mono_type_to_unmanaged): marshal object as structs
16000
16001         * marshal.c (mono_marshal_get_runtime_invoke): support value types
16002
16003 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
16004
16005         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
16006         (mono_marshal_get_native_wrapper): we an now return value types
16007
16008 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
16009
16010         * verify.c: more checks implemented.
16011
16012 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
16013
16014         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
16015         (fix bug #27695)
16016         (mono_marshal_get_native_wrapper): allow byref arguments
16017         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
16018         impl. PtrToStringXXX methods
16019         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
16020         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
16021         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
16022         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
16023         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
16024
16025 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
16026
16027         * reflection.c: fix buglet in parsing an assembly name.
16028
16029 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
16030
16031         * marshal.c (emit_ptr_to_str_conv): first impl.
16032
16033 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
16034
16035         * object.c, class.h: cache the vtable in the class as suggested by
16036         vargaz@freemail.hu (Zoltan Varga).
16037
16038 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
16039
16040         * class.h, loader.c: added mono_field_from_token().
16041         * verify.c: first cut of type checking code.
16042
16043 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
16044
16045         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
16046
16047 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
16048
16049         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
16050         (fix bug #27782)
16051         (mono_marshal_get_remoting_invoke): impl.
16052         (mono_delegate_begin_invoke): impl.
16053         (mono_mb_emit_save_args): impl.
16054         (mono_delegate_end_invoke): impl.
16055         (mono_marshal_get_delegate_begin_invoke):
16056         (mono_marshal_get_delegate_end_invoke):
16057         (mono_marshal_get_delegate_invoke): generate a special name for
16058         those methods (including the signature) and associate them whith
16059         the delegate class. 
16060
16061 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
16062
16063         * reflection.[ch]: 
16064         (mono_reflection_type_from_name): now it has a MonoImage parameter
16065         which is used as the default image to search the type in. If the image
16066         is NULL or getting the type from it fails, it defaults to corlib.
16067
16068         * icall.c: changed 1 call to mono_reflection_type_from_name to match
16069         new parameter.
16070
16071 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
16072
16073         * reflection.c: update the parameter table index.
16074
16075 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
16076
16077         * domain.c: don't include the mark byte in the string hash.
16078
16079 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
16080
16081         * icall.cs: icall for Type.GetTypeCode ().
16082         * verify: a couple of fixes and disabled local initialization checks.
16083
16084 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
16085
16086         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
16087
16088         * debug-helpers.c (mono_method_full_name): print the type of the
16089         runtime wrapper
16090
16091         * metadata.c (mono_signature_hash): a hash function for signatures
16092         (mono_signature_hash): better hash algorithm
16093
16094         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
16095
16096         * debug-helpers.c (mono_method_full_name): this can now generate
16097         method names with signatures
16098
16099         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
16100         method dont have this pointers.
16101
16102 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
16103
16104         * reflection.c: fixup typebuilder tokens.
16105         * image.c: fix buglet.
16106         * marshal.h: remove whitespace.
16107         * metadata.h, metadata.c: reinstate code that was removed.
16108         * verify.c: handle catch directives and fix another couple of bugs.
16109
16110 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
16111
16112         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
16113         (mono_marshal_get_native_wrapper): make it comp. with the old code
16114         (mono_marshal_get_native_wrapper): support boolean
16115         (mono_marshal_get_managed_wrapper): support more types
16116
16117 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
16118
16119         * class.c (class_compute_field_layout): compute class->blittable attribute.
16120
16121 2002-07-09  Dick Porter  <dick@ximian.com>
16122
16123         * threads.c: Make the thread cleaning up cope with threads that
16124         call ExitThread()
16125
16126 2002-07-08  Radek Doulik  <rodo@ximian.com>
16127
16128         * reflection.c (method_encode_code): use non-translated values to
16129         compute finally_start, this fixes exception handling on ppc, yay!
16130
16131         * decimal.h (struct signscale): fix endianess
16132
16133 2002-07-07  Radek Doulik  <rodo@ximian.com>
16134
16135         * reflection.c: swap box_val and not val
16136
16137 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
16138
16139         * reflection.c, reflection.h: handle full assembly info in type name.
16140         Handle Type arguments when loading custom attributes.
16141         * icall.c: updated to use new mono_reflection_type_from_name () method.
16142
16143 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16144
16145         * loader.c:
16146         (method_from_memberref): also print assembly name when method not found.
16147
16148 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16149
16150         * icall.c:
16151         (ves_icall_TypeGetProperties): fixed bug #27473. 
16152
16153 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16154
16155         * reflection.c: display image name and token when cannot find the
16156         .ctor for an attribute.
16157
16158 2002-07-05  Martin Baulig  <martin@gnome.org>
16159
16160         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
16161
16162 2002-07-04  Dick Porter  <dick@ximian.com>
16163
16164         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
16165         compile on mingw.  This will cause mingw builds to not wait for
16166         subthreads to terminate after the main thread does.  I've lodged a
16167         bug with the mingw developers for them to wrap OpenThread().
16168
16169 2002-07-03  Dick Porter  <dick@ximian.com>
16170
16171         * threads.c: Store thread IDs instead of handles, because
16172         GetCurrentThread() returns a pseudohandle and therefore stores
16173         useless values.  mono_thread_cleanup() continues checking the
16174         array of threads until it is empty, to cope with subthreads
16175         spawning new threads after the main thread has finished.
16176
16177         * profiler.h:
16178         * profiler.c:
16179         * profiler-private.h: Pass the thread ID to thread profiler
16180         functions, instead of a handle
16181
16182 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
16183
16184         * verify.c: fixes to make it more usable.
16185         * pedump.c: added --verify code to verify IL code in an assembly.
16186
16187 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
16188
16189         * reflection.c: turn errors into warnings to allow compiling corlib.
16190
16191 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
16192
16193         * reflection.c: add special cases to compile corlib.
16194
16195 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
16196
16197         * reflection.c: handle properties with only a set method.
16198
16199 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
16200
16201         * opcodes.h: add enum with opcodes in opval order.
16202
16203 2002-07-01  Dick Porter  <dick@ximian.com>
16204         
16205         * object.h:
16206         * object.c (mono_runtime_run_main): Removed unneeded argument
16207
16208 2002-06-28  Martin Baulig  <martin@gnome.org>
16209
16210         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
16211
16212 2002-06-27  Dick Porter  <dick@ximian.com>
16213
16214         * threads.c: Store the handle in both the parent thread and in the
16215         subthread, to minimise the time between starting a new thread and
16216         storing its ID.
16217
16218 2002-06-26  Dick Porter  <dick@ximian.com>
16219
16220         * appdomain.c (mono_runtime_cleanup): Close the socket library
16221         after all the threads have finished, not before
16222
16223 2002-06-26  Martin Baulig  <martin@gnome.org>
16224
16225         * debug-symfile.c (mono_debug_find_source_location): Added
16226         `guint32 *line_number' argument.  If it's not NULL, store the line number
16227         there and return the file name without the line number.
16228
16229 2002-06-25  Dick Porter  <dick@ximian.com>
16230
16231         * icall.c:
16232         * process.h:
16233         * process.c: Process forking and other support functions
16234
16235 2002-06-25  Dick Porter  <dick@ximian.com>
16236
16237         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
16238         things dont happen when the image is closed.
16239         (mono_image_lookup_resource): Walk the resource section looking
16240         for a particular entry
16241
16242         * cil-coff.h: PE resource section decoding
16243
16244 2002-06-25  Dick Porter  <dick@ximian.com>
16245         
16246         * assembly.h:
16247         * assembly.c: 
16248         (mono_assembly_foreach): Accessor functions to walk the list of
16249         loaded assemblies
16250         (mono_assembly_set_main):
16251         (mono_assembly_get_main): Process methods need to know which
16252         assembly is the "main" one
16253
16254         * object.c (mono_runtime_run_main): Record the main assembly
16255
16256         * debug-helpers.c: Fix typo
16257
16258 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
16259
16260         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
16261         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
16262
16263 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
16264
16265         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
16266
16267 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
16268
16269         * image.c (do_mono_image_open): Initialize reference count,
16270         otherwise we leak the MonoImage.
16271
16272 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
16273
16274         * reflection.c: small tweak to handle self-hosting.
16275
16276 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
16277
16278         * reflection.c: fix type name parse code.
16279
16280 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
16281
16282         * reflection.c: break out of the loop.
16283         * image.c: special case corlib.
16284
16285 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
16286
16287         * reflection.c: add all the custom attrs at the end to ensure the
16288         ctors have been properly initialized when the attributes are defined
16289         in the current assembly.
16290
16291 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
16292
16293         * reflection.c: handle correctly multiple-nested types.
16294
16295 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
16296
16297         * row-indexes.h: fix typos.
16298         * reflection.c: adjust for typos and fix method_def_or_ref
16299         encoding in MethodImpl table.
16300
16301 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
16302
16303         * reflection.c: fix entry point patching (thanks Serge!).
16304
16305 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
16306
16307         * verify.c: add check for System.Exception
16308
16309 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
16310
16311         * image.c, class.c: minifix for code just c&p'ed.
16312         * reflection.c: warning fix.
16313         * object.h, loader.h, domain.c: load also StringBuilder.
16314
16315 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
16316
16317         * marshal.h, marshal.c: some support code to handle complex marshaling.
16318
16319 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
16320
16321         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
16322         Better signatures with vtable error dump.
16323
16324 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
16325
16326         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
16327
16328 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
16329
16330         * icall.c (ves_icall_Type_GetField): impl.
16331
16332 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
16333
16334         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
16335         to retrieve a marshal description blob for a field or param.
16336
16337 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
16338
16339         * reflection.h, reflection.c: change order of nested type emission
16340         to avoid table corruption. The NestedTypes table is sorted.
16341         * icall.c: change order of GetConstructor results to workaround mcs bug.
16342
16343 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
16344
16345         * reflection.h, reflection.c: handle field and param marshal
16346         information.
16347
16348 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
16349
16350         * icall.c, marshal.c marshal.h: more Marshal class implementation.
16351
16352 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
16353
16354         * reflection.c: fix call convention.
16355
16356 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
16357
16358         * reflection.h, reflection.c: mono_image_get_memberref_token()
16359         takes a type instead of a class, now. Added
16360         mono_image_get_array_token() to create tokens for the special
16361         multi-dim array methods.
16362
16363 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
16364
16365         * assembly.c: handle modules (no assembly table). Split
16366         loading references in its own function.
16367         * class.c: handle moduleref resolution scope.
16368         * image.c, image.h: cache module name in image.
16369
16370 2002-06-07  Martin Baulig  <martin@gnome.org>
16371
16372         * reflection.c (mono_image_get_type_info): Only add a class layout entry
16373         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
16374
16375 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
16376
16377         * icall.c: more signature fixes that used uint instead of int.
16378
16379 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
16380
16381         * reflection.c: fixed signature of field refs.
16382
16383 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
16384
16385         * class.c, reflection.c: handle typerefs of nested types
16386         (both on read and when writing files).
16387
16388 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
16389
16390         * icall.c: fix method signatures that tried to workaround the previous
16391         typo, d'oh!
16392
16393 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
16394
16395         * debug-helpers.c: fix typo.
16396
16397 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
16398
16399         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
16400         rewrote the PE/COFF writing code (our programs are understood by the
16401         ms runtime, now).
16402
16403 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
16404
16405         * gc.c, gc.h, icall.c: weakreference support.
16406
16407 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
16408
16409         * Makefile.am, mono-config.c: use $(sysconfdir).
16410
16411 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
16412
16413         * icall.c: changed default precision of Double.ToString() to 15.
16414         Fixed memory leak. Unified with Single.ToString.
16415
16416 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
16417
16418         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
16419
16420 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
16421
16422         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
16423         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
16424         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
16425         and myself.
16426
16427 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
16428
16429         * debug-symfile.c, sysmath.c: yet more compilation fixes.
16430
16431 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
16432
16433         * reflection.c, socket-io.c: more compilation fixes.
16434
16435 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
16436
16437         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
16438         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
16439         unicode.c: warning and compiler compatibility fixes.
16440
16441 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
16442
16443         * class.h, metadata.c: fixed warnings/compilation errors.
16444
16445 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
16446
16447         * Makefile.am, mono-config.c, mono-config.h: configuration file
16448         support routines.
16449         * loader.c, loader.h: make Dll mapping configurable at runtime in the
16450         config file. Export methods to insert and lookup mappings.
16451
16452 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
16453
16454         * reflection.c: handle types and boxed objects in custom attr
16455         constructors.
16456
16457 2002-05-30  Martin Baulig  <martin@gnome.org>
16458
16459         * debug-symfile.c
16460         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
16461
16462 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
16463
16464         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
16465         to lookup the implmap row for a P/Invoke method.
16466         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
16467         P/Invoke method from the runtime on an as needed basis.
16468
16469 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
16470
16471         * metadata.c (mono_metadata_parse_signature): impl.
16472
16473 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
16474
16475         * class.c: handle .pack directive.
16476
16477 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
16478
16479         * object.c: initialize static fields with RVA data.
16480
16481 2002-05-25  Martin Baulig  <martin@gnome.org>
16482
16483         * debug-symfile.c
16484         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
16485
16486 2002-05-24  Martin Baulig  <martin@gnome.org>
16487
16488         * debug-symfile.c
16489         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
16490         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
16491         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
16492
16493 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
16494
16495         * object.c: special case string ctros in invoke.
16496         * gc.c: silly whitespace changes.
16497
16498 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
16499
16500         * threadpool.[ch]: impl. a threadpool that can
16501         be used by mint and mono.
16502
16503 2002-05-22  Martin Baulig  <martin@gnome.org>
16504
16505         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
16506         The first argument is now a `MonoReflectionModuleBuilder *', the return
16507         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
16508         `methods' field to get the method builder.  The `token' argument is the
16509         unfixed token.
16510
16511         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
16512         invalid characters instead of g_assert_not_reached()ing.  This seems
16513         to be the behaviour of mscorlib.
16514
16515 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
16516
16517         * object.c (mono_runtime_invoke_array): applied patch from Rachel
16518         Hestilow to fix bug #25104
16519
16520 2002-05-21  Martin Baulig  <martin@gnome.org>
16521
16522         * debug-symfile.c (mono_debug_find_source_location): New function.
16523         Looks up an IL offset in the line number table and returns the source
16524         location as a string.
16525
16526 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16527
16528         * icall.c:
16529         (mono_double_ToStringImpl): changed %f by %g until we have something
16530         better.
16531
16532 2002-05-21  Nick Drochak  <ndrochak@gol.com>
16533
16534         * icall.c : Use different name for Math.Pow's icall.  Needed to check
16535         parameters first in C#.
16536
16537 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
16538
16539         * icall.c, reflection.h: added icall to get info about an event.
16540
16541 2002-05-20  Radek Doulik  <rodo@ximian.com>
16542
16543         * object.c (mono_value_box): don't use memcpy for boxing on BIG
16544         endian
16545         (mono_value_box): don't use memcpy for small sizes on
16546         architectures with unaligned access
16547
16548 2002-05-20  Martin Baulig  <martin@gnome.org>
16549
16550         * reflection.c (mono_reflection_setup_internal_class): Don't crash
16551         if `tb->parent == NULL'.
16552         (mono_reflection_create_internal_class): New function.  This is
16553         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
16554         for enum types.
16555
16556         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
16557         New interncall.
16558
16559 2002-05-19  Martin Baulig  <martin@gnome.org>
16560
16561         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
16562         argument to get the length, don't default to the array length.
16563
16564 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
16565
16566         * assembly.c (mono_assembly_setrootdir): New function used to
16567         override the MONO_ASSEMBLIES directory.
16568
16569 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
16570
16571         * icall.c: ValueType_GetHashCode() initialize local var.
16572
16573 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
16574
16575         * reflection.c: sort custom attributes table.
16576
16577 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
16578
16579         * reflection.c: support named args in custom attributes (write support).
16580
16581 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
16582
16583         * reflection.c: fix finally position calculation.
16584
16585 2002-05-15  Radek Doulik  <rodo@ximian.com>
16586
16587         * reflection.c: fixed endianess at many places
16588
16589         * icall.c (ves_icall_InitializeArray): comment out debug msg
16590
16591 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
16592
16593         * object.c (mono_unhandled_exception): new function to handle
16594         unhandled exceptions.
16595         (mono_unhandled_exception): call the UnhandledException event.
16596         (mono_runtime_delegate_invoke): impl.
16597
16598 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
16599
16600         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
16601         returns the RVA, not the direct pointer to the data. Handle the case
16602         when the class size is fixed.
16603
16604 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
16605
16606         * reflection.c: fix some endianess issues.
16607
16608 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
16609
16610         * object.c (mono_runtime_invoke): is now able to catch exceptions.
16611
16612         * threads.c (mono_thread_init): added a callback which is invoked
16613         at thread start.
16614
16615 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
16616         
16617         * icall.c: make GetHashCode return non-negative values.
16618
16619 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
16620
16621         * object.c, icall.c, gc.c: revert to address-based hashcode.
16622
16623 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
16624
16625         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
16626
16627 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
16628
16629         * icall.c, class.c: special case <Module>.
16630
16631 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
16632
16633         * icall.c: fix bug in GetNow().
16634
16635 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
16636
16637         * object.c (mono_runtime_class_init): make sure that we call all
16638         static class constructors.
16639
16640 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
16641
16642         * reflection.c: sort methodsemantics table.
16643
16644 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
16645
16646         * reflection.h, reflection.c: honour init locals setting.
16647
16648 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
16649
16650         * icall.c: copied Double ToStringImpl for Single ToStringImpl
16651
16652 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
16653
16654         * reflection.c: support ContructorBuilders in attribute blob creation.
16655
16656 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
16657
16658         * reflection.c: some changes to build a binary that can be run
16659         directly in windows.
16660
16661 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
16662
16663         * loader.c: print a big message when an icall can't be found.
16664
16665 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16666
16667         * string-icalls.c: fix bug 24248.
16668
16669 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
16670
16671         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
16672         icall.c, reflection.h: separate assembly loading by pathname and by
16673         assembly name. Use the MONO_PATH env var to search for assemblies.
16674
16675 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
16676
16677         * assembly.c, image.h: add some support for assemblies
16678         with multiple modules.
16679         * class.c, class.h: export mono_class_from_typeref().
16680         * loader.c: remove duplicated code and use mono_class_from_typeref(),
16681         instead.
16682
16683 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
16684
16685         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
16686         documentation says (the ECMA one is correct).
16687
16688 2002-05-02  Dick Porter  <dick@ximian.com>
16689
16690         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
16691         Don't name the synchronisation mutex.
16692
16693 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
16694
16695         * rand.c
16696         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
16697         Make the prototypes match.
16698         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
16699         Same.
16700
16701         * icall.c
16702         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
16703         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
16704         all systems have tm.tm_zone, so use strftime() with %Z to print
16705         the timezone abreviation into a temp string.
16706
16707         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
16708         rather than mono_array_addr() on a MonoString on Big Endian
16709         machines.
16710
16711 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
16712
16713         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
16714         fix bug 24041
16715
16716 2002-04-30  Dick Porter  <dick@ximian.com>
16717
16718         * socket-io.c: Cope with SOCKET being an integer rather than a
16719         pointer now.
16720
16721         * threads.c: Added Thread_free_internal, to deal with thread
16722         handle cleanup.  Moved calls to handle_store() and handle_remove()
16723         to start_wrapper(), so each can only be called once.  Allocate
16724         synchronisation blocks with GC_malloc(), and use GC finalisation
16725         to close the handles.
16726
16727         * icall.c: added System.Threading.Thread::Thread_free_internal
16728
16729 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
16730
16731         * icall.c: support Environment.Exit, CommandLineArgs().
16732
16733 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
16734
16735         * object.c, object.h: added mono_runtime_run_main () and
16736         mono_runtime_get_main_args () for use in System.Environment.
16737
16738 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
16739
16740         * gc.c: fix thinko, enable actual finalization since the jit is now
16741         fixed.
16742
16743 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
16744
16745         * gc.c, object.c: take into account that an object may be offset wrt the address
16746         returned by GC_malloc().
16747
16748 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
16749
16750         * image.c: handle files without entries in the assembly table (modules).
16751
16752 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
16753
16754         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
16755         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
16756         allowed to be null when it's System.Object class setup.
16757
16758 2002-04-27  Martin Baulig  <martin@gnome.org>
16759
16760         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
16761         if `tb->parent == NULL' rather than crashing.
16762
16763 2002-04-28  Nick Drochak  <ndrochak@gol.com>
16764
16765         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
16766         calling acos() where asin() should have been called.
16767
16768 2002-04-26  Martin Baulig  <martin@gnome.org>
16769
16770         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
16771         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
16772         there's a subdirectory called `System', but we don't want to read that
16773         subdirectory as an assembly.
16774
16775 2002-04-25  Martin Baulig  <martin@gnome.org>
16776
16777         * debug-symfile.c: Reflect latest MonoString changes.
16778
16779 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
16780
16781         * rand.c, rand.h: instance method icalls need to have an explicit
16782         this pointer as first argument in the C implementation.
16783
16784 2002-04-25  Nick Drochak <ndrochak@gol.com>
16785
16786         * icall.c: Fix typo in map for GetNonZeroBytes
16787
16788 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
16789
16790         * string-icalls.c : String does now passes unit tests without any 
16791         errors, the following changes has been made:
16792         
16793         Implemented replace methods.
16794         Renaming of methods to (try) follow the standard.
16795         Fixed compare ordinal
16796         Made all memory allocated directly to function instead of via icall function.
16797         Small performance fix in is_in_array function
16798                         
16799  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
16800
16801         c (mono_string_Internal_ctor_charp_int_int):
16802         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
16803         sindex < 0, throw ArgumentOutOfRangeException instead of
16804         ArgumentNullException.
16805
16806         Added new check for length == 0, however
16807         I need to make it return String.Empty from the C code.
16808         
16809         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
16810         that calculate the length for us here.
16811         
16812         (mono_string_Internal_ctor_sbytep_int_int): Replaced
16813         mono_string_new_utf16 with mono_string_new, since value is utf8.
16814
16815 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
16816
16817         * object.c: register the object for finalization if needed.
16818         Allocate one more char in the string for the terminating 0 char.
16819
16820 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
16821
16822         * class.c, class.h, image.c: check if a type implemenst a destructor.
16823         Use the proper key for array class lookups.
16824         * icall.c: register the icalls in the System.GC class.
16825         * gc.c, gc.h: GC-related functions and icalls.
16826
16827 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16828
16829         * icall.c:
16830         * socket-io.c:
16831         * unicode.c: free some strings gotten from mono_string_to_utf8 and
16832         changed a couple of free () by g_free ().
16833
16834         * decimal.c: one-liner in the comments for decimal2string ().
16835
16836 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
16837
16838         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
16839
16840 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
16841
16842         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
16843         * object.c (mono_runtime_invoke_array) : handle null in params
16844
16845 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
16846
16847         * string-icalls.c: fixed bug in split (one off bug)
16848
16849 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
16850
16851         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
16852         * icalls.c: added String::Equals as internal method
16853
16854 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
16855
16856         * threads.c: fixed bug in the double interlocked functions
16857
16858 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
16859
16860         * threads.c: implemented all of the new interlocked icalls.
16861         * string-icalls.c: fix a bug in insert.
16862         * icalls.c: added the icalls for interlocked, removed old string functions.
16863         
16864 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
16865
16866         * loader.c: fix off-by-one error when reading argument names.
16867
16868 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
16869
16870         * profiler.c: win32 counter implementation (untested).
16871         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
16872         (the latter needs testing and more complete impl. from win32 folks).
16873
16874 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
16875
16876         * object.c: mono_array_new_full workaround mono_array_class_get
16877         problem.
16878
16879 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
16880
16881         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
16882         * object.h (mono_string_chars): Changed casting type.
16883
16884 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
16885
16886         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
16887                            method signatures to use gunichar2 instead of gint16.
16888
16889 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
16890
16891         * object.h, object.c: domain-specific versions of mono_object_new and
16892         mono_array_new.
16893
16894 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
16895
16896         * object.c: changed String layout
16897
16898         * string-icalls.c (mono_string_Internal_ctor_chara): added
16899         internal string constructors.
16900
16901 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
16902
16903         * threads.c: pass 'this' to the thread start routine.
16904
16905 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16906
16907         * string-icalls.c: fix IndexOf and LastIndexOf. Now
16908         InternalCompareStr don't call twice mono_string_cmp_char for the last
16909         character. Improved performance in mono_string_cmp_char.
16910
16911 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
16912
16913         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
16914         code into its own library: libmonoruntime.
16915
16916 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
16917
16918         * object.h, object.c: changed array format so that szarrays do not
16919         require a bounds structure.
16920         * icall.c, appdomain.c: support for new szarray format.
16921
16922 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
16923
16924         * metadata.c: compare also the retuns type when comparing signatures:
16925         we didn't do this as an optimization since really overloaded methods
16926         must differ also in the arguments, but this doesn't work with
16927         low-level IL code (or when using explicit conversion operators: see
16928         bug#23498 for an example).
16929
16930 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
16931
16932         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
16933
16934 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
16935
16936         * icall.c: make MonoType::GetElementType its own icall.
16937
16938 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
16939
16940         * icall.c: remove MonoMethod_get_Name().
16941         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
16942         object.
16943
16944 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
16945
16946         * string-icalls.c: optimized a few methods.
16947
16948 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
16949
16950         * icall.c: added all new string internal calls
16951         * string-icalls.c: added, new string internal call implementation.
16952         * object.c: added mono_string_new_size for allocating a string a size
16953
16954 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
16955
16956         * object.c (mono_object_isinst): use the same code as in the
16957         optimized x86 version.
16958
16959 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
16960
16961         * profiler.c: TSC-based timer code (faster and more accurate).
16962         Not hooked up in configure, yet (set USE_X86TSC to 1).
16963
16964 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
16965
16966         * profiler.c, profiler.h: track time spent compiling methods.
16967         * threads.c: track thread creation/destruction.
16968
16969 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
16970
16971         * profiler.c, profiler.h, profiler-private.h: profiling interface
16972         and sample implementation. Moved here so that it can be used also by
16973         the jit.
16974
16975 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
16976
16977         * reflection.c, reflection.h: keep types and other handles separate in
16978         the hash tables for referred tokens. Add guid for modules.
16979
16980 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
16981
16982         * assembly.c: fix bugs found with valgrind.
16983         * metadata.h, metadata.c: added mono_metadata_guid_heap().
16984
16985 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
16986
16987         * threads: added icall support for getting current domain for
16988                    the thread.
16989  
16990 2002-04-13  Martin Baulig  <martin@gnome.org>
16991
16992         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
16993         (MonoDebugVarInfo): Added `index' field for register based addresses.
16994         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
16995         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
16996         `MonoDebugVarInfo *params' and `guint32 this_offset' with
16997         `MonoDebugVarInfo *this_var'.
16998
16999         * debug-symfile.c (relocate_variable): New static function to write
17000         a location description for a local variable or method parameter.
17001
17002 2002-04-12  Martin Baulig  <martin@gnome.org>
17003
17004         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
17005         stack offset and begin/end scope address of a local variable.
17006         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
17007         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
17008         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
17009
17010         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
17011         Added new relocation types for start/end scope of a local variable.
17012
17013 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17014
17015         * object.h: add mono_object_domain() macro.
17016         * reflection.c: handle typespecs.
17017         * icall.c: MonoMethod::get_Name() implementation.
17018
17019 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
17020
17021         * icall.c: String::GetHashCode() icall implementation.
17022
17023 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17024
17025         * icall.c: String::IndexOfAny icall.
17026         * object.c, object.h: make array->max_length more useful.
17027         Intrduced mono_object_class() and mono_string_length() macros.
17028
17029 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17030
17031         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
17032         instead of g_unichar_isdigit.
17033
17034 2002-04-11  Nick Drochak  <ndrochak@gol.com>
17035
17036         * icall.c: Implement a simple Double.ToString().
17037
17038 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
17039
17040         * appdomain.h: only io-layer.h is supposed to be included.
17041         * icall.c: explicitly import environ. Fix warning.
17042
17043 2002-04-10  Nick Drochak  <ndrochak@gol.com>
17044
17045         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
17046                 return true even if it's not Daylight Savings time.
17047                 Only return false for the case where the function isn't
17048                 implemented for a plaform (read Windows).
17049
17050 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17051
17052         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
17053         data with a mutex.
17054
17055 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
17056
17057         * mempool.c (mono_mempool_alloc): only use g_malloc when
17058         absolutely necessary.
17059
17060 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
17061
17062         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
17063
17064         * class.c (mono_class_vtable): use domain mempool to allocate vtable
17065         (mono_class_proxy_vtable): use domain mempool
17066
17067 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
17068
17069         * appdomain.h, appdomain.c: split initialization that requires the
17070         execution engine support into mono_runtime_init().
17071
17072 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
17073
17074         * class.c (mono_class_init): don't include vtable inside MonoClass
17075         to save some memory, gather some statistics.
17076         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
17077
17078 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
17079
17080         * icall.c: internalcall implementation for ValueType.Equals().
17081
17082 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
17083
17084         * object.c (mono_message_init): moved 
17085         (mono_runtime_exec_main): new arch. independent impl.
17086         (mono_runtime_invoke_array): new method - like
17087         mono_runtime_invoke, but you can pass an array of objects.
17088         (mono_remoting_invoke): new arch. independent impl.
17089         (mono_message_invoke): new arch. independent impl.
17090         (mono_runtime_class_init): new arch. independent impl.
17091         (mono_runtime_object_init): new arch. independent impl.
17092
17093 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
17094
17095         * metadata.c, object.c, reflection.c: documented the exported
17096         functions.
17097
17098 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
17099
17100         * icall.c: simpler code to pass the assembly builder data to corlib.
17101         Implement GetNestedTypes() internalcall.
17102
17103 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
17104
17105         * class.c: warn if a type can't be loaded.
17106
17107 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
17108
17109         * image.h: typedef MonoImageOpenStatus
17110         * types.h: removed unused file
17111         
17112 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
17113
17114         * icall.c: Enum_ToObject accepts enum value arguments.
17115
17116 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
17117
17118         * class.c: move initialization of properties, events and nested
17119         classes, so that they happen for interfaces, too.
17120
17121 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
17122
17123         * icall.c: cleanup some ugly casts in Array_SetValue*.
17124
17125 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
17126
17127         * icall.c: the values array fro enums is of the correct type, now.
17128         Implement (correctly) getFullName instead of assQualifiedName for
17129         MonoType.
17130         * reflection.h, reflection.c: added mono_type_get_name ().
17131
17132 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
17133
17134         * assembly.c, image.h: for each MonoImage, record from wich assembly
17135         it was loaded.
17136         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
17137         Make Type.Assembly work.
17138
17139 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
17140
17141         * debug-symfile.h: use char* instead of gpointer to avoid
17142         unnecessary casts.
17143
17144         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
17145
17146         * icall.c (ves_icall_InternalExecute): impl. FielSetter
17147         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
17148
17149 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
17150
17151         * icall.c (mono_message_init): impl. (code cleanup)
17152         (ves_icall_InternalExecute): impl. FieldGetter
17153
17154         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
17155         defined we call all (non-static)methods through the vtable. 
17156
17157 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
17158
17159         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
17160         finalizer even though the memory is still referenced (and the chunk of
17161         memory is not freed).
17162
17163 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
17164
17165         * assembly.c: fix brokeness.
17166
17167 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
17168
17169         * class.c: kill some warnings. Check explicit interface method
17170         implementation also without considering the namespace.
17171         Load also literal strings in static class data.
17172
17173 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
17174
17175         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
17176         (default_assembly_name_resolver): Make the resolver take the
17177         "base" directory where the assembly was originally defined, so we
17178         can load DLLs that are in the same directory as the assembly that
17179         is being referenced.
17180
17181 2002-03-28  Dick Porter  <dick@ximian.com>
17182
17183         * file-io.h: 
17184         * file-io.c:
17185         * socket-io.c: 
17186         * unicode.h: 
17187         * unicode.c: Warning cleanups
17188
17189 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
17190
17191         * object.h, reflection.h: use the correct type instead of MonoObject.
17192
17193 2002-03-28  Martin Baulig  <martin@gnome.org>
17194
17195         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
17196         (mono_debug_update_symbol_file): Initialize classes if necessary.
17197
17198 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
17199
17200         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
17201         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
17202
17203 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
17204
17205         * assembly.h: fix function prototype.
17206         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
17207         * mono-endian.h: use const cast.
17208
17209 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
17210
17211         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
17212
17213 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
17214
17215         * loader.c: don't assert when a typeref can't be loaded, give
17216         a chance to the runtime to trow an exception instead.
17217         * loader.h: fix warning.
17218
17219 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
17220
17221         * class.c (mono_class_proxy_vtable): added proxy support
17222
17223 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
17224
17225         * icall.c: removed last of PAL calls, added System.Environment
17226         * file-io.h, file-io.c: MonoIO implementation
17227         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
17228
17229 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
17230
17231         * appdomain.c: do not use the byte marker in ldstr table lookup.
17232         * debug-helpers.c: allow two ':' to separate class and method name.
17233         * object.c: allocate arrays bounds with the GC, too.
17234         * verify: add a few more checks.
17235
17236 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
17237
17238         * reflection.c: output also literal strings. Allocate parameter data
17239         with GC_malloc() (thanks, Martin, for catching this!).
17240
17241 2002-03-26  Martin Baulig  <martin@gnome.org>
17242
17243         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
17244         include the `this' offset in the `param_offsets'.
17245
17246 2002-03-25  Martin Baulig  <martin@gnome.org>
17247
17248         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
17249         mono_debug_get_class() function to get the classes. Added new
17250         relocation types for arrays and strings.
17251         (mono_debug_get_class): New static function to search in all
17252         referenced assemblies for a metadata token.
17253
17254         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
17255
17256 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
17257
17258         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
17259         hold gc-allocated objects. Make the string heap a stream like the
17260         others. Removed duplicated code when writing stream info.
17261         Added asserts to catch possible buffer overflows. Set the sorted map
17262         for tables that need sorting. Added some documentation.
17263
17264 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
17265
17266         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
17267         for interned strings and vtables.
17268
17269 2002-03-24  Martin Baulig  <martin@gnome.org>
17270
17271         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
17272         it in the array since it was created with g_slist_prepend().
17273
17274 2002-03-24  Martin Baulig  <martin@gnome.org>
17275
17276         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
17277         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
17278         (mono_debug_method_from_token): Renamed to
17279         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
17280         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
17281
17282         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
17283         relocation types.
17284
17285         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
17286
17287 2002-03-24  Martin Baulig  <martin@gnome.org>
17288
17289         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
17290         (mono_debug_method_from_token): New func.
17291
17292         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
17293         New interncall, calls mono_debug_local_type_from_signature().
17294         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
17295         calls mono_debug_method_from_token().
17296
17297 2002-03-23  Martin Baulig  <martin@gnome.org>
17298
17299         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
17300         specifies the number of bytes to be converted, not the array size.
17301         Return the number of chars, not the number of bytes.
17302         (ves_icall_iconv_get_chars): The `byteCount' argument
17303         specifies the number of bytes to be converted, not the array size.
17304
17305 2002-03-23  Martin Baulig  <martin@gnome.org>
17306
17307         * reflection.h (MonoReflectionSigHelper): New type.
17308
17309         * reflection.c (mono_reflection_sighelper_get_signature_local),
17310         (mono_reflection_sighelper_get_signature_local): New functions.
17311
17312         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
17313         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
17314         interncalls.
17315
17316 2002-03-23  Martin Baulig  <martin@gnome.org>
17317
17318         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
17319         is_writeable is set.
17320         (mono_raw_buffer_update): New function to write the modified map
17321         back to disk.
17322
17323         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
17324
17325         * debug-symfile.c (mono_debug_update_symbol_file): Call
17326         mono_raw_buffer_update() when done writing.
17327
17328 2002-03-23  Martin Baulig  <martin@gnome.org>
17329
17330         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
17331
17332         * debug-symfile.c: Added support for arguments and local variables.
17333
17334 2002-03-23  Dick Porter  <dick@ximian.com>
17335
17336         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
17337         protected by ifdefs, hence breaking the w32 build.
17338
17339 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
17340
17341         * object.c: implement is_interned() the right way.
17342
17343 2002-03-21  Martin Baulig  <martin@gnome.org>
17344
17345         * debug-symfile.[ch]: New files to handle debugging information
17346         files. There's also support to dynamically update these symbol
17347         files to include machine dependent information.
17348
17349 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
17350
17351         * threads.c (mono_thread_create): new function to create thread
17352         from C
17353
17354 2002-03-20  Martin Baulig  <martin@gnome.org>
17355
17356         * icall.c (ves_icall_InternalInvoke): Create a new object if the
17357         method is a constructor.
17358         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
17359         points to ves_icall_InternalInvoke().
17360
17361 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
17362
17363         * file-io.c: Flush shouldn't throw exceptions.
17364
17365 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
17366
17367         * file-io.c: FileStream flush support; FileSetLength now
17368         restores file pointer.
17369
17370 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
17371
17372         * class.c: set image for pointer classes.
17373
17374 2002/03/19  Nick Drochak <ndrochak@gol.com>
17375
17376         * sysmath.c: Forgot one.
17377
17378 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
17379
17380         * sysmath.c: Avoid redefining existing names.
17381
17382 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
17383
17384         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
17385         handled by runtime as icall rather than dllimport from libm.so
17386         * file-io.c, file-io.h: fixed handle argument type.
17387
17388 2002-03-18  Dick Porter  <dick@ximian.com>
17389
17390         * reflection.c (mono_image_get_type_info): rename interface to
17391         iface, because of "#define interface struct" on windows.
17392
17393 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
17394
17395         * class.c, class.h: rename and export mono_ptr_class_get().
17396         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
17397         * reflection.c, reflection.h, icall.c: better/saner type name
17398         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
17399         method signatures.
17400
17401 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
17402
17403         * class.c (mono_class_init): removed hardcoded GHC_SLOT
17404
17405         * icall.c (ves_icall_InternalInvoke): impl.
17406
17407 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
17408
17409         * reflection.c: output the interface map table, too.
17410
17411 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
17412
17413         * class.c (class_compute_field_layout): separate computation of 
17414         static field layout
17415
17416 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
17417
17418         * icall.c: added System.Buffer support.
17419         * file-io.c: moved file icalls from PAL to FileStream.
17420
17421 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
17422
17423         * icall.c (ves_icall_System_Object_GetHashCode): impl.
17424
17425 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
17426
17427         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
17428
17429 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
17430
17431         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
17432
17433 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
17434
17435         * debug-helpers.{c,h}: moved here from monograph some useful functions
17436         to locate a method by name/signature in a class or image. Included
17437         also a small and flexible IL disassembler.
17438
17439 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
17440
17441         * reflection.c: fixup tokens in methods with small header size, too.
17442
17443 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
17444
17445         * object.c (mono_string_to_utf8): remove assert(!error), instead
17446         print a warning. 
17447
17448 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
17449
17450         * icall.c: update to the new mono_Array_class_get interface.
17451
17452 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
17453
17454         * appdomain.c, object.c: Boehm-GC enable.
17455         * icall.c: make get_data_chunk() support split data requests.
17456         Ensure a class is initialized in more cases. Return only the first
17457         property found in GetProperties() or the compiler gets confused. 
17458         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
17459         * reflection.h, reflection.c: add fixup mechanism for field and method
17460         tokens. Initialize assembly->typeref in a single place. Output
17461         properties after events. Support custom attributes for events, too.
17462         Typo fix for paramter custom attrs.
17463
17464 2002-03-07  Martin Baulig  <martin@gnome.org>
17465
17466         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
17467
17468 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
17469
17470         * class.c (mono_array_class_get): fix. for multi. dim. arrays
17471
17472 2002-03-06  Martin Baulig  <martin@gnome.org>
17473
17474         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
17475         non-zero lower bounds. See testcases #F10-#F13.
17476
17477 2002-03-05  Martin Baulig  <martin@gnome.org>
17478
17479         * exception.c (mono_get_exception_argument_out_of_range): New exception.
17480
17481         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
17482         ves_icall_System_Array_GetValue(), only calculate the absolute array position
17483         here.
17484         (ves_icall_System_Array_SetValue): Likewise.
17485         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
17486         as argument and does the actual work. This function is used when copying a
17487         multi-dimensional array.
17488         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
17489         now do all the widening conversions of value types.
17490         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
17491
17492 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
17493
17494         * class.c: remove some magic numbers and use the smbolic names,
17495         instead. Added init_events() to load event info at class init time.
17496         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
17497         and mono_metadata_methods_from_event().
17498         * reflection.h, reflection.c: added support for writing out the evnets
17499         related information.
17500
17501 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
17502
17503         * reflection.h, icall.c: use a different method (GetInterfaces)
17504         to gather interface info and add isbyref, isprimitive and
17505         ispointer to the ves_icall_get_type_info() return value.
17506
17507 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
17508
17509         * class.h: stared adding support for events.
17510         * icall.c: split find_members implementation. Added debug icall to get
17511         the address of an object.
17512         * reflection.c: handle TypeBuilders in mono_type_get_object().
17513
17514 2002-03-01  Martin Baulig  <martin@gnome.org>
17515
17516         * icall.c (ves_icall_System_Array_GetLength): This must throw an
17517         ArgumentOutOfRangeException(), not an ArgumentException().
17518         (ves_icall_System_Array_GetLowerBound): Likewise.
17519         (ves_icall_System_Array_GetValue): Improved argument checking.
17520         (ves_icall_System_Array_SetValue): Improved argument checking.
17521
17522 2002-03-01  Martin Baulig  <martin@gnome.org>
17523
17524         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
17525         called with invalid arguments rather than just dying with g_assert().
17526         (ves_icall_System_Array_SetValue): Likewise.
17527         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
17528         raise a NotImplementedException instead.
17529         (ves_icall_System_Array_GetLength): Added argument checking.
17530         (ves_icall_System_Array_GetLowerBound): Added argument checking.
17531
17532 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
17533
17534         * object.h (mono_assert): new macros mono_assert and
17535         mono_assert_not_reached
17536
17537 2002-02-28  Martin Baulig  <martin@gnome.org>
17538
17539         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
17540         and "System::String::IsInterned" to "System::String::_IsInterned".
17541
17542 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
17543
17544         * icall.c: remove hacks for typebuilder. Added icall to create a
17545         modified type from a tybebuilder.
17546         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
17547         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
17548         to create a backing MonoClass for a TypeBuilder.
17549
17550 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
17551
17552         * class.c, class.h: more refactoring of class init.
17553         Export mono_class_setup_mono_type() and mono_class_setup_parent().
17554
17555 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
17556
17557         * marshal.c, marshal.h: start of marshaling interface.
17558
17559 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
17560
17561         * icall.c: fix order in assembly qualified name icall.
17562
17563 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
17564
17565         * class.c: do not free str, since we store it in the hash table.
17566         * reflection.h: add label field to MonoILExceptionInfo.
17567         * reflection.c: handle references to more than one assembly. Handle
17568         case when there isn't a module created in the assembly.
17569
17570 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
17571
17572         * class.c: Fix typo. Start refactoring of class init code.
17573
17574 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
17575
17576         * appdomain.c: exit with 1 on error.
17577         * class.c: we already have the name in MonoClassField.
17578         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
17579         MonoStreamHeader instead of an offset of image->raw_metadata.
17580
17581 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
17582
17583         * appdomain.c (mono_init): Be even more descriptive about the error.
17584
17585 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
17586
17587         * appdomain.c: give the user an informative message when corlib can't
17588         be loaded.
17589
17590 2002-02-26  Martin Baulig  <martin@gnome.org>
17591
17592         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
17593         New icall to get the time zone data.
17594
17595 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
17596
17597         * reflection.c: set virtual and raw size of section correctly.
17598         * threads.c: transfer domain information to newly created threads.
17599
17600 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
17601
17602         * class.c: when instancing a class in a domain, load the default
17603         vaules for static fields from the constant table. Fix System.Enum to
17604         not be an enum.
17605         * icall.c: implement Object::GetType() internalcall. Implemented
17606         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
17607         Fixed checking of binding flags in find_members().
17608         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
17609         * reflection.c: handle enumerations when writing to the constant
17610         table. Use a different object cache for types.
17611
17612
17613 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
17614
17615         * object.c (mono_object_isinst): fix for arrays
17616
17617         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
17618
17619 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
17620
17621         * object.c: don't use mprotect ()  and fix intern pool hash table
17622         lookup for big endian systems.
17623
17624 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
17625
17626         * icall.c: change type_is_subtype_of () signature.
17627
17628 2002-02-21  Mark Crichton  <crichton@gimp.org>
17629
17630         * rand.c, rand.h: Added random number generator for
17631         System.Security.Cryptography classes.
17632
17633         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
17634
17635         * icall.c: Added System.Security.Cryptography calls.
17636
17637 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
17638
17639         * class.c, icall.c, metadata.c: better support for pointer types.
17640         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
17641         * reflection.c: Add support for getting custom attrs for properties
17642         and simplify some code.
17643
17644 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
17645
17646         * icall.c: change getToken () and add custom attribute GetBlob()helper
17647         method.
17648         * reflection.h: add custom attrs array to the reflection builder structures.
17649         * reflection.c: encode and emit custom attributes for all the relevant
17650         reflection objects. Cache fieldref and methodref tokens. Change
17651         mono_image_create_token() interface to take a MonoDynamicAssembly.
17652         More complete custom attributes decoder. Load custom attributes for
17653         Assembly, Field, Method and Constructor objects, too. Make the
17654         returned array an Attribute[] one, not object[]. Added
17655         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
17656         custom attribute constructor.
17657
17658 2002-02-20  Dick Porter  <dick@ximian.com>
17659
17660         * icall.c:
17661         * rawbuffer.c:
17662         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
17663         problem code out for now).
17664
17665 2002-02-19  Radek Doulik  <rodo@ximian.com>
17666
17667         * object.c (mono_ldstr): use hash table to avoid multiple swapping
17668
17669 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
17670
17671         * icall.c: register the GetCustomAttributes method.
17672         * object.c, object.h: add mono_string_new_len ().
17673         * reflection.h, reflection.c: added mono_runtime_invoke(),
17674         mono_install_runtime_invoke(). Added
17675         mono_reflection_get_custom_attrs () to load custom attributes and
17676         create the attribute objects.
17677
17678 2002-02-19  Dick Porter  <dick@ximian.com>
17679         * threads-dummy-types.c:
17680         * threads-dummy-types.h:
17681         * threads-dummy.c:
17682         * threads-dummy.h:
17683         * threads-pthread-types.c:
17684         * threads-pthread-types.h:
17685         * threads-pthread.c:
17686         * threads-pthread.h:  Deleted obsolete files
17687
17688 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
17689
17690         * class.c (mono_class_vtable): runtime init the class when we
17691         allocate static class data.
17692
17693         * icall.c (ves_icall_System_Array_SetValue): check for null values.
17694
17695         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
17696         and String - but we will need generic marshalling support in the
17697         future. 
17698         (mono_init): set the domain name in a ms compatible way
17699
17700         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
17701         String[].
17702
17703 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
17704
17705         * object.c (mono_array_clone): use alloca() instead of g_malloc  
17706         for sizes
17707
17708         * appdomain.c (mono_domain_unload): impl.
17709
17710 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
17711
17712         * appdomain.c, object.c: fix intern pool implementation.
17713         * class.c: fix alignment code.
17714
17715 2002-02-16  Radek Doulik  <rodo@ximian.com>
17716
17717         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
17718         and s2 > s1, just copy lower bytes to be compatible with little
17719         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
17720         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
17721
17722         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
17723         force big_endian to be 1 for big endian machines 
17724         (ves_icall_iconv_new_decoder): ditto
17725
17726 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
17727
17728         * socket-io.c (convert_sockopt_level_and_name): If the system
17729         doesn't define SOL_IP or SOL_TCP, get them by hand using
17730         getprotobyname() and caching the values (because this could be a
17731         slow operation).
17732         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
17733         Use the appropriate struct when the system does support it. Ie,
17734         not all systems have struct ip_mreqn so use struct ip_mreq when
17735         appropriate.
17736
17737 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
17738
17739         * reflection.c: handle finally clauses.
17740
17741 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
17742
17743         * socket-io.c: use g_snprintf() instead of snprintf.
17744
17745 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
17746
17747         * reflection.c (mono_param_get_objects): Cast second argument to
17748         mono_method_get_param_names to a const char** to silence the
17749         compiler warning.
17750
17751         * appdomain.c (mono_domain_assembly_open): Put parens around the
17752         truth statement in the for-loop.
17753
17754         * unicode.c (iconv_convert): Got rid of a compiler warning about
17755         int i being unused when the system has a new iconv.
17756         (iconv_get_length): Same.
17757
17758         * image.c (load_class_names): Cast the second argument to
17759         g_hash_table_insert() to char* to hush compiler warnings about the
17760         arg being a const.
17761         (mono_image_open): Same here.
17762
17763         * socket-io.c: Don't conditionally include sys/filio.h or
17764         sys/sockio.h here anymore since we now get them from
17765         io-layer/io-layer.h
17766         (inet_pton): If the system doesn't support inet_aton, implement
17767         using inet_addr and also #define INADDR_NONE if it isn't defined
17768         by the system.
17769
17770 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
17771
17772         * metadata.c, metadata.h: added function to get packing and size info
17773         of a typedef.
17774         * reflection.h, reflection.c: handle field RVA data. Save info about
17775         the table layout if needed. Assign typedef indexes to all the types
17776         before dumping the info about them to avoid forward reference problems.
17777
17778 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
17779
17780         * socket-io.c (convert_sockopt_level_and_name): ifdef
17781         SO_ACCEPTCONN because it is not defined on my system (old debian)
17782
17783 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
17784
17785         * opcode.c: use stddef.h to get NULL.
17786
17787 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
17788
17789         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
17790         for FIONBIO, FIONREAD and SIOCATMARK.
17791         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
17792         define INADDR_NONE and besides, inet_addr() is deprecated and
17793         should not be used. Use inet_pton() instead - it also has the
17794         added bonus that it can easily handle IPv6 addresses as well.
17795         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
17796
17797 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
17798
17799         * decimal.c: remove _MSC_VER conditional.
17800
17801 2002-02-13  Dick Porter  <dick@ximian.com>
17802
17803         * socket-io.c: 
17804         * icall.c: Internal calls for Blocking, Select, Shutdown,
17805         GetSocketOption and SetSocketOption
17806
17807 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
17808
17809         * assembly.cs: better resolver: use it instead of some kludgy
17810         code.
17811
17812 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
17813
17814         * reflection.c: the best way to speed-up the compiler is to avoid
17815         infinite loops.
17816
17817 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
17818
17819         * class.c (mono_class_vtable): changed the object layout
17820         (obj->vtable->class). 
17821         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
17822
17823 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
17824
17825         * assembly.c: look for assemblies in the assembly dir, too.
17826
17827 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
17828
17829         * class.c: fix thinko in mono_class_from_type().
17830
17831 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
17832
17833         * exception.h, exception.c: added TypeLoadException.
17834         * object.h, object.c: added mono_array_clone ().
17835         * icall.c: handle throwOnError in AssemblyGetType().
17836         Added Array.Clone().
17837         * opcode.h, opcode.c: use a single value for the opcode val.
17838         Compile fix for non-gcc compilers.
17839
17840 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
17841
17842         * opcodes.c, opcodes.h: export interesting info about opcodes.
17843
17844 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
17845
17846         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
17847         icalls. 
17848
17849         * class.c (class_compute_field_layout): set element_class for enums
17850         (mono_class_create_from_typedef): set element_class for normal classes
17851
17852         * icall.c (ves_icall_System_Enum_get_value): impl.
17853
17854         * class.c (mono_class_create_from_typedef): do not set valuetype
17855         flag for System.ValueType and System.Enum
17856
17857 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
17858
17859         * unicode.c (iconv_convert): fix big endian problem.
17860
17861 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
17862
17863         * class.c: add asserts if we are ever going to scribble over memory.
17864         * socket-io.c: not all systems have AF_IRDA defined.
17865
17866 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
17867
17868         * class.c (class_compute_field_layout): do not consider static
17869         fields to compute alignment
17870
17871 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
17872
17873         * appdomain.c (mono_appdomain_get): impl.
17874         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
17875
17876 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
17877
17878         * icall.c: ignore "file://" prefix when loading an assembly.
17879
17880 2002-01-23  Dick Porter  <dick@ximian.com>
17881
17882         * socket-io.c:
17883         * icall.c:
17884         * Makefile.am: Added socket support
17885
17886 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
17887
17888         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
17889         code back.  This should return the assemblies that are loaded by
17890         the runtime on behalf of an application domain. 
17891
17892         The current implementation is still broken, it just returns every
17893         assembly loaded, but until we get real applications domain this
17894         will do.
17895
17896 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
17897
17898         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
17899         AppDomain object.
17900
17901 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
17902
17903         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
17904         the mono_class_from_name lookup.
17905         (ves_icall_get_parameter_info): ditto.
17906         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
17907         method.
17908         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
17909
17910 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
17911
17912         * class.c: load also nested classes on class init.
17913         System.ValueType instance methods gets passed boxed
17914         values, unless methods in derived classed that get a pointer to the
17915         data.
17916         * icall.c: use better name parsing code in GetType().
17917         * image.c, image.h: add mono_image_loaded ().
17918         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
17919         * reflection.c, reflection.h: added mono_reflection_parse_type().
17920
17921 2002-01-22  Veronica De Santis <veron78@interfree.it>
17922
17923         * icall.c : Added mapping of internal calls for Manual and Auto reset events
17924         * threads.c : Added the implementation of internal calls for events
17925         * threads.h : Added prototypes of internal calls for events
17926         
17927 2002-01-21  Radek Doulik  <rodo@ximian.com>
17928
17929         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
17930
17931 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
17932
17933         * class.c (mono_class_init): set min_align to 1 (instead of 0)
17934         (mono_class_value_size): use min_align
17935
17936 2002-01-20  Dick Porter  <dick@ximian.com>
17937
17938         * threads.h:
17939         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
17940         so it compiles on w32.
17941
17942 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
17943
17944         * metadata.c (mono_type_stack_size): impl.
17945
17946         * class.c (mono_class_get_field): impl. memberref token
17947
17948 2002-01-16 Veronica De Santis <veron78@@interfree.it>
17949
17950         * icall.h : Added the internal calls mapping for CreateMutex_internal
17951                     and ReleaseMutex_internal.
17952         * threads.h : Added the prototype of mutexes internal calls.
17953         * threads.c : Added the implementations of mutexes internal calls.
17954
17955 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
17956
17957         * metaparse.h: removed unused file.
17958         * reflection.c, reflection.h: added stream_data_align () function 
17959         to align data in streams and keep stream aligned. Add support for
17960         exception support in method headers.
17961
17962 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
17963
17964         * unicode.c: make iconv_convert () return the number of bytess written
17965         in the output buffer.
17966
17967 2002-01-15  Dick Porter  <dick@ximian.com>
17968         * threads.c: Make the runtime's idea of infinite timeouts coincide
17969         with the class library's
17970
17971         Fix a particularly egregious bug in mono_thread_cleanup(). That
17972         code was so utterly bogus it must have been written on a Monday.
17973
17974 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
17975
17976         * reflection.h: add subtypes field to TypeBuilder.
17977         * reflection.c: encode constants for literal fields.
17978         Handle subtypes. Fix user string token (and add a zero byte)
17979         at the end.
17980         
17981 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
17982
17983         * class.c (mono_class_init): bug fix: assign slot numbers for
17984         abstract methods.
17985
17986 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
17987
17988         * reflection.c: don't try to output a code RVA for abstract methods.
17989         Small fixes for method header format. Output parameter info to the
17990         ParamDef table. Save method overriding info to MethodImpl table.
17991         Fix property support. Allow typedef.extends to be a type in the
17992         building assembly.
17993         * verify.c: fix off-by-one error.
17994
17995 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
17996
17997         * class.c: fix mono_class_from_mono_type () for szarray types.
17998         Remove unused cache check in mono_class_from_type_spec().
17999         * icall.c: *type_from_name () functions handle simple arrays and byref.
18000         * reflection.c: handle byref and szarray types. Handle methods without
18001         body (gets P/Invoke compilation working). Handle types and fields in
18002         get_token ().
18003         * reflection.h: add rank to MonoTypeInfo.
18004
18005 2002-01-10  Dick Porter  <dick@ximian.com>
18006
18007         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
18008         internal calls
18009
18010 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
18011
18012         * icall.c: initialize class in type_from_handle ().
18013         Loop also in parent classes for get_method ().
18014         * reflection.c: properly encode class and valuetype types.
18015         Start on encoding TypeBuilder types. Handle fieldrefs.
18016         Use correct length when registering a user string.
18017         Handle ConstructorBuilder and MonoMethod in get_token ().
18018         Make mono_type_get_object () aware of cached types.
18019         * object.c: back out change to mono_string_new ().
18020
18021 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
18022         * object.c: mono_string_new should return a NULL when the string 
18023         passed in is NULL -- not try to deference it.
18024         
18025 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
18026
18027         * icall.c: hack to make IsSubType work for TypeBuilders.
18028         * reflection.c: emit constructors before methods.
18029         Retrieve param names in mono_param_get_objects().
18030
18031 2002/01/05  Nick Drochak  <ndrochak@gol.com>
18032
18033         * Makefile.am: fix list of headers and sources so automake 1.5
18034         doesn't complain. Removed \# at end of list.
18035
18036 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
18037
18038         * reflection.c: get token for a method ref. Set return type of
18039         constructor to void.
18040         * loader.c: debug message.
18041         * class.c: typo fix.
18042
18043 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
18044
18045         * icall.c: fix array init with rank > 1. FindMembers
18046         loops in parent class as well.
18047         * image.c: do not insert nested types in name cache.
18048         * reflection.c: warning fix.
18049         * reflection.h: add override method (for interface impl).
18050
18051 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
18052
18053         * metadata.c: fix customattr decoding.
18054
18055 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
18056
18057         * rawbuffer.cs: Added native Win32 implementation, avoids using
18058         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
18059
18060 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
18061
18062         * class.c: make the low-level routines handle the cache.
18063
18064 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
18065
18066         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
18067
18068 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
18069
18070         * class.c: fix mono_array_element_size() for objects.
18071         * class.h, class.c: add properties to MonoClass and load them
18072         at init time.
18073         * icall.c: check with isinst() when assigning a value to an array
18074         instead of requiring the classes to match exactly.
18075         Implemented icall for System.Type::GetType().
18076         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
18077         enums. Handle bindingflags when looking for methods and fields.
18078         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
18079         and mono_metadata_methods_from_property().
18080         * reflection.h, reflection.c: added structures for propreties,
18081         parameters and enums. Implemented mono_property_get_object() and
18082         mono_param_get_objects().
18083
18084 2001-12-18  Dick Porter  <dick@ximian.com>
18085
18086         * file-io.c: Use mono_string_to_utf16() instead of
18087         mono_string_chars()
18088
18089         * object.c: Added mono_string_to_utf16(), which copies the non
18090         NULL-terminated MonoString into a new double-null-terminated
18091         buffer.
18092
18093 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
18094
18095         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
18096
18097 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
18098
18099         * file-io.c: raise exceptions if handle is invalid.
18100
18101 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
18102
18103         * assembly.c: yet another check for mscorlib.
18104         * class.c, class.h: load nesting info for classes.
18105         * icall.c: many new functions to support the Reflection classes.
18106         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
18107         * reflection.h, reflection.c: mono_image_create_token(),
18108         mono_assembly_get_object(), mono_type_get_object(),
18109         mono_method_get_object(), mono_field_get_object(): methods to return
18110         objects that parallel the C representation of assemblies, types,
18111         methods, fields.
18112
18113 2001-12-11  Dick Porter  <dick@ximian.com>
18114
18115         * icall.c:
18116         * file-io.c: Internal calls for file IO.
18117
18118 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
18119
18120         * tabledefs.h: missing FileAttributes.
18121         * verify.h, verify.c: use is_valid_string () to simplify and check for
18122         valid strings more correctly. Fix warnings and speeling.
18123         Check more tables: Filed, File, ModuleRef, StandAloneSig.
18124         Check code: branches, maxstack, method calls.
18125
18126 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
18127
18128         * object.c (mono_object_allocate): removed static, so that the jit
18129         can allocate value types.
18130
18131         * icall.c (ves_icall_System_DateTime_GetNow): impl.
18132
18133 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
18134
18135         * class.c: init enum types right away and register the
18136         token->MonoClass map in mono_class_create_from_typedef ().
18137         * verify.h, verify.c: first cut of the verifier.
18138         * pedump.c: add --verify switch to verify metadata tables.
18139         * tabledefs.h: add some missing enums.
18140
18141 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
18142
18143         * class.c (mono_install_runtime_class_init): impl.
18144         (mono_class_init): renamed mono_class_metadata_init to
18145         mono_class_init, also removed the metadata_inited flag
18146
18147         * object.c (mono_object_isinst): use faster algorithm
18148
18149 2001-11-30  Radek Doulik  <rodo@ximian.com>
18150
18151         * mono-endian.h: reverted last change
18152         added function prototypes
18153
18154         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
18155         add mono-endian.c back
18156
18157         * mono-endian.c: returned back, as Paolo pointed out, it's needed
18158         for unaligned access, I've mistaked it with endianess. I am
18159         sorry.
18160         (mono_read16): fix reverted endianess
18161         (mono_read64): ditto
18162         (mono_read32): ditto
18163
18164 2001-11-30  Dick Porter  <dick@ximian.com>
18165
18166         * exception.c: Implement mono_exception_from_name()
18167
18168 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
18169
18170         * metadata.h, metadata.c: remove params_size and locals_size and their
18171         calculation from the metadata code: they are only usefult to the
18172         interp.
18173
18174 2001-11-29  Radek Doulik  <rodo@ximian.com>
18175
18176         * object.c (mono_ldstr): swap bytes here, it's probably not the
18177         best place, but works for me now, I'll redo it once I know mono
18178         better, also note that I add PROT_WRITE and don't reset back, also
18179         note that it's only affects big endians, so x86 should be OK
18180
18181         * mono-endian.h (read16): use just glib macros for both endians
18182
18183         * mono-endian.c: removed as glib macros are used in in
18184         mono-endian.h so we don't need to care about endianess for read
18185         macros as glib does that for us already
18186
18187 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
18188
18189         * class.h, class.h: take minimum alignment into consideration so
18190         that the fields of a class remain aligned also when in an array.
18191
18192 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
18193
18194         * loader.h, loader.c: add mono_method_get_param_names().
18195         * class.c: 0-init class fields.
18196
18197 2001-11-26  Dick Porter  <dick@ximian.com>
18198
18199         * icall.c:
18200         * threads-types.h:
18201         * threads.c: New file that handles System.Threading on all platforms
18202
18203         * object.c: 
18204         * object.h: Remove the synchronisation struct from MonoObject,
18205         replace it with a pointer that gets initialised on demand
18206
18207         * Makefile.am: Replace all the system-specific threading code with
18208         a single file that uses the new wrapper library
18209
18210 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
18211
18212         * class.c, class.h: add mono_install_trampoline() so that the runtime
18213         can register a function to create a trampoline: removes the ugly
18214         requirement that a runtime needed to export arch_create_jit_trampoline.
18215         * object.h, object.c: added mono_install_handler() so that the runtime
18216         can install an handler for exceptions generated in C code (with
18217         mono_raise_exception()). Added C struct for System.Delegate.
18218         * pedump.c: removed arch_create_jit_trampoline.
18219         * reflection.c: some cleanups to allow registering user strings and
18220         later getting a token for methodrefs and fieldrefs before the assembly
18221         is built.
18222         * row-indexes.h: updates and fixes from the new ECMA specs.
18223
18224 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
18225
18226         * class.h, class.c: add enum_basetype field to MonoClass.
18227         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
18228         to get index in the constant table reated to a field, param or
18229         property.
18230         * reflection.h, reflection.c: handle constructors. Set public-key and
18231         version number of the built assembly to 0.
18232         * row-indexes.h: update from new ECMA spec.
18233
18234 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
18235
18236         * class.h, class.c: add a max_interface_id to MonoClass.
18237         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
18238         since it's used to do that. Added mono_type_type_from_obj().
18239         Make GetType() return NULL instead of segfaulting if the type was not
18240         found. Handle simple arrays in assQualifiedName.
18241         * object.h: add a struct to represent an Exception.
18242         * reflection.c: output call convention in method signature.
18243         Add code to support P/Invoke methods and fixed offsets for fields.
18244
18245 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
18246
18247         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
18248         the value.
18249         * icall.c: use mono_array_addr instead of array->vector: fixes the
18250         reflection image writing.
18251         * reflection.c: init call convention byte to 0 in method signature.
18252         Encode the property signature. Don't output property-related methods
18253         twice. Really process the properties for a type (don't cast a field to
18254         a property, my mom always told me that).
18255         Fix 64 bit issues in pointer alignment in a different and more
18256         readable way.
18257
18258 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
18259
18260         * loader.h: Removed type class from MonoDefaults, added monotype
18261
18262         * loader.c: Loaded MonoType, removed loading of Type
18263
18264         * icall.c (my_mono_new_object): Now returns a System.MonoType,
18265         and fills in System.Type._impl with a RuntimeTypeHandle rather
18266         than the actual MonoClass *
18267
18268         (ves_icall_type_from_handle): change from type_class to
18269         monotype_class
18270
18271         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
18272         implemented
18273
18274         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
18275         implemented
18276
18277         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
18278
18279         (ves_icall_System_Reflection_Assembly_GetType): implemented
18280
18281         (ves_icall_System_MonoType_assQualifiedName): implemented
18282
18283         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
18284
18285 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
18286
18287         * assembly.c (mono_assembly_open): Implement a cache for the
18288         assemblies. 
18289
18290         (mono_assembly_close): only destroy the assembly when the last
18291         reference is gone.
18292         
18293 2001-11-09  Dick Porter  <dick@ximian.com>
18294
18295         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
18296
18297 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
18298
18299         * class.c (mono_class_metadata_init): bug fix: compute the right slot
18300
18301 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
18302
18303         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
18304         from Martin Weindel.
18305         * object.h: add mono_string_chars ().
18306
18307 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
18308
18309         * reflection.c (build_compressed_metadata): Eliminates warnings
18310         and uses 64-bit clean code.
18311
18312         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
18313         (mono_type_equal): Change signature to eliminate warnings.
18314
18315 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
18316
18317         * icall.c, loader.c: remove the internalcall array constructors.
18318         Changes to match the new MonoArray structure.
18319         * object.h, object.c: an array object doesn't allocate an extra
18320         vector. Add mono_array_new_full () to create jagged arrays easily.
18321
18322 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
18323
18324         * metadata.h, metadata.c: add mono_metadata_field_info () to
18325         retreive all the info about a field from vairous tables.
18326         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
18327         * class.h, class.c: augment MonoClassField with more info.
18328         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
18329         policy and load a field's RVA if needed.
18330
18331 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
18332
18333         * class.c (mono_class_metadata_init): create a trampoline for all
18334         virtual functions instead of actually compiling them.
18335
18336 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
18337
18338         * class.h, class.c: include name in MonoClassField.
18339         * class.c: fix fundamental type of System.Object and System.String.
18340         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
18341         tokens in ldtoken.
18342         * icall.c: remove internalcalls for the Reflection stuff that is now
18343         done in C# code.
18344         * loader.c: mono_field_from_memberref () implementation.
18345         * mono-endian.c: thinko (s/struct/union/g).
18346         * object.c, object.h: make the mono_string_* prototypes actually use
18347         MonoString instead of MonoObject.
18348         * reflection.c, reflection.h: updates for changes in the reflection
18349         code in corlib: we use C structures that map to the actual C# classes.
18350         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
18351         fat method header if needed and use the info from the ILGenerator for
18352         methods. Handle fields in types. Misc fixes.
18353
18354 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
18355
18356         * class.c (mono_class_metadata_init): bug fix: always allocate
18357         space for static class data
18358
18359 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
18360
18361         * class.c (mono_compute_relative_numbering): use relative
18362         numbering to support fast runtime type checks.
18363
18364 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
18365
18366         * class.c (mono_class_create_from_typeref): added debugging output
18367         to print class name when MonoDummy is returned instead of real class
18368
18369 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
18370
18371         * class.c (mono_class_metadata_init): interface offset table now
18372         contains pointers into the vtable - this is more efficient for the jit
18373
18374 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
18375
18376         * class.c (mono_class_metadata_init): use a temporary vtable (the
18377         old algorithm only worked for the interpreter, but not for the jit)
18378
18379 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
18380
18381         * loader.c (method_from_memberref): use mono_class_get to get the
18382         class of an array instead of using System.Array directly.
18383         (mono_get_method): also add MEMBERREF methods to the method cache
18384         which usefull for arrays.
18385
18386 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
18387
18388         * pedump.c (arch_compile_method): added to compute vtable entry
18389
18390         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
18391         number of interfaces.
18392         
18393         * class.h: merged MonoArrayClass into MonoClass
18394
18395         * class.c (mono_class_create_from_typedef): compute the vtable size and
18396         allocate space to include the vtable inside MonoClass
18397         (mono_class_metadata_init): initialize the vtable
18398
18399 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
18400
18401         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
18402         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
18403         * image.c: endian fixes by Laurent Rioux.
18404         * object.h, object.c: rename MonoStringObject to MonoString and
18405         MonoArrayObject to MonoArray. Change some function names to conform to
18406         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
18407         guint16* as first argument, so don't use char*.
18408         Provide macros to do the interesting things on arrays in a portable way.
18409         * threads-pthread.c: updates for the API changes and #include <sched.h>
18410         (required for sched_yield()).
18411         * icall.c: updates for the API changes above.
18412         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
18413         platforms that need them.
18414
18415 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
18416
18417         * class.c: set the correct type for all the fundamental
18418         type when loading the class.
18419
18420 2001-10-05  Dick Porter  <dick@ximian.com>
18421
18422         * threads-pthread.c (pthread_mutex_timedlock): Simple
18423         compatibility version for C libraries that lack this call.
18424
18425 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
18426
18427         * class.c: MonoTypes stored in MonoClass are stored as
18428         fundamental MonoTypes when the class represents a
18429         fundamental type (System.Int32, ...).
18430         The TypeHandle return by ldtoken is a MonoType*.
18431         * icall.c: ves_icall_get_data_chunk () write out all the
18432         PE/COFF stuff. Implement ves_icall_define_method (),
18433         ves_icall_set_method_body (), ves_icall_type_from_handle ().
18434         * image.c: properly skip unknown streams.
18435         * loader.h, loader.c: add type_class to mono_defaults.
18436         * metadata.c, metadata.h: export compute_size () as
18437         mono_metadata_compute_size () with a better interface.
18438         Typo and C&P fixes.
18439         * pedump.c: don't try to print the entry point RVA if there is no entry point.
18440         * reflection.c, reflection.h: many cleanups, fixes, output method
18441         signatures and headers, typedef and typeref info, compress the metadata
18442         tables, output all the heap streams, cli header etc.
18443         * row-indexes.h: typo fixes.
18444
18445 2001-10-04  Dick Porter  <dick@ximian.com>
18446
18447         * object.h: Add a synchronisation mutex struct to MonoObject
18448
18449         * object.c (mono_new_object): Initialise the object
18450         synchronisation mutexes
18451
18452         * icall.c: System.Threading.Monitor internal calls
18453         
18454         * threads-pthread.h:
18455         * threads-pthread.c: System.Threading.Monitor internal calls
18456
18457         * threads-types.h: New file, includes the system-specific thread
18458         structures
18459         
18460         * threads-pthread-types.h:
18461         * threads-pthread-types.c: New files, handle pthread-specific
18462         synchronisation types
18463
18464         * threads-dummy-types.h: 
18465         * threads-dummy-types.c: New files of dummy support for
18466         thread-specific types
18467
18468         * metadata.c:
18469         * image.c:
18470         * pedump.c: include mono-endian.h not endian.h
18471         
18472         * Makefile.am: More threads files.
18473         Name mono-endian.h not endian.h
18474
18475 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
18476
18477         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
18478         stuff and implement a few more bits.
18479         * icall.c: a field needs to be dereferenced twice. Do not use the same
18480         name for two variables in the same scope.
18481         * image.c, image.h: cleanups.
18482
18483 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
18484
18485         * class.c (mono_class_metadata_init): bug fix: compute the right size
18486
18487 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
18488
18489         * icall.c: implemented some of the Reflection internalcalls.
18490         * image.c, image.h: start writing out the PE/COFF image.
18491         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
18492         that does the reverse than decode_blob_size ().
18493         * object.c: use mono_metadata_encode_value (). Move here
18494         temporary implementation of mono_string_to_utf8 ().
18495         * rawbuffer.c: make malloc_map static.
18496
18497 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
18498
18499         * metadata.c: fix type comparison for arrays.
18500         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
18501         Added a couple of new classes to monodefaults.
18502         * icall.c: added a couple of Reflection-related internalcalls.
18503         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
18504         Added a byval_arg MonoType to MonoClass.
18505
18506 2001-09-28  Dick Porter  <dick@ximian.com>
18507
18508         * icall.c:
18509         * threads-pthread.h: 
18510         * threads-pthread.c: Implemented internal calls for
18511         LocalDataStoreSlot operations.  Applied mutexes around all shared
18512         data.  Reworked the thread creation and Start() operations to
18513         avoid a race condition.
18514         
18515         * threads-dummy.h:
18516         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
18517
18518 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
18519
18520         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
18521
18522 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
18523
18524         * class.c, loader.c: warn and return NULL instead of erroring out.
18525         * icall.c: added System.AppDomain::getCurDomain().
18526         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
18527
18528 2001-09-25  Dick Porter  <dick@ximian.com>
18529
18530         * threads-pthread.h:
18531         * threads-pthread.c: Implemented timed thread joining and added
18532         System.Threading.Thread::Join_internal internal call
18533
18534         * icall.c: Added System.Threading.Thread::Join_internal internal call
18535
18536         * threads-dummy.h:
18537         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
18538
18539 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
18540
18541         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
18542         mono_string_intern () to implement the semantics of the ldstr opcode
18543         and the interning of System.Strings.
18544         * icall.c: provide hooks to make String::IsIntern and String::Intern
18545         internalcalls.
18546
18547 2001-09-23  Dick Porter  <dick@ximian.com>
18548
18549         * threads-dummy.c: 
18550         * threads-dummy.h: New files of dummy threading routines
18551
18552         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
18553         support code based on system specifics
18554
18555         Rename PTHREAD_LIBS to THREAD_LIBS
18556         
18557 2001-09-23  Dick Porter  <dick@ximian.com>
18558
18559         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
18560         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
18561         internal calls.
18562         (mono_thread_init): Set up a Thread object instance to return when
18563         the main thread calls Thread.CurrentThread
18564         (mono_thread_cleanup): Wait for all subthreads to exit
18565
18566         * icall.c: New internal calls for System.Threading.Thread::Sleep
18567         (including Schedule) and CurrentThread
18568
18569         * threads.h: New file, to insulate thread-specific stuff from the
18570         rest of the code
18571
18572 2001-09-21  Dick Porter  <dick@ximian.com>
18573
18574         * threads-pthread.h: 
18575         * threads-pthread.c: New file, for handling pthreads-style
18576         threading support.  Start() now starts a new thread and executes
18577         the ThreadStart delegate instance.
18578
18579         * icall.c: Added the internalcall for
18580         System.Threading.Thread::Start_internal
18581
18582         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
18583
18584 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
18585
18586         * loader.c: work around the different signatures for delegates
18587         constructors csc generates in compiled code vs the ones compiled in mscorlib.
18588
18589 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
18590
18591         * class.h, class.c: add mono_class_get_field_from_name ().
18592         * *: Fix C comments and other ANSI C issues.
18593
18594 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
18595
18596         * endian.h, assembly.c: fix some endianness issues.
18597
18598 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
18599
18600         * loader.h, load.c: add delegate_class to mono_defaults.
18601         Handle runtime provided methods in mono_get_method ().
18602
18603 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
18604
18605         * loader.c (mono_get_method): use pinvoke for internal call
18606
18607         * icall.c: use pinvoke for internal call
18608
18609         * loader.c (method_from_memberref): set the method name
18610
18611 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
18612
18613         * metadata.c: help the compiler generate better code for
18614         mono_class_from_mono_type ().
18615
18616 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
18617
18618         * class.c (mono_class_metadata_init): delayed computing of the
18619         class size to mono_class_metadata_init ()
18620
18621 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
18622
18623         * class.c, class.h: add an interfaces member to MonoClass.
18624         * image.c, image.h: add assembly_name field to MonoImage
18625         from the assembly table.
18626         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
18627
18628 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
18629
18630         * class.c: Handle Array in mono_class_from_mono_type ().
18631         * metadata.c, pedump.c: some endian fixes.
18632
18633 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
18634
18635         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
18636         * metadata.c: fix small problem introduced with the latest commit.
18637
18638 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
18639
18640         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
18641         We don't need a MonoMetadata pointer anymore to compare signatures in
18642         mono_metadata_signature_equal (), update callers.
18643         Reduced memory usage an number of allocations for MonoMethodHeader and
18644         MonoMethodSignature.
18645
18646 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
18647
18648         * metadata.c: added compare for szarray.
18649
18650 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
18651
18652         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
18653         and add a couple more types to it and mono_defaults. Give an hint on
18654         classes that need implementing in our corlib and are referenced
18655         in mscorlib.
18656
18657 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
18658
18659         * class.h, class.c: keep track if a class is also an Enum.
18660         * loader.c: Implement a couple more types for use in libffi
18661         marshalling. Gives better diagnostics when failing to dlopen
18662         a library. Set method->klass for P/Invoke methods, too.
18663
18664 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
18665
18666         * class.c, class.h: add a MonoType this_arg to MonoClass that
18667         represents a pointer to an object of the class' type that
18668         can be used by the interpreter and later the type cache.
18669         Add best guess alignment info for valuetype objects.
18670
18671 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
18672
18673         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
18674         into MonoType: one less level of indirection and allocation and
18675         simplifies quite a bit of code. Added cache for MonoTypes that are
18676         used frequently, so that we don't need to allocate them all the time.
18677
18678 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
18679
18680         * class.c (mono_class_create_from_typedef): System.Enum is also a
18681         value type, although it does not derive from System.ValueType
18682         (maybe a bug in the ms compiler?)
18683
18684         * metadata.c (mono_type_size): return the right size for value types
18685
18686         * loader.c (mono_get_method): only initialize method header if not abstract
18687
18688         * class.c (mono_class_from_mono_type): use mono_default values. 
18689
18690 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
18691
18692         * *: use MonoClass pointers instead of <type_tokens>
18693         
18694         * class.h: new flag: metadata_inited.
18695
18696         * class.c (mono_class_metadata_init): impl.
18697         (mono_class_instance_size): impl.
18698         (mono_class_data_size): impl.
18699
18700 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
18701
18702         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
18703         MonoClass now has the name and name_space fields. 
18704         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
18705         mono_get_method () takes and optional MonoClass as argument.
18706         Removed mono_typedef_from_name() and added mono_class_token_from_name()
18707         instead that takes advantage of a map from class names to typedef
18708         tokens in MonoImage.
18709
18710 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
18711
18712         * metadata.c: zero is not a valid alignment boundary.
18713         Merge MONO_TYPE_VOID in default decoding code.
18714
18715 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
18716
18717         * image.h: merged MonoMetadata into MonoImage
18718
18719         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
18720         identify the type of elements.
18721
18722 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
18723
18724         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
18725         * cil-coff.h: split MonoMSDOSHeader and add size info.
18726         * image.c: add some consistency checks.
18727         * metadata.c: fix row size computation: one programmer
18728         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
18729         add explanation for the locator routine.
18730         Fix decoding of size in method header.
18731         
18732 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
18733
18734         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
18735         (g_concat_dir_and_file): Bring g_concat_dir_and_file
18736         function from gnome-libs.  This uses the right path separator
18737         based on the OS, and also works around a bug in some systems where
18738         a double slash is not allowed. 
18739         (default_assembly_name_resolver): Use g_concat_dir_and_file
18740         (mono_assembly_open): ditto.
18741
18742 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
18743
18744         * metadata.c (mono_metadata_signature_equal): impl.
18745
18746         * *: void is now a realy MonoType (instead of using NULL)
18747         
18748         * metadata.c (do_mono_metadata_parse_type): use
18749         mono_metadata_parse_type to parse void value.
18750
18751 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
18752
18753         * metadata.c, metadata.h: in the signature and method header store
18754         only the space required for holding the loca vars and incoming arguments.
18755
18756 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
18757
18758         * metadata.c (do_mono_metadata_parse_type): treat void like any
18759         other type (instead of assigning NULL);
18760
18761 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
18762
18763         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
18764
18765 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
18766
18767         * image.c (do_mono_image_open): added a cache for arrays.
18768
18769 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
18770
18771         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
18772         decode a single column from a row in a metadata table and changes
18773         to take advantage of it in the typedef locator (gives a nice speed up).
18774         Store offset info for function params.
18775
18776 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
18777
18778         * image.h (MONO_IMAGE_IS_CORLIB): removed 
18779
18780 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
18781
18782         * assembly.c: how could mono_assembly_close () had ever worked?
18783         * metadata.c, metadata.h: provide offset info for local vars.
18784         Implement mono_type_size () to take care of alignment as well
18785         as size (it was mono_field_type_size in cli/class.c before).
18786
18787 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
18788
18789         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
18790
18791         * assembly.h (CORLIB_NAME): set to corlib.dll
18792
18793         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
18794
18795 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
18796
18797         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
18798         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
18799         tokentype.h: massive namespace cleanup.
18800
18801 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
18802
18803         * metadata.h, metadata.c: decode exception clauses when parsing method header.
18804
18805 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
18806
18807         * metadata.c (mono_metadata_free_type): added check for type !=
18808         NULL (void) before calling mono_metadata_free_type()
18809
18810 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
18811
18812         * metadata.h, row_indexes.h: added header with enumerations to use
18813         to index in the columns from tables in metadata and to decode coded
18814         tokens: we should start using this instead of embedding magic numbers
18815         all over the code.
18816
18817 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
18818
18819         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
18820         Move metadata_t info from cli_image_info_t to MonoImage, where
18821         it's easily accessible. Changed all the uses accordingly.
18822         Added the method and class caches to MonoImage.
18823         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
18824         and mono_metadata_decode_value () signature to be more consistent
18825         with the other parse functions (and simplify code). Taken advantage
18826         of zero-length array allocation with GCC. Removed reduntant (and
18827         wrong) MonoFieldType struct and use MonoParam instead. Changed
18828         mono_metadata_parse_field_type () to use common code for parsing.
18829         Added mono_metadata_typedef_from_field () and
18830         mono_metadata_typedef_from_method () to lookup a typedef index from a
18831         field or method token.
18832         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
18833
18834 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
18835
18836         * metadata.c (mono_metadata_parse_field_type): Implement. 
18837         (do_mono_metadata_parse_type): Split engine from
18838         mono_metadata_parse_type, so that we can create smaller structures
18839         for things that just have one pointer to the MonoType (look at
18840         the MonoFieldType)
18841
18842 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
18843
18844         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
18845         as Jan Gray found out, it is incorrect. 
18846
18847 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
18848
18849         * assembly.c: Implement asssembly loading.  This loads an image
18850         and loads all the referenced assemblies.  Come to think of it, we
18851         could always do lazy loading of the assemblies. 
18852
18853         * image.c (mono_image_open): Keep loaded images in a hashtable.
18854
18855         * image.h (MonoImage): Add reference count.
18856
18857 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
18858
18859         * assembly.c (mono_assembly_open): Keep track of the file name in
18860         case the assembly has no ASSEMBLY table.
18861
18862         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
18863         from get.c here.
18864
18865 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
18866
18867         * metadata.c, metadata.h: decode local vars in method header
18868         parse function. Change callers accordingly.
18869
18870 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
18871
18872         * metadata.h, cil-coff.h: protect against multiple inclusion.
18873         Added some new structures to hold information decoded from metadata:
18874         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
18875         and relevant decoding/free functions.
18876         * metadata.c: implement decoding functions. Add warning for out of bounds
18877         index in mono_metadata_locate(). Implement mono_get_method () to retreive
18878         all the info about a method signature and invocation. Remove check on
18879         uninitialized local var in parse_mh() and fix memory leak.
18880
18881 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
18882
18883         * metadata.h: More macros.
18884
18885         * tokentype.h: New file.
18886
18887 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
18888
18889         * assembly.c: added a consistency check and initialize
18890         some structures with g_new0().
18891         * metadata.c: fixed a couple more bugs in table size computation
18892         and add other checks for out-of bound access to metadata.
18893
18894 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
18895
18896         * metatada.c: fix bugs computing table sizes. Spew a
18897         warning when index in string heap is out of bounds.
18898
18899 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
18900
18901         * metadata.h: Add a couple of macros to manipulate tokens. 
18902
18903 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
18904
18905         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
18906         cli_section_tables).
18907
18908 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
18909
18910         * metadata.c (mono_metadata_user_string): New function, provides
18911         access to the UserString heap. 
18912
18913 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
18914
18915         * metadata.c: Add inline documentation.
18916
18917 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
18918
18919         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
18920         files. 
18921
18922 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
18923
18924         * typeattr.h: New file, TypeAttribute flags. 
18925
18926 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
18927
18928         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
18929         mono_assembly_ensure_section): Section loading code.
18930         (load_section_tables): Load the sections.
18931
18932         * mono/metadata/metadata.c (mono_metadata_locate_token,
18933         mono_metadata_locate): Functions to locate the information
18934         definition given a token or a table and an index.
18935         (mono_metadata_compute_table_bases): New.
18936         (compute_size): New function to compute the sizes of the various
18937         tables.
18938
18939         * mono/metadata/metadata.h: Finish listing the different index
18940         types. 
18941
18942         * mono/metadata/pedump.c: Improve to dump new information.
18943
18944 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
18945
18946         * mono/metadata/metadata.c: Entered all the tables matching
18947         Beta2. 
18948
18949         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
18950
18951
18952