2005-01-18 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mono / metadata / ChangeLog
1 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
2
3         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
4         System.Drawing.
5
6         * reflection.c (mono_method_body_get_object): Handle abstract and
7         runtime methods.
8
9 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
10
11         * marshal.c, loader.c, class-internals.h, reflection.c:
12         store the emthod data for a wrapper in an array instead of a list.
13
14 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
15
16         * marshal.c: change the code to allocate memory more
17         conservatively for method wrappers.
18
19 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
20
21         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
22         fields from MonoClass to the marshal info structure where they belong.
23
24 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
25
26         * class.c, object.c, class-internals.h, marshal.c: rearrange
27         some fields and tweak some types to lower memory usage.
28
29 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
30
31         * threads.c (signal_thread_state_change): Handle the case when the
32         target thread is the current thread.
33
34         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
35
36         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
37         emit_ptr_to_object_conv. 
38
39         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
40         marshalling. Fixes #71352.
41
42 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
43
44         * metadata.h, blob.h: move table enum to blob.h so it can be included
45         in any header.
46         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
47         cut the size of MonoImage/MonoDynamicImage.
48
49 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
50
51         * profiler.c (mono_profiler_install_simple): Fix default arguments.
52
53 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
54
55         * reflection.c, reflection.h, icall.c: add a function to check
56         if an attribute type is defined for a metadata object.
57
58 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
59
60         * object-internals.h: Added some needed fields from StringBuilder class.
61         * marshal.c: Set the maxCapacity when creating a StringBuilder.
62
63 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
64
65         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
66         threads before shutting down the runtime.
67
68         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
69
70 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
71
72         * object-internal.h, threads.c: implement stacksize and 
73         parameterized thread start functionality (requires
74         matching corlib). Marked broken code for later removal.
75
76 2005-01-12  Martin Baulig  <martin@ximian.com>
77
78         * class-internals.h (MonoGenericClass): Moved the `initialized'
79         flag to MonoDynamicGenericClass, removed `init_pending'.
80         (MonoGenericInst): Added `is_reference' flag.
81
82 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
83
84         * reflection.c (mono_image_create_pefile): Only set the pe_offset
85         inside the MSDOS header. Fixes #71201.
86
87         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
88         gc thread.
89         (mono_domain_finalize): Ditto.
90
91 2005-01-12  Martin Baulig  <martin@ximian.com>
92
93         * class.c (mono_get_shared_generic_class): Use the cache for
94         non-dynamic generic classes.
95
96         * class-internals.h (mono_class_create_generic_2): Removed
97         function prototype, this function is now static inside class.c.
98
99         * class.c (mono_class_create_generic_2): Made this static, only
100         call it from mono_class_init() and mono_class_setup_parent().
101         (collect_implemented_interfaces_aux): Call mono_class_init() on
102         the interfaces we collect.
103         (mono_class_setup_vtable): Call mono_class_init (class->parent).
104
105 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
106
107         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
108         it a real thread handle.
109
110         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
111         MonoJitExceptionInfo, since each catch clause needs its own variable.
112         
113 2005-01-11  Dick Porter  <dick@ximian.com>
114
115         * image.c (mono_pe_file_open): New variant on mono_image_open()
116         that does not set up the CLI metadata; used for FileVersionInfo so
117         it can get the data for windows binaries too.
118         
119         * process.c (process_read_string_block): Don't read off the end of
120         the StringTable block.
121
122         These both fix bug 70766.
123
124 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
125
126         * gc.c: set some fields to NULL at GC cleanup time.
127         * threads.c: if we quit the main thread, call exit ().
128
129 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
130
131         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
132
133 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
134
135         * threads.h, threads.c, object.c: added accessor and settor for
136         main_thread. Handle it specially when exiting from it: wait
137         for other foreground threads to exit.
138
139 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
140
141         * process.c, verify.c: remove some bloat.
142
143 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
144
145         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
146         the calling convention to cdecl under win32.
147
148 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
149
150         * object.c (mono_object_get_size): New function to get the size of
151         an object instance.
152
153         * profiler.c (simple_allocation): Use above.
154
155 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
156
157         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
158         ves_icall_System_AppDomain_getRootDomain (as it's not required to
159         get an appdomain by it's id and we can't assume the root's id is 0).
160         * domain-internals.h: Change the function prototype to match.
161         * icall.c: Change the icall table for AppDomain.
162
163 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
164
165         * locales.c (string_invariant_compare_char): Only compute
166         GUnicodeTypes in the case where we need them.  Test for ordinality
167         first and return if so.
168
169         From the commit:
170
171                 /*
172                  * FIXME: here we must use the information from c1type and c2type
173                  * to find out the proper collation, even on the InvariantCulture, the
174                  * sorting is not done by computing the unicode values, but their
175                  * actual sort order.
176                  */
177
178 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
179
180         * loader.c: for P/Invoke methods, allow the "Internal" shared
181         library name to refer to the calling process symbol namespace.
182
183 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
184
185         * Makefile.am: Add the security manager to the build.
186         * security-manager.c|h: New. Initialization of the security manager.
187
188 2005-01-07  Dick Porter  <dick@ximian.com>
189
190         * threads.c: 
191         * monitor.c: Update thread state during Monitor and WaitHandle
192         waits.  Fixes bug 71031.
193
194 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
195
196         * reflection.c (property_encode_signature): Correctly handle when the
197         property has no methods.
198
199 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
200
201         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
202         
203         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
204         fields from mb, not rmb. Fixes #71017.
205
206         * marshal.c (emit_ptr_to_str_conv): Add support for 
207         ByValTStr -> string conversion. Fixes #71015.
208
209         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
210
211         * mempool.c (mono_mempool_contains_addr): New helper function.
212
213 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
214
215         * metadata.c (mono_metadata_compute_size): Fix size calculation of
216         HasSematics encoded fields.
217         
218         * metadata.c (mono_type_to_unmanaged): Improve error message for 
219         invalid string marshalling.
220
221         * metadata.c: Fix warnings.
222         
223 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
224
225         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
226         profiler support.
227
228 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
229
230         * domain.c object.c domain-internals.h: Revert part of r38077 since the
231         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
232         tests.
233
234 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
235
236         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
237         so methods containing these can be AOTed.
238
239 2005-01-03  Martin Baulig  <martin@ximian.com>
240
241         * loader.c (find_method): Removed the hack for generic instances.
242         (method_from_memberref): If our parent is a generic instance, pass
243         its generic type definition to find_method() and then inflate the
244         method.
245         (mono_get_method_constrained): Pass the generic type definition to
246         find_method() and inflate the method later.
247
248         * class-internals.h (MonoStats): Added `generic_class_count'.
249
250         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
251         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
252
253         * reflection.c (mono_custom_attrs_from_params): Don't ignore
254         generic type definitions.
255
256 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
257
258         * loader.c icall.c: Fix warnings.
259
260 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
261
262         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
263         blittable types. Fixes #70864.
264
265 2004-12-29  Martin Baulig  <martin@ximian.com>
266
267         * icall.c
268         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
269
270         * reflection.c (mono_method_get_object): Create a
271         "System.Reflection.MonoGenericMethod" for inflated methods; don't
272         call mono_get_inflated_method().
273
274         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
275
276 2004-12-27  Martin Baulig  <martin@ximian.com>
277
278         * class-internals.h (MonoMethod): Added `is_inflated' flag.
279         (MonoMethodInflated): Added `inflated' field.
280
281         * class.c (mono_class_inflate_generic_method): Don't really
282         inflate the method here; just set the `is_inflated' flag in the
283         MonoMethod.
284         (mono_class_get_inflated_method): Actually inflate the method here
285         if it's not already inflated; we use the MonoMethodInflated's new
286         `inflated' field as a cache.
287
288 2004-12-26  Martin Baulig  <martin@ximian.com>
289
290         * class.c
291         (inflate_generic_class): Moved some code out of inflate_generic_type().
292         (mono_class_inflate_generic_method): If we're already inflated,
293         inflate the context and use the declaring method; ie. make sure
294         the declaring method of an inflated method is always the generic
295         method definition.
296         (mono_class_create_from_typedef): Create
297         `class->generic_container->context->gclass'.
298
299 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
300
301         * metadata-internals.h, marshal.c, reflection.c: More
302         MonoGHashTable->GHashTable.
303
304         * domain-internals.h, class.c: Change MonoGHashTable's into
305         GHashTables for some cases where no gc stuff is used
306
307         All users: update apis
308
309 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
310
311         * metadata.c (builtin_types): Make this `const'. Makes this get
312         put into the shareable section.
313         (mono_metadata_init): Casts to make gcc happy.
314
315 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
316
317         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
318
319 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
320
321         * icall.c: Added an internal call to retrieve the position and length
322         of assembly-level declarative security attributes (RequestMinimum, 
323         RequestOptional and RequestRefuse). This is used by the Assembly class
324         to re-create the corresponding permission sets.
325
326 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
327
328         * marshal.c: fix the stelemref wrapper to be type correct
329         (and faster).
330
331 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
332
333         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
334         to do key & 0x7fffffff. Hashtable already does this. It just
335         results in longer code.
336
337 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
338
339         * appdomain.c: Bump corlib version.
340         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
341         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
342         * reflection.c|h: Add functions to get declarative security infos
343         (blob position and length) for assemblies, classes and methods.
344
345 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
346
347         * reflection.c: sort the constant table (bug #70693).
348
349 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
350
351         * object-internals.h, threads.c, domain.c: add accessors for
352         the MonoThread and MonoDomain tls keys.
353
354 2004-12-18  Martin Baulig  <martin@ximian.com>
355
356         * class.c (inflate_generic_type): If we're inflating a generic
357         instance, set `ngclass->context->container = context->container';
358         ie. the container we inflated into.
359
360         * metadata.c (mono_metadata_parse_generic_param): Reflect above
361         inflate_generic_type() changes.
362
363 2004-12-17  Martin Baulig  <martin@ximian.com>
364
365         * class-internals.h
366         (MonoGenericClass): Replaced `MonoType *generic_type' with
367         `MonoClass *generic_class'.  Removed `dynamic_info'; if
368         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
369         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
370
371 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
372
373         * exception.c (mono_exception_from_token): New helper function.
374
375 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
376
377         * assembly.c (mono_assembly_load_with_partial_name): Call 
378         mono_assembly_loaded before invoking the preload hooks. Fixes
379         #70564.
380
381         * object-internals.h (MonoThread): Change culture_info and 
382         ui_culture_info into an array.
383
384         * threads.c: Cache culture info objects from more than one appdomain.
385
386         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
387         current UI culture.
388
389 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
390
391         * threads.h threads.c appdomain.c: Clear the culture_info field of
392         all threads during unloading if they point to an object in the dying
393         appdomain.
394
395 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
396
397         * culture-info.h (TextInfoEntry): New struct
398         * object-internals.h: sync with managed
399         * locales.c: fill the `text_info_data' field
400         * culture-info-tables.h: update
401
402 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
403
404         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
405         collector.
406
407 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
408
409         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
410         (ves_icall_ModuleBuilder_getMethodToken): Ditto
411
412 2004-12-12  Martin Baulig  <martin@ximian.com>
413
414         * mono-debug-debugger.c (write_type): If we're an enum and the
415         builtin types have already been initialized, call mono_class_init().
416
417 2004-12-11  Martin Baulig  <martin@ximian.com>
418
419         * metadata.c (mono_metadata_load_generic_params): Added
420         `MonoGenericContainer *parent_container' argument; automatically
421         compute `container->is_method'; pass the correct owner to
422         get_constraints().      
423
424         * reflection.c (compare_genericparam): Sort the GenericParam table
425         according to increasing owners. 
426
427 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
428
429         * profiler.c: allow disabling the default profiler.
430
431 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
432
433         * decimal.c, icall.c: allow disabling System.Decimal support.
434
435 2004-12-09  Marek Safar <marek.safar@seznam.cz>
436
437         * reflection.c: Add support for null attribute arguments.
438
439 2004-12-09  Martin Baulig  <martin@ximian.com>
440
441         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
442         names to get rid of compiler warnings.
443
444 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
445
446         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
447         mono_marshal_load_type_info (). Fixes #69625.
448         (mono_marshal_get_ptr_to_struct): Likewise.
449
450 2004-12-08  Martin Baulig  <martin@ximian.com>
451
452         * mono-debug.h: Bumped version number to 47.
453
454         * mono-debug-debugger.c
455         (mono_debugger_event_handler, mono_debugger_event): Take two
456         guint64 arguments insteed of a gpointer and a guint32.  
457
458 2004-12-08  Martin Baulig  <martin@ximian.com>
459
460         * debug-mono-symfile.h
461         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
462         `address' to `native_offset'.
463
464 2004-12-08  Martin Baulig  <martin@ximian.com>
465
466         * class.c (mono_class_create_from_typespec): Only inflate if we
467         either have `context->gclass' or `context->gmethod'.
468
469 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
470
471         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
472
473         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
474
475         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
476
477         * reflection.c (mono_assembly_get_object): Remove the workaround put
478         in for the release.
479         
480         * appdomain.c: Use the corlib_internal field from MonoAssembly.
481
482         * appdomain.c: Bump corlib version.
483
484         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
485         be visible in other appdomains.
486
487 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
488
489         * threads.c: Interlocked inc and dec for longs were messed up,
490         use a KISS based impl for this. Fixes 70234
491
492 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
493
494         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
495
496 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
497
498         * icall.c: fix to follow policy not to allow struct
499         arguments in icalls.
500
501 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
502
503         * process.c: make the patch that handles spaces in file paths work
504         on mono/windows too.
505
506 2004-12-06  Martin Baulig  <martin@ximian.com>
507
508         * class.c (mono_class_create_generic): Call
509         mono_class_setup_supertypes() if we're dynamic.
510         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
511
512 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
513
514         * object-internals.h: Add new fields to MonoThread.
515
516         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
517
518         * icall.c threads-types.h threads.c: Add new icalls.
519
520         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
521
522         * object-internals.h (MonoReflectionAssembly): Sync object layout with
523         managed side.
524
525         * appdomain.c: Bump corlib version.
526
527         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
528         internal assemblies. Fixes #69181.
529
530 2004-12-05  Martin Baulig  <martin@ximian.com>
531
532         * class.c (mono_class_inflate_generic_signature): Make this a
533         no-op if `context' is NULL or we don't have any type parameters;
534         also copy `sentinelpos'.        
535
536 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
537
538         * image.c: Add unbox_wrapper_cache.
539
540         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
541
542         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
543         function generator.
544         
545         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
546         Fixes #70173.
547
548         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
549         
550 2004-12-04  Martin Baulig  <martin@ximian.com>
551
552         * loader.c (mono_method_get_signature_full): New public function;
553         like mono_method_get_signature(), but with an additional
554         `MonoGenericContext *' argument.
555
556         * class.c (mono_class_inflate_generic_signature): Formerly known
557         as inflate_generic_signature(); make this public.
558
559 2004-12-04  Martin Baulig  <martin@ximian.com>
560
561         * metadata.c
562         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
563         instead of a `MonoGenericContainer *'.  
564         (mono_metadata_parse_array_full): Likewise.
565         (mono_metadata_parse_signature_full): Likewise.
566         (mono_metadata_parse_method_signature_full): Likewise.
567         (mono_metadata_parse_generic_inst): Likewise.
568         (mono_metadata_parse_generic_param): Likewise.
569         (mono_metadata_parse_mh_full): Likewise.
570         (mono_type_create_from_typespec_full): Likewise.
571
572 2004-12-03  Martin Baulig  <martin@ximian.com>
573
574         * class-internals.h (MonoGenericContainer): Replaced the
575         `MonoGenericContext * pointer with a `MonoGenericContext'
576         structure and made it the first element.
577
578 2004-12-03  Martin Baulig  <martin@ximian.com>
579
580         * class.c
581         (inflate_generic_type): Set the `context->container' when creating
582         a new MonoGenericContext.
583         (mono_class_inflate_generic_method): Likewise.
584         (mono_class_create_from_typespec): Just use `context->container'
585         to get the container.
586
587         * loader.c (method_from_methodspec): Set `context->parent' from
588         `context->container' - and if that's a method container, use its
589         parent.  Also set the `context->container' when creating a new
590         MonoGenericContext.
591         (mono_get_method_from_token): Use just `context->container' to get
592         the container.
593
594         * metadata.c (do_mono_metadata_parse_generic_class): Also set
595         `gclass->context->container'.
596
597         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
598         the `context->container' when creating a new MonoGenericContext.
599
600 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
601
602         * reflection.c (compare_genericparam): Sort params with identical
603         owner by their number. Fixes gen-111 on sparc.
604
605 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
606
607         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
608         around the domain changes.
609
610         * appdomain.c (mono_domain_unload): Handle the case when the thread
611         calling Unload is itself being aborted during unloading. Fixes #70022.
612
613         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
614
615         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
616         checkpoint_func as an icall so it gets a wrapper.
617         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
618         in the cross-appdomain wrappers too.
619
620         * threads.c (mono_thread_has_appdomain_ref): Make this public.
621
622         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
623
624         * reflection.c: Fix some memory leaks.
625         
626 2004-12-02  Martin Baulig  <martin@ximian.com>
627
628         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
629
630         * metadata.c (generic_class_cache): New static hashtable.
631         (mono_metadata_lookup_generic_class): New public method.
632
633 2004-12-02  Martin Baulig  <martin@ximian.com>
634
635         * class.c (mono_class_create_from_typedef): Call
636         mono_class_setup_parent() and mono_class_create_mono_type() before
637         parsing the interfaces.
638
639 2004-12-02  Martin Baulig  <martin@ximian.com>
640
641         * metadata.c (generic_inst_cache): New static hashtable.
642         (mono_metadata_lookup_generic_inst): New public function.
643         (mono_metadata_inflate_generic_inst): New public function.
644         (mono_metadata_parse_generic_inst): New public function.
645         (do_mono_metadata_parse_generic_class): Use the new
646         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
647         since this'll also use the cache.
648
649         * reflection.c (mono_reflection_bind_generic_method_parameters):
650         Use mono_metadata_lookup_generic_inst() to use the new cache.
651
652         * class.c (inflate_mono_type): Use
653         mono_metadata_inflate_generic_inst() to inflate a generic
654         instance; this'll also use the new cache.
655
656         * loader.c (method_from_methodspec): Use
657         mono_metadata_parse_generic_inst() and
658         mono_metadata_inflate_generic_inst() rather than parsing it
659         manually, so we can use the new cache.
660
661 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
662
663         * threads.c (wait_for_tids): Do not incorrectly free threads when 
664         the wait times out.
665
666 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
667
668         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
669         iter->args based on whether parameters are passed in registers (i.e.
670         MONO_ARCH_REGPARMS is defined)
671
672 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
673
674         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
675         the exception message. Fixes #70070.
676         (method_from_methodspec): Fix warnings.
677
678 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
679
680         * process.c: (complete_path) return the path quoted
681
682 2004-12-01  Martin Baulig  <martin@ximian.com>
683
684         * class-internals.h (MonoGenericInst): New structure.
685         (MonoGenericClass): Replaced `type_argc', `type_argv' and
686         `is_open' with `MonoGenericInst *inst'.
687         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
688         `is_open' with `MonoGenericInst *inst'.
689
690 2004-11-30  Martin Baulig  <martin@ximian.com>
691
692         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
693
694         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
695         to `generic_class_cache'.
696
697         * metadata.c
698         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
699         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
700         (mono_generic_inst_is_valuetype): Renamed to
701         mono_generic_class_is_valuetype().
702
703         * class-internals.h
704         (MonoGenericInst): Renamed to MonoGenericClass.
705         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
706         (MonoClass): Renamed `generic_inst' to `generic_class'.
707         (MonoGenericContext): Renamed `ginst' to `gclass'.
708
709         * object-internals.h
710         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
711
712         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
713         mono_reflection_generic_class_initialize().
714
715         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
716         now known as "System.Reflection.MonoGenericClass".
717         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
718
719 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
720
721         * class-internals.h: Added a flag field to MonoClass to cache the
722         declarative security attributes actions associated with the class.
723         * domain-internals.h: Added booleans to MonoJitInfo to cache the
724         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
725         applicable to the JITted method.
726         * reflection.c|h: Added functions to extract (as flags) which security
727         actions are available (declaratively) for a method, class or assembly.
728         * metadata.c|h: Added functions to search the declarative security
729         table in the metadata.
730         
731 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
732
733         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
734         EXPORTEDTYPES are already in the class name cache, so there is no
735         need to add extra code here to look at them. Just removes a bit of
736         cruft.
737
738         (ves_icall_System_Environment_get_TickCount): No need for #if
739         WINDOWS. We already have the code in io-layer.
740
741 2004-11-28  Martin Baulig  <martin@ximian.com>
742
743         * loader.c
744         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
745         Fixes gen-112.cs.
746
747 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
748
749         * assembly.c (do_mono_assembly_open): Instead of having a
750         conditional WITH_BUNDLE, incorporate support for bundles here, by
751         having a global `bundles' variable holding a pointer to the actual
752         bundles. 
753
754         (mono_register_bundled_assemblies): New API call used by the
755         bundle code. 
756
757         See mkbundle.1 for details.
758         
759 2004-11-27  Martin Baulig  <martin@ximian.com>
760
761         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
762         the vtable for generic methods.
763
764 2004-11-26  Martin Baulig  <martin@ximian.com>
765
766         * metadata.c
767         (mono_metadata_generic_method_hash): New public function.
768         (mono_metadata_generic_method_equal): Likewise.
769
770         * class-internals.h
771         (MonoGenericContainer): Added `GHashTable *method_hash'.
772
773         * reflection.c (ReflectionMethodBuilder): Added
774         `MonoGenericContainer *generic_container'.
775         (reflection_methodbuilder_to_mono_method): Don't create a new
776         MonoGenericContainer each time we're called.
777         (mono_reflection_bind_generic_method_parameters): Use
778         `container->method_hash' to cache the results so we don't create a
779         different method if we're called several times with the same
780         arguments.
781
782         * loader.c (method_from_methodspec): Use the new
783         `container->method_hash' here, too.
784
785 2004-11-26  Martin Baulig  <martin@ximian.com>
786
787         * class.c (inflate_generic_signature): Correctly compute
788         `res->has_type_parameters'.
789         (mono_class_vtable): Use the `has_type_parameters' flag to
790         determine whether we're a generic method.
791
792         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
793
794 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
795
796         * object.c (mono_runtime_run_main): Fix a small memory leak.
797
798 2004-11-25  Martin Baulig  <martin@ximian.com>
799
800         * class.c (set_generic_param_owner): Fixed the loop.
801
802 2004-11-25  Martin Baulig  <martin@ximian.com>
803
804         * object.c (mono_class_vtable): Don't create any JIT wrappers for
805         generic methods.
806
807 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
808
809         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
810         names. Fixes #69787.
811
812 2004-11-24  Martin Baulig  <martin@ximian.com>
813
814         * class.c (mono_class_create_generic_2): If we don't have a
815         `ginst->parent', inflate `gklass->parent' to get our parent.
816
817 2004-11-24  Martin Baulig  <martin@ximian.com>
818
819         * reflection.c (compare_genericparam): Correctly sort the
820         GenericParam table; fixes #69779.
821
822 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
823
824         * reflection.c: When writing a PE file, don't create a huge
825         buffer in memory. Just write the arrays we have to the file.
826         This reduces memory usage.
827
828         * metadata-internals.h: MonoDynamicStream pefile is no longer used
829         globally.
830
831 2004-11-17  Martin Baulig  <martin@ximian.com>
832
833         * class.c (mono_class_init): Don't setup `class->parent' for
834         dynamic instances; moved this to mono_class_generic_2().
835         (mono_class_create_generic): Also set `klass->inited' for dynamic
836         generic instances.
837         (mono_class_create_generic_2): Don't do anything for dynamic
838         generic instances.  Set `klass->parent' here and also call
839         mono_class_setup_parent() here. 
840
841         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
842         `MonoType *parent' argument; set `ginst->parent' before calling
843         mono_class_create_generic_2(), so we set the correct parent.
844
845 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
846
847         * reflection.c: allow getting attributes from ModuleBuilder
848         (used by ikvm).
849
850 2004-11-17  Martin Baulig  <martin@ximian.com>
851
852         * class.c (mono_class_create_from_typedef): If a type parameter is
853         inherited from an outer class, set its owner to that class.
854
855 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
856
857         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
858           for (int*) written size. This fixes bug #69592.
859
860 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
861
862         * icall.c: Added IsAuthenticodePresnet internal call.
863         * image.c|h: New function that check a MonoImage for an Authenticode
864         signature in the certificate PE data directory.
865         * security.c|h: New internal call to ask the runtime if an 
866         Authenticode signature seems referenced in the PE header.
867
868 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
869
870         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
871
872         * reflection.c (mono_image_create_pefile): Free the assembly streams
873         after writing out the assembly file.
874
875         * object.c (mono_runtime_run_main): Fix small memory leak.
876
877         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
878         property access modifiers. Fixes #69389.
879
880 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
881
882         * domain.c, object.c, object-internals.h, domain-internals.h,
883         object.h, marshal.c: keep dynamic code info per domain.
884
885 2004-11-15  Martin Baulig  <martin@ximian.com>
886
887         * class.c (mono_type_get_name_recurse): Put type arguments in
888         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
889         see bug #68387.
890
891 2004-11-15  Martin Baulig  <martin@ximian.com>
892
893         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
894         (mono_class_setup_vtable): When computing `the_cname' for a
895         generic instance, don't include the namespace since we'd otherwise
896         add it twice.
897
898 2004-11-15  Martin Baulig  <martin@ximian.com>
899
900         * class.c (mono_class_create_generic): Changed return type to void.
901         (mono_class_create_generic_2): New public function; setup
902         `class->method', `class->field' and `class->interfaces' here
903         instead of in mono_class_init().
904
905         * class.h (mono_class_create_generic): Moved to class-internals.h.
906
907 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
908
909         * reflection.c (mono_image_create_pefile): take a file HANDLE.
910         rather than writing to memory, write to this file. Right now,
911         we are just writting into a buffer, and copying that. However
912         we can avoid the buffer later.
913
914         (mono_dynamic_stream_reset): new function
915
916         * icall.c, object-internals.h: update for the above.
917
918 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
919
920         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
921         have been using gc'd memory. First it is slower, unlikely
922         the comment in the source code said, secondly, it increases
923         our footprint to do it in the gc.
924
925         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
926         the method so that it does not have to copy to managed code.
927
928 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
929
930         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
931
932 2004-11-12  Martin Baulig  <martin@localhost>
933
934         * reflection.c (mono_image_create_token): Allow generic method
935         definitions here, since they may appear in an `.override'; see
936         gen-98/gen-99 for an example.
937
938 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
939
940         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
941         #69365.
942
943         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
944         descriptive.
945
946 2004-11-11  Martin Baulig  <martin@ximian.com>
947
948         * class.c (mono_class_setup_vtable): In an explicit interface
949         implementation, the method name now includes the arity.
950
951 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
952
953         * object.c (mono_array_full_copy): Fix warning.
954
955 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
956
957         * appdomain.c: Removed look_for_method_by_name(). Use the new method
958         mono_class_get_method_from_name() instead.
959         
960         * class-internals.h: Added two new types of wrappers. 
961         Added MonoRemotingTarget enum. Added new trampoline function type, which
962         takes an additional MonoRemotingTarget value as parameter, so it is
963         possible to request a trampoline for a specific target.
964         
965         * class.c: Added new mono_class_get_method_from_name() method.
966         
967         * class.h: In MonoRemoteClass, we can have now to vtables, one for
968         general remoting sinks and one specific for cross domain calls.
969         
970         * debug-helpers.c: Added new wrapper names.
971         
972         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
973         of a remote class.
974         
975         * image.c: Porperly delete value objects form the remoting invoke hashtable.
976         
977         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
978         with several other methods (mono_marshal_get_xappdomain_dispatch,
979         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
980         and others) can generate a fast remoting wrapper for cross domain calls.
981         More information can be found in docs/remoting.
982         Other changes: Removed mono_find_method_by_name, and used
983         mono_class_get_method_from_name instead.
984         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
985         is stored in the remoting invoke hashtable.
986         
987         * marshal.h: published the new method for getting the xdomain wrapper,
988         and also added a method for getting the adequate wrapper for a given
989         method and target.
990         
991         * object-internals.h, object.c: Added a couple of methods for capying and
992         cloning arrays.
993         Modified mono_install_remoting_trampoline, which takes the new remoting
994         trampoline that has a remoting target as parameter.
995         mono_class_proxy_vtable now also takes a remoting target as parameter, and
996         will return the most suitable vtable for the target.
997         Added mono_remote_class_vtable, which returns the vtable of a remote class
998         (which can be the normal remoting vtable or the xdomain vtable).
999         
1000         * threads.c: the xdomain invoke and dispatch wrappers must also be
1001         protected against interruptions.
1002
1003 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1004
1005         * icall.c: use memmove in BlockCopyInternal when the source and
1006         destination arrays are the same.
1007
1008 2004-11-09  Martin Baulig  <martin@ximian.com>
1009
1010         * class-internals.h (MonoGenericContainer): Removed `method' and
1011         `signature', replaced them with `is_method' and `is_signature'
1012         flags.  Added `context'.
1013
1014         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
1015         instead of a `MonoGenericContainer *'.
1016
1017         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
1018         for dynamic type parameters.
1019         (mono_metadata_load_generic_params): Setup `container->context'.
1020
1021         * reflection.c (mono_reflection_setup_generic_class): Setup
1022         `tb->generic_container->context'.
1023         (do_mono_reflection_bind_generic_parameters): Use
1024         mono_class_inflate_generic_type() to correctly inflate types,
1025         rather than using our own hack just for MONO_TYPE_VAR.
1026
1027 2004-11-09  Martin Baulig  <martin@ximian.com>
1028
1029         * class.c (mono_class_inflate_generic_method): Small fix; don't
1030         crash here.
1031
1032         * icall.c
1033         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
1034         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
1035         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
1036         (ves_icall_Type_BindGenericParameters): Likewise.
1037         (ves_icall_Type_get_IsGenericInstance): Likewise.
1038         (ves_icall_Type_GetGenericParameterPosition): Likewise.
1039         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
1040         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
1041         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
1042
1043 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
1044
1045         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
1046         assembly versions and public key tokens. Fixes #69113.
1047
1048 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
1049
1050         * metadata.c: fix bug introduced with the type cache changes
1051         on 2004-11-06.
1052
1053 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
1054
1055         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
1056         the MonoClass pointer instead of the token in exception clauses.
1057         * reflection.c: updates for the above and make the code not depend
1058         on the structure of MonoExceptionClause.
1059
1060 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
1061
1062         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
1063         Add support for dynamic assemblies. Fixes #69114.
1064
1065         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
1066
1067 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
1068
1069         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
1070         since most only those methods use it. the code member of
1071         MonoMethodPInvoke was dead, so that can be removed too. Also,
1072         remove inline_count (again, not used), and move slot so that it
1073         can share bits with some other flags. This saves 8 bytes in the
1074         structure and gives us about 50 kb back for mcs helloworld.cs
1075
1076         * *.[ch]: Do naming changes for the above.
1077
1078         * loader.c (mono_method_get_header): Lazily init the header
1079         on first access.
1080         (mono_get_method_from_token): don't init the header here
1081         (mono_free_method): the header may never be allocated
1082
1083         Overall, this saves 150 kb of unmanaged allocations
1084         for mcs helloworld.cs. That accounts for 10% of the unmanaged
1085         memory at runtime.
1086         
1087         * loader.c, loader.h (mono_method_get_header): new accessor.
1088
1089         * *.[ch]: use the above method. Prepares us to lazily load
1090         the header.
1091
1092         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
1093         three warnings, which are actual bugs (see 69206).
1094
1095         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
1096         unused. Saves a cool 4 bytes / method.
1097
1098 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
1099
1100         * metadata.c (builtin_types): Add types for System.Object here.
1101         (mono_metadata_parse_type_full): Cache MonoType*'s that are
1102         for a class or valuetype from klass->this_arg or klass->byval_arg.
1103
1104         On mcs for a hello world, this gets us down from 21836 MonoType's
1105         to 14560.
1106
1107         (mono_metadata_free_type): Account for the above change.
1108
1109 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
1110
1111         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
1112         exception instead of asserting if name is null.
1113         (ves_icall_System_AppDomain_GetData): Ditto.
1114
1115 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
1116
1117         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
1118         EnumBuilder.
1119
1120         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
1121         Return NULL when the domain does not have entry_assembly set.
1122
1123         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
1124         Add a 'resource_modules' argument.
1125         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
1126
1127         * reflection.c (mono_reflection_create_runtime_class): Move setting
1128         of wastypebuilder here, so mono_get_type_object () returns a MonoType
1129         for enums too.
1130
1131         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
1132         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
1133         Throw an ArgumentNullException if 'ptr' is null.
1134
1135         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
1136         assemblies here. Fixes #69020.
1137
1138 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
1139
1140         * reflection.c (build_compressed_metadata): Fix the previous patch for
1141         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
1142         the stack.
1143
1144 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
1145
1146         * assembly.c (mono_assembly_names_equal): Allow a match if one of
1147         the cultures is false. Fixes #69090.
1148
1149         * reflection.c (build_compressed_metadata): Fix invalid memory read 
1150         detected by valgrind.
1151         
1152         * reflection.c (mono_reflection_get_type): Avoid triggering a 
1153         TypeResolve multiple times for the same type. Fixes #65577.
1154
1155 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
1156
1157         * marshal.c: Avoid using ldftn to call managed functions. It is
1158         much slower than just a call.
1159
1160         * reflection.c (mono_module_get_object): free the basename we
1161         allocate here from glib.
1162         
1163         * reflection.c (ensure_runtime_vtable): make sure to free
1164         overrides.  Also, we were allocating an array of MonoMethod not an
1165         array of MonoMethod*.
1166
1167         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
1168
1169         * image.c (mono_image_close): free image->guid here.
1170
1171 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
1172
1173         * reflection.c: Fix some spec conformance issues with the PE file
1174         structures so mcs compiled apps run on the Net 2.0 beta.
1175
1176 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
1177
1178         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
1179         Implement this. Fixes #67264.
1180
1181         * debug-helpers.h debug-helpers.c marshal.c: Move 
1182         mono_find_method_by_name to debug-helpers.c.
1183
1184 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
1185
1186         * object.c (mono_release_type_locks): type_initialization_hash is
1187         a GHashTable.
1188
1189         * reflection.c object.c object-internals.h: Fix warnings.
1190
1191         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
1192         without accessors. Fixes #61561.
1193
1194         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
1195         application base from the root domain if not set. Fixes #65641.
1196         (mono_runtime_init): Fix warning.
1197
1198 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1199
1200         * appdomain.c: call mono_thread_pool_init.
1201         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
1202         of worker threads based on the number of CPUs and the environment
1203         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
1204         for non-windows (windows) systems.
1205
1206 2004-10-27  Chris Toshok  <toshok@ximian.com>
1207
1208         * mono-debug-debugger.c (write_class): don't call mono_class_init
1209         here, as even with the check for (!klass->init_pending), we get
1210         into a situation where we're hitting cycles in class
1211         initialization.  Fixes #68816.
1212
1213 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
1214
1215         * image.c: Avoid overwriting values in the loaded_images_hash when an
1216         assembly is loaded multiple times. Fixes #61152.
1217
1218         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
1219         so multiple satellite assemblies for the same name can be loaded.
1220         Fixes #68259.
1221
1222         * mono_domain_assembly_preload: Actually return the loaded assembly, 
1223         not NULL.
1224
1225         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
1226         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
1227
1228         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
1229         pending finalizers are not invoked after the appdomain has been 
1230         unloaded. Fixes #67862.
1231
1232 2004-10-22  Martin Baulig  <martin@ximian.com>
1233
1234         * mono-debug-debugger.c
1235         (mono_debugger_runtime_invoke): Don't box valuetypes.
1236
1237 2004-10-22  Chris Toshok  <toshok@ximian.com>
1238
1239         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
1240         don't hide private methods.
1241
1242 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
1243
1244         * icall.c: Allows the runtime to "share" (when known) the public key
1245         token of an assembly. This avoid the need to recalculate the token 
1246         (from the public key) in managed code.
1247
1248 2004-10-21  Chris Toshok  <toshok@ximian.com>
1249
1250         * debug-helpers.c (append_class_name): argh, revert last patch.
1251         
1252 2004-10-21  Chris Toshok  <toshok@ximian.com>
1253
1254         * debug-helpers.c (append_class_name): use '+' as the delimiter,
1255         not '/', so that it matches what the debugger uses to look up
1256         methods.
1257
1258 2004-10-21  Martin Baulig  <martin@ximian.com>
1259
1260         * mono-debug-debugger.c (mono_debugger_throw_exception): New
1261         public method; this is called each time an exception is thrown and
1262         allows the debugger to use exception catch points.
1263
1264 2004-10-21  Martin Baulig  <martin@ximian.com>
1265
1266         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
1267         the stack pointer and the exception object in some struct and pass
1268         that to the debugger.
1269
1270 2004-10-21  Chris Toshok  <toshok@ximian.com>
1271
1272         * mono-debug-debugger.c (do_write_class): add instance/static
1273         event support.  We don't expose "raise" or "other" yet.
1274         (event_is_static): new method.
1275
1276 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
1277
1278         * mono-debug-debugger.c
1279         (mono_debugger_handle_exception): Remove
1280         bogus return value for fussy compilers.
1281
1282 2004-10-20  Martin Baulig  <martin@ximian.com>
1283
1284         * mono-debug-debugger.c
1285         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
1286         (mono_debugger_handled_exception): Likewise.
1287
1288 2004-10-20  Martin Baulig  <martin@ximian.com>
1289
1290         * mono-debug-debugger.h (MonoDebuggerEvent): Added
1291         MONO_DEBUGGER_EVENT_EXCEPTION.
1292
1293         * mono-debug-debugger.c (mono_debugger_handle_exception): New
1294         public function to send the debugger a notification for an
1295         exception and inform it about a catch/finally clause.
1296
1297 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
1298
1299         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
1300         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
1301         fix 2.95 build. 
1302
1303         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
1304
1305 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
1306
1307         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
1308         marshalled as [In,Out]. Fixes #58325.
1309
1310 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
1311
1312         * reflection.c (mono_method_body_get_object): Implement some fields.
1313
1314 2004-10-12  Martin Baulig  <martin@ximian.com>
1315
1316         * reflection.c (mono_reflection_bind_generic_parameters): Small
1317         fix, correctly retrieve our parent from a generic instance.
1318
1319 2004-10-12  Martin Baulig  <martin@ximian.com>
1320
1321         * metadata.c (mono_metadata_generic_param_equal): We always have
1322         an owner.
1323
1324         * class.c
1325         (mono_class_from_generic_parameter): We need to have an owner.
1326         (my_mono_class_from_generic_parameter): Likewise.
1327
1328         * reflection.c (mono_reflection_setup_generic_class): Renamed to
1329         mono_reflection_create_generic_class() and added a new
1330         mono_reflection_setup_generic_class().  
1331         (mono_reflection_initialize_generic_param): If we're a nested
1332         generic type and inherited from the containing class, set our
1333         owner to the outer class.
1334
1335 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
1336
1337         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
1338
1339         * reflection.c (mono_method_body_get_object): New function to create
1340         a MethodBody object.
1341
1342         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
1343
1344 2004-10-11  Martin Baulig  <martin@ximian.com>
1345
1346         * metadata.c (_mono_metadata_type_equal): Renamed to
1347         do_mono_metadata_type_equal() and made static.
1348
1349 2004-10-11  Martin Baulig  <martin@ximian.com>
1350
1351         * appdomain.c: Bump corlib version number to 28.
1352
1353 2004-10-10  Martin Baulig  <martin@ximian.com>
1354
1355         * class-internals.h
1356         (MonoGenericInst): Added `MonoGenericContainer *container'.
1357         (MonoGenericMethod): Likewise.
1358         (MonoGenericContext): Likewise.
1359         (MonoGenericParam): Added `MonoGenericContainer *owner'.
1360
1361         * metadata.c
1362         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
1363         (do_mono_metadata_parse_generic_inst): Likewise.
1364         (mono_metadata_parse_type_full): New public method.  This is the actual
1365         mono_metadata_parse_type() implementation - with an additional
1366         `MonoGenericContainer *' argument.
1367         (mono_metadata_parse_array_full): Likewise.
1368         (mono_metadata_parse_signature_full): Likewise.
1369         (mono_metadata_parse_method_signature_full): Likewise.
1370         (mono_metadata_parse_mh_full): Likewise.
1371         (mono_type_create_from_typespec): Likewise.
1372         (mono_metadata_interfaces_from_typedef_full): New public method;
1373         this is similar to the other _full() methods, but we take a
1374         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
1375         (mono_metadata_parse_generic_param): Take an additional
1376         `MonoGenericContainer *' argument and lookup the MonoGenericParam
1377         from that container.
1378         (mono_metadata_generic_param_equal): New static method to compare
1379         two type parameters.
1380         (_mono_metadata_type_equal): New static method; takes an
1381         additional `gboolean signature_only' argument - if true, we don't
1382         compare the owners of generic parameters.
1383         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
1384         with a TRUE argument - do a signature-only comparision.
1385
1386         * loader.c: Use the new _full() methods and pass the
1387         MonoGenericContainer to them.
1388
1389         * object-internals.h (MonoReflectionTypeBuilder): Added
1390         `MonoGenericContainer *generic_container' field.
1391         (MonoReflectionMethodBuilder): Likewise.
1392
1393 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
1394
1395         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
1396         case initial images of dynamic assemblies.
1397
1398         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
1399
1400         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
1401
1402         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
1403         length of event->other array.
1404         (typebuilder_setup_events): Ditto.
1405
1406         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
1407         'assembly_by_name' and add an 'assemblies' list.
1408
1409         * assembly.h assembly.c: Add a new search hook for determining whenever
1410         an assembly is already loaded. Use this instead of searching in the
1411         loaded_assemblies list.
1412
1413         * domain.c appdomain.c: Implement the new search hook so loaded 
1414         assemblies are now scoped by appdomain. Fixes #67727.
1415
1416 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
1417
1418         * threads.c (mono_thread_attach): Initialize synch_lock field so
1419         mono_thread_detach works again.
1420
1421         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
1422         'lib' too. Fixes #63130.
1423
1424 2004-10-06  Jackson Harper  <jackson@ximian.com>
1425
1426         * culture-info-tables.h: regenerated.
1427
1428 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
1429
1430         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
1431         implemented by other interfaces in the result. Fixes #65764.
1432         
1433         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
1434         Handle unloadable modules without crashing.
1435
1436         * image.c (load_modules): Revert the previous patch since modules must
1437         have a fixed index inside the array.
1438         
1439         * image.c (load_modules): Don't include native modules in the modules
1440         array.
1441
1442 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
1443
1444         * reflection.h: Add param_defaults field.
1445
1446         * reflection.c: Add support for parameter defaults in dynamic methods.
1447         Fixes #64595.
1448
1449         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
1450         an empty string when a type has no namespace. Fixes #64230.
1451
1452 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
1453
1454         * tabledefs.h: Added "internal" security actions to support non-CAS
1455         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
1456         Note: they do not seems to be used anymore in 2.0 (new metadata format)
1457
1458 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
1459
1460         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
1461         constructor of abstract class. Fixes #61689.
1462
1463 2004-10-04  Martin Baulig  <martin@ximian.com>
1464
1465         * class-internals.h (MonoGenericContainer): New type.
1466         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
1467         `MonoGenericContainer *generic_container'.
1468         (MonoClass): Replaced `gen_params' and `num_gen_params' with
1469         `MonoGenericContainer *generic_container'.
1470
1471         * metadata.c (mono_metadata_load_generic_params): Return a
1472         `MonoGenericContainer *' instead of a `MonoGenericParam *';
1473         removed the `num' argument.
1474
1475 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
1476
1477         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
1478         for dynamic images.
1479
1480         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
1481         machine fields.
1482
1483         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
1484
1485         * reflection.c: Save pe_kind and machine values into the generated
1486         image file.
1487
1488         * appdomain.c: Bump corlib version number.
1489
1490         * object-internals.h: Reorganize layout of LocalBuilder.
1491
1492         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
1493         New helper function.
1494
1495         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
1496         created MonoType for dynamic types. Fixes #66180.
1497
1498 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
1499
1500         * threadpool.c: the ares hashtable needs a critical section around it.
1501         this prevents some nasty segfaults
1502
1503 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
1504
1505         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
1506         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
1507         bug 67324).
1508         
1509 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
1510
1511         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
1512         
1513 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
1514
1515         * image.c: Always canonicalize image file names, to avoid loading
1516         the same assembly twice when referenced using a relative path.
1517
1518 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
1519
1520         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
1521
1522         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
1523
1524         * marshal.c: Fix warnings.
1525
1526 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
1527
1528         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
1529         attempting to marshal the delegate_trampoline as the method_addr.
1530         This patch has a static hashtable of marshalled delegates so that 
1531         we can map delegate_trampoline addresses back to delegates.  This
1532         allows a delegate passed to managed code to be passed back into native
1533         code.  Fixes #67039
1534
1535 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
1536
1537         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
1538
1539         * reflection.c (method_encode_code): Align method headers properly.
1540         Fixes #66025.
1541
1542 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
1543
1544         * marshal.c: In the runtime invoke wrapper, reset the abort
1545         exception if it is cached. This avoids the automatic rethrowal of 
1546         the exception after the catch of the wrapper. Also check for pending
1547         interruptions before calling the managed method. This is done using
1548         the new method emit_thread_force_interrupt_checkpoint, since the
1549         normal checkpoint method is ignored when running the invoke wrapper.
1550         * object.c: If the abort exception is rethrown, set the abort_exc
1551         field of the thread, so it will be rethrown aftere every catch.
1552         * threadpool.c: Only run an interruption checkpoint if what has been
1553         requested is a stop of the thread (aborts will be ignored).
1554         * threads.c: By default, a thread will now never be interrumped while
1555         running the runtime invoke wrapper (this ensures that runtime_invoke
1556         will always return to the caller if an exception pointer is provided).
1557         There is a new special method mono_thread_force_interruption_checkpoint()
1558         to force an interruption checkpoint even if running a protected
1559         wrapper, which is used by the same runtime invoke wrapper to do a check
1560         at a safe point.
1561
1562 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
1563
1564         * object.c, object-internals.h: Implemented mono_release_type_locks,
1565         which releases the cctor locks held by a thread.
1566         * threads.c, threads.h: In thread_cleanup, release cctor locks held
1567         by a thread. Added mono_thread_exit() method to be used to safely stop
1568         a thread.
1569
1570 2004-09-28  Raja R Harinath  <rharinath@novell.com>
1571
1572         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
1573         Move null check before dereference.  Avoid indexing beyond the end
1574         of the 'modules' array.
1575
1576 2004-09-28  Raja R Harinath  <rharinath@novell.com>
1577
1578         * metadata-internals.h (MonoImage): Add module_count field.
1579         * image.c (load_modules): Set image->module_count.
1580         (mono_image_load_file_for_image): Use image->module_count.
1581         * reflection.c (mono_image_load_module): Append to image->modules array 
1582         of dynamic assembly.
1583         (mono_module_get_object): Fix loop to actually increment index.
1584         Use image->module_count.
1585         * assembly.c (mono_assembly_load_references): Use image->module_count.
1586         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
1587         Likewise.
1588
1589 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
1590
1591         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
1592         Avoid assert on generic types.
1593
1594 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
1595
1596         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
1597
1598         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
1599
1600         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
1601         function to convert a MarshalSpec structure to its managed counterpart.
1602
1603         * reflection.c: Fix warnings.
1604         
1605         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
1606         field.
1607
1608         * icall.c (mono_create_icall_signature): Fix build.
1609
1610 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
1611
1612         * icall.c: Add MakePointType icall.
1613
1614         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
1615         warnings.
1616
1617 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1618
1619         * threadpool.c: reuse allocated slots in the queue.
1620
1621 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
1622
1623         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
1624
1625         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
1626
1627         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
1628         previous change.
1629
1630         * tabledefs.h: Add constants for pinvoke attributes BestFit and
1631         ThrowOnUnmappableChar.
1632
1633         * icall.c (ves_icall_Type_GetPacking): New icall.
1634
1635 2004-09-24  Martin Baulig  <martin@ximian.com>
1636
1637         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
1638
1639 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1640
1641         * appdomain.c:
1642         (mono_domain_set): allow setting a domain that is being unloaded.
1643         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
1644         being unloaded.
1645
1646 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
1647
1648         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
1649         the GetCustomAttributes icall.
1650
1651 2004-09-23  Martin Baulig  <martin@ximian.com>
1652
1653         * object-internals.h (MonoReflectionGenericParam): Replaced
1654         'has_ctor_constraint', `has_reference_type' and `has_value_type'
1655         with `guint32 attrs'.
1656
1657 2004-09-23  Martin Baulig  <martin@ximian.com>
1658
1659         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
1660
1661 2004-09-23  Martin Baulig  <martin@ximian.com>
1662
1663         * object-internals.h (GenericParameterAttributes): New enum.
1664
1665 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
1666
1667         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
1668         
1669         * class.c (init_events): Fill out event->other field.
1670
1671         * class.c: Fix warnings.
1672
1673         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
1674
1675 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
1676
1677         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
1678         walk which doesn't supply the IL offset.
1679
1680 2004-09-22  Martin Baulig  <martin@ximian.com>
1681
1682         * reflection.c (mono_reflection_setup_internal_class): If we're
1683         System.ValueType, System.Object or System.Enum, set
1684         `klass->instance_size' and create the vtable.
1685         (mono_reflection_create_internal_class): If we're an enum type,
1686         get the base class from our current corlib.
1687
1688 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
1689
1690         * reflection.h (MonoResolveTokenError): New type.
1691
1692         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
1693         icall.
1694
1695         * icall.c: Add an 'error' argument to the ResolveToken icalls.
1696
1697 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
1698
1699         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
1700         Support also calling constructors, but only for already allocated objects.
1701
1702 2004-09-17  Geoff Norton <gnorton@customerdna.com>
1703
1704         * reflection.c (type_get_qualified_name): If the klass is null
1705         return the typename to avoid a NullRefEx.
1706         (encode_cattr_value): Get the qualified name of the boxed type,
1707         not the underlying enumtype.  Fixes #62984.
1708
1709 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
1710
1711         * marshal.c: Fix problems with previous checkin.
1712
1713 2004-09-21    <vargaz@freemail.hu>
1714
1715         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
1716         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
1717
1718         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
1719
1720 2004-09-21  Geoff Norton <gnorton@customerdna.com>
1721
1722         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
1723         should only return a type for pointers, arrays, and passbyref types.
1724         Fixes bug #63841.
1725
1726 2004-09-21  Martin Baulig  <martin@ximian.com>
1727
1728         * domain.c (mono_debugger_check_runtime_version): New public
1729         function.
1730
1731         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
1732
1733 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
1734
1735         * reflection.c: Added missing sort to the declarative security 
1736         attributes table. MS implementation stops seeing the attributes if the
1737         token number regress in the table (as shown by ildasm and permview).
1738
1739 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
1740
1741         * object-internals.h (MonoReflectionModule): Add 'token' field.
1742         
1743         * reflection.c (mono_reflection_get_token): Add support for Module
1744         and Assembly.
1745         (mono_module_get_object): Set 'token' field.
1746         (mono_module_file_get_object): Set 'token' field.
1747
1748         * icall.c: Add new Assembly and Module icalls.
1749
1750         * appdomain.c: Bump corlib version.
1751
1752 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
1753
1754         * loader.h loader.c class.h class.c: Add helper functions for obtaining
1755         tokens of metadata objects.
1756
1757         * reflection.h reflection.c (mono_reflection_get_token): New function
1758         to obtain the token of a metadata object.
1759
1760         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
1761
1762 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
1763
1764         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
1765         
1766         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
1767
1768 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
1769
1770         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
1771         * object-internals.h: Added 3 MonoArray* members to MonoReflection
1772         AssemblyBuilder to access the permissions set in the class lib.
1773         * reflection.c: Added security attributes encoding step in 
1774         mono_image_build_metadata.
1775         * tabledefs.h: Added new security actions defined in 2.0:
1776         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
1777
1778 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
1779
1780         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
1781         macro parameter.
1782
1783 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
1784  
1785         * locales.c: nullify the ICU_collator member of CompareInfo when it is
1786           finalized. There where random SIGSEVs at program termination, when
1787           an object being finalized was trying to do a string comparison and
1788           the current culture was already finalized.
1789  
1790 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1791
1792         * threads.c: call thread_cleanup before finishing the thread if we get
1793         there.
1794
1795 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
1796
1797         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
1798         assemblies from the parent. Fixes #65665.
1799
1800 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
1801
1802         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
1803         modifiers.
1804
1805 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
1806
1807         * reflection.h: add prototype for mono_get_dbnull_object
1808         * reflection.c: add prototypes for get_default_param_value_blobs 
1809         and mono_get_object_from_blob for fussier compilers
1810
1811 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
1812  
1813         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
1814         false deadlock checks in class initialization.
1815  
1816 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
1817
1818         * image.c (mono_image_addref): Fix comment.
1819
1820         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
1821         possible.
1822
1823 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
1824
1825         * reflection.c (mono_param_get_objects): Modified to return
1826         ParameterInfo.DefaultValue object.
1827
1828         (get_default_param_value_blobs):
1829         (mono_get_object_from_blob):
1830         (mono_get_dbnull_object): New helper routines. 
1831
1832         * object.c (mono_get_constant_value_from_blob): New helper routine
1833         carved out from get_default_field_value ()
1834
1835         * object-internals.h (mono_get_constant_value_from_blob): Added
1836         function declaration.
1837
1838 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
1839
1840         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
1841         referenced assemblies. Fixes #62135.
1842
1843         * exception.h exception.c (mono_get_exception_file_not_found2): New
1844         helper function.
1845
1846 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
1847
1848         * class.h class.c: Add mono_type_get_underlying_type ().
1849
1850 2004-09-09  Geoff Norton <gnorton@customerndna.com>
1851
1852         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
1853         Fix GetTypes() to support dynamically created assemblies.
1854
1855 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
1856
1857         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
1858         
1859         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
1860         previous patch.
1861
1862         * reflection.h reflection.c loader.c: Allow dynamic construction of
1863         pinvoke methods. Fixes #65571.
1864         
1865         * reflection.c (mono_reflection_get_type): Revert previous change since
1866         it causes regressions.
1867
1868 2004-09-08  Martin Baulig  <martin@ximian.com>
1869
1870         * class.c (class_compute_field_layout): Don't call
1871         mono_class_layout_fields() for open generic instances.
1872
1873 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
1874         * threads.c appdomain.c: fix typo in GC macro
1875
1876 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1877
1878         * threads.c: don't call mono_thread_detach() in start_wrapper(),
1879         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
1880
1881 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
1882
1883         * image.c (mono_image_close): Applied patch from 
1884         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
1885         assembly is loaded multiple times from data.
1886         
1887         * image.c (mono_image_open): Fix warning.
1888
1889 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
1890
1891         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
1892         once. Fixes #58334.
1893         
1894         * reflection.c (mono_reflection_create_runtime_class): Initialize
1895         klass->nested_classes. Fixes #61224.
1896
1897 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
1898
1899         * threads.c: sched_yield() on exit, to allow threads to quit.
1900
1901 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
1902
1903         * object.c (mono_unhandled_exception): Remove leftover debug code.
1904
1905 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
1906
1907         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
1908
1909 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
1910
1911         * marshal.c (emit_marshal_array): Really null terminate string arrays.
1912         
1913         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
1914
1915 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
1916
1917         * marshal.c (emit_marshal_array): Null terminate string arrays.
1918         
1919         * marshal.c (raise_auto_layout_exception): Fix warning.
1920
1921         * reflection.c (mono_param_get_objects): Initialize the default value
1922         with DBNull.Value, not null. Fixes #62123.
1923
1924 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
1925
1926         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
1927         throw an exception with a cute explanation.
1928
1929 2004-09-06  Dick Porter  <dick@ximian.com>
1930
1931         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
1932         Close the new process's thread handle, as we don't use it.  The
1933         handle stays around forever otherwise.
1934
1935 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
1936
1937         * object.c (arith_overflow): Fix warning.
1938
1939         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
1940         calling conventions in method refs. Fixes #65352.
1941
1942         * reflection.c: Fix warnings.
1943
1944 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
1945
1946         * icall.c: Add a new icall for Array.Clear
1947
1948 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
1949
1950         * object.c: When allocating an array, we have to throw
1951         an overflow exception if any of the lengths are < 0.
1952
1953 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
1954
1955         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
1956         properly. Also move implementation of string array marshalling to 
1957         managed code. Fixes #42316.
1958
1959 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1960
1961         * assembly.c: provide more information when loading an assembly fails.
1962
1963 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1964
1965         * filewatcher.c: don't expect the development fam package to be
1966         installed.
1967
1968 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
1969
1970         * marshal.c: Make a copy of the signature cookie since it will be
1971         freed by the caller.
1972         
1973         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
1974
1975         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
1976
1977         * metadata.c (mono_metadata_free_marshal_spec): New function to free
1978         marshal specs.
1979
1980         * marshal.c: More refactoring.
1981         
1982         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
1983         smaller functions.
1984
1985 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
1986
1987         * object.c: In mono_message_invoke, fill the output parameter array after
1988           calling the managed method (it was done before the call). This fixes
1989           bug #59299.
1990
1991 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
1992
1993         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
1994         as well.
1995
1996 2004-09-02  Martin Baulig  <martin@ximian.com>
1997
1998         * class.c (mono_class_instance_size): Don't allow generic type
1999         definitions or open generic instances.
2000         (mono_class_array_element_size): If we're a value type, call
2001         mono_class_instance_size() on the original class.
2002
2003         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
2004         handle generic instances.
2005
2006         * mono-debug-debugger.c (write_type): Handle generic instances
2007         like classes.
2008
2009 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
2010
2011         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
2012         the allocation request fails. Fixes #65089.
2013
2014         * object.c (mono_runtime_free_method): Do not call mono_free_method.
2015         
2016         * object.c (mono_runtime_free_method): New function to free a dynamic
2017         method.
2018
2019         * marshal.c (mono_delegate_free_ftnptr): New function to free the
2020         delegate trampoline.
2021
2022         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
2023         with hasthis as dynamic,
2024
2025         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
2026
2027         * domain.c (mono_jit_info_table_remove): New function to remove an
2028         entry from the jit info table.
2029
2030         * class-internals.h (MonoMethod): Add 'dynamic' field.
2031
2032         * loader.c: Fix warnings.
2033
2034 2004-09-01  Martin Baulig  <martin@ximian.com>
2035
2036         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
2037         instead of mono_debugger_lock() because the latter one is a no-op
2038         unless running in the debugger.
2039
2040 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
2041
2042         * class.c (class_compute_field_layout): Classes with auto-layout or
2043         reference fields are not blittable.
2044         
2045 2004-09-01  Dick Porter  <dick@ximian.com>
2046
2047         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
2048         mono_image_get_filename() to get the assembly location.
2049
2050         * icall.c:
2051         * metadata.h: Fix compile warnings
2052
2053 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
2054
2055         * class.c (class_compute_field_layout): System.Object is blittable.
2056
2057         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
2058         as in/out. Fixes #59909.
2059
2060 2004-09-01  Martin Baulig  <martin@ximian.com>
2061
2062         * metadata.h (MONO_TYPE_ISREFERENCE): Call
2063         mono_metadata_generic_inst_is_valuetype() if we're a generic
2064         instance to check whether our underlying type is a reference type.
2065
2066 2004-09-01  Martin Baulig  <martin@ximian.com>
2067
2068         * metadata.c (mono_type_size): If we're a generic instance, call
2069         mono_class_value_size() for value types.
2070
2071 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
2072
2073         * marshal.c: Implement more custom marshalling functionality. Fixes
2074         #64915.
2075
2076 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
2077
2078         * mono-debug.c, debug-mono-symfile.c: add some locking love.
2079
2080 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
2081
2082         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
2083
2084         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
2085
2086         * icall.c: Fix some warnings.
2087
2088         * threads.c (abort_appdomain_thread): Fix unref errors.
2089         (mono_thread_current): Fix THREAD_DEBUG define.
2090
2091 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
2092
2093         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
2094
2095         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
2096
2097 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
2098
2099         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
2100         string arrays.
2101
2102 2004-08-28  Martin Baulig  <martin@ximian.com>
2103
2104         * metadata.c
2105         (mono_metadata_generic_inst_is_valuetype): New public function.
2106
2107         * metadata.h (MONO_TYPE_ISSTRUCT): Call
2108         mono_metadata_generic_inst_is_valuetype() if we're a generic
2109         instance to check whether our underlying type is a valuetype.
2110
2111 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
2112
2113         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
2114         #63768.
2115
2116 2004-08-25  Martin Baulig  <martin@ximian.com>
2117
2118         * loader.c (mono_get_method_from_token): Abstract methods can also
2119         be generic and thus have type parameters.
2120
2121         * metadata-internals.h
2122         (MonoDynamicImage): Added `GPtrArray *gen_params'.
2123
2124         * reflection.c (mono_image_get_generic_param_info): Don't create a
2125         metadata row, just add an entry to the `gen_params' array.
2126         (build_compressed_metadata): Sort the `gen_params' array and then
2127         actually create the metadata.
2128
2129 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2130
2131         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
2132
2133 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
2134
2135         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
2136
2137 2004-08-24  Martin Baulig  <martin@ximian.com>
2138
2139         * class.cs (mono_class_is_subclass_of): Like an interface, a
2140         generic instance also derives from System.Object.
2141
2142 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
2143
2144         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
2145         custom modifiers to be in any order. Fixes #61990.
2146
2147 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
2148
2149         * object.c: Register mono_object_new_fast icall.
2150         
2151         * object.c (mono_class_get_allocation_ftn): Return to calling
2152         mono_object_new_fast, since it seems faster to compute the object 
2153         size in unmanaged code than passing it as a parameter.
2154
2155         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
2156
2157         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
2158         this function with Boehm as the oom handler, so we don't have to check
2159         the result of GC_malloc.
2160
2161         * object.c: Remove checks for oom.
2162
2163         * object.h object.c (mono_class_get_allocation_ftn): New function to
2164         return the icall which can be used to allocate an instance of a given
2165         class. 
2166
2167         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
2168
2169         * class-internals.h: Add 'enabled' field.
2170
2171 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
2172
2173         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
2174
2175 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
2176         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
2177         value 0x0010.
2178
2179 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
2180
2181         * appdomain.c: use the Tls function for appdomain too,
2182         at Zoltan's request. Actually return in mono_context_get
2183
2184         * appdomain.c, profiler.c, threads.c: use __thread
2185
2186 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
2187
2188         * appdomain.c threads.c: Call GC_CreateThread on windows.
2189
2190         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
2191         multiple libraries since this don't work on windows.
2192
2193 2004-08-18  Martin Baulig  <martin@ximian.com>
2194
2195         * class-internals.h
2196         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
2197         MonoMethodHeader.
2198
2199         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
2200         MonoMethodNormal since we also need it for abstract and interface
2201         methods.
2202
2203         * reflection.c
2204         (build_compressed_metadata): Sort the GenericParam table.
2205         (mono_image_create_token): Added `gboolean create_methodspec'
2206         argument; this is false when generating a MethodImpl token.
2207         (reflection_methodbuilder_to_mono_method): Abstract and interface
2208         methods may also have generic parameters.
2209
2210 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
2211
2212         * appdomain.c: thread local alloc
2213
2214 2004-08-17  Martin Baulig  <martin@ximian.com>
2215
2216         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
2217
2218         * icall.c
2219         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
2220         argument.
2221
2222         * class.c (mono_type_get_full_name): New public function.
2223         (mono_type_get_name): Don't include the type arguments.
2224
2225 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
2226
2227         * Makefile.am: Build static versions of libmetadata and libmonoruntime
2228         for inclusion into the mono executable.
2229
2230 2004-08-16  Martin Baulig  <martin@ximian.com>
2231
2232         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
2233         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
2234
2235 2004-08-14  Martin Baulig  <martin@ximian.com>
2236
2237         * class.c (dup_type): Also copy the `byref' field.
2238
2239 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
2240
2241         * reflection.c (create_dynamic_mono_image): Revert the last change 
2242         since it breaks bootstrap.
2243
2244 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
2245
2246         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
2247
2248         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
2249         not free them with g_free.
2250
2251 2004-08-11  Martin Baulig  <martin@ximian.com>
2252
2253         * reflection.c (mono_reflection_setup_internal_class): Also call
2254         mono_class_setup_mono_type() if we already have a `tb->type.type'.
2255
2256 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
2257
2258         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
2259         called during default (first) AppDomain creation. Keep track of
2260         Evidence when loading assemblies.
2261
2262 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
2263
2264         * opcodes.c, opcodes.h: reduce runtime relocations.
2265
2266 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
2267
2268         * culture-info.h, locales.c: fixes and chages to sue the new
2269         optimized format of the locale data.
2270         * culture-info-tables.h: regenerated.
2271
2272 2004-08-06  Geoff Norton <gnorton@customerdna.com>
2273         
2274         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
2275
2276 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
2277
2278         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
2279         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
2280         * domain-internals.h: icall declaration.
2281         * icall.c: icall registration.
2282         * object-internals.h: New fields in MonoAssembly for CAS.
2283
2284 2004-08-05  Duncan Mak  <duncan@ximian.com>
2285
2286         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
2287         CEE_LDELEM_ANY.
2288
2289 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
2290
2291         * reflection.c: fix to deal with object[] arrays in custom ctors
2292         (bug #62550).
2293
2294 2004-08-05  Martin Baulig  <martin@ximian.com>
2295
2296         * class.c (mono_class_array_element_size): Added support for
2297         generic instances and correctly handle "recursive" types.
2298
2299 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
2300
2301         * assembly.c: Fix warnings.
2302
2303 2004-08-04  Martin Baulig  <martin@ximian.com>
2304
2305         * class.c
2306         (mono_type_get_name_recurse): Added `gboolean include_arity'
2307         argument specifying whether or not we should include the generic
2308         arity in the type name.
2309         (_mono_type_get_name): New static function.
2310         (mono_class_setup_vtable): If we're a generic instance, don't
2311         include the generic arity in the names of explicit method
2312         implementations.        
2313
2314 2004-08-03  Martin Baulig  <martin@ximian.com>
2315
2316         * class.c (mono_type_get_name_recurse): Enclose the generic type
2317         arguments in `<', '>'.
2318
2319 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
2320
2321         * gc.c: make GC warning messages use the trace API, they are just
2322         noise to most of the users.
2323
2324 2004-08-03  Martin Baulig  <martin@ximian.com>
2325
2326         * debug-mono-symfile.c (read_string): Correctly read the string.
2327
2328 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
2329
2330         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
2331         
2332         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
2333         icalls.
2334         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
2335
2336 2004-07-30  Martin Baulig  <martin@ximian.com>
2337
2338         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
2339         Reflect latest symbol writer changes.   
2340
2341 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
2342
2343         * object.c: always create an object if null is passed
2344         to Invoke() where a valuetype is expected.
2345
2346 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
2347
2348         * marshal.c (mono_marshal_init): make managed
2349         signatures match native ones better for 64bits.
2350
2351 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2352
2353         * appdomain.c: hack to build correctly the private bin path on windows.
2354         Fixes bug #61991.
2355
2356 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
2357
2358         * assembly.c: Load mscorlib from the correct framework directory
2359           (mono/<version>/mscorlib.dll).
2360         * appdomain.h: Added prototypes for new functions.
2361         * internals.h: Added some prototypes.
2362         * domain.c: When initializing the runtime, get from the executable and
2363           the configuration files the runtime version that the app supports.
2364           Added support methods for reading app.exe.config. Added list of versions
2365           supported by the JIT. Added two new methods: mono_init_from_assembly,
2366           which initializes the runtime and determines the required version from
2367           the provided exe file, and mono_init_version, which initializes
2368           the runtime using the provided version.
2369         * icall.c: Get machine.config from version-specific directory.
2370         * reflection.c: When generating an image, embed the version number
2371           of the current runtime.
2372
2373 2004-07-28  Dick Porter  <dick@ximian.com>
2374
2375         * socket-io.c
2376         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
2377         returned sockaddr size before creating the remote address object.
2378         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
2379         61608.
2380
2381 2004-07-28  Dick Porter  <dick@ximian.com>
2382
2383         * locales.c (string_invariant_compare_char): Fix invariant char
2384         compares between upper and lower cases.  Fixes bug 61458.
2385
2386 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
2387         
2388         * marshal.c: actually cache stelem.ref wrappers.
2389         
2390 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
2391
2392         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
2393         sections and remove the mono_cli_rva_map () function.
2394
2395 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
2396
2397         * debug-mono-symfile.c: fix one more endianess issue, from a patch
2398         by Geoff Norton (<gnorton@customerdna.com>).
2399
2400 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
2401
2402         * class.c: fix class loads for pointer types (typeof(int) !=
2403         typeof(int*)).
2404
2405 2004-07-27  Martin Baulig  <martin@ximian.com>
2406
2407         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
2408         reading the debugging information from an external ".mdb" file.
2409
2410 2004-07-24  Martin Baulig  <martin@ximian.com>
2411
2412         * reflection.c (mono_image_get_type_info): Only write a class
2413         layout entry if we actually have a size or a packing size.
2414
2415 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
2416
2417         * reflection.c (type_get_fully_qualified_name): 
2418         insert cast to get type checking of ?: with non-gcc compilers
2419
2420 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
2421
2422         * rand.c: use g_getenv for both lookups of
2423         MONO_EGD_SOCKET
2424
2425 2004-07-17  Martin Baulig  <martin@ximian.com>
2426
2427         * reflection.c (mono_reflection_bind_generic_method_parameters):
2428         Set `gmethod->reflection_info'.
2429
2430 2004-07-17  Martin Baulig  <martin@ximian.com>
2431
2432         * class.c (mono_class_create_from_typedef): Insert the newly
2433         created class into the hash table before computing the interfaces
2434         since we could be called recursively.
2435
2436 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
2437
2438         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
2439         function to implement stelem.ref in managed code
2440         * class-internals.h, debug-helpers.c: a new wrapper type
2441         for the above.
2442
2443 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
2444
2445         * gc.c: allow GC handles to work even when no GC is compiled in.
2446         Fix part of bug #61134 (GetAddrOfPinnedObject).
2447
2448 2004-07-13  Peter Williams  <peter@newton.cx>
2449  
2450         * process.c (complete_path): Make sure we don't attempt to execute
2451         directories.
2452  
2453 2004-07-12  Geoff Norton <gnorton@customerdna.com>
2454
2455         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
2456           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
2457           and will add/subtract the hour if needed
2458
2459 2004-07-12  Martin Baulig  <martin@ximian.com>
2460
2461         * reflection.c (mono_field_get_object): If we have
2462         `field->generic_info', take the attributes from
2463         `field->generic_info->generic_type'.    
2464
2465 2004-07-12  Martin Baulig  <martin@ximian.com>
2466
2467         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
2468         This function must be called before initializing the runtime.
2469         (mono_debug_init_1): New function; call this after initializing
2470         the runtime, but before loading the assembly.  It tells the
2471         debugger to load corlib and the builtin types.
2472
2473         * mono-debug-debugger.c: Did some larger changes in the debugging
2474         code; support recursive class declarations, make sure we actually
2475         add all classes.
2476
2477 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2478
2479         * debug-helpers.c: undo my previous patch and fixed the real issue in
2480         ../mini/exceptions-x86.c
2481
2482 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2483
2484         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
2485         when no HOME env. variable was set and a NullRef was thrown in a .cctor
2486         called from other .cctors.
2487
2488 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
2489
2490         * loader.c: Removed the mono_loader_wine_init hack now that we are
2491         doing a managed version of Windows.Forms.
2492
2493 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
2494
2495         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
2496         threadpool.c, threads.c: remove static data from rootset.
2497
2498 2004-07-09  Dick Porter  <dick@ximian.com>
2499
2500         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
2501         Don't do any more processing if the matched length was 0.  It was
2502         increasing the size of the string before.  Fixes bug 61167.
2503
2504 2004-07-09  Dick Porter  <dick@ximian.com>
2505
2506         * socket-io.h:
2507         * socket-io.c
2508         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
2509         Add support for SO_PEERCRED if its available.
2510
2511 2004-07-09  Peter Bartok <pbartok@novell.com>
2512         * loader.c: winelib.exe.so error message is now only displayed if
2513         MONO_DEBUG is set. To help us avoid questions when people are trying
2514         out the new Managed.Windows.Forms.
2515
2516 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
2517
2518         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
2519         for isinst and castclass wrappers.
2520
2521         * class-internals.h icall.c: Move registration and lookup of JIT icalls
2522         to libmetadata from the JIT, so they could be used by the marshalling
2523         code and the interpreter.
2524
2525         * marshal.c: Register marshalling related JIT icalls here instead of
2526         in mini.c. Use CEE_MONO_ICALL instead of the family of 
2527         CEE_MONO_PROC<x> opcodes to call marshalling functions.
2528
2529         * metadata.h: Remove unneeded marshalling conversions.
2530
2531         * opcodes.c: Update for new opcodes.
2532         
2533 2004-07-08  Martin Baulig  <martin@ximian.com>
2534
2535         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
2536         (mono_debug_get_domain_data): Make this function static.
2537
2538 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
2539
2540         * gc.c, object.h: add nice GC handle API for embedders.
2541
2542 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
2543
2544         * reflection.c: more changes for the new api
2545
2546         * object.c: When we reflect on a field w/ a constant value, it
2547         will not have a memory location, so we must access metadata. Also,
2548         allow easier reading of strings so that we can read them from
2549         the constant data.
2550
2551         * class.c (mono_class_layout_fields): no need for literal fields here.
2552
2553         * class-internals.h: api changes for const fields
2554
2555         * icall.c (ves_icall_get_enum_info): use new apis for const fields
2556
2557 2004-07-06  Martin Baulig  <martin@ximian.com>
2558
2559         * mono-debug.h: Increment version number to 44.
2560
2561         * mono-debug.c (mono_debug_add_wrapper): The second argument is
2562         now a gpointer, rewrote this whole method.
2563
2564         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
2565         function.  Add information about the wrapper in a new "misc table".
2566
2567         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
2568         for the new misc table.
2569
2570 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
2571
2572         * metadata-internals.h image.c: Add a cache for helper signatures.
2573
2574         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
2575
2576 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
2577
2578         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
2579         delegates from a delegate. Fixes #61033.
2580         
2581         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
2582         marshalling of stringbuilder arrays. Fixes #59900.
2583
2584 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
2585
2586         * icall.c: Add EnumBuilder:setup_enum_type icall.
2587
2588 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
2589
2590         * icall.c: Added a new icall for the property version of
2591         OffsetOfStringData.
2592
2593 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
2594
2595         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
2596         it has a constant size across platforms.
2597
2598         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
2599         stack trace.
2600
2601 2004-06-29  Martin Baulig  <martin@ximian.com>
2602
2603         * mono-debug.c (mono_debug_add_method): Protect the whole function
2604         in mono_debugger_lock(), not just parts of it.
2605
2606 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
2607
2608         * reflection.c: make sure padding bytes in heaps are zeroed.
2609
2610 2004-06-24  David Waite  <mass@akuma.org>
2611
2612         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
2613         image.c, loader.c, locales.c, marshal.c, metadata.c,
2614         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
2615         string-icalls.c, threads.c: change to C90-style comments from C99 /
2616         C++ -style
2617
2618 2004-06-24  Dick Porter  <dick@ximian.com>
2619
2620         * threads.c
2621         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
2622         return createdNew.  Fixes bug 60412.
2623
2624         * threads-types.h: 
2625         * icall.c: Add createdNew parameter to CreateMutex icall
2626
2627 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
2628
2629         * reflection.c, object-internals.h: save default value in params.
2630
2631 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2632
2633         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
2634         no need to build a new path combining that with the application base.
2635         Fixes bug #60442.
2636
2637 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
2638
2639         * reflection.c: fixed minor standard compliance issues.
2640
2641 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
2642
2643         * reflection.c: fixed issue with encoding some custom attributes
2644         (arrays in properties and fields, bug #60411).
2645
2646 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2647
2648         * reflection.c: fix start address when copying the public key token.
2649
2650 2004-06-23  Martin Baulig  <martin@ximian.com>
2651
2652         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
2653         the `exc' object in a static object to put it into the GC's root set.
2654
2655 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
2656
2657         * reflection.c: make mono_reflection_setup_internal_class ()
2658         callable a second time to setup a new parent class.
2659
2660 2004-06-23  Dick Porter  <dick@ximian.com>
2661
2662         * threads.c: Check for WAIT_IO_COMPLETION return values.
2663
2664 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
2665
2666         * appdomain.c: Removed the g_free on the public key token. Now copy 
2667         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
2668         * assembly.c: Added public key token string value when loading 
2669         assemblies. Fix bug #60439.
2670         * icall.c: Added missing informations (like public key) in 
2671         GetReferencedAssemblies. Fix #60519.
2672         * image.h: Changed definition for public key token from const char*
2673         public_tok_value to guchar public_key_token [17];
2674         * reflection.c: Updated for changes to public key token.
2675
2676 2004-06-22  Lluis Sanchez Gual
2677
2678         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
2679         for the field in base classes.
2680
2681 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
2682
2683         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
2684         mark headers as not supported, they are installed only for use by the
2685         debugger.
2686
2687 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
2688
2689         * *.c, *.h: avoid namespace pollution in public headers.
2690
2691 2004-06-21  Martin Baulig  <martin@ximian.com>
2692
2693         * exception.c (mono_get_exception_security): It's in
2694         "System.Security", not in "System".
2695
2696         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
2697         the exception classes.
2698
2699 2004-06-21  Martin Baulig  <martin@ximian.com>
2700
2701         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
2702         Protect the exception object from being finalized.
2703
2704 2004-06-21  Martin Baulig  <martin@ximian.com>
2705
2706         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
2707         public function.
2708
2709 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
2710
2711         * reflection.c: Load the assembly in mono_reflection_type_from_name,
2712         if it was not loaded before. Fix parts of #60439.
2713
2714 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
2715
2716         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
2717         code that was broken since Ben's change: wrappers are now
2718         dependent on the method signature only again.
2719
2720 2004-06-21  Martin Baulig  <martin@ximian.com>
2721
2722         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
2723         added interface support.
2724
2725 2004-06-21  Martin Baulig  <martin@ximian.com>
2726
2727         * class.c (mono_vtable_get_static_field_data): New public method.
2728
2729 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
2730
2731         * filewatcher.c : Windows build fix to be compliant with API changes.
2732
2733 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
2734
2735         * class.h, class.c: more accessors.
2736         * metadata.h, metadata.c: prepare for hiding MonoType and
2737         MonoMethodSignature: people should use the accessors from now on
2738         outside of the tree.
2739
2740 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
2741
2742         * *.c, *.h: more API cleanups.
2743
2744 2004-06-18  Jackson Harper  <jackson@ximian.com>
2745
2746         * assembly.c: Trace loading assemblies.
2747         * loader.c: Trace loading native libraries.
2748         * mono-config.c: Trace loading config files.
2749         
2750 2004-06-18  Dick Porter  <dick@ximian.com>
2751
2752         * locales.c: Tell ICU the lengths of strings, it can cope with
2753         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
2754
2755 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
2756
2757         * image.c: swapped name/filename;
2758
2759 2004-06-18  Martin Baulig  <martin@ximian.com>
2760
2761         * mono-debug-debugger.c (write_class): Write the parent class at
2762         the end of the header.
2763
2764 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
2765
2766         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
2767
2768 2004-06-17  Raja R Harinath  <rharinath@novell.com>
2769
2770         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
2771         (bundle_obj): New conditional define.
2772         (BUILT_SOURCES): Remove.
2773         ($(bundle_srcs)): Make parallel-make safe.
2774         (libmonoruntime_la_LIBADD): Make unconditional.
2775         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
2776         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
2777
2778 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
2779
2780         * culture-info-tables.h: It was inconsistent with the latest
2781           supp info files.
2782
2783 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
2784
2785         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
2786         be loaded.
2787
2788         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
2789         with gcc 2.95.
2790
2791 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
2792
2793         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
2794         cleaned up public header threads.h.
2795
2796 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
2797
2798         * Makefile.am, *.c, *.h: more API cleanups.
2799
2800 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
2801
2802         * Makefile.am: removed monosn from compilation.
2803         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
2804         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
2805         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
2806         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
2807         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
2808         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
2809
2810 2004-06-15  Jackson Harper  <jackson@ximian.com>
2811
2812         * assembly.c: Make locales lower case when searching the GAC for
2813         assemblies. gacutil will always make locales lowercase when
2814         installing so this effectively makes them case insensitive.
2815         
2816 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
2817
2818         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
2819         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
2820           parameter which allows to choose whether the wait can be interrupted or 
2821           not. Also added the method mono_monitor_enter(), which locks the monitor
2822           using an infinite wait and without allowing interruption.
2823           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
2824           interrupted.
2825         * object.h: Added new fields in MonoThread. suspend_event holds the event
2826           used to susped/resume the thread. synch_lock is the lock object to use for
2827           modifying the thread state.
2828         * threads.c: Use the new synch_lock object for locking, instead of "this",
2829           which can generate deadlocks.
2830           Moved thread state change in Thread.Sleep and Thread.Join from managed
2831           to unmanaged code. This avoids a deadlock when the thread was suspended
2832           just after acquiring the thread lock.
2833           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
2834           Implemented Thread.Suspend using an event instead of ThreadSuspend,
2835           which is not fully implemented in the io-layer.
2836         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
2837
2838 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
2839
2840         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
2841         threads-types.h: more API cleanups.
2842
2843 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
2844
2845         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
2846         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
2847         threadpool.c, threads.c: first pass at the exported API cleanup.
2848
2849 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
2850
2851         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
2852
2853 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2854
2855         * icall.c: added internalGetHome.
2856
2857 2004-06-14  Dick Porter  <dick@ximian.com>
2858
2859         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
2860         possible to return successfully when '.' or '..' were the only
2861         entries in a directory, but were skipped.  The MonoIOStat was not
2862         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
2863         Fixes bug 59574.
2864
2865 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
2866
2867         * reflection.c: make binaries run on .Net 1.1 by default.
2868
2869 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
2870
2871         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
2872
2873 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
2874
2875         * marshal.c: keep track of struct size with explicit layout
2876         (bug #59979).
2877
2878 2004-06-12  Martin Baulig  <martin@ximian.com>
2879
2880         * mono-debug-debugger.c: Comment out a debugging g_message().
2881
2882 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
2883
2884         * reflection.c, reflection.h: do not free custom attrs that are cached.
2885         * icall.c: use braces to make code clearer.
2886
2887 2004-06-11  Martin Baulig  <martin@ximian.com>
2888
2889         * class.h (MonoInflatedField): New type.
2890         (MonoClassField): Replaced `MonoType *generic_type' with
2891         `MonoInflatedField *generic_info'.
2892
2893         * icall.c
2894         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
2895
2896 2004-06-11  Martin Baulig  <martin@ximian.com>
2897
2898         * reflection.c (mono_image_create_method_token): Correctly encode
2899         varargs methods.
2900
2901 2004-06-11  Martin Baulig  <martin@ximian.com>
2902
2903         * metadata.c (mono_metadata_parse_method_signature): When parsing
2904         a MethodDef which has VarArgs, also set sentinelpos if we don't
2905         have any parameters.
2906
2907 2004-06-11  Martin Baulig  <martin@ximian.com>
2908
2909         * verify.c (mono_method_verify): In CEE_CALL, use
2910         mono_method_get_signature() to get the method's signature, unless
2911         we're a PInvoke method.
2912
2913 2004-06-10  Jackson Harper  <jackson@ximian.com>
2914
2915         * assembly.c: Use <path>/lib/mono/gac for the extra paths
2916         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
2917         logical name as the supplied path is just a prefix to the gac not
2918         the direct path to it.
2919         
2920 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
2921
2922         * reflection.c: make the token for a created method match
2923         the token of the MethodBuilder it was created from
2924         (IKVM requires this behaviour now).
2925
2926 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
2927
2928         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
2929         reflection.c, socket-io.c: leak fixes.
2930
2931 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
2932
2933         * icall.c: handle sentinel pos in vararg methods in position different
2934         from 0.
2935
2936 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2937
2938         * culture-info-tables.h: freshly generated.
2939
2940 2004-06-09  Martin Baulig  <martin@ximian.com>
2941
2942         * loader.c (mono_get_method_constrained): Call `mono_class_init
2943         (constrained_class)'.   
2944
2945 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
2946
2947         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
2948         any methods. Fixes #59629.
2949
2950 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
2951
2952         * culture-info-tables.h: reflecting locale-builder updates.
2953
2954 2004-06-08  Dick Porter  <dick@ximian.com>
2955
2956         * object.h:
2957         * locales.c: Fixed compile warnings, including a real bug in
2958         CompareInfo_internal_compare.
2959         
2960 2004-06-08  Dick Porter  <dick@ximian.com>
2961
2962         * locales.c
2963         (ves_icall_System_Globalization_CompareInfo_internal_index):
2964         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
2965         Double-check the resuls of usearches, because ICU currently
2966         ignores most of the collator settings here.  Fixes bug 59720.
2967         
2968 2004-06-08  Dick Porter  <dick@ximian.com>
2969
2970         * locales.c
2971         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
2972         Fix memory leak and segfault-causing typo.  No idea how this one
2973         lasted so long without being noticed.
2974
2975 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
2976
2977         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
2978         any methods. Fixes #59629.
2979
2980 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2981
2982         * assembly.c:
2983         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
2984         own the critical section before). Removed dead code (that's done
2985         in the preload hook).
2986
2987         (mono_assembly_load_with_partial_name): call the preload hook.
2988
2989 2004-06-08  Martin Baulig  <martin@ximian.com>
2990
2991         * metadata.c (mono_metadata_signature_alloc): Default
2992         `sentinelpos' to -1.
2993
2994         * reflection.c (mono_image_get_array_token): Likewise.
2995
2996 2004-06-08  Martin Baulig  <martin@ximian.com>
2997
2998         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
2999
3000         * metadata.c (mono_metadata_parse_method_signature): When parsing
3001         a MethodDef which has VarArgs, set sentinelpos.
3002
3003         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
3004         `gint16' since we're using -1 for non-varargs methods.
3005
3006         * reflection.c
3007         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
3008         (method_encode_signature): Added varargs support.
3009         (method_builder_encode_signature): Likewise.
3010         (mono_image_get_varargs_method_token): New static method.
3011         (mono_image_create_method_token): New public method; this is
3012         called via an icall instead of mono_image_create_token() when
3013         calling a varargs method.       
3014
3015 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
3016
3017         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
3018
3019 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
3020
3021         * culture-info-tables.h : Reflecting the latest locale-builder that
3022           fixed empty array representation ({} to {0}).
3023
3024 2004-06-07  Jackson Harper  <jackson@ximian.com>
3025
3026         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
3027         looking up extra gac paths. This allows MONO_GAC_PATH to act
3028         exactly like a prefix.
3029         
3030 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
3031
3032         * reflection.c (mono_reflection_type_from_name): Make a copy of the
3033         type name before modifying it. Fixes #59405.
3034
3035 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
3036
3037         * culture-info.h: added fields for "all datetime patterns".
3038         * locales.c: (  ves_icall_System_Globalization_CultureInfo
3039           _construct_datetime_format ()): fill xxx_patterns fields.
3040         * object.h: added fields for "all datetime patterns" to
3041           MonoDateTimeFormatInfo.
3042         * culture-info-tables.h: reflecting locale-builder updates.
3043
3044 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
3045
3046         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
3047         the event has no add and remove methods. Fixes #59629.
3048
3049 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
3050
3051         * object.c: Fixed possible integer overflow when allocating large
3052         strings.
3053
3054 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
3055
3056         * culture-info-tables.h: reflecting locale-builder updates.
3057
3058 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
3059
3060         * culture-info-tables.h: reflecting locale-builder updates.
3061
3062 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
3063
3064         * culture-info-tables.h: reflecting locale-builder updates.
3065
3066 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
3067
3068         * threads.c: Made Thread.Sleep abortable.
3069
3070 2004-06-02  Martin Baulig  <martin@ximian.com>
3071
3072         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
3073
3074         * debug-mono-symfile.h: Bumped symbol file version number to 37.
3075
3076 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
3077
3078         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
3079
3080 2004-05-30  Jackson Harper  <jackson@ximian.com>
3081
3082         * reflection.c: Do not hardcode assembly versions or public key
3083         tokens anymore. All of this except the corlib section was dead
3084         code anyways.
3085         
3086 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
3087
3088         * object.c (mono_runtime_invoke_array): Automatically create boxed
3089         objects for byref valuetypes if needed. Fixes #59300.
3090         
3091         * object.c (mono_method_return_message_restore): Handle 
3092         MONO_TYPE_OBJECT as well.
3093
3094 2004-05-28  Jackson Harper  <jackson@ximian.com>
3095
3096         * reflection.c: The modified type encoding was causing build
3097         problems. Reverted for now.
3098         
3099 2004-05-28  Jackson Harper  <jackson@ximian.com>
3100
3101         * reflection.c/h: Take an assembly ref so that we dont create
3102         fully qualified names when encoding types in the same assembly as
3103         the custom attribute being emitted.
3104         * appdomain.c: Increment version number.
3105         
3106 2004-05-26  Duncan Mak  <duncan@ximian.com>
3107
3108         * icall.c
3109         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
3110         Set the full version number (major, minor, build, revision).
3111
3112 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
3113
3114         * marshal.c (emit_struct_conv): increment src/dst after blit
3115         (mono_marshal_get_managed_wrapper,
3116         mono_marshal_get_native_wrapper): make sure we have marshalling
3117         info before marshalling params (info computation affects
3118         blittable)
3119
3120         * class.c (class_compute_field_layout): correctly deal with
3121         blittable
3122         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
3123         value types (as per what windows dows by default)
3124         (mono_class_setup_mono_type): System.ValueType is blittable
3125         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
3126         blittable
3127
3128         * marshal.c (mono_marshal_load_type_info): flag types  as
3129         non-blittable if the native layout doesn't match the managed
3130         layout
3131
3132 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3133
3134         * appdomain.c: don't add stuff in the private search path that is
3135         above the application base. If application base is not set, there's
3136         no private search path.
3137
3138 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
3139
3140         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
3141         byref struct arguments in native->managed marshalling.
3142
3143 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
3144
3145         * marshal.c (mono_marshal_get_runtime_invoke): correctly
3146         cache methods using signature (special case for methods
3147         that are value type or string class)
3148         
3149         * image.c (mono_image_close): clean up allocated GSList's
3150         in runtime_invoke_cache.
3151
3152 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3153
3154         * mono-config.c: set the correct path for mono_cfg_dir on windows when
3155         there's no MONO_CFG_DIR environment variable defined.
3156
3157 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3158
3159         * threads.c: windows version must be >= 0x0500 to include OpenThread.
3160
3161 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
3162
3163         * threadpool.c: Really wait for 500ms after the async call, even if the wait
3164           is interrumped.
3165         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
3166           before waiting for it, and call CloseHandle after the wait to unref it.
3167           This will make sure that handles are not disposed too early.
3168
3169 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3170
3171         * appdomain.c:
3172         * appdomain.h:
3173         * icall.c: removed
3174         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
3175         needed now.
3176
3177         * object.c: se the application_base only for the domain that runs
3178         Main. Fixes bug #59216,
3179
3180 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3181
3182         * appdomain.c:
3183         * object.c: only the domain in which Main is run have
3184         SetupInformation.ConfigurationFile set, so moved a few lines from
3185         appdomain.c to object.c.
3186
3187 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3188
3189         * appdomain.c: we tried to load [name].(dll|exe), but according
3190         to bug #57710, we must also try [culture]/[name].(dll|exe) and
3191         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
3192         There's a test case attached to bug #58922.
3193
3194 2004-05-27  Dick Porter  <dick@ximian.com>
3195
3196         * icall.c:
3197         * file-io.c: Implemented icalls for locking and unlocking regions
3198         in a file.
3199         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
3200         FALSE on error (fixes both compiler warning and real bug.)
3201
3202 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
3203
3204         * culture-info-tables.h: reflecting locale-builder updates.
3205
3206           (Added missing ChangeLog entry for 05/26)
3207
3208 2004-05-27  Jackson Harper  <jackson@ximian.com>
3209
3210         * locales.c: Fix some cut and paste errors.
3211         
3212 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3213
3214         * mono-config.c: set the correct path for config. directory on windows.
3215
3216 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
3217
3218         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
3219           on win32.
3220
3221 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
3222
3223         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
3224         from pinvoke functions.
3225         
3226         * marshal.c (mono_ftnptr_to_delegate): Implement this.
3227
3228 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
3229
3230         * culture-info-tables.h: reflecting locale-builder updates.
3231
3232 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
3233
3234         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
3235         #59086.
3236
3237 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
3238
3239         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
3240         * icall.c: Modified icalls for RNG.
3241         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
3242         Windows (CryptoAPI).
3243
3244 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
3245
3246         * locales.c: Fix build.
3247
3248 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
3249
3250         * culture-info-tables.h: reflecting locale-builder updates.
3251
3252 2004-05-25  Jackson Harper  <jackson@ximian.com>
3253
3254         * locales.c: When creating the current culture use the $LANGs
3255         specific culture. So DateTimeFormat and NumberFormat entries are created.
3256         
3257 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
3258
3259         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
3260         a char array as parameter.
3261
3262 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
3263
3264         * image.c: In mono_image_open(), always use an absolute path name to
3265           look for already loaded images.
3266
3267 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
3268
3269         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
3270         missing in the windows build (like older cygwin include files).
3271
3272 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
3273
3274         * icall.c: Fixed check for possible integer overflow in Buffer_
3275         BlockCopy icall. Replaced comments style // by /* */.
3276
3277 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
3278
3279         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
3280         
3281         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
3282         check after MONO_VTADDR. Fixes pinvoke2.exe.
3283
3284         * marshal.h marshal.c metadata.h: Add beginnings of support for
3285         ftnptr -> delegate marshalling.
3286
3287 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
3288
3289         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
3290         * threads.c: Fix warnings.
3291
3292 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
3293
3294         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
3295         * icall.c: Registered icalls for Suspend and Resume.
3296         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
3297           Thread.Abort.
3298         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
3299         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
3300         * process.c: Use WaitForSingleObjectEx.
3301         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
3302           checkpoints.
3303         * threads.c, threads.h: Make use of new Ex wait methods. Improved
3304           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
3305           for Suspend and Resume. Added new mono_thread_stop, used for stoping
3306           background threads. Added basic support for Abort in Windows.
3307           Start new threads using a managed delegate invoke wrapper. This wrapper
3308           has an interruption checkpoint that is needed since an interruption
3309           can be requested before the thread leaves the unmanaged code that starts 
3310           the thread.
3311         * marshal.c: Added interruption checkpoint after every native call, and
3312           also before managed calls for wrappers called from unmanaged code to
3313           go into managed code.
3314         * object.h: Added new field in MonoThread to keep track of interruption
3315           requests.
3316
3317 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
3318
3319         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
3320         calls.
3321
3322 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3323
3324         * appdomain.c:
3325         * assembly.c:
3326         * gc.c:
3327         * locales.c:
3328         * mono-config.c:
3329         * rand.c: getenv -> g_getenv (windows!)
3330
3331         * process.c: complete_path is also used on non-windows platforms.
3332
3333 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3334
3335         * icall.c: new signature for Process_Start.
3336
3337         * process.[ch]: new signature for Process_Start. If we're on windows
3338         and UseShellExecute is false, we have to search for the program by
3339         ourselves if we don't get a full path.
3340
3341 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
3342
3343         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
3344         marshalling and call CleanUpNativeData if needed. Fixes #58646.
3345
3346 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3347
3348         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
3349         Fixes bug #58373.
3350
3351 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3352
3353         * process.c: use double quotes to quote program name and arguments on
3354         windows. Fixes bug #58575.
3355
3356 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3357
3358         * file-io.c: don't return "." and ".." when using windows Find*File.
3359
3360 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
3361
3362         * marshal.c: Don't pass wrappers to message init because method 
3363         addressed used to lookup metadata. part of remoting[2|3] fix.
3364
3365 2004-05-15  Jackson Harper  <jackson@ximian.com>
3366
3367         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
3368         path is essentially the same as MONO_PATH except that it points to
3369         GACs instead of lib directories.
3370         * loader.h: The user gac is gone so we dont need function to
3371         enable/disable it.
3372         * mono-config.c: user gac option is now gone.
3373         
3374 2004-05-15  Jackson Harper  <jackson@ximian.com>
3375
3376         * culture-info.h: Make defines more consistent, add calendar data
3377         to the culture info table.
3378         * culture-info-tables.h: Add basic calendar data. Basically
3379         everyone gets default gregorian until all the data is
3380         updated.
3381         * locales.c: Use the new consistent defines. Set calendar data for
3382         culture info objects.
3383         * object.h: add a field for calendar data to CultureInfo
3384         
3385 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
3386
3387         * image.c: image->runtime_invoke_cache is keyed on signatures now.
3388         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
3389         a signature.
3390         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
3391         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
3392         an extra param that is the pointer of the method to invoke. The IL for
3393         the invoke method is no longer specific to the method, but to the
3394         signature of the method. Thus, we can share the same code for multiple
3395         methods. This reduces the number of methods that have to be compiled.
3396
3397 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
3398
3399         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
3400
3401         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3402
3403         * icall.c: Optimize Buffer.BlockCopy.
3404
3405 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3406
3407         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
3408         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
3409         quote). Changed them to "MMMM yyyy".
3410
3411 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
3412
3413         * rand.c
3414         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
3415
3416 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
3417
3418         * reflection.h: Updated after changes to managed structures.
3419
3420         * appdomain.c: Bump corlib version.
3421
3422 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3423
3424         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
3425         windows.
3426
3427 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3428
3429         * Makefile.am: link to ../os/libmonoos.la on windows.
3430
3431         * assembly.c:
3432                 -If MONO_DEBUG, warn about non-existing directories in
3433                 MONO_PATH.
3434                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
3435                 compile time variable.
3436                 -Removed init_default_path and call mono_set_rootdir from
3437                 libmonoos.a instead (windows only).
3438
3439         * assembly.h: declare mono_assembly_getrootdir().
3440
3441         * domain.c:
3442         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
3443
3444         * loader.c: s/getenv/g_getenv/
3445
3446 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
3447
3448         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
3449
3450         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
3451
3452         * metadata.h: Add new marshalling conversions.
3453
3454         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
3455         function.
3456
3457         * reflection.c (mono_reflection_get_type): Lookup the type in all
3458         modules of a multi-module assembly. Fixes #58291.
3459
3460 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
3461
3462         * threads.c: Before aborting a background, set the StopRequested
3463         state.  This avoids throwing the Abort exception.
3464         In mono_thread_manage, don't continue with the shutdown until all
3465         aborted threads have actually stopped.
3466
3467 2004-05-10  Jackson Harper  <jackson@ximian.com>
3468
3469         * locales.c: Remove the modifier from culture names.
3470         
3471 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3472
3473         * Makefile.am: monosn is not installed any more. It has been deprecated
3474         in favor of sn.
3475
3476 2004-05-07  Jackson Harper  <jackson@ximian.com>
3477
3478         * locales.c
3479         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
3480         Fix array construction, add bailout if the length is 0.
3481
3482 2004-05-07  Dick Porter  <dick@ximian.com>
3483
3484         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
3485         machine doesn't have a DNS entry.  Patch by Urs Muff
3486         (umuff@quark.com), fixes bug 57928.
3487
3488 2004-05-06  Jackson Harper  <jackson@ximian.com>
3489
3490         * reflection.c: Handle null PublicTokens properly. alloc mem for
3491         assembly names culture so we dont crash when freeing it.
3492         
3493 2004-05-06  Jackson Harper  <jackson@ximian.com>
3494
3495         * assembly.c: Check the usergac when loading with partial names.
3496         
3497 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
3498
3499         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
3500         does nothing for now (not required for Linux/Windows) but the class
3501         library can call it (and a newer or modified runtime could need it).
3502         * icall.c: Registred icall.
3503
3504 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3505
3506         * loader.c: prints a message on module loading error we set MONO_DEBUG
3507         environment variable.
3508
3509 2004-05-05  Jackson Harper  <jackson@ximian.com>
3510
3511         * appdomain.c: Handle PublicKeyToken=null properly.
3512         
3513 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
3514
3515         * environment.c|h: Added icall ves_icall_System_Environment_
3516         GetOSVersionString to get the current OS version as a string.
3517         * icall.c: Registred icall.
3518
3519 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
3520
3521         * object.c: in mono_object_get_virtual_method(), take into account that
3522         non-virtual methods don't have a slot in the vtable. Check needed when
3523         the object is a proxy.
3524
3525 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
3526
3527         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
3528         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
3529
3530         * object.c (mono_class_compute_gc_descriptor): Fix warning.
3531
3532         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
3533         passed when a valuetype is expected.
3534
3535         * object.c (mono_unhandled_exception): Only set the exit code if the
3536         exception happens in the main thread. Fixes thread5.exe.
3537
3538         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
3539         invalid names. Fixes #58047.
3540
3541 2004-05-03  Jackson Harper  <jackson@ximian.com>
3542
3543         * assembly.c: This line was committed accidently and is unneeded.
3544         
3545 2004-05-03  Jackson Harper  <jackson@ximian.com>
3546
3547         * icall.c: Add new icall for Assembly::LoadWithPartialName
3548         * assembly.c/.h: new function that probes the GAC to load partial
3549         assembly names by Paolo Molaro.
3550         
3551 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3552
3553         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
3554         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
3555         (type_get_fully_qualified_name): Added PublicKeyToken when building a
3556         full type name.
3557
3558 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3559
3560         * appdomain.c: fixed check for 'neutral' culture and removed warning.
3561         * reflection.c: fix bug when parsing a full type name and Version is not
3562         the last thing in the string.
3563
3564 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
3565
3566         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
3567         crashes when it is freed.
3568
3569 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3570
3571         * assembly.c: print the compat warning to stderr.
3572
3573 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
3574
3575         * assembly.c (mono_assembly_load_references): Add a compatibility
3576         hack to run old applications that might be still referencing the
3577         3300-based assemblies, only do this for System.xxx.
3578
3579 2004-05-01  Jackson Harper  <jackson@ximian.com>
3580
3581         * appdomain.c: If the culture is neutral we set it to "".
3582         
3583 2004-04-29  Jackson Harper  <jackson@ximian.com>
3584
3585         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
3586
3587 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3588  
3589         * string-icalls.c: added low overhead function for copying chars
3590         * icall.c: added needed icall for the above function
3591  
3592 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3593
3594         * icall.c: fix return value of get_global_assembly_cache.  Implemented
3595         Environment.GetLogicalDrives.
3596
3597 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
3598
3599         * rand.c: try and talk to egd or prngd
3600         for random bytes if opening devices fail.
3601
3602 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
3603
3604         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
3605         alignment for the type using the native alignment of its members 
3606         instead of using klass->min_align.
3607
3608         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
3609
3610 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3611
3612         * file-io.c:
3613         * socket-io.c: added check for sys/aio.h.
3614
3615 2004-04-28  Dick Porter  <dick@ximian.com>
3616
3617         * threads.c: Don't abort a thread thats already aborting, when
3618         terminating everything.
3619
3620 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3621
3622         * icall.c: added 2 new async calls for Socket.
3623
3624         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
3625         IO on *nix systems.
3626
3627         * threadpool.c: removed unused variable.
3628
3629 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
3630
3631         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
3632
3633 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
3634
3635         * locales.c: put back string_invariant_tolower () and
3636         string_invariant_toupper ().
3637
3638 2004-04-26 David Waite <mass@akuma.org>
3639
3640         * file-io.h:
3641         * socket-io.h:
3642         * threads.h:
3643         * unicode.h: remove comma from end of enumeration declarations
3644
3645 2004-04-26 David Waite <mass@akuma.org>
3646
3647         * debug-mono-symfile.h:
3648         * decimal.c:
3649         * mono_debug.h:
3650         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
3651
3652
3653 2004-04-26  Jackson Harper  <jackson@ximian.com>
3654
3655         * appdomain.c: Increment version number.
3656         
3657 2004-04-26  Jackson Harper  <jackson@ximian.com>
3658
3659         * appdomain.c: Set assembly references public token value when
3660         PublicKeyToken is specified, not the hash_value. Free public token
3661         values when free assembly name data. Previously the public key
3662         token was hex decoded, however we are using hex encoded public key
3663         tokens, so this is not neccasary.
3664         * assembly.c: Lookup assemblies in the gac if their public token
3665         value is set. Add function to allow enabling user gac
3666         lookups. Specify whether or not the assembly was loaded from the
3667         GAC. Compare full assembly names when checking the cache for
3668         assemblies (Temporarily disabled see comment in code). Remove
3669         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
3670         specifies trace-loader they get extra info to stdout on the
3671         loading of assemblies.
3672         * image.h: Add a field for an assembly references public token
3673         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
3674         whether an assembly has been loaded from the GAC.
3675         * image.c: Remove a corlib -> mscorlib name mapping.
3676         * loader.h: Add function to enable/disable the user gac.
3677         * mono-config.c: Check if the usergac is enabled in the config
3678         file.
3679         * icall.c: New icall to determine whether or not an assembly has
3680         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
3681         * tabldefs.h: Add constant for assemblyref flag that specifies a
3682         full public key is used instead of a public token.
3683         * reflection.c: Remove mscorlib -> corlib mappings. Set
3684         PublicTokenValue instead of hash value. This value is a hex
3685         string so it does not need to be expanded.
3686
3687 2004-04-26  Martin Baulig  <martin@ximian.com>
3688
3689         * mono-debug-debugger.c (mono_debugger_initialize): Set
3690         `mono_debugger_initialized' before calling mono_debug_lock().
3691
3692 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
3693
3694         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
3695           InternalToUpper/InternalToLower.
3696         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
3697           removed invariant culture shortcut.  This is now done in managed code.
3698         * locales.c: (string_invariant_toupper/tolower) removed.
3699
3700 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3701
3702         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
3703         Added Poll internal call.
3704
3705         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
3706         call for Poll. Select was too heavy for polling a single socket.
3707
3708         * threadpool.[ch]: added mono_threadpool_cleanup.
3709         * threads.c: use it. Don't use Thread_Abort on windows.
3710
3711 2004-04-23  Martin Baulig  <martin@ximian.com>
3712
3713         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
3714
3715 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
3716
3717         * icall.c: Registred new icalls for key pair protection and added an
3718         icall for Environment.GetFolderPath on Windows.
3719         * security.c|h: Added new icalls for key pair protection.
3720
3721 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3722
3723         * socket-io.c: don't display the non-supported family warning for known
3724         families. Now this is not displayed on windows when checking support
3725         for IPv4/IPv6.
3726
3727 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3728
3729         * class.c: don't display the layout warning for static fields.
3730
3731 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
3732
3733         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
3734         * locales.c, locales.h: Added new icalls for culture-specific
3735         Char.ToLower and Char.ToUpper.
3736
3737 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3738
3739         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
3740         by David Waite.
3741
3742 2004-04-20  Martin Baulig  <martin@ximian.com>
3743
3744         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
3745         of the type name before passing it to mono_reflection_type_from_name().
3746
3747 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
3748
3749         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
3750         encodings here. Fixes #56965.
3751
3752 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
3753
3754         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
3755         fix test on strstr result not that I can see anything that
3756         relies on the result.
3757
3758 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
3759
3760         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
3761         Fixes #57081.
3762
3763         * marshal.c (mono_marshal_get_string_encoding): New helper function.
3764
3765         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
3766         function to determine which marshalling to use for strings. Fixes
3767         #56965.
3768
3769         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
3770
3771         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
3772
3773 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
3774
3775         * icall.c: #include mono-config.h
3776
3777 2004-04-15  Jackson Harper  <jackson@ximian.com>
3778
3779         * culture-info-tables.h: Fix date formats for en-US culture.
3780         
3781 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
3782
3783         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
3784         ThreadPool.SetMinThreads.
3785         * threadpool.c: Implemented ThreadPool.GetMinThreads and
3786         ThreadPool.SetMinThreads.
3787
3788 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
3789
3790         * mono-config.c: also load the .config file in the directory
3791         where the assembly was found.
3792
3793 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
3794
3795         * assembly.c: load per-assembly config files.
3796         * icall.c: decrapified code to get the config dir and moved to
3797         mono-config.c.
3798         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
3799         per-assembly config files. When doing a dll map lookup give precedence
3800         to the per-assembly data.
3801
3802 2004-04-14  Martin Baulig  <martin@ximian.com>
3803
3804         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
3805         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
3806         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
3807
3808         * mono-debugger-debugger.c: While the debugger is locked, remember
3809         whether the symbol tables have changes and send one single
3810         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
3811
3812 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
3813
3814         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
3815
3816         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
3817         function.
3818
3819         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
3820         account when marshalling string arrays. Fixes #56965.
3821
3822 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
3823
3824         * icall.c: Add new icalls mapping for security.
3825         * security.c|h: Add internal calls for WindowsIdentity,
3826         WindowsImpersonationContext and WindowsPrincipal.
3827
3828 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
3829
3830         * class.c: Added comment to ensure the System.MonoDummy class
3831         is removed when no longer necessary
3832
3833 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
3834
3835         * appdomain.c: Pass arguments to the bootstraping exceptions to
3836         minimize JITed methods at boot
3837
3838         * metadata.c (mono_exception_from_name_two_strings): Allow for the
3839         second string to be null.
3840
3841         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
3842         Change the protocol to minimize the JIT methods at startup.  Now
3843         it Returns the internal codepage, if the value of "int_code_page"
3844         is 1 at entry, and we can not compute a suitable code page
3845         number, returns the code page as a string.
3846
3847 2004-04-13  Jackson Harper  <jackson@ximian.com>
3848
3849         * culture-info-tables.h: Fix number of decimal digits for all
3850         english locales.
3851
3852 2004-04-13  Jackson Harper  <jackson@ximian.com>
3853
3854         * icall.c: Clairfy out of sync error message. It is not always
3855         your corlib that is out of sync.
3856
3857 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
3858
3859         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
3860         properties when only the set accessor is overriden. Fixes #55874.
3861
3862 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
3863
3864         * assembly.c (mono_assembly_load_references): Make this thread safe.
3865         Fixes #56327.
3866
3867 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
3868
3869         * monosn.c: Add missing initialization calls.
3870
3871 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
3872
3873         * locales.c:
3874         ves_icall_System_Globalization_CultureInfo_construct_number_format
3875         Fix g_assert so it compiles on fussier compilers re int/ptr
3876         mismatch
3877
3878 2004-04-08  Dick Porter  <dick@ximian.com>
3879
3880         * socket-io.h:
3881         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
3882         53992.  Also rearrange the code so that the internal calls return
3883         an error value and exceptions are thrown from managed code.
3884
3885         * icall.c: Add type info to the socket icalls.
3886
3887 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3888
3889         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
3890         owes me a beer.
3891
3892 2004-04-07  Martin Baulig  <martin@ximian.com>
3893
3894         * class.c (mono_class_from_generic_parameter): Don't default
3895         `klass->parent' to `mono_defaults.object_type'.
3896
3897 2004-04-07  Martin Baulig  <martin@ximian.com>
3898
3899         * reflection.c (mono_reflection_initialize_generic_parameter): Set
3900         `param->pklass->reflection_info'.       
3901
3902 2004-04-07  Jackson Harper  <jackson@ximian.com>
3903
3904         * culture-info-tables.h: Fix date separator symbol.
3905         
3906 2004-04-07  Martin Baulig  <martin@ximian.com>
3907
3908         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
3909         from System.Type to System.MonoType.
3910
3911 2004-04-07  Martin Baulig  <martin@ximian.com>
3912
3913         * reflection.h
3914         (MonoReflectionGenericParam): Added `has_reference_type' and
3915         `has_value_type' fields.
3916
3917         * reflection.c (mono_image_get_generic_param_info): Encode the
3918         correct flags if we have the `class' or `struct' constraint.
3919
3920 2004-04-07  Martin Baulig  <martin@ximian.com>
3921
3922         * reflection.h
3923         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
3924
3925 2004-04-07  Jackson Harper  <jackson@ximian.com>
3926
3927         * appdomain.c: Revert extra patches, just wanted to bump the
3928         version number.
3929         
3930 2004-04-07  Jackson Harper  <jackson@ximian.com>
3931
3932         * Makefile.am: Add culture-info private headers.
3933         * icall.c: Add new icalls for contructing locales.
3934         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
3935         * locales.h: Declare new culture info construction methods.
3936         * object.h: Add new fields used to avoid the CultureMap to
3937         MonoCultureInfo.
3938         * culture-info.h: Definition of structs used in the culture info
3939         tables.
3940         * culture-info-tables.h: Autogenerated tables that contain culture
3941         info data. This file was generated with the locale-builder tool.
3942         * appdomain.c: Incement corlib version number.
3943         
3944 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
3945
3946         * appdomain.c: (mono_runtime_init) move mono_thread_init
3947         to before mono_object_new calls so critical sections
3948         are initialized before use.
3949
3950 2004-04-07  Martin Baulig  <martin@ximian.com>
3951
3952         * icall.c
3953         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
3954         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
3955         (ves_icall_MonoGenericParam_initialize): Removed.
3956         (monogenericparam_icalls): Removed.
3957         (generictypeparambuilder_icalls): Added new table for
3958         System.Reflection.Emit.GenericTypeParameterBuilder.
3959
3960         * reflection.c
3961         (mono_reflection_define_generic_parameter): Removed.
3962         (mono_reflection_initialize_generic_parameter): This is now called
3963         from GenericTypeParameterBuilder's .ctor.
3964
3965 2004-04-06  Martin Baulig  <martin@ximian.com>
3966
3967         * class.c (mono_class_init): Don't inflate nested classes in a
3968         generic instance.
3969         (mono_type_get_name_recurse): Include the generic arguments for
3970         generic instances and generic type declarations.
3971         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
3972         (_mono_class_get_instantiation_name): Removed.
3973         (mono_class_create_generic): Always use `gklass->name' as our name.
3974
3975         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
3976
3977         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
3978         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
3979         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
3980         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
3981         closed generic methods here.
3982
3983         * reflection.c
3984         (mono_reflection_generic_inst_get_nested_types): Removed.
3985         (inflate_mono_method): Copy the generic parameters from the
3986         MonoMethodHeader into out MonoGenericMethod.
3987
3988 2004-04-06  Martin Baulig  <martin@ximian.com>
3989
3990         * row-indexes.h
3991         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
3992
3993         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
3994
3995         * reflection.c (build_compressed_metadata): If we have any entries
3996         in the GenericParam, MethodSpec or GenericParamConstraint tables,
3997         set the header version to 1.1.
3998
3999 2004-04-06  Martin Baulig  <martin@ximian.com>
4000
4001         * class.c (mono_class_init): If we're a generic instance,
4002         initialize our nested classes, too.
4003         (_mono_class_get_instantiation_name): Deal with the new `!%d'
4004         suffix. 
4005
4006 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4007
4008         * process.c: quote the argument passed to the shell on windows.
4009
4010 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
4011
4012         * threads.c (mono_alloc_special_static_data): Allow this to be
4013         called during startup.
4014
4015 2004-04-02  Martin Baulig  <martin@ximian.com>
4016
4017         * icall.c
4018         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
4019
4020 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
4021
4022         * icall.c: Fix build.
4023
4024 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
4025
4026         * Makefile.am: Added security.c|h.
4027         * icall.c: Added icall for get_UserName;
4028         * security.c: New file for security related icalls. Added function
4029         get_UserName for System.Environment (fix #56144).
4030         * security.h: New. Header file for security.c
4031
4032 2004-04-02  Dick Porter  <dick@ximian.com>
4033
4034         * icall.c: Deleted the icalls that were obsoleted some time ago
4035         by the ICU string code, and which were mixed into the icall
4036         rearranging.  Fixes bug 55969.
4037
4038         * string-icalls.h: 
4039         * string-icalls.c: Deleted the code that those icalls reference.
4040
4041 2004-04-01  Martin Baulig  <martin@ximian.com>
4042
4043         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
4044
4045         * class.c (mono_class_from_generic_parameter): Don't set 
4046         TYPE_ATTRIBUTE_INTERFACE.
4047         (my_mono_class_from_generic_parameter): Likewise.
4048
4049 2004-04-01  Martin Baulig  <martin@ximian.com>
4050
4051         * loader.c (find_method): Added an optional `MonoClass *ic'
4052         argument to search in a specific interface.
4053         (mono_get_method_constrained): New public function.
4054
4055 2004-04-01  Martin Baulig  <martin@ximian.com>
4056
4057         * reflection.c (mono_image_get_generic_field_token): Use the
4058         `handleref' cache here.
4059
4060 2004-04-01  Martin Baulig  <martin@ximian.com>
4061
4062         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
4063
4064         * reflection.c (create_generic_typespec): Use the `typespec' hash
4065         here, not the `typeref' one.    
4066
4067 2004-04-01  Martin Baulig  <martin@ximian.com>
4068
4069         * class.c (mono_class_inflate_generic_type): Moved the
4070         functionality into a new static inflate_generic_type() which
4071         returns NULL if it didn't do anything.  Only increment the
4072         `mono_stats.inflated_type_count' if we actually inflated
4073         something.
4074         (mono_class_get_full): Check the classes type to see whether we
4075         need to inflate it; also inflate MONO_TYPE_(M)VAR.
4076
4077 2004-04-01  Jackson Harper  <jackson@ximian.com>
4078
4079         * reflection.c: Set culture for assembly references.
4080         
4081 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
4082
4083         * reflection.[ch], icall.[ch], Fix support for pinning variables.
4084
4085 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4086
4087         * assembly.c:
4088         (do_mono_assembly_open): the critical section also covers
4089         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
4090
4091 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4092
4093         * threads.c:
4094         (mono_manage_threads): abort the background threads when finishing.
4095         Fixes bug #47232.
4096
4097 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4098
4099         * gc.c: only close the done_event handle if there was no timeout.
4100         C-ified comments.
4101
4102 2004-03-30  Martin Baulig  <martin@ximian.com>
4103
4104         * icall.c (icall_entries): It's called "System.Activator", not
4105         "System.Activation".    
4106
4107 2004-03-30  Martin Baulig  <martin@ximian.com>
4108
4109         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
4110         (mono_class_create_from_typespec): Likewise.
4111
4112 2004-03-30  Martin Baulig  <martin@ximian.com>
4113
4114         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
4115         `has_ctor_constraint' and `initialized'.
4116
4117 2004-03-30  Martin Baulig  <martin@ximian.com>
4118
4119         * reflection.c (encode_new_constraint): New static function to add
4120         the constructor constraint attribute to a type parameter.
4121         (encode_constraints): Call encode_new_constraint() if necessary.
4122
4123         * reflection.h
4124         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
4125
4126         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
4127         
4128 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
4129
4130         * reflection.c, icall.c: add support for pinning variables. 
4131
4132 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
4133
4134         * marshal.c (mono_marshal_get_managed_wrapper):
4135         init bool local with zero rather than null.
4136
4137 2004-03-29  Martin Baulig  <martin@ximian.com>
4138
4139         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
4140         the "official" behavior here.
4141         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
4142
4143 2004-03-29  Martin Baulig  <martin@ximian.com>
4144
4145         * icall.c: Reflect latest API changes.
4146
4147 2004-03-29  Martin Baulig  <martin@ximian.com>
4148
4149         * loader.c (mono_get_method_from_token): Also call
4150         mono_metadata_load_generic_params () for abstract and interface
4151         methods; replace the type arguments in the method signature with
4152         the ones which are loaded from the metadata.
4153
4154 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
4155
4156         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
4157         of the lock is not the current thread. MS.NET don't do it, in spite of
4158         what the documentation says. See bug #56157.
4159
4160 2004-03-28  Martin Baulig  <martin@ximian.com>
4161
4162         * class.c (mono_class_init): Don't call init_properties() and
4163         init_events() for generic instances; set `prop->parent' when
4164         inflating properties.
4165
4166         * reflection.c (mono_generic_inst_get_object): Call
4167         `mono_class_init (ginst->klass)'.
4168         (mono_type_get_object): Only create a MonoGenericInst if your
4169         generic type is a TypeBuilder.
4170         (do_mono_reflection_bind_generic_parameters): Only set
4171         `ginst->is_dynamic' if our generic type is a TypeBuilder.
4172
4173 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
4174
4175         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
4176         Fixes #56091.
4177
4178 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4179
4180         * icall.c: added Kill_internal icall.
4181         * process.[ch]: added Kill_internal icall.
4182
4183 2004-03-25  Martin Baulig  <martin@ximian.com>
4184
4185         * class.h (MonoStats): Added `generic_instance_count',
4186         `inflated_method_count', `inflated_type_count' and
4187         `generics_metadata_size'.       
4188
4189 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4190
4191         * reflection.c: no warnings now.
4192
4193 2004-03-25  Martin Baulig  <martin@ximian.com>
4194
4195         * class.c (mono_class_get_full): New public function; does a
4196         mono_class_get(), but also takes a `MonoGenericContext *'.
4197
4198         * loader.c (mono_field_from_memberref): Renamed to
4199         `field_from_memberref', made static and added `MonoGenericContext *'
4200         argument.
4201         (mono_field_from_token): Added `MonoGenericInst *' argument.
4202         (method_from_memberef): Likewise.
4203         (mono_get_method_from_token): Likewise.
4204         (mono_get_method_full): New public function; does a
4205         mono_get_method(), but also takes a `MonoGenericContext *'.
4206
4207         * verify.c (mono_method_verify): Get the method's generic context
4208         and pass it to mono_field_from_token(), mono_get_method_full() and
4209         mono_class_get_full().
4210
4211 2004-03-25  Martin Baulig  <martin@ximian.com>
4212
4213         * class.c (mono_class_inflate_generic_type): Take a
4214         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
4215         `MonoGenericMethod *'.
4216
4217 2004-03-25  Martin Baulig  <martin@ximian.com>
4218
4219         * loader.h (MonoMethodInflated): Store the MonoGenericContext
4220         instead of the MonoGenericMethod here.
4221
4222 2004-03-25  Martin Baulig  <martin@ximian.com>
4223
4224         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
4225         each time we create a new MonoGenericInst, we also create a new
4226         context which points back to us.
4227
4228         * class.c (inflate_method): Use `ginst->context' instead of
4229         creating a new context.
4230
4231         * loader.c (method_from_memberref): Use
4232         `klass->generic_inst->context' instead of creating a new context.
4233
4234 2004-03-25  Martin Baulig  <martin@ximian.com>
4235
4236         * class.h (MonoGenericContext): New struct.
4237         (MonoGenericMethod): Removed `generic_inst'.
4238
4239         * class.c (mono_class_inflate_generic_method): Take a
4240         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
4241
4242 2004-03-25  Martin Baulig  <martin@ximian.com>
4243
4244         * loader.h (MonoMethodInflated): New typedef.
4245
4246         * metadata.h (MonoMethodSignature): Removed `gen_method', make
4247         `generic_param_count' consume just 30 bits, added `is_inflated'
4248         and `has_type_parameters' flags (one bit each).
4249
4250         * class.c (mono_class_inflate_generic_method): Create a
4251         MonoMethodInflated instead of a MonoMethodNormal and set
4252         `is_inflated' in the method signature.
4253
4254         * class.h (MonoGenericMethod): Removed `generic_method'.
4255
4256 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
4257
4258         * image.c: Make sure the name of a MonoImage is always an absolute path.
4259           This fixes bug #54415.
4260
4261 2004-03-24  Martin Baulig  <martin@ximian.com>
4262
4263         * class.c (mono_class_setup_vtable): If we're a generic instance,
4264         use our generic type's vtable size.
4265
4266 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
4267
4268         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
4269         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
4270         problems.
4271
4272 2004-03-23  Martin Baulig  <martin@ximian.com>
4273
4274         * class.h (MonoDynamicGenericInst): Added `int count_events' and
4275         `MonoEvent *events'.
4276
4277         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
4278         (typebuilder_icalls): Added "get_event_info"; calls
4279         mono_reflection_event_builder_get_event_info(). 
4280
4281         * reflection.c (mono_reflection_generic_inst_initialize): Added
4282         `MonoArray *events'.
4283         (mono_reflection_event_builder_get_event_info): New function.
4284
4285 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
4286
4287         * object.h: add mono_type_initialization_init
4288
4289         * object.c (mono_runtime_class_init): 
4290         implement class constructor synchronization rules
4291         to cope with threading issues.  
4292         add mono_type_initialization_init
4293
4294         * appdomain.c (mono_runtime_init): call 
4295         mono_type_initialization_init
4296
4297         * class.h: removing initializing field from MonoVTable
4298
4299 2004-03-23  Martin Baulig  <martin@ximian.com>
4300
4301         * class.c (my_mono_class_from_generic_parameter): Use
4302         `param->name' if it's not NULL. 
4303
4304 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
4305
4306         * class.c: do not insert non-virtual methods in the vtable.
4307         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
4308         that means the method is non-virtual. This never would have
4309         happened before.
4310
4311 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
4312
4313         * profiler.c: Added lock for accessing coverage_hash.
4314
4315 2004-03-22  Martin Baulig  <martin@ximian.com>
4316
4317         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
4318         `method->method->signature->generic_param_count != 0' to make it
4319         work for interface methods.
4320
4321 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4322
4323         * process.c: quote the string passed to the shell using g_shell_quote.
4324
4325 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4326
4327         * threads.c:
4328         (mono_threads_manage): don't remove the finalizer thread and self
4329         from the threads hash table so that mono_thread_manage can be called
4330         more than once.
4331
4332 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4333
4334         * process.c: quote the arguments when UseShellExecute is true. Fixes
4335         bug #55790.
4336
4337 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4338
4339         * threads.c: set mono_thread_detach as a cleanup routine for every
4340         thread. This way it's always executed upon thread termination, either
4341         aborted or finished normally. No more xsp hangs!
4342
4343 2004-03-17  Martin Baulig  <martin@ximian.com>
4344
4345         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
4346         `int count_nested' and a `MonoType **nested'.
4347
4348         * reflection.c (mono_reflection_bind_generic_parameters): Moved
4349         most of the functionality into a new static
4350         do_mono_reflection_bind_generic_parameters() and don't take a
4351         `MonoType *nested_in' argument any more.  Don't compute nested
4352         types here.
4353         (mono_reflection_generic_inst_get_nested_types): New public method
4354         to get nested types.
4355
4356         * class.c (mono_class_create_generic): Set `klass->nested_in' if
4357         we're a nested class.
4358
4359         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
4360         mono_reflection_generic_inst_get_nested_types() to compute the
4361         nested types.
4362
4363 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
4364
4365         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
4366         descriptive error message under windows.
4367         
4368 2004-03-17  Martin Baulig  <martin@ximian.com>
4369
4370         * class.c (dup_type): Added `const MonoType *original' argument;
4371         copy the attrs from the original type.
4372
4373 2004-03-17  Martin Baulig  <martin@ximian.com>
4374
4375         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
4376         `m->generic_inst_cache' here.
4377
4378 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
4379
4380         * exception.h exception.c: Add stack_overflow_exception.
4381
4382 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4383
4384         * threadpool.c:
4385         (overlapped_callback): call SetEvent *after* invoking the callback.
4386         No need to call CloseHandle.
4387
4388 2004-03-16  Martin Baulig  <martin@ximian.com>
4389
4390         * reflection.c (mono_image_get_fieldref_token): Take a
4391         `MonoReflectionField *' instead of a `MonoClassField *' and a
4392         `MonoClass *'; store the `MonoReflectionField *' in the hash.
4393
4394 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4395
4396         * appdomain.c: don't add the culture to the filename we're looking for
4397         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
4398
4399 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4400
4401         * locales.c: don't ignore symbols when doing case insensitive compares.
4402         Thanks Dick! Fixes bug #54046.
4403
4404         * threads.c: surround 'threads' usage with enter/leave in
4405         mono_thread_manage.
4406
4407 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
4408
4409         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
4410         implicitly marshalled as [Out]. Fixes #55450.
4411
4412         (mono_marshal_get_runtime_invoke): Zero out the result if there is
4413         an exception.
4414
4415 2004-03-16  Martin Baulig  <martin@ximian.com>
4416
4417         * class.c (mono_class_from_generic_parameter): Use the actual
4418         parameter name. 
4419
4420 2004-03-16  Martin Baulig  <martin@ximian.com>
4421
4422         * reflection.c (type_get_signature_size): New static function.
4423         Compues the size of the type in a method signature.
4424         (method_get_signature_size): New static function; calls
4425         type_get_signature_size() to compute the actual size of the
4426         method's signature.
4427         (method_encode_signature): Use method_get_signature_size() to get
4428         the signature's size rather than using `nparams * 10'.
4429
4430 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4431
4432         * file-io.h: define here WapiOverlapped on windows. I don't want the
4433         regular OVERLAPPED one.
4434
4435         * file-io.c:
4436         * threadpool.c: somehow, BindIoCompletionCallback is not found.
4437         Disabling AIO on windows.
4438
4439 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4440
4441         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
4442         bug #55385.
4443
4444 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4445
4446         * appdomain.c: upgraded corlib version.
4447
4448         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
4449         and BeginWrite. Allow opening files for asynchrnous operations.
4450
4451         * file-io.h: new struct that maps FileStreamAsyncResult.
4452         * icall.c: added new icalls.
4453         * process.[ch]: support setting child process environment variables
4454         and use the SHELL or COMSPEC when UseShellExecute is true.
4455
4456         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
4457         callback for async. IO is here and also BindHandle.
4458
4459         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
4460         from here.
4461
4462 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
4463
4464         * reflection.c (create_custom_attr): Allow len == 0.
4465
4466         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
4467         computation on big-endian machines.
4468
4469 2004-03-13  Martin Baulig  <martin@ximian.com>
4470
4471         * class.h (MonoGenericInst): Added `int count_ifaces'.
4472
4473         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
4474         `ginst->count_ifaces' instead `klass->interface_count' since we
4475         may get called before the vtable is created.
4476
4477         * loader.c (mono_method_get_param_names): If we're a generic
4478         instance, return and don't initialize the class.
4479
4480         * reflection.c (mono_reflection_setup_generic_class): Don't call
4481         ensure_runtime_vtable().
4482         (mono_reflection_bind_generic_parameters): Set
4483         `ginst->count_ifaces'.
4484
4485 2004-03-11  Jackson Harper <jackson@ximian.com>
4486
4487         * icall.c:
4488         * unicode.c:
4489         * unicode.h: Remove unused System.Char icalls.
4490         
4491 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
4492
4493         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
4494         code when we P/Invoke the first library in Windows.Forms, instead
4495         of when we first open the assembly.
4496
4497         * assembly.c: Drop the lookup from here.
4498
4499 2004-03-10  Martin Baulig  <martin@ximian.com>
4500
4501         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
4502         class for properties, fields and events.  Finally fixes #54945.
4503
4504 2004-03-10  Martin Baulig  <martin@ximian.com>
4505
4506         * metadata.c (mono_metadata_class_equal): New static function;
4507         checks whether two generic instances or two generic parameters are
4508         equal.
4509         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
4510         compare classes.        
4511
4512 2004-03-10  Martin Baulig  <martin@ximian.com>
4513
4514         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
4515
4516         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
4517         argument and write it into the `reflection_info' field.
4518
4519         * icall.c
4520         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
4521         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
4522
4523 2004-03-09  Jackson Harper  <jackson@ximian.com>
4524
4525         * char-conversions.h: use 8 bits for numeric data its all we need
4526         * icall.c: numeric data is only 8 bits now.
4527
4528 2004-03-09  Martin Baulig  <martin@ximian.com>
4529
4530         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
4531
4532         * class.c (init_properties, init_events): Initialize the new
4533         `parent' field.
4534
4535         * reflection.c (typebuilder_setup_properties): Likewise.
4536         (typebuilder_setup_events): Likewise.
4537
4538         * reflection.h (MonoEventInfo): Replaced `parent with
4539         `declaring_type' and `reflected_type'.
4540
4541         * icall.c (ves_icall_get_property_info): Distinguish between
4542         declaring and reflected type.
4543         (ves_icall_get_event_info): Likewise.
4544
4545 2004-03-09  Martin Baulig  <martin@ximian.com>
4546
4547         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
4548         (ves_icall_Type_GetField): Correctly set field->klass.
4549
4550 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
4551
4552         * loader.h: Fix warning.
4553
4554 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
4555
4556         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
4557         library routine if present.  Notice that it will still continue
4558         executing even if its missing, for those working on the Gtk#
4559         edition of Windows.Forms.
4560
4561         * assembly.c (do_mono_assembly_open): If loading the
4562         System.Windows.Forms call mono_loader_wini_init.
4563
4564 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
4565
4566         * class.h: Added MonoRemoteClass struct.
4567         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
4568         function for MonoStrings.
4569         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
4570         Added internal call for getting the proxy type.
4571         * marshal.c: Get the type of transparent proxies from its remote_class.
4572         Added methods that generate the IL for type checks and casts:
4573         mono_marshal_get_isinst, mono_marshal_get_castclass, 
4574         mono_marshal_get_proxy_cancast.
4575         * marshal.h: Declaration of the previous new methods.
4576         * object.c: Added new moethods for creating and updating MonoRemoteClass
4577         instances: mono_remote_class, mono_upgrade_remote_class, 
4578         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
4579         * verify.c: FIx transparent_proxy_fields layout.
4580         * appdomain.c: Bump corlib version.
4581
4582 2004-03-04  Jackson Harper  <jackson@ximian.com>
4583
4584         * icall.c: Add icall to access char conversion tables.
4585         * char-conversions.h: Character conversion tables.
4586         * Makefile.am: Add char-conversions.h private header file.
4587         
4588 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
4589
4590         * appdomain.c (unload_thread_main): Increase unloading timeout to
4591         10 sec as a temporary workaround for Nant problems.
4592
4593 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
4594
4595         * gc.c: Add checks for GC_enable and GC_disable.
4596
4597         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
4598         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
4599         (bug #54988).
4600         
4601 2004-02-27  Martin Baulig  <martin@ximian.com>
4602
4603         * reflection.c (mono_reflection_bind_generic_parameters): Take a
4604         `MonoReflectionType *' instead of a `MonoType *'.
4605
4606 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
4607
4608         * gc.c (run_finalize): Avoid finalizing the object representing the
4609         finalizer thread.
4610         (finalizer_thread): Fix warning.
4611
4612 2004-02-25  Martin Baulig  <martin@ximian.com>
4613
4614         * class.c (_mono_class_get_instantiation_name): Added `int offset'
4615         argument for nested types.
4616         (mono_class_create_generic): Added support for nested generictypes.
4617
4618         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
4619         `GList *nested'.
4620
4621         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
4622
4623         * reflection.c (method_encode_signature): Increase the minimum
4624         value of `size' from 10 to 11.
4625         (mono_reflection_bind_generic_parameters): Take `int type_argc'
4626         and `MonoType **types' arguments instead of the `MonoArray
4627         *types'; added `MonoType *nested_in'.  Recursively instantiate
4628         nested classes. 
4629
4630 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
4631
4632         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
4633         stack_overflow_ex members which are used by exception handling.
4634
4635         * appdomain.c (mono_runtime_init): Initialize the new members.
4636
4637         * gc.c (mono_gc_enable): New helper function.
4638         * gc.c (mono_gc_disable): New helper function.
4639
4640 2004-02-23  Martin Baulig  <martin@ximian.com>
4641
4642         * icall.c: I must have been really stupid - make it actually work
4643         this time ;-)
4644
4645 2004-02-23  Martin Baulig  <martin@ximian.com>
4646
4647         * loader.c (method_from_memberref): Only inflate the method if
4648         it's in another klass.
4649
4650 2004-02-23  Martin Baulig  <martin@ximian.com>
4651
4652         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
4653         (mono_class_init): If we're a generic instance and an interface,
4654         compute `class->interface_id'; also create `class->interfaces'
4655         here and inflate them.
4656
4657         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
4658         `ginst->is_open'.
4659         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
4660
4661         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
4662
4663 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
4664
4665         * reflection.c (method_encode_code): Improved the error message
4666         generated by the exception.
4667
4668 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4669
4670         * icall.c: Martin did not do what he said in the ChangeLog for
4671         2004-02-18, but put back the changes for properties and events.
4672         Commenting those changes out again and adding comment to bug #54518.
4673         
4674         * process.c: removed warning.
4675
4676 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
4677
4678         * marshal.c (emit_struct_conv): Print an error message instead of
4679         asserting when a type does not have the StructLayout attribute.
4680
4681 2004-02-20  Martin Baulig  <martin@ximian.com>
4682
4683         * reflection.c (mono_type_get_object): Also use the cache for
4684         generic instances.
4685         (mono_reflection_bind_generic_parameters): Always compute
4686         `ginst->ifaces'.        
4687
4688 2004-02-20  Martin Baulig  <martin@ximian.com>
4689
4690         * class.h (MonoGenericMethod): Removed `klass'.
4691
4692         * class.c (mono_class_inflate_generic_method): Added `MonoClass
4693         *klass' argument.
4694
4695 2004-02-20  Martin Baulig  <martin@ximian.com>
4696
4697         * reflection.c (method_encode_methodspec): Actually use the
4698         uninflated signature for the memberref.
4699
4700 2004-02-20  Martin Baulig  <martin@ximian.com>
4701
4702         * class.h (MonoGenericMethod): Removed `declaring'.
4703
4704         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
4705         is NULL, compute it here.
4706
4707 2004-02-20  Martin Baulig  <martin@ximian.com>
4708
4709         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
4710
4711         * metadata.c (mono_metadata_generic_inst_hash): New method.
4712         (mono_metadata_generic_inst_equal): New method.
4713
4714         * reflection.c (mono_reflection_bind_generic_parameters): Use the
4715         `klass->image->generic_inst_cache' cache to avoid creating
4716         duplicate MonoGenericInst's.
4717
4718         * class.c (mono_class_inflate_generic_type): Use the cache.
4719
4720 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
4721
4722         * object.c: fixed gc descriptor calculation for embedded valuetypes.
4723
4724 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4725
4726         * icall.c: added Socket.WSAIoctl icall.
4727
4728         * socket-io.[ch]: implemented
4729         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
4730
4731 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
4732
4733         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
4734
4735 2004-02-18  Urs C Muff  <umuff@quark.com>
4736
4737         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
4738         this work on PPC and other big-endian architectures.
4739
4740         * debug-mono-symfile.h: Prepended the names of all the `guint32'
4741         fields with an underscore to make sure they're only accessed by
4742         the read32() macro.
4743
4744 2004-02-18  Martin Baulig  <martin@ximian.com>
4745
4746         * icall.c: Put the klass->refclass changes back for methods and
4747         fields, but not for properties and events.  We're currently not
4748         distinguishing between DeclaringType and ReflectedType for
4749         properties and events, that's what caused the regressions.
4750
4751 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4752
4753         * object.c:
4754         (mono_async_result_new): the handle can be NULL.
4755
4756         * threadpool.c: Use an event instead of a semaphore, don't initialize
4757         it until needed. This saves quite a few semaphores from being created
4758         when using the threadpool.
4759
4760 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
4761
4762         * object.c (mono_string_is_interned_lookup): Fix interning of long
4763         strings. Fixes #54473.
4764
4765         * domain.c (ldstr_equal): Optimize if the two strings are equal.
4766
4767         * icall.c: Revert the klass->refclass changes since they introduce
4768         regressions (bug #54518).
4769
4770 2004-02-18  Martin Baulig  <martin@ximian.com>
4771
4772         * class.c (mono_class_init): If we're a generic instance and don't
4773         come from a TypeBuilder, inflate our members here.
4774         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
4775         (mono_class_create_generic): New public method.
4776         (mono_class_initialize_generic): Removed.
4777         (get_instantiation_name): Renamed to
4778         _mono_class_get_instantiation_name() and made it public.
4779
4780 2004-02-18  Martin Baulig  <martin@ximian.com>
4781
4782         * class.c (mono_class_inflate_generic_type): Clear the new
4783         instance's `nginst->klass' when inflating a generic instance.
4784         (mono_class_is_subclass_of): Added (basic) support for generic
4785         instances.
4786
4787 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
4788
4789         * appdomain.h, domain.c: use a MonoCodeManager instead of a
4790         MonoMempool to hold compiled native code.
4791
4792 2004-02-17  Martin Baulig  <martin@ximian.com>
4793
4794         * class.h (MonoDynamicGenericInst): Added `count_properties' and
4795         `properties'.
4796
4797         * reflection.c (mono_reflection_generic_inst_initialize): Added
4798         `MonoArray *properties' argument.
4799
4800         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
4801
4802 2004-02-17  Martin Baulig  <martin@ximian.com>
4803
4804         * icall.c (ves_icall_Type_GetFields): Renamed to
4805         ves_icall_Type_GetFields_internal() and added a
4806         `MonoReflectionType *rtype' argument; pass it to
4807         mono_field_get_object() to set the field's "reflected" type.
4808         (ves_icall_Type_GetConstructors): Likewise.
4809         (ves_icall_Type_GetEvents): Likewise.
4810         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
4811         argument; pass it to mono_method_get_object() to set the method's
4812         "reflected" type.       
4813
4814 2004-02-17  Martin Baulig  <martin@ximian.com>
4815
4816         * class.h (MonoDynamicGenericInst): New type.
4817         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
4818
4819         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
4820         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
4821         (ves_icall_MonoGenericInst_GetFields): New interncall.
4822
4823         * class.c (mono_class_from_generic): Don't call
4824         mono_class_initialize_generic() if this is a dynamic instance;
4825         ie. it's being created from a TypeBuilder.
4826         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
4827         `class->byval_arg.type'.
4828
4829         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
4830         to `inflate_method' and made static.
4831         (mono_reflection_inflate_field): Removed.
4832         (mono_reflection_generic_inst_initialize): New public method.
4833
4834         * reflection.h (MonoReflectionGenericInst): Removed `methods',
4835         `ctors' and `fields'; added `initialized'.
4836
4837 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
4838
4839         * debug-helpers.c (mono_method_full_name): Fix output for empty
4840         namespaces.
4841
4842 2004-02-12  Martin Baulig  <martin@ximian.com>
4843
4844         * class.h (MonoClassField): Added `MonoType *generic_type'.
4845
4846         * reflection.c (mono_image_get_fieldref_token): Added support for
4847         instantiated generic types.
4848         (field_encode_inflated_field): Removed.
4849         (mono_image_get_inflated_field_token): Removed.
4850         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
4851
4852         * reflection.h (MonoReflectionInflatedField): Removed.
4853
4854 2004-02-12  Martin Baulig  <martin@ximian.com>
4855
4856         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
4857         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
4858
4859         * reflection.c (mono_image_get_methodspec_token): Take a
4860         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
4861         (mono_image_create_token): Check whether we have a
4862         `method->signature->gen_method' and call
4863         mono_image_get_methodspec_token() if appropriate.
4864         (inflated_method_get_object): Removed.
4865         (mono_reflection_bind_generic_method_parameters): Return a
4866         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
4867         (mono_reflection_inflate_method_or_ctor): Likewise.
4868
4869         * reflection.h (MonoReflectionInflatedMethod): Removed.
4870
4871 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
4872
4873         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
4874         for custom valuetype marshalling.
4875
4876         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
4877
4878 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4879
4880         * icall.c: fixed WSAGetLastError_internal name.
4881
4882 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
4883
4884         * threads.c (mono_thread_attach): Allow this to be called multiple
4885         times for a thread.
4886         
4887         * threads.c (build_wait_tids): Do not wait for ourselves.
4888
4889         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
4890         appdomain list is empty.
4891
4892         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
4893         memory returned by mono_string_builder_to_utf16, since it points into
4894         managed memory. Thanks to Bernie Solomon for noticing this.
4895
4896         * icall.c: Add AppDomainSetup icalls.
4897
4898         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
4899
4900         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
4901         types.
4902
4903         * reflection.c (reflection_methodbuilder_to_mono_method): Save
4904         custom attributes to the method_aux struct. Also fix array indexes etc.
4905
4906         * loader.c (mono_method_get_param_names): Make dynamic case work again.
4907         
4908 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
4909
4910         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
4911         (both static and runtime) and reduce startup time.
4912
4913 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
4914
4915         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
4916         AsAny marshalling conversion instead of crashing.
4917
4918         * marshal.c: Fix warnings.
4919
4920 2004-02-09  Martin Baulig  <martin@ximian.com>
4921
4922         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
4923
4924         * reflection.h (MonoReflectionInflatedMethod): Removed the
4925         `declaring' field, it's now in the unmanaged MonoGenericMethod.
4926
4927         * reflection.c (method_encode_methodspec): Removed the `method'
4928         argument; we get it from `gmethod->declaring'.
4929         (inflated_method_get_object): Removed the `declaring' argument.
4930
4931 2004-02-09  Martin Baulig  <martin@ximian.com>
4932
4933         * class.h (MonoGenericMethod): New type.
4934         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
4935         `generic_method'.
4936
4937         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
4938         a `MonoGenericMethod *gen_method' one.
4939
4940         * class.c (mono_class_inflate_generic_type): Take an additional
4941         `MonoGenericMethod * argument.  This is only non-NULL if we're
4942         inflating types for a generic method.   
4943         (mono_class_inflate_generic_signature): Renamed to
4944         inflate_generic_signature() and made static; take a
4945         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
4946         (inflate_generic_header): Take a `MonoGenericMethod *' argument
4947         instead of a `MonoGenericInst *' one.
4948         (mono_class_inflate_generic_method): Likewise.
4949
4950         * reflection.c (encode_generic_method_sig): Take a
4951         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
4952         (method_encode_methodspec): Likewise.
4953         (inflated_method_get_object): Likewise. 
4954
4955         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
4956         field with a `MonoGenericMethod *gmethod' one.  
4957
4958 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
4959
4960         * class.h (mono_class_has_parent): add parens to expansion
4961         so you can ! this.
4962
4963 2004-02-08  Martin Baulig  <martin@ximian.com>
4964
4965         * image.h (MonoImage): Removed `generics_cache'.
4966
4967         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
4968         instead of a `MonoType *' argument; removed the `inflate_methods'
4969         argument.  Don't inflate methods here.
4970
4971         * loader.c (find_method): If it's a generic instance, call
4972         mono_class_init() on the `sclass->generic_inst->generic_type'.
4973
4974         * metadata.c (mono_type_size): Make this work on uninitialized
4975         generic instances; call it on the `ginst->generic_type's class.
4976
4977         * reflection.c (mono_reflection_bind_generic_parameters): Call
4978         mono_class_from_generic() to create the `ginst->klass'.
4979
4980 2004-02-08  Martin Baulig  <martin@ximian.com>
4981
4982         * class.h (MonoClass): Changed type of `generic_inst' from
4983         `MonoType *' to `MonoGenericInst *'.
4984
4985 2004-02-08  Martin Baulig  <martin@ximian.com>
4986
4987         * icall.c (ves_icall_Type_BindGenericParameters): Just call
4988         mono_type_get_object(), this is now creating a `MonoGenericInst'
4989         for MONO_TYPE_GENERICINST.
4990         (ves_icall_MonoGenericInst_GetParentType): Likewise.
4991         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
4992
4993         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
4994         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
4995         (inflated_method_get_object): Added `MonoClass *refclass' argument.
4996         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
4997         and reflected type.
4998
4999         * reflection.h (MonoReflectionInflatedMethod): Removed
5000         `declaring_type' and `reflected_type'.
5001
5002 2004-02-08  Martin Baulig  <martin@ximian.com>
5003
5004         * class.h (MonoGenericInst): Added `MonoType *parent' and
5005         `MonoType **ifaces'.
5006
5007         * reflection.h (MonoReflectionGenericInst): Removed `klass',
5008         `parent' and `interfaces'.
5009
5010         * reflection.c (mono_reflection_bind_generic_parameters): Take a
5011         `MonoType *' argument and return a `MonoType *'.
5012
5013         * icall.c
5014         (ves_icall_MonoGenericInst_GetParentType): New interncall.
5015         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
5016
5017 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
5018
5019         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
5020         valuetype marshalling.
5021
5022 2004-02-06  Martin Baulig  <martin@ximian.com>
5023
5024         * class.c
5025         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
5026         (my_mono_class_from_generic_parameter): Likewise.
5027
5028 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
5029
5030         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
5031         contents of the symbol files lazily.
5032
5033         * object.h (MonoThread): Add 'name' and 'name_len' fields.
5034
5035         * threads.h threads.c icall.c: New icalls for getting and setting the
5036         threads name.
5037
5038 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
5039
5040         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
5041         Raise an exception when the domain is not found.
5042
5043 2004-02-03  Martin Baulig  <martin@ximian.com>
5044
5045         * reflection.c (mono_image_get_methodspec_token): Use the
5046         uninflated signature; fixes gen-33.
5047
5048 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
5049
5050         * gc.c threads.c: Make the finalizer thread a normal managed thread so
5051         the finalizer code can use thread functionality.
5052
5053         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
5054         the finalizer thread.
5055
5056         * threads.c: Make some functions more robust.
5057
5058         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
5059
5060         * metadata.h: Add new marshalling conventions.
5061
5062         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
5063         stringbuilder marshalling. Fixes #53700.
5064
5065         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
5066
5067         * reflection.c (mono_image_get_type_info): Save declarative security
5068         info.
5069
5070         * reflection.c (mono_image_get_field_info): Handle uninitialized 
5071         unmanaged fields as well.
5072
5073         * appdomain.c: Bump corlib version.
5074
5075 2004-02-01  Martin Baulig  <martin@ximian.com>
5076
5077         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
5078         method type arguments.  
5079
5080 2004-01-30  Duncan Mak  <duncan@ximian.com>
5081
5082         * marshal.h: Add prototype for
5083         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
5084         and
5085         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
5086         fix the build.
5087
5088 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
5089
5090         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
5091         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
5092
5093 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
5094
5095         * marshal.c (mono_marshal_get_native_wrapper): Add support for
5096         custom marshalling of valuetypes.
5097
5098         * marshal.c: Fix some warnings.
5099
5100 2004-01-29  Martin Baulig  <martin@ximian.com>
5101
5102         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
5103         for generic method parameters.
5104
5105         * reflection.c (method_encode_methodspec): Write the uninflated
5106         signature into the methodspec table.
5107         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
5108         is always the uninflated method.
5109         (reflection_methodbuilder_to_mono_method): Copy the generic
5110         parameters from the MethodBuilder into `header->gen_params'.
5111
5112 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
5113
5114         * class.c (mono_class_from_generic_parameter): Fix warning.
5115
5116 2004-01-27  Martin Baulig  <martin@ximian.com>
5117
5118         * class.c (mono_class_from_generic_parameter): Don't create
5119         `klass->methods' here.  
5120
5121 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
5122
5123         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
5124         extension since it does not work with libraries named lib<FOO>.dll.so.
5125
5126 2004-01-25  Martin Baulig  <martin@ximian.com>
5127
5128         * class.c (mono_class_inflate_generic_type): Added support for
5129         MONO_TYPE_GENERICINST.
5130
5131         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
5132         inflate methods on open constructed types.      
5133
5134 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5135
5136         * object.c: fire ProcessExit event in the root AppDomain after running
5137         Main. Fixes bug #53299.
5138
5139 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
5140
5141         * socket-io.c: include the new socket-wrappers.h header.
5142         Use the wrappers instead of the unix socket functions to make the code
5143         more clear.
5144
5145 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
5146
5147         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
5148
5149         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
5150         Fixes #22532.
5151
5152 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
5153
5154         * reflection.c (mono_image_create_pefile): Handle the case when the
5155         entry point is not a MethodBuilder.
5156
5157         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
5158         field to ReflectionMethod since it is not allways a builder.
5159
5160         * reflection.c (type_get_fully_qualified_name): New helper function to
5161         return the fully qualified name of a type.
5162
5163         * reflection.c (encode_marshal_blob): Always emit the fully qualified
5164         type name for custom marshallers.
5165
5166         * reflection.c (mono_marshal_spec_from_builder): Ditto.
5167
5168         * class.c (mono_class_setup_vtable): If a parent class already 
5169         implements an interface, use the implementing methods from that class.
5170         Fixes #53148.
5171
5172 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5173
5174         * threadpool.c: just return instead of ExitThread to allow for thread
5175         clean up earlier.
5176
5177 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
5178
5179         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
5180         when closing resource modules.
5181
5182         * reflection.c (mono_image_create_pefile): Handle the case when the
5183         entry point is not a MethodBuilder.
5184
5185         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
5186         field to ReflectionMethod since it is not allways a builder.
5187
5188 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
5189
5190         * marshal.c (mono_marshal_get_managed_wrapper): 
5191         mono_marshal_alloc takes native int so CONV_I
5192         the arg for 64bits.
5193
5194 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
5195
5196         * reflection.c (fixup_cattrs): New function to fixup the methoddef
5197         tokens in the cattr table. Fixes #53108.
5198
5199 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5200
5201         * loader.c: don't trim ".dll" before looking up in the config file.
5202         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
5203
5204 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
5205
5206         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
5207         Return the module which contains the resource as well.
5208         (ves_icall_System_Reflection_Module_Close): New icall.
5209
5210         * appdomain.c: Bump corlib version number.
5211
5212         * image.c (mono_image_addref): New public function.
5213
5214         * assembly.c: Call mono_image_addref.
5215
5216         * reflection.c (mono_module_get_object): Increase reference count of 
5217         the image.
5218
5219         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
5220         Fixes #22532.
5221
5222         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
5223         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
5224         proper exceptions on DllImport problems.
5225
5226 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
5227
5228         * class.c, metadata.c: eliminate CSIZE macro.
5229
5230 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
5231
5232         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
5233         * object.h: Added async_callback field in MonoAsyncResult.
5234         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
5235         * verify.c: Added async_callback in MonoAsyncResult layout.
5236
5237 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
5238
5239         * reflection.c (mono_reflection_get_custom_attrs): Add support
5240         for Modules.
5241
5242 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
5243
5244         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
5245         marshalling.
5246         (mono_marshal_method_from_wrapper): Add null pointer check.
5247
5248 2004-01-16  Martin Baulig  <martin@ximian.com>
5249
5250         * debug-mono-symfile.h: Set version number to 36 and reflect
5251         latest symbol writer changes.
5252
5253 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
5254
5255         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
5256         multi-dimensional arrays.
5257         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
5258         (mono_class_from_mono_type): Use bounded_array_class_get.
5259         
5260         * class.c (mono_bounded_array_class_get): New function which takes
5261         a 'bounded' bool argument to distinguish vectors from one dimensional
5262         arrays.
5263
5264         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
5265         bounded_array_class_get if the array has bounds.
5266
5267         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
5268         Search modules loaded using AssemblyBuilder:AddModule as well.
5269
5270 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5271
5272         * appdomain.c: increased corlib version.
5273         * filewatcher.c: removed g_print.
5274         * icall.c:
5275         (get_property_info): only allocate what is actually requested.
5276         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
5277
5278 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5279
5280         * Makefile.am: added filewatcher.[ch]
5281         * filewatcher.[ch]: FileSystemWatcher runtime support.
5282         * icall.c: added new FSW icalls.
5283
5284 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
5285
5286         * string-icalls.c: fix stringbuilder regression as suggested by
5287         Iain McCoy <iain@mccoy.id.au>.
5288
5289 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
5290
5291         * process.c (process_read_stringtable_block): Recognize '007f' as
5292         a language neutral stringtable block.
5293
5294 2004-01-12  Patrik Torstensson
5295
5296         * object.h (MonoStringBuilder) : Changed layout to support our
5297         new stringbuilder class.
5298         * marshal.c: Change marshalling to support the new layout of 
5299         string builder.
5300         * appdomain.c: increased version number because new layout of
5301         string builder.
5302
5303 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
5304
5305         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
5306         assembly name as an string instead of an AssemblyName, since it is
5307         easier to extract info from it.
5308
5309         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
5310         the culture subdirectories too. Fixes #52231.
5311
5312 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5313
5314         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
5315         It takes 2 new parameters with an optional name for the method to look
5316         for and case ignoring info.
5317
5318         * threadpool.c: removed unused variable.
5319
5320 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5321
5322         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
5323         It takes 2 new parameters with an optional name for the property to look
5324         for and case ignoring info.
5325         Fixes bug #52753.
5326
5327 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
5328
5329         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
5330         Fix #52451.
5331
5332 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5333
5334         * appdomain.c:
5335         * assembly.c: escape the uri before passing it to g_filename_from_uri.
5336         Fixes bug #52630.
5337
5338 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
5339
5340         * reflection.c: Add support for more than one unmanaged resource.
5341
5342         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
5343         in field->def_value, as done in all other cases.
5344
5345         * reflection.c (mono_reflection_get_custom_attrs): Add support for
5346         TypeBuilders.
5347
5348         * reflection.c (mono_reflection_create_runtime_class): Remove 
5349         errorneous assignment to klass->element_class, since it is already
5350         done in mono_reflection_setup_internal_class.
5351
5352 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5353
5354         * gc.c: added missing LeaveCriticalSection.
5355         * icall.c: indented a couple of lines.
5356         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
5357         if we call EndInvoke inside a callback. Fixes bug #52601.
5358
5359 2004-01-07  Martin Baulig  <martin@ximian.com>
5360
5361         * mono-debug-debugger.h
5362         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
5363
5364 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
5365
5366         * appdomain.c: Use messages in NotImplementedException.
5367
5368         * exception.c (mono_get_exception_not_implemented): Now this takes
5369         a message argument.
5370
5371         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
5372         exception instead of g_asserting an aborting when something is not
5373         implemented.
5374
5375         Add some inline docs.
5376
5377 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
5378
5379         * reflection.h: Update after changes to object layout.
5380
5381         * reflection.c: Implement saving of unmanaged aka win32 resources.
5382
5383         * appdomain.c: Bump version number.
5384
5385         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
5386         Handle missing domains gracefully.
5387
5388 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
5389
5390         * file-io.c : On Windows, there are much more invalid_path_chars.
5391
5392 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
5393
5394         * class.h, object.c: prepare for GetType () speedup.
5395
5396 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
5397
5398         * profiler.c: workaround for --profile null reference exception on
5399           cygwin. Patch by Patrik Torstensson.
5400
5401 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
5402
5403         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
5404         make work for unaligned access.
5405
5406 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
5407
5408         * class.c: small cleanup (class->fields [i] -> field).
5409         * image.c: check address of metadata is valid.
5410
5411 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
5412
5413         * assembly.h assembly.c (mono_assembly_loaded): New public function to
5414         search the list of loaded assemblies.
5415
5416         * reflection.c (mono_reflection_type_from_name): Use 
5417         mono_assembly_loaded instead of mono_image_loaded.
5418
5419         * reflection.c: Fix warnings.
5420
5421 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
5422
5423         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
5424         is dynamic. This is needed since an assembly can contain both dynamic and
5425         non-dynamic images.
5426
5427         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
5428         assembly->dynamic.
5429
5430         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
5431
5432         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
5433         to store modules loaded using AddModule.
5434
5435         * reflection.c (mono_image_fill_file_table): Generalize this so it works
5436         on Modules.
5437
5438         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
5439
5440         * reflection.c (mono_image_fill_export_table_from_module): New function to
5441         fill out the EXPORTEDTYPES table from a module.
5442
5443         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
5444         into a separate function. Also handle loaded non-dynamic modules.
5445
5446         * reflection.c (mono_image_basic_init): Fix memory allocation.
5447
5448         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5449
5450         * assembly.c (mono_assembly_load_references): Make this public.
5451
5452 2003-12-19  Martin Baulig  <martin@ximian.com>
5453
5454         * class.c (mono_class_initialize_generic): Made this static, take
5455         a `MonoGenericInst *' instead of a `MonoClass *'.
5456         (mono_class_from_generic): Call mono_class_initialize_generic()
5457         unless we're already initialized or being called from
5458         do_mono_metadata_parse_generic_inst().
5459
5460         * class.h (MonoGenericInst): Added `initialized' and
5461         `init_pending' flags.
5462
5463         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
5464         `mono_class_init (gklass)' or mono_class_initialize_generic()
5465         here; set `generic_inst->init_pending' while parsing the
5466         `type_argv'.
5467
5468 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
5469
5470         * locales.c: include string.h for memxxx prototypes
5471
5472 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
5473
5474         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
5475         constructor when accessing literal fields.
5476
5477 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
5478
5479         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5480
5481         * reflection.c (assembly_add_resource_manifest): New function to fill
5482         the MANIFESTRESOURCE table.
5483
5484         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
5485
5486         * reflection.h: Update to changes in class layout.
5487
5488         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
5489         Reenable call to mono_runtime_is_shutting_down ().
5490
5491         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
5492         determine if the runtime is shutting down.
5493
5494 2003-12-16  Jackson Harper <jackson@ximian.com>
5495
5496         * icall.c: comment out call to mono_runtime_is_shutting_down to
5497         fix build.
5498         
5499 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
5500
5501         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
5502         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
5503
5504 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
5505
5506         * reflection.c: move definition of swap_with_size
5507         to before its first call
5508
5509 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
5510
5511         * appdomain.c (mono_runtime_is_shutting_down): New public function.
5512
5513         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
5514         icall.
5515
5516         * object.c: Fix warnings.
5517
5518         * icall.c (ves_icall_Type_Get...): Only consider inherited static
5519         members if FlattenHierarchy is set.
5520
5521         * reflection.c (mono_image_add_decl_security): New function to emit
5522         declarative security.
5523
5524         * reflection.h reflection.c: Add support for declarative security.
5525
5526         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
5527         
5528 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
5529
5530         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
5531         
5532         * appdomain.c verify.c: Moved corlib version checking into its own
5533         function in appdomain.c since it needs to create vtables etc.
5534
5535 2003-12-13  Patrik Torstensson <p@rxc.se>
5536
5537         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
5538         instead of unwrapped server.
5539
5540 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
5541
5542         * verify.c (check_corlib): Fix field index.
5543
5544 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
5545
5546         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
5547         GetGacPath icall.
5548
5549 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
5550
5551         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
5552         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
5553         cope with sizeof(size_t) != sizeof(guint32).
5554
5555 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5556
5557         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
5558         in case of failure.
5559
5560 2003-12-10  Mark Crichton <crichton@gimp.org>
5561
5562         * icall.c: removed the GetNonZeroBytes.  We now handle this case
5563         in managed code.
5564
5565         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
5566
5567 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
5568
5569         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
5570         marked as deleted.
5571
5572 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
5573
5574         * verify.c (check_corlib): Handle the case when the version field is 
5575         initialized by a static constructor.
5576
5577 2003-12-08  Patrik Torstensson  <p@rxc.se>
5578
5579     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
5580
5581 2003-12-08  Martin Baulig  <martin@ximian.com>
5582
5583         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
5584         a MonoReflectionGenericParameter, also take the parameter index
5585         and name as arguments.
5586         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
5587         (ves_icall_MonoGenericParam_initialize): New interncall.
5588         (ves_icall_Type_make_byref_type): New interncall.
5589
5590         * reflection.h (MonoReflectionGenericParam): Derive from
5591         MonoReflectionType, not just from MonoObject.  Added `refobj' and
5592         `index' fields.
5593
5594         * reflection.c (mono_reflection_define_generic_parameter): Create
5595         and return a new MonoReflectionGenericParam; don't initialize the
5596         constraints here.
5597         (mono_reflection_initialize_generic_parameter): New public method;
5598         initializes the constraints and creates the `param->pklass'.
5599
5600 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
5601
5602         * reflection.h reflection.c: Use the new fields 'num_types', 
5603         'num_fields' and 'num_methods' to track the number of types etc.
5604
5605         * verify.c (check_corlib): Check corlib version number.
5606
5607 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
5608
5609         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
5610         function works on all methods.
5611
5612 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
5613
5614         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
5615         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
5616         the custom_type_info flag of the transparent proxy.
5617         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
5618         objects that supports IRemotingTypeInfo.
5619         * object.h: Added custom_type_info field in transparent proxy.
5620
5621 2003-12-06  Martin Baulig  <martin@ximian.com>
5622
5623         * class.c (mono_class_create_from_generic): Removed.
5624         (mono_class_from_generic): Check `ginst->klass' before doing
5625         anything else.  This is important to fully support "recursive"
5626         generic types.
5627
5628         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
5629         empty `generic_inst->klass' before doing anything else.
5630
5631 2003-12-06  Dick Porter  <dick@ximian.com>
5632
5633         * verify.c: 
5634         * object.h:
5635         * icall.c:
5636         * locales.c: Use C structs to access class fields.  Don't do a
5637         conversion between MonoString and UChar because both are
5638         platform-endian UTF-16.  Compare now takes startindex and count
5639         parameters.  Add a char overload for IndexOf.  Speed up the
5640         invariant string IndexOf.
5641
5642 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
5643
5644         * Makefile.am (monosn_LDADD): Fix parallel build.
5645
5646 2003-12-04  Martin Baulig  <martin@ximian.com>
5647
5648         * icall.c
5649         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
5650         (ves_icall_Type_make_array_type): New interncall.       
5651
5652 2003-12-04  Martin Baulig  <martin@ximian.com>
5653
5654         * locales.c: also change it in the !HAVE_ICU case.
5655
5656 2003-12-04  Dick Porter  <dick@ximian.com>
5657
5658         * icall.c:
5659         * locales.c: construct_compareinfo is now in CompareInfo, not
5660         CultureInfo.
5661
5662 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
5663
5664         * image.c (mono_image_load_file_for_image): Cache loaded images in the
5665         image->files array.
5666
5667         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
5668         table as well.
5669
5670         * assembly.c (mono_assembly_load_references): Only load references
5671         once.
5672
5673         * class.c (mono_class_from_name): Avoid linear search of the 
5674         EXPORTEDTYPE table.
5675
5676         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
5677
5678 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
5679
5680         * image.h (MonoImage): Add 'field_cache' field.
5681
5682         * loader.c (mono_field_from_token): Cache field lookups.
5683         
5684         * reflection.c (mono_module_get_object): Fix name property.
5685
5686         * icall.c (ves_icall_get_enum_info): Update after changes to 
5687         mono_metadata_get_constant_index ().
5688
5689         * icall.c: Get rid of get_type_info icall, use a separate icall for
5690         each type property to avoid needless memory allocations. Fixes #51514.
5691
5692         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
5693         to avoid needless binary searches.
5694
5695         * class.c (class_compute_field_layout): Move the initialization of
5696         field->def_value to mono_class_vtable ().
5697
5698         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
5699         non-corlib types.
5700
5701         * object.c (mono_object_allocate): Make it inline.
5702
5703         * object.c (mono_object_allocate_spec): Make it inline.
5704         
5705 2003-12-02  Dick Porter  <dick@ximian.com>
5706
5707         * locales.c (create_NumberFormat): NumberFormatInfo construction.
5708         Patch by Mohammad DAMT (mdamt@cdl2000.com).
5709
5710 2003-12-01  Dick Porter  <dick@ximian.com>
5711
5712         * threads.c: Fix signature and call in CreateMutex and
5713         CreateEvent.
5714
5715 2003-12-01  Dick Porter  <dick@ximian.com>
5716
5717         * icall.c: 
5718         * locales.c: Implement string compares and searching
5719
5720         * object.h: Add extra Thread field
5721
5722 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
5723
5724         * reflection.c (fixup_method): Add support for MonoCMethod.
5725
5726 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
5727
5728         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
5729
5730         * reflection.c (assembly_name_to_aname): Allow extra characters in
5731         assembly names. Fixes #51468.
5732
5733 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
5734
5735         * exception.c (mono_exception_from_name_domain): New helper function.
5736
5737         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
5738         exception object in the correct domain.
5739
5740         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
5741         formatting + make a copy a the input data.
5742
5743         * loader.c (mono_get_method_from_token): Methods which contain
5744         native code do not have entries in the ImplMap.
5745
5746         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
5747         Thanks to Gonzalo for spotting this.
5748         
5749         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
5750         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
5751
5752         * assembly.h (mono_assembly_load_from): Split the second part of 
5753         assembly loading into a new public function.
5754
5755         * exception.h (mono_get_exception_bad_image_format): New function.
5756
5757 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
5758
5759         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
5760         Enumerate all modules inside a dynamic assembly. Fixes #51293.
5761         
5762         * icall.c: Add new icall for creating dynamic methods.
5763
5764         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
5765
5766         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
5767
5768         * reflection.c (mono_reflection_create_dynamic_method): New icall to
5769         create a dynamic method.
5770
5771         * reflection.c (resolve_object): New helper function.
5772
5773         * reflection.c: Generalize ReflectionMethodBuilder and the functions
5774         which manipulate it so they can also work on dynamic methods.
5775
5776         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
5777         creating the MonoReflectionMethodAux structure if it is not needed.
5778         
5779         * reflection.h verify.c: Update after changes to object layout.
5780
5781         * reflection.c (method_builder_encode_signature): Fix compilation on
5782         gcc 2.95.x.
5783
5784 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
5785
5786         * appdomain.h: Added support for context static fields. Added static_data
5787           field to MonoAppContext and renamed thread_static_fields to a more
5788           generic special_static_fields in MonoAppDomain, since it can now contain
5789           context static fields.
5790         * domain.c: Updated hashtable name.
5791         * object.c: Replaced field_is_thread_static() for a more generic
5792           field_is_special_static() which also checks for context static attribute.
5793           In mono_class_vtable(), added support for static context fields.
5794         * threads.c: Changed methods that manage thread static fields to more
5795           generic methods so they can be reused both for thread and context static
5796           data.
5797         * threads.h: Declared some new methods.
5798
5799 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
5800
5801         * reflection.h: Update after changes to the managed types.
5802
5803         * reflection.c (encode_custom_modifiers): New helper function.
5804
5805         * reflection.c (method_encode_signature): Emit custom modifiers.
5806
5807         * reflection.c (field_encode_signature): Emit custom modifiers.
5808
5809 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
5810
5811         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
5812
5813         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
5814         implementation.
5815
5816         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
5817         icall.
5818
5819         * object.c (mono_field_get_value_object): New function.
5820
5821         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
5822         specific.
5823
5824 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
5825
5826         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
5827         return a preallocated out-of-memory exception instance.
5828
5829         * object.c (out_of_memory): Use the new function.
5830
5831         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
5832         flag is before the custom modifiers. Fixes #49802.
5833
5834 2003-11-16  Martin Baulig  <martin@ximian.com>
5835
5836         * class.c (mono_class_is_open_constructed_type): Implemented the
5837         MONO_TYPE_GENERICINST case.
5838
5839 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
5840
5841         * assembly.c (mono_assembly_fill_assembly_name): New function to
5842         fill out the MonoAssemblyName structure.
5843         (mono_assembly_open): Use the new function.
5844
5845         * icall.c (fill_reflection_assembly_name): New helper function.
5846
5847         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
5848         new function.
5849
5850         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
5851
5852 2003-11-15  Martin Baulig  <martin@ximian.com>
5853
5854         * class.c (mono_class_is_open_constructed_type): New public
5855         function; checks whether a type is an open constructed type,
5856         ie. whether it still contains type parameters.
5857         (mono_class_inflate_generic_type): If we're a type parameter and
5858         the inflated type is also a MONO_TYPE_(M)VAR, return the original
5859         type.
5860
5861         * class.h (MonoGenericInst): Added `guint32 is_open'.
5862
5863         * loader.c (method_from_methodspec): Check whether we're an open
5864         or closed constructed type and set `ginst->is_open'.
5865
5866         * reflection.c (mono_reflection_bind_generic_parameters): Check
5867         whether we're an open or closed constructed type and set
5868         `ginst->is_open'.
5869         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
5870         from open constructed types.
5871
5872 2003-11-15  Martin Baulig  <martin@ximian.com>
5873
5874         * reflection.c (mono_reflection_bind_generic_parameters): If we're
5875         a generic instance (instead of a generic type declaration) with
5876         unbound generic parameters, bind them to our actual types.
5877
5878 2003-11-14  Martin Baulig  <martin@ximian.com>
5879
5880         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
5881
5882         * reflection.c (mono_reflection_bind_generic_parameters): If we're
5883         an interface type, populate `res->interfaces' with instantiated
5884         versions of all the interfaces we inherit.
5885
5886 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
5887
5888         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
5889         when MONO_PATH is set but doesn't contain the install dir.
5890
5891 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5892
5893         * icall.c:
5894         (ves_icall_Type_GetInterfaces): don't return an interface twice when
5895         it's also implemented in base classes. Fixes bug #50927.
5896
5897 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
5898
5899         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
5900         if this method is called from a finalizer. Fixes #50913.
5901
5902 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
5903
5904         * threads.c: Implement VolatileRead/VolatileWrite
5905
5906         * icall.c: Add new icalls for VolatileRead/VolatileWrite
5907
5908 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
5909
5910         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
5911         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
5912         2.95.3.
5913
5914         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
5915         from Peter Ross (pro@missioncriticalit.com).
5916         
5917 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
5918
5919         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
5920
5921 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
5922
5923         * assembly.c (mono_assembly_load_references): Disable check because it
5924         triggers on older corlibs which lots of people have.
5925
5926 2003-11-12  Jackson Harper  <jackson@ximian.com>
5927
5928         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
5929         load corlib.dll if mscorlib.dll is not found.
5930         * assembly.h: Remove corlib name define.
5931         * class.c:
5932         * domain.c:
5933         * image.c: Change corlib name to mscorlib.
5934         
5935 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
5936
5937         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
5938
5939 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
5940
5941         * appdomain.h: Added loader_optimization here to sync with the C#
5942         code, and add disallow_binding_redirects field.
5943
5944 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
5945
5946         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
5947
5948         * reflection.c (mono_image_build_metadata): Fix crash on modules
5949         with no types.
5950
5951         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
5952
5953         * icall.c (ves_icall_get_method_info): Return callingConvention as
5954         well.
5955
5956         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
5957         namespaces from the EXPORTEDTYPE table as well.
5958
5959         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
5960         from all modules inside the assembly.
5961         
5962 2003-11-11  Martin Baulig  <martin@ximian.com>
5963
5964         * reflection.c (mono_reflection_bind_generic_parameters): Make
5965         this work for interfaces.
5966
5967 2003-11-11  Martin Baulig  <martin@ximian.com>
5968
5969         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
5970
5971 2003-11-11  Martin Baulig  <martin@ximian.com>
5972
5973         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
5974         "MonoInflatedMethod" and "MonoInflatedCtor".
5975
5976 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
5977
5978         * reflection.c (resolution_scope_from_image): Use the assembly table
5979         from the manifest module, since other modules don't have it.
5980
5981         * debug-helpers.c (mono_type_full_name): New helper function.
5982
5983         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
5984
5985         * image.c (mono_image_load_file_for_image): New public function which
5986         is a replacement for the load_file_for_image in class.c.
5987
5988         * assembly.c (mono_assembly_load_module): A wrapper for the function
5989         above which does assembly association and reference loading too.
5990
5991         * class.c (mono_class_from_name): Call mono_assembly_load_module.
5992
5993 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5994
5995         * appdomain.c: not all of the attributes for the full assembly name
5996         are required and the order doesn't matter. Fixes bug #50787.
5997
5998 2003-11-10  Dick Porter  <dick@ximian.com>
5999
6000         * locales.c: Use platform-endian UTF16
6001
6002 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
6003
6004         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
6005         
6006 2003-11-10  Martin Baulig  <martin@ximian.com>
6007
6008         * metadata.c
6009         (mono_metadata_load_generic_params): Make this actually work.
6010
6011         * reflection.c (mono_reflection_bind_generic_parameters): If our
6012         parent is a generic instance, pass all the `types' to it, no
6013         matter whether it has the same number of type parameters or not.
6014
6015 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
6016
6017         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
6018
6019         * assembly.c (mono_assembly_load_references): Move the image<->assembly
6020         assignment code to this function so it gets called recursively for all
6021         modules.
6022
6023         * image.c (load_modules): Remove the assembly assignment since it is
6024         now done by mono_assembly_load_references.
6025         
6026         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
6027         Add 'module' argument.
6028         (mono_module_get_types): New helper function.
6029         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
6030
6031 2003-11-08  Martin Baulig  <martin@ximian.com>
6032
6033         * class.c (mono_class_inflate_generic_method): Interface method
6034         don't have a header.
6035
6036         * reflection.c (mono_image_get_methodspec_token): Take an
6037         additional `MonoGenericInst *' argument instead of reading it from
6038         the header; this is necessary to support interfaces.
6039         (mono_image_create_token): Pass the `MonoGenericInst *' from the
6040         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
6041         (inflated_method_get_object): Take an additional `MonoGenericInst *'
6042         argument.
6043
6044         * reflection.h (MonoReflectionInflatedMethod): Added
6045         `MonoGenericInst *ginst'.
6046
6047 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
6048
6049         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
6050
6051 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
6052
6053         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
6054
6055 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
6056
6057         * reflection.c 
6058         (reflection_methodbuilder_from_method_builder):
6059         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
6060         initialize a ReflectionMethodBuilder structure.
6061         (mono_image_get_methodbuilder_token):
6062         (mono_image_get_ctorbuilder_token): New functions to emit memberref
6063         tokens which point to types in another module inside the same assembly.
6064
6065         * reflection.c: Use the new helper functions.
6066         
6067         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
6068
6069         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
6070         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
6071
6072         * reflection.c (resolution_scope_from_image): Emit a moduleref if
6073         neccesary.
6074
6075         * reflection.c (mono_image_build_metadata): Emit metadata only for the
6076         current module. Emit the manifest only for the main module.
6077
6078         * reflection.c (mono_image_create_token): Add assertion when a 
6079         memberref needs to be created.
6080
6081         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
6082
6083         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
6084         larger buffer for the custom attribute blob. Fixes #50637.
6085         
6086 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6087
6088         * threadpool.c: notify listener on async processing handles after
6089         invoking the async callback. Thanks to Zoltan.
6090
6091 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
6092
6093         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
6094         avoid code duplication.
6095
6096         * reflection.h (MonoDynamicImage): New type which is currently unused,
6097         but will be used through the ref.emit code in place of 
6098         MonoDynamicAssembly.
6099
6100         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
6101         object layout.
6102
6103         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
6104         a MonoDynamicImage instead of just a MonoImage.
6105         
6106         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
6107         icalls to ModuleBuilder but keep their semantics, so they will work
6108         with moduleb->assemblyb. This will change later.
6109         
6110 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
6111
6112         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
6113         object layout.
6114
6115         * reflection.c (mono_image_build_metadata): Avoid creation of a default
6116         main module, since it is now done by the managed code.
6117
6118 2003-11-03  Martin Baulig  <martin@ximian.com>
6119
6120         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
6121         `ginst->klass' here.
6122         (method_encode_methodspec): Don't use the `ginst->generic_method's
6123         klass if it's a generic instance, use `ginst->klass' in this case.
6124
6125 2003-11-03  Martin Baulig  <martin@ximian.com>
6126
6127         * reflection.c (mono_image_get_generic_method_param_info):
6128         Removed, use mono_image_get_generic_param_info() instead.
6129         (mono_image_get_type_info): Write the GenericParam table before
6130         the Method table.  This is neccessary because in the GenericParam
6131         table, type parameters of the class (ie. '!0' etc.) must come
6132         before the ones from its generic methods (ie. '!!0' etc).
6133
6134 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
6135
6136         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
6137
6138 2003-11-02  Martin Baulig  <martin@ximian.com>
6139
6140         * reflection.c (create_generic_typespec): Take a
6141         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
6142         the generic parameters from it.
6143
6144 2003-11-02  Martin Baulig  <martin@ximian.com>
6145
6146         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
6147         instead of a `MonoClassField *' since we just need the type.
6148         (create_generic_typespec): New static function.  Creates a
6149         TypeSpec token for a generic type declaration.
6150         (mono_image_get_generic_field_token): New static function.
6151         (mono_image_create_token): If we're a FieldBuilder in a generic
6152         type declaration, call mono_image_get_generic_field_token() to get
6153         the token.
6154
6155 2003-11-02  Martin Baulig  <martin@ximian.com>
6156
6157         * reflection.h
6158         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
6159         `MonoReflectionGenericInst *declaring_type' and
6160         `MonoReflectionGenericInst *reflected_type' fields.
6161
6162         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
6163         `MonoReflectionGenericInst *declaring_type' and a
6164         `MonoReflectionGenericInst *reflected_type' argument instead of a
6165         single `MonoReflectionGenericInst *type' one.  Set
6166         `res->declaring_type' and `res->reflected_type' from them.
6167         (mono_reflection_inflate_field): Likewise.      
6168
6169 2003-11-02  Martin Baulig  <martin@ximian.com>
6170
6171         * class.c (mono_class_setup_vtable): Don't store generic methods
6172         in the vtable.  
6173
6174 2003-11-02  Martin Baulig  <martin@ximian.com>
6175
6176         * reflection.h (MonoReflectionGenericInst): Added
6177         `MonoReflectionType *declaring_type'.
6178
6179         * reflection.c (mono_reflection_bind_generic_parameters): Use
6180         `if (tb->parent)' instead of `klass->parent'.
6181
6182 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
6183
6184         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
6185         with an empty ASSEMBLY table.
6186
6187         * reflection.c (mono_image_build_metadata): Avoid using the same loop
6188         variable in the inner and outer loops.
6189
6190 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
6191
6192         * metadata.h (mono_metadata_make_token): Put parentheses around macro
6193         argument.
6194
6195         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
6196         
6197         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
6198         icalls. Instead, do everything in managed code. This is needed since
6199         it is hard to restore the original domain etc. in unmanaged code in the
6200         presence of undeniable exceptions.
6201
6202         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
6203         New icalls to push and pop appdomain refs.
6204
6205 2003-10-31  Martin Baulig  <martin@ximian.com>
6206
6207         * class.c (inflate_generic_type): Renamed to
6208         mono_class_inflate_generic_type() and made it public.
6209
6210         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
6211         New interncall.
6212
6213         * loader.c (mono_field_from_memberref): Also set the retklass for
6214         typespecs.
6215
6216         * fielder.c (mono_image_get_inflated_field_token): New static
6217         method; creates a metadata token for an inflated field.
6218         (mono_image_create_token, fixup_method): Added support for
6219         "MonoInflatedField".
6220         (fieldbuilder_to_mono_class_field): New static function.
6221         (mono_reflection_inflate_field): New public function.
6222
6223         * reflection.h
6224         (MonoReflectionGenericInst): Added `MonoArray *fields'.
6225         (MonoReflectionInflatedField): New typedef.     
6226
6227 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
6228
6229         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
6230         for Solaris and other platforms without s6_addr16
6231
6232 2003-10-30  Martin Baulig  <martin@ximian.com>
6233
6234         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
6235         argument instead of two.
6236         (mono_class_inflate_generic_signature): Likewise.
6237         (inflate_generic_header): Likewise.
6238         (mono_class_inflate_generic_method): Likewise.  In addition, if
6239         `ginst->klass' is set, it becomes the new `method->klass'.
6240
6241         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
6242         field.
6243
6244         * reflection.c (encode_generic_method_sig): Write a 0xa as the
6245         first byte. [FIXME]
6246         (method_encode_methodspec): If we have generic parameters, create
6247         a MethodSpec instead of a MethodRef.
6248         (fixup_method): Added support for "MonoInflatedMethod" and
6249         "MonoInflatedCtor".
6250         (mono_image_create_token): Added support for "MonoInflatedMethod"
6251         and "MonoInflatedCtor".
6252         (inflated_method_get_object): New static function; returns a
6253         managed "System.Reflection.MonoInflatedMethod" object.
6254         (mono_reflection_bind_generic_method_parameters): Return a
6255         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
6256         (mono_reflection_inflate_method_or_ctor): Likewise.
6257         (mono_image_get_generic_method_param_info): Initialize unused
6258         fields to zero.
6259         (mono_image_get_generic_param_info): Likewise.
6260
6261         * reflection.h (MonoReflectionInflatedMethod): New public
6262         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
6263         "S.R.MonoInflatedCtor" classes.
6264
6265         * loader.c (method_from_memberref): If we're a TypeSpec and it
6266         resolves to a generic instance, inflate the method.
6267
6268 2003-10-28  Dick Porter  <dick@ximian.com>
6269
6270         * object.c (mono_runtime_run_main): Convert command-line arguments
6271         into utf8, falling back to the user's locale encoding to do so.
6272
6273 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
6274
6275         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
6276         at this time.
6277
6278         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
6279
6280         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
6281         up icalls at method definition time. Partially fixes #33569.
6282
6283 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
6284
6285         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
6286         marshalling of arrays. Fixes #50116.
6287
6288         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
6289
6290         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
6291         points to a vtable in the dying appdomain.
6292
6293         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
6294         listeners into unmanaged code inside the lock.
6295
6296         * object.c (mono_class_vtable): Turn off typed allocation in non-root
6297         domains and add some comments.
6298
6299 2003-10-25  Martin Baulig  <martin@ximian.com>
6300
6301         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
6302
6303         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
6304
6305         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
6306         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
6307         currently parsing.  Create the generic class and store it in
6308         `generic_inst->klass' before parsing the type arguments.  This is
6309         required to support "recursive" definitions; see mcs/tests/gen-23.cs
6310         for an example.
6311         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
6312         to support recursive typespec entries.
6313
6314         * class.c (mono_class_setup_parent): If our parent is a generic
6315         instance, we may get called before it has its name set.
6316         (mono_class_from_generic): Splitted into
6317         mono_class_create_from_generic() and mono_class_initialize_generic().
6318
6319 2003-10-25  Martin Baulig  <martin@ximian.com>
6320
6321         * icall.c (ves_icall_Type_BindGenericParameters): Return a
6322         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
6323         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
6324         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
6325
6326         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
6327         (create_typespec): Likewise.
6328         (mono_reflection_bind_generic_parameters): Return a
6329         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
6330         (mono_reflection_inflate_method_or_ctor): New public function.
6331
6332         * reflection.h (MonoReflectionGenericInst): New typedef.        
6333
6334 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
6335
6336         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
6337         inside the domain lock. Fixes #49993.
6338         
6339         * object.c (mono_class_vtable): When typed allocation is used, 
6340         allocate vtables in the GC heap instead of in the mempool, since the
6341         vtables contain GC descriptors which are used by the collector even
6342         after the domain owning the mempool is unloaded.
6343
6344         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
6345
6346         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
6347         reflect what it does. Also invalidate mempools instead of freeing
6348         them if a define is set.
6349
6350         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
6351         of the appdomain.
6352         
6353         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
6354         hold the finalizable objects in this domain.
6355
6356         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
6357         appdomain.
6358
6359         * appdomain.c (mono_domain_set): New function to set the current
6360         appdomain, but only if it is not being unloaded.
6361
6362         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
6363         appdomain which is being unloaded.
6364         
6365         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
6366         unloading of the root appdomain.
6367
6368         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
6369         icall to execute a method in another appdomain. Intended as a 
6370         replacement for InternalSetDomain, which can confuse the code 
6371         generation in the JIT.
6372
6373         * appdomain.c (mono_domain_is_unloading): New function to determine
6374         whenever an appdomain is unloading.
6375
6376         * appdomain.c (mono_domain_unload): New function to correctly unload
6377         an appdomain.
6378
6379         * assembly.c (mono_assembly_load_references): Check that an assembly
6380         does not references itself.
6381
6382         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
6383         domain manually, it asks the finalizer thread to do it, then waits for
6384         the result. Also added a timeout.
6385
6386         * icall.c: Register the new icalls.
6387
6388         * threads.h threads.c: Export the mono_gc_stop_world and 
6389         mono_gc_start_world functions.
6390         
6391         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
6392         function to fill out the mempool with 0x2a.
6393
6394 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
6395
6396         * reflection.h (MonoReflectionMethodAux): New structure to store
6397         information which is rarely used, thus is not in the MonoMethod
6398         structure.
6399
6400         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
6401         store the aux info.
6402
6403         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
6404         and marshalling info into the aux structure.
6405
6406         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
6407         from the aux structure.
6408
6409         * loader.c (mono_method_get_param_names): Retrieve the param names from
6410         the aux structure.
6411         
6412 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
6413
6414         * exception.h exception.c: Add AppDomainUnloadedException && fix 
6415         warning.
6416
6417 2003-10-21  Dick Porter  <dick@ximian.com>
6418
6419         * socket-io.c
6420         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
6421         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
6422
6423 2003-10-21  Martin Baulig  <martin@ximian.com>
6424
6425         * reflection.c (mono_reflection_bind_generic_parameters):
6426         `klass->parent' is NULL for interfaces.
6427
6428 2003-10-21  Martin Baulig  <martin@ximian.com>
6429
6430         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
6431
6432 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
6433
6434         * exception.c (mono_exception_from_name_msg): New helper function for
6435         creating exceptions and initializing their message field.
6436
6437         * exception.c: Simplify functions using the new helper.
6438
6439         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
6440         New function.
6441
6442         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
6443         mono_raise_exception, since otherwise gcc doesn't generate the function
6444         epilog for raise_exception, confusing the stack unwinding in the JIT.
6445         Fixes #45043.
6446
6447         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
6448         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
6449         Fixes #49499.
6450
6451 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6452
6453         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
6454         utf8.
6455
6456 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
6457
6458         * icall.c: Removed GetUninitializedObject method because
6459           AllocateUninitializedClassInstance does the same.
6460
6461 2003-10-18  Martin Baulig  <martin@ximian.com>
6462
6463         * class.c (inflate_generic_signature): Renamed to
6464         mono_class_inflate_generic_signature() and made it public.
6465         (my_mono_class_from_generic_parameter): New static function; if we
6466         don't already have the generic parameter's MonoClass, create a
6467         very simple one which is just used internally in the runtime and
6468         not passed back to managed code.
6469
6470         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
6471
6472         * metadata.h (MonoMethodSignature): Moved the
6473         `MonoGenericParam *gen_params' to the MonoMethodHeader.
6474         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
6475
6476         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
6477         ves_icall_MonoMethod_GetGenericArguments(); this is now an
6478         interncall on the MonoMethod class, not on MethodInfo.
6479         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
6480         calling mono_reflection_bind_generic_method_parameters() directly.
6481
6482         * loader.c (mono_method_get_signature): If this is a MethodSpec;
6483         return the already computed `method->signature'.
6484         (method_from_methodspec): New static function to load a method
6485         from a MethodSpec entry.
6486         (mono_get_method_from_token): Call the new method_from_methodspec()
6487         for MethodSpec tokens.  
6488         (mono_get_method_from_token): If we're a generic method, load the
6489         type parameters.
6490
6491         * reflection.c (mono_image_get_memberref_token): Allow
6492         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
6493         table.
6494         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
6495         (mono_image_create_token): First check whether it's a generic
6496         method (so we'd need to create a MethodSpec), then do the other
6497         two alternatives.
6498         (mono_reflection_bind_generic_method_parameters): Return a
6499         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
6500         called directly from the interncall.
6501
6502 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
6503
6504         * reflection.c (load_public_key): Move loading of the public key
6505         into managed code.
6506
6507         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
6508
6509         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
6510         fields.
6511
6512         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
6513         culture, hash_alg and public_key. Fixes #49555.
6514
6515 2003-10-17  Martin Baulig  <martin@ximian.com>
6516
6517         * class.h (MonoGenericInst): Moved this declaration here and added
6518         `MonoMethod *generic_method'.
6519
6520         * icall.c
6521         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
6522         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
6523
6524         * metadata.c (mono_metadata_type_equal): Two types of
6525         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
6526         index; ie. don't compare the address of the `MonoGenericParam'
6527         structure.
6528         (mono_metadata_load_generic_params): Removed the `MonoMethod
6529         *method' argument.
6530
6531         * metadata.h (MonoGenericInst): Moved declaration to class.h.
6532         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
6533
6534         * reflection.c (method_encode_signature): Encode the number of
6535         generic parameters.
6536         (encode_generic_method_sig): New static function.
6537         (method_encode_methodspec): New static function; creates an entry
6538         in the MethodSpec table for a generic method.
6539         (mono_image_get_methodspec_token): New static function.
6540         (mono_image_create_token): Call mono_image_get_methodspec_token()
6541         for generic methods.
6542         (mono_reflection_bind_generic_method_parameters): New public
6543         function.  Instantiates a generic method.
6544
6545 2003-10-16  Martin Baulig  <martin@ximian.com>
6546
6547         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
6548         *gen_params' here from MonoMethodHeader.
6549
6550         * metadata.c (mono_metadata_parse_method_signature): If we have
6551         generic parameters, initialize `method->gen_params' and then set
6552         the correct `type->data.generic_param' in all the parameters.
6553
6554 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
6555
6556         * threads.c (mono_threads_get_default_stacksize): New function to 
6557         return the default stacksize.
6558
6559         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
6560         termination of the finalizer thread, since the previous method had
6561         race conditions. Fixes #49628.
6562
6563         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
6564         as for the other managed threads.
6565
6566 2003-10-16  Martin Baulig  <martin@ximian.com>
6567
6568         * class.c (inflate_generic_signature): Copy `generic_param_count'
6569         and `gen_params'.
6570
6571         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
6572         New interncall.
6573
6574         * metadata.c (mono_metadata_parse_method_signature): Actually set
6575         the `method->generic_param_count' here.
6576         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
6577
6578 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
6579
6580         * object.h: Add a new field to TypedRef to simplify the implementation
6581         of the REFANY opcodes in the JIT.
6582
6583         * icall.c: Make use of the new field.
6584
6585         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
6586         dynamically.
6587
6588 2003-10-15  Martin Baulig  <martin@ximian.com>
6589
6590         * class.c (mono_class_from_gen_param): Renamed to
6591         mono_class_from_generic_parameter() and moved most of the
6592         functionality from mono_reflection_define_generic_parameter()
6593         here; ie. we create a "real" class here.
6594         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
6595         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
6596         previously been called.
6597
6598         * class.h (MonoGenericParam): Moved the declaration of this struct
6599         here from metadata.h and added `MonoMethod *method'.
6600
6601         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
6602         interncall.
6603
6604         * loader.c (mono_get_method_from_token): If we have any generic
6605         parameters, call mono_metadata_load_generic_params() to read them
6606         from the MONO_TABLE_GENERICPAR.
6607
6608         * metadata.c (mono_metadata_load_generic_params): Added
6609         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
6610
6611         * metadata.h (MonoMethodSignature): Replaced
6612         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
6613         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
6614
6615         * reflection.c (mono_reflection_define_generic_parameter): Moved
6616         most of the functionality into the new
6617         mono_class_from_generic_parameter(); set the `method' field if
6618         we're a method parameter.       
6619
6620 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
6621
6622         * marshal.c (emit_struct_conv): if native size is 0
6623         emit no code.
6624
6625 2003-10-14  Martin Baulig  <martin@ximian.com>
6626
6627         * icall.c: The generics API has changed in the spec since it was
6628         added to System.Type; these modifications make it match the spec
6629         again.
6630         (ves_icall_Type_GetGenericParameters): Renamed to
6631         `ves_icall_Type_GetGenericArguments'.
6632         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
6633         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
6634         `ves_icall_MonoType_get_HasGenericArguments'.
6635         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
6636         `ves_icall_MonoType_get_IsGenericParameter'.
6637         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
6638         this is no interncall anymore.
6639         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
6640         `ves_icall_TypeBuilder_get_IsGenericParameter'.
6641
6642 2003-10-14  Martin Baulig  <martin@ximian.com>
6643
6644         * reflection.c (mono_reflection_bind_generic_parameters): Also
6645         inflate generic methods if we're reading the class from IL.
6646
6647 2003-10-13  Martin Baulig  <martin@ximian.com>
6648
6649         * reflection.c (mono_reflection_define_generic_parameter): This
6650         method isn't called directly from the icall anymore; take a
6651         `MonoReflectionAssemblyBuilder *' so we can use this for type and
6652         method generic parameters.
6653         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
6654         (method_builder_encode_signature): Encode generic parameters.
6655         (mono_image_get_method_info): Write generic params to the
6656         MONO_TABLE_GENERICPARAM table.
6657
6658         * reflection.h (MonoReflectionMethodBuilder): Added
6659         `MonoArray *generic_params'.
6660
6661         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
6662
6663         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
6664         wrapper for mono_reflection_define_generic_parameter().
6665         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
6666
6667 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
6668
6669         * marshal.h: Add missing function to fix build.
6670
6671         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
6672         the SetLastError pinvoke attribute.
6673
6674         * marshal.c (mono_marshal_set_last_error): New helper function called
6675         by the generated code.
6676         
6677         * marshal.c (mono_mb_emit_branch): New helper function.
6678
6679         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
6680
6681         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
6682         classes as parameters and return values of delegates. Fixes #29256. 
6683
6684 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
6685
6686         * locales.c: use gint32 in non HAVE_ICU case
6687
6688 2003-10-11  Martin Baulig  <martin@ximian.com>
6689
6690         * mono-debug.c (mono_debug_add_method): Added a workaround for
6691         bug #48591.
6692
6693 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
6694
6695         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
6696         delegates passed to native code must use the STDCALL calling 
6697         convention. Fixes #35987.
6698
6699 2003-10-10  Martin Baulig  <martin@ximian.com>
6700
6701         * class.c (inflate_generic_type): If we're inflating for a generic
6702         type instance (and not for a generic method), return
6703         MONO_TYPE_MVAR unchanged.
6704
6705 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6706
6707         * string-icalls.c: Join ignores null strings in the source array.
6708         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
6709         * threads.c: GetAvailableTheads is slightly more accurate.
6710
6711 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
6712
6713         * threads.h threads.c : add mono_threads_set_default_stacksize
6714         and pass default to CreateThread calls.
6715
6716 2003-10-09  Dick Porter  <dick@ximian.com>
6717
6718         * icall.c:
6719         * locales.h:
6720         * locales.c: Internal calls for constructing CultureInfo and
6721         related objects from libicu (if its available.)
6722
6723 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
6724
6725         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
6726
6727 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6728
6729         * threadpool.c: added an argument to async_invoke_thread that is the
6730         item to process, pass the MonoAsyncResult to the thread start function
6731         when creating a new thread. This way we don't need to acquire any lock
6732         when we're creating a new thread. Readded a semaphore for faster
6733         response times (instead of that Sleep i added).
6734
6735 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
6736
6737         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
6738         get daylight change dates better on Windows, fix handling
6739         of platforms without tm_gmtoff.
6740
6741 2003-10-06  Martin Baulig  <martin@ximian.com>
6742
6743         * class.c (inflate_generic_method): Renamed to
6744         mono_class_inflate_generic_method() and made public.
6745         (mono_class_init): Don't inflate the generic methods here.
6746         (mono_class_from_generic): Added `gboolean inflate_methods'
6747         argument.  Inflate the methods here.
6748
6749         * loader.c (mono_method_get_param_names): Ignore instances of
6750         generic types for the moment.
6751
6752         * reflection.c (fixup_method): Added support for inflated methods.
6753         (mono_image_create_token): Use mono_image_get_methodref_token()
6754         for inflated methods.
6755         (mono_custom_attrs_from_param): Ignore instances of generic types
6756         for the moment.
6757         (mono_reflection_bind_generic_parameters): New public function.
6758         Moved all the functionality from
6759         ves_icall_Type_BindGenericParameters() here and added support for
6760         dynamic types.
6761         (mono_reflection_define_generic_parameter): Initialize
6762         `klass->methods' here.
6763
6764         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
6765         functionality into mono_reflection_define_generic_parameter().
6766         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
6767         TypeBuilder, return that TypeBuilder.
6768
6769 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6770
6771         * appdomain.c: removed mono_delegate_semaphore.
6772
6773         * threadpool.c:
6774         (mono_thread_pool_add): moved hash table creation inside and the thread 
6775         creation outside of the critical region.
6776         (mono_thread_pool_finish): removed obsolete code.
6777         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
6778         continue or exit the thread depending on the queue.
6779
6780 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
6781
6782         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
6783         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
6784         handle more bool marshalling options
6785
6786 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
6787
6788         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
6789         arrays of structs. Also add a more descriptive error message when
6790         a structure member is marshalled as LPArray.
6791
6792 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
6793
6794         * marshal.c (mono_marshal_get_native_wrapper): Add support for
6795         marshalling arrays of complex types. Fixes #29098. Also remove an
6796         usused and incomplete function.
6797
6798 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
6799
6800         * gc.c: report heap_size - free_bytes as total memory allocated
6801         (bug#49362).
6802
6803 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
6804
6805         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
6806         fix timezone handling problems on Windows.
6807         
6808         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
6809         asserts when the year is outside the range handled by ms the functions.
6810
6811         * class.c (setup_interface_offsets): If the class is an interface,
6812         fill out its interface_offsets slot.
6813
6814 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6815
6816         * threadpool.c: mark threadpool threads as background.
6817
6818 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
6819
6820         * decimal.c - define DECINLINE to nothing if not using GCC
6821
6822 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
6823
6824         * assembly.c: More refcount fixes.
6825
6826 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6827
6828         * string-icalls.c: if we're not trimming, return the same string.
6829         When not splitting, don't create a new string.
6830
6831 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6832
6833         * image.c:
6834         (mono_image_open): increment the ref_count inside the critical section.
6835
6836 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
6837
6838         * image.c (mono_image_open): Fix reference counting bug.
6839
6840 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
6841
6842         * marshal.c (mono_marshal_type_size) struct alignment changed for 
6843         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
6844         64bits. Avoid leak in mono_marshal_get_native_wrapper when
6845         mono_lookup_pinvoke_call throws.        
6846
6847 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
6848
6849         * reflection.c (mono_reflection_parse_type): Fix #49114.
6850
6851         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
6852         temporary workaround for cygwin header problem.
6853
6854         * object.c (mono_object_isinst): Synchronize this with the code
6855         generated by the JIT for casts.
6856
6857 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
6858
6859         * reflection.c (encode_type): Fix #38332.
6860
6861 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
6862
6863         * marshal.c (mono_marshal_method_from_wrapper): New function to return
6864         the original method from the wrapper method.
6865
6866 2003-09-25  Martin Baulig  <martin@ximian.com>
6867
6868         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
6869         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
6870         (ves_icall_Type_get_IsGenericInstance): New interncall.
6871
6872 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
6873
6874         * object.c: fix cast warning in big endian code.
6875
6876 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
6877
6878         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
6879         
6880 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6881
6882         * assembly.c: don't call check_env from mono_assembly_load. It's
6883         already done once in mono_assemblies_init and may cause headaches when
6884         multiple threads are loading assemblies.
6885
6886 2003-09-19  Martin Baulig  <martin@ximian.com>
6887
6888         * reflection.c (mono_reflection_define_generic_parameter): Don't
6889         allocate `klass->methods', set `klass->flags' to
6890         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
6891
6892 2003-09-18  Martin Baulig  <martin@ximian.com>
6893
6894         * class.c (mono_class_init): Don't create `class->methods' if it's
6895         already initialized.
6896
6897         * metadata.c (mono_metadata_load_generic_params): Make this
6898         actually work.
6899
6900         * reflection.c (mono_reflection_define_generic_parameter): Set
6901         parent class and interfaces from the constraints.
6902
6903         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
6904         to keep this struct in sync with the declaration in TypeBuilder.cs.
6905
6906 2003-09-17  Martin Baulig  <martin@ximian.com>
6907
6908         * metadata.h (MonoType): Replaced the data's `int type_param'
6909         field with `MonoGenericParam *generic_param'.
6910         (MonoGenericParam): Added `MonoClass *klass'.
6911
6912         * class.c (mono_class_from_gen_param): Removed the
6913         `MonoImage *image' and `int type_num' arguments.
6914
6915         * metadata.c (mono_metadata_parse_generic_param): New static
6916         method; creates a MonoGenericParam which just contains the index.
6917         (do_mono_metadata_parse_type): Call
6918         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
6919         MONO_TYPE_MVAR.
6920
6921         * reflection.c (mono_image_typedef_or_ref): Generic type
6922         parameters may be in the same assembly, but never use a typedef
6923         for them.
6924         (mono_reflection_define_generic_parameter): We're now creating a
6925         "real" class for the type parameter; it's now safe to call
6926         mono_class_from_mono_type() on the class'es type, it'll do the
6927         right thing.
6928
6929 2003-09-16  Martin Baulig  <martin@ximian.com>
6930
6931         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
6932         `symfile->range_entry_size' and `symfile->class_entry_size' here;
6933         the `symfile' data structure must be fully initialized before it
6934         gets added to the table.
6935
6936 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
6937
6938         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
6939
6940         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
6941         class init trampolines.
6942
6943 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
6944
6945         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
6946         to the built-in profiler to turn off time and allocation profiling
6947         respectively.
6948
6949 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
6950
6951         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
6952         g_direct_equal.
6953
6954         * debug-helpers.c (mono_method_full_name): Print the wrapper type
6955         in human readable form.
6956
6957 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
6958
6959         * reflection.c icall.c: Fixed warnings.
6960
6961         * image.c (load_class_names): Use a temporary hash table to hold the
6962         namespaces in order to avoid doing many string comparisons.
6963
6964         * image.h: Fix typo.
6965
6966         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
6967         Pass NULL instead of g_direct_equal to the GHashTable constructor 
6968         since the NULL case is short-circuited inside g_hash_table_lookup, 
6969         leading to better performance.  
6970
6971         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
6972         obtain the first custom attribute for a given index. Depends on the
6973         CustomAttribute table being sorted by the parent field.
6974
6975         * reflection.c (mono_custom_attrs_from_index): Use the new function 
6976         for better performance.
6977
6978 2003-09-07  Martin Baulig  <martin@ximian.com>
6979
6980         * class.c (mono_class_init): If we're a generic instance, inflate
6981         all our methods instead of loading them from the image.
6982         (mono_class_from_generic): Set `class->methods = gklass->methods'.
6983
6984 2003-09-07  Martin Baulig  <martin@ximian.com>
6985
6986         * mono-debug-debugger.c: Added support for constructors.
6987
6988 2003-09-06  Martin Baulig  <martin@ximian.com>
6989
6990         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
6991         New interncall.
6992
6993         * reflection.c (mono_reflection_setup_generic_class): Call
6994         ensure_runtime_vtable() to create the vtable.
6995
6996 2003-09-05  Martin Baulig  <martin@ximian.com>
6997
6998         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
6999         MONO_TYPE_MVAR.
7000
7001 2003-09-04  Martin Baulig  <martin@ximian.com>
7002
7003         * reflection.c (mono_reflection_define_generic_parameter): Generic
7004         parameters start with zero.
7005
7006 2003-09-04  Martin Baulig  <martin@ximian.com>
7007
7008         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
7009
7010         * reflection.h (MonoReflectionGenericParam): New typedef.
7011         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
7012         the generic parameters from the managed TypeBuilder.
7013
7014         * reflection.c (mono_reflection_define_generic_parameter): New function.
7015         (mono_reflection_create_runtime_class): Encode generic parameters.
7016         (mono_reflection_setup_generic_class): New function; this is
7017         called after adding adding all generic params to the TypeBuilder.
7018         (encode_type): Added MONO_TYPE_VAR.
7019
7020 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
7021
7022         * class.h class.c (mono_class_needs_cctor_run): Moved this method
7023         here from the JIT.
7024
7025         * assembly.h assembly.c: Moved the AOT loading code into an assembly
7026         load hook.
7027
7028 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
7029
7030         * reflection.h reflection.c class.h class.c: Delete duplicate 
7031         definition of mono_type_get_name () from reflection.c and export the
7032         one in class.c.
7033
7034         * class.c: Class loading fixes from Bernie Solomon 
7035         (bernard@ugsolutions.com).
7036
7037         * reflection.c: Endianness fixes from Bernie Solomon 
7038         (bernard@ugsolutions.com).
7039         
7040 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
7041
7042         * assembly.h assembly.c: Define a file format version for AOT
7043         libraries.
7044         
7045         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
7046
7047         * appdomain.h (MonoJitInfo): New field to determine whenever the
7048         code is domain neutral.
7049         
7050 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
7051
7052         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
7053
7054 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
7055
7056         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
7057         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
7058         Avoid caching the result since strings must be domain specific. Fixes
7059         #48050.
7060
7061 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
7062
7063         * marshal.c (mono_marshal_init): Make this callable multiple times
7064         since it is hard to find a correct place to call it.
7065
7066         * object.c (mono_runtime_class_init): Execute static constructors in
7067         the correct appdomain.
7068
7069         * image.c (build_guid_table): Handle the case when multiple images have
7070         the same GUID.
7071
7072 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7073
7074         * icall.c: added a couple of icalls for System.Web.
7075
7076 2003-08-28  Martin Baulig  <martin@ximian.com>
7077
7078         * icall.c (ves_icall_Type_BindGenericParameters): Use
7079         `klass->generic_inst' instead of `&klass->byval_arg' in the
7080         mono_type_get_object() call.  The returned type must be
7081         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
7082
7083 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
7084
7085         * NOTES: New file.
7086
7087         * object.c (mono_class_proxy_vtable): Make it thread safe.
7088
7089         * pedump.c: Fix warning.
7090
7091         * object.c appdomain.h: Get rid of metadata_section. 
7092         It is no longer needed and it was causing deadlocks with domain->lock.
7093
7094         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
7095
7096 2003-08-26  Martin Baulig  <martin@ximian.com>
7097
7098         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
7099
7100 2003-08-26  Martin Baulig  <martin@ximian.com>
7101
7102         * pedump.c (main): Call mono_metadata_init(),
7103         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
7104         and mono_loader_init().
7105
7106 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
7107
7108         * loader.h: Add missing include to fix build.
7109
7110         * image.h: mono_image_load_references is no more.
7111
7112         * assembly.c: Reworked assembly loading to make it really thread safe.
7113         After these changes, the assembly returned by mono_assembly_open is
7114         fully initialized, i.e. all its references assemblies are loaded.
7115
7116         * assembly.c (mono_image_load_references): Renamed to 
7117         mono_assembly_load_references, and made private, since clients no
7118         longer need to call it.
7119
7120         * class.c: Removed calls to mono_assembly_load_references, since it was
7121         a source of deadlocks.
7122
7123         * loader.h loader.c class.h class.c: Protect data structures using a 
7124         new lock, the loader lock.
7125
7126         * class.c (mono_class_setup_vtable): Create temporary hash tables and
7127         GPtrArrays only when needed.
7128
7129         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
7130         into empty structures by mcs. Fixes pinvoke7.cs.
7131         
7132         * domain.c (mono_init): Call a new initialization function.
7133
7134         * appdomain.c (mono_runtime_init): Call the new initializer function
7135         of the marshal module.
7136
7137         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
7138         inserted into empty structures by mcs. Fixes pinvoke7.cs.
7139
7140         * marshal.h marshal.c: Added locks around the wrapper caches to make
7141         this module thread safe.
7142
7143         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
7144         this argument. Fixes pinvoke1.exe.
7145
7146 2003-08-25  Lluis Sanchez <lluis@ximian.com>
7147
7148         * object.h: Added call_type field to MonoMethodMessage and the corresponding
7149         enumeration of values. Removed fields to store remote call output values in
7150         MonoAsyncResult. Not needed any more.
7151         * object.c: Initialize call_type and async_result fields in mono_message_init.
7152         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
7153         dispatching the message.
7154         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
7155         async call to finish. To do it use a message with EndInvoke call type.
7156
7157 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
7158
7159         * loader.h loader.c (mono_method_hash_marhal_info): New function which
7160         determines whenever a method has marshalling info.
7161
7162 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7163
7164         * assembly.c: fix the build on windows.
7165
7166 2003-08-22 Lluis Sanchez <lluis@ximian.com>
7167
7168         * object.cs: Fixed bug #47785.
7169
7170 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
7171
7172         * string-icalls.c (StringReplace): If their are no occurances of
7173         the old string found return a reference to the supplied
7174         string. This saves some memory and matches MS behavoir.
7175         
7176 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7177
7178         * socket-io.c: fixed compilation for systems that define AF_INET6
7179         and don't define SOL_IP/SOL_IPV6.
7180
7181 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
7182
7183         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
7184         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
7185
7186         * rawbuffer.c rawbuffer.h: Make this module thread safe.
7187
7188         * domain.c: Make this module thread safe.
7189
7190         * domain.c (mono_init): Call new initialization function.
7191
7192         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
7193         reference types too. Fixes #38812.
7194
7195         * image.c (mono_image_init): Fixed warnings.
7196
7197         * class.c (mono_class_from_typeref): Handle assembly load failure
7198         correctly.
7199
7200         * appdomain.c (add_assemblies_to_domain): Handle the case when
7201         the references of an assembly are not yet loaded.
7202
7203         * metadata.c image.c assembly.c: Moved initialization of global
7204         variables to a separate function called at startup since lazy 
7205         initialization of these variables is not thread safe.
7206         
7207         * image.c assembly.c: Made this module thread safe by adding locks in 
7208         the appropriate places.
7209
7210         * domain.c (mono_init): Call the new initialization functions of the
7211         three modules.
7212
7213 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
7214
7215         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
7216           make a direct call. It is proxy's work to make the call asynchronous.
7217           mono_delegate_end_invoke(): If the targe is a proxy, just collect
7218           the return values.
7219         * object.cs: mono_method_call_message_new(): read AsyncResult and
7220           state object from parameters list, if this info is requested.
7221         * object.h: Added fields to store remote call output values in
7222           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
7223
7224 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
7225
7226         * object.h: add needed fields to MonoThread.
7227         * threads.c, threads.h: allow registering a function to cleanup data
7228         allocated per thread by the JIT.
7229
7230 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
7231
7232         * loader.h: portability fix by Bernie Solomon
7233         * <bernard@ugsolutions.com>.
7234
7235 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
7236
7237         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
7238         return a MonoArray. This simplifies the code and also ensures that
7239         the cache allways contains an object reference as a value.
7240
7241         * icall.c (ves_icall_get_parameter_info): Simplified using the new
7242         function.
7243
7244 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7245
7246         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
7247         fixes a problem with byte ordering when getting the address family for
7248         a socket.
7249
7250 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
7251
7252         * .cvsignore: Added monosn.
7253
7254         * reflection.h reflection.c loader.c: Added support for parameter
7255         marshalling to dynamically created types. Fixes #47295.
7256
7257 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
7258
7259         * rand.c: remove useless warnings.
7260
7261 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
7262
7263         * class.c: implemented ldtoken for methods and fieldrefs.
7264
7265 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7266
7267         * threadpool.c: when mono_async_invoke was called, no one took care of
7268         monitoring the queue. So if the method invoked took some time and we
7269         got new async invoke requests after 500 ms (the thread created waited
7270         that long in WaitForSingleObject), the new async invoke was not called
7271         until the previous one finished.
7272
7273         This is fixed now. Thanks to Totte for helping with it.
7274
7275 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7276
7277         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
7278
7279 2003-08-11  Martin Baulig  <martin@ximian.com>
7280
7281         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
7282
7283 2003-08-06  Martin Baulig  <martin@ximian.com>
7284
7285         * mono-debug-debugger.c: Added support for static fields,
7286         properties and methods.
7287
7288 2003-08-06  Martin Baulig  <martin@ximian.com>
7289
7290         * mono-debug-debugger.c: Don't store the MonoString's vtable to
7291         make this work for applications with multiple application domains.
7292
7293 2003-08-04  Martin Baulig  <martin@ximian.com>
7294
7295         * mono-debug-debugger.c: Completely reworked the type support; the
7296         most important thing is that we're now just using one single
7297         `MonoType' instance per type.
7298
7299 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
7300
7301         * mono-endian.h, mono-endian.c, icall.c: Added icall
7302         ves_icall_System_Double_AssertEndianity to assert double word endianity
7303         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
7304
7305 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
7306
7307         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
7308         support, icalls and fixes.
7309
7310 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
7311
7312         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
7313         classes that are a punctuation character in .NET is not the same a
7314         g_unichar_ispunct.
7315
7316 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
7317
7318         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
7319
7320 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
7321
7322         * icall.c: Add new MemCopy internalcall.
7323         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
7324         Simplified code; It is not necessary to handle all the cases here,
7325         as the C# code takes care of it.  Only handle the case of the name
7326         resource embedded into the assembly.
7327
7328         Changed signature to return the data pointer and the size of the
7329         data. 
7330
7331 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
7332
7333         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
7334         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
7335
7336 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
7337
7338         * socket-io.c: ignore EINTR error in select.
7339
7340 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
7341
7342         * class.h, class.c: removed unused subclasses field in MonoClass.
7343
7344 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
7345
7346         * icall.c: improve fix of get_base_definition(). If the parent class
7347           doesn't have the mehod, look at the parent of the parent.
7348         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
7349           to check if a parameter is an in or out parameter
7350           (PARAM_ATTRIBUTE_IN is not set by default).
7351           mono_method_return_message_restore(): Use mono_class_value_size to
7352           get the size of a value type. mono_type_stack_size (parameterType)
7353           does not return the correct value if parameterType is byRef.
7354           mono_load_remote_field(), mono_load_remote_field_new(),
7355           mono_store_remote_field(), mono_store_remote_field_new():
7356           raise exception if the remote call returns an exception.
7357
7358 2003-07-28  Martin Baulig  <martin@ximian.com>
7359
7360         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
7361         method.  This is a wrapper around mono_runtime_invoke() which
7362         boxes the instance object if neccessary.
7363
7364 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
7365
7366         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
7367         metadata.h, row-indexes.h, verify.c: first cut of generics support.
7368
7369 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
7370
7371         * icall.c: disable mcs bug workaround.
7372
7373 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
7374
7375         * object.c (mono_runtime_class_init): Take the metadata_section
7376         mutex before obtaining the domain mutex.
7377
7378         * appdomain.h: Added definition of metadata_section mutex here. 
7379
7380         * object.c: define metadata_mutex here.
7381
7382 2003-07-24  Ravi Pratap  <ravi@ximian.com>
7383
7384         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
7385         fixed.
7386
7387 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
7388
7389         * reflection.c: Fix bug #46669
7390
7391 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7392
7393         * exception.c:
7394         * exception.h:
7395         * icall.c:
7396         * object.h: fill in the type name for TypeLoadException.
7397
7398 2003-07-23  Ravi Pratap  <ravi@ximian.com>
7399
7400         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
7401         relationship between TypeBuilders while compiling corlib) and bug
7402         45993 (Array types returned from the runtime while compiling
7403         corlib were from the loaded corlib).
7404
7405 2003-07-22  Martin Baulig  <martin@ximian.com>
7406
7407         * mono-debug-debugger.c: Reworked the type support a bit more;
7408         distinguish between types and classes.
7409
7410 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
7411
7412         * icall.c: add IsArrayImpl icall.
7413
7414 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
7415
7416         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
7417         initializing real_size only once. Also fix bug #46602.
7418
7419 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
7420
7421         * object.c: Renamed mono_metadata_section to metadata_section.
7422
7423 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
7424
7425         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
7426           empty array if the type is an array. Fixed.
7427           ves_icall_MonoMethod_get_base_definition: if the base method
7428           is abstract, get the MethodInfo from the list of methods of
7429           the class.
7430         * reflection.c: ParameterInfo.PositionImpl should be zero-based
7431           and it was 1-based. Fixed in mono_param_get_objects.
7432
7433 2003-07-20  Martin Baulig  <martin@ximian.com>
7434
7435         * mono-debug.h: Set version number to 31.
7436         (mono_debug_init): Added `MonoDomain *' argument.
7437
7438         * mono-debug-debugger.c: Reworked the type support; explicitly
7439         tell the debugger about builtin types; pass the `klass' address to
7440         the debugger.
7441
7442 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
7443
7444         * image.c: Allow new metadata tables to be loaded without a
7445         warning. Also update the warning message to give the new constant value.
7446                 
7447 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
7448
7449         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
7450         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
7451         array type representation changes.
7452
7453 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
7454
7455         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
7456         on Environment.Exit () call.
7457
7458 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
7459
7460         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
7461         requires a matching corlib.
7462
7463 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
7464
7465         * Changelog: My editor decided to add a CR to each line. Sorry about that.
7466           Committed again without the CRs.
7467         
7468 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
7469
7470         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
7471           getting it from the "this" socket instance. Did not work
7472           if the socket is a subclass of Socket.
7473           Also fixed bug #35371.
7474
7475 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
7476
7477         * metadata.c: fixed size for TypedByRef.
7478         * loader.c: when searching for a method, consider the vararg amrker.
7479         * unicode.c, decimal.c: constify some arrays.
7480
7481 2003-07-15  Dick Porter  <dick@ximian.com>
7482
7483         * socket-io.c: Fixed compilation for gcc < 3.2.
7484
7485         Fixed compilation for machines that don't have AF_INET6 (thanks to
7486         Bernie Solomon <bernard@ugsolutions.com> for that part.)
7487
7488         Fixed compile warnings.
7489         
7490         Fixed formatting and line endings.
7491
7492 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
7493
7494         * socket-io.h:
7495         * socket-io.c: Added IPv6 support.
7496
7497 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
7498
7499         * class.c (mono_class_is_assignable_from): New function to implement
7500         the is_assignable_from logic. Used by mono_object_isinst, 
7501         Type::IsAssignableFrom () and the interpreter.
7502
7503         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
7504         Object, even interfaces.
7505         
7506         * object.c (mono_object_isinst): Implement in terms of 
7507         is_assignable_from.
7508
7509         * icall.c (ves_icall_type_is_assignable_from): New icall.
7510
7511 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
7512
7513         * domain.c (foreach_domain): fix compiler warning.
7514
7515 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
7516
7517         * image.c (load_metadata_ptrs): use g_strndup because strndup is
7518         not available on all plattforms
7519
7520 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
7521
7522         * image.h image.c: Store the metadata version string in MonoImage.
7523         * icall.c: New icall to retrieve the image version.
7524         * reflection.c (create_dynamic_image): Fill in the image version field
7525         * reflection.c (build_compressed_metadata): Use the image version
7526         from the image structure.
7527
7528 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7529
7530         * appdomain.c: modified comment.
7531         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
7532         That will be its last iteration when mono_gc_cleanup is called from
7533         mono_runtime_cleanup and before the domain is unloaded.
7534
7535         Fixes bug #45962.
7536
7537 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
7538
7539         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
7540         attributes.
7541
7542 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
7543
7544         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
7545         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
7546         Bernie Solomon <bernard@ugsolutions.com>.
7547
7548 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
7549
7550         * object.c, object.h: provide mono_object_new_fast() for faster
7551         allocation in some special cases.
7552
7553 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
7554
7555         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
7556         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
7557
7558 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
7559
7560         * threadpool.c: fix leaks.
7561
7562 2003-07-01  Dick Porter  <dick@ximian.com>
7563
7564         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
7565         using MonoGHashTables.  Fixes threadpool bug posted to list.
7566
7567 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
7568
7569         * image.h, image.c: added support to load an assembly from a byte array.
7570         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
7571         assembly bundle support.
7572
7573 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
7574
7575         * threadpool.c (mono_thread_pool_add): keep a reference to the
7576         AsyncResult to prevent GC
7577
7578 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
7579
7580         * class.c: leak fix.
7581
7582 2003-06-25  Dick Porter  <dick@ximian.com>
7583
7584         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
7585         for the async object, the WaitHandle object will close the handle.
7586         Fixes bug 45321.
7587
7588 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
7589
7590         * class.c: in mono_array_class_get (), lookup from the hash with the
7591         same type we insert: this works around a bug in
7592         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
7593         lluis. The real fix will have to wait for after the release.
7594
7595 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
7596
7597         * icall.c: fix memory leak when getting type members.
7598
7599 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
7600
7601         * reflection.c: added more pubtoken special cases.
7602
7603 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
7604
7605         * class.c: handle field offset correctly when class size
7606         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
7607
7608 2003-06-20  Martin Baulig  <martin@ximian.com>
7609
7610         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
7611         *image' field.
7612
7613 2003-06-20  Martin Baulig  <martin@ximian.com>
7614
7615         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
7616
7617 2003-06-20  Martin Baulig  <martin@ximian.com>
7618
7619         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
7620         just distinguish between variables in registers and variables at
7621         an offset relative to a register.
7622
7623 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7624
7625         * icall.c: #ifdef out latest changes until mcs is fixed.
7626
7627 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
7628
7629         * icall.c: return members in metadata order.
7630
7631 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
7632
7633         * icall.c: avoid infinite loop in GetTimeZoneData.
7634
7635 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
7636
7637         * icall.c: added Marshal.Prelink/All icalls.
7638
7639 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
7640
7641         * object.c, object.h: fix warnings and do some overflow checking
7642         when creating arrays.
7643
7644 2003-06-17  Dick Porter  <dick@ximian.com>
7645
7646         * file-io.h:
7647         * file-io.c: File attributes need to be tweaked slightly when
7648         passed from the managed to the w32 world.
7649
7650 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
7651         * profiler.h profiler-private.h profiler.c: Rework last patch
7652         based on suggestion by Paolo.
7653         
7654 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
7655
7656         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
7657         instruction level coverage data collection.
7658         * profiler.h profiler.c (: Added new callback function which can be
7659         used by the profiler to limit which functions should have coverage
7660         instrumentation.
7661         * profiler.c (mono_profiler_load): Call g_module_build_path to
7662         generate the file name of the profiler library.
7663
7664 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
7665
7666         * profiler.c, profiler.h, profiler-private.h: added basic block 
7667         coverage profiling API.
7668
7669 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
7670
7671         * reflection.c (mono_reflection_create_runtime_class): Add support
7672         for events in dynamically generated code.
7673
7674         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
7675         not allocated.
7676
7677 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
7678
7679         * icall.c: when getting timezone info, return reasonable values if we
7680         can't get the actual data.
7681
7682 2003-06-14  Dick Porter  <dick@ximian.com>
7683
7684         * threads.c (start_wrapper): Remove the reference to the thread
7685         object in the TLS data, so the thread object can be finalized.
7686         This won't be reached if the thread threw an uncaught exception,
7687         so those thread handles will stay referenced :-( (This is due to
7688         missing support for scanning thread-specific data in the Boehm GC
7689         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
7690
7691 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
7692
7693         * reflection.c: ensure streams and tables are first allocated with
7694         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
7695
7696 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
7697
7698         * icall.c: fixed GetElementType for byrefs (bug# 44792).
7699
7700 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
7701
7702         * reflection.c (mono_reflection_create_runtime_class): Add support for
7703         properties to dynamically created classes.
7704         * reflection.c: Fix a few places where non-MonoObjects were inserted
7705         into the tokens hashtable.
7706
7707 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
7708
7709         * object.c: some support to handle out of memory exceptions.
7710
7711 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
7712
7713         * marshal.c (mono_marshal_get_native_wrapper): support reference
7714         return types
7715
7716 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
7717
7718         * object.h, object.c: more portability stuff from Bernie Solomon.
7719         Unexport mono_object_allocate(). Added mono_object_unbox ().
7720         Set exitcode when an unhandled exception is thrown.
7721
7722 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
7723
7724         * marshal.c (mono_marshal_get_native_wrapper): use custom
7725         marshaler for return types.
7726
7727 2003-06-10  Dick Porter  <dick@ximian.com>
7728
7729         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
7730         ip_mreq is available
7731
7732 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
7733
7734         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
7735         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
7736         by Bernie Solomon <bernard@ugsolutions.com>.
7737
7738 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
7739
7740         * gc.c (mono_gc_init): Avoid error message on shutdown when
7741         GC_DONT_GC=1 is used.
7742
7743         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
7744         New icall to return the GUID of a module.
7745
7746 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
7747
7748         * class.c: ensure instance size always includes the parent's size
7749         even whem class size is set explicitly (fixes bug#44294).
7750
7751 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
7752
7753         * profiler.h, profiler.c: made the simple profiler thread-safe,
7754         get more accurate timing info. Allow the loading of an
7755         externally-developed profiler module.
7756
7757 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
7758
7759         * marshal.c (mono_marshal_get_native_wrapper): improved
7760         class/byref arguments.
7761         (mono_marshal_get_native_wrapper): better string marshaling support.
7762
7763 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
7764
7765         * class.c: ensure .pack and .size are handled correctly and
7766         simplified layout of static fields.
7767
7768 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
7769
7770         * appdomain.c
7771         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
7772
7773         * loader.c (mono_lookup_pinvoke_call): look for modules in the
7774         current directory (fix bug 44008)
7775
7776 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
7777
7778         * marshal.c (mono_marshal_get_native_wrapper): started support for
7779         custom marshalers.
7780         (mono_delegate_to_ftnptr): consider marshalling specifications
7781
7782 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
7783
7784         * reflection.c, reflection.h: emit custom marshal info.
7785
7786 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7787
7788         * object.c: free the GError.
7789         * icall.c: added CloseEvent_internal.
7790         * threads.[ch]:
7791         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
7792         call.
7793
7794 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
7795
7796         * loader.c (mono_method_get_signature): Add support for dynamic
7797         assemblies.
7798
7799 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
7800
7801         * reflection.c: fixed bug #43905.
7802
7803 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
7804
7805         * class.c, domain.c, icall.c, metadata.h, object.h: support for
7806         handling TypedReference and ArgIterator.
7807         * loader.c, loader.h: added function to get signature at call site.
7808
7809 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
7810
7811         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
7812         data readonly. Buglets and warning fixes. Some MethodSpec support.
7813
7814 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
7815
7816         * class.h, class.c, object.c: remove relative numbering support.
7817
7818 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
7819
7820         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
7821         free the string, until we get a chance to fix Gtk#
7822
7823 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7824
7825         * marshal.c: revert last patch.
7826
7827 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
7828
7829         * icall.c: updates for new mono_class_vtable() not calling
7830         the type constructor anymore.
7831
7832 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
7833
7834         * object.h, object.c: separate vtable creation from type
7835         initialization. Make running the .cctor thread safe.
7836
7837 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
7838
7839         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
7840
7841 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
7842
7843         * loader.c (mono_get_method): consider calling convention
7844
7845 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
7846
7847         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
7848         to return the invisible global type for a module.
7849
7850         * reflection.c (mono_image_build_metadata): Emit global fields too.
7851
7852 2003-05-20  Peter Williams  <peterw@ximian.com>
7853
7854         * loader.c (mono_lookup_internal_call): Add a few newlines.
7855
7856 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
7857
7858         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
7859         literal strings.
7860
7861         * appdomain.c (set_domain_search_path): Recalculate search path when
7862         AppDomainSetup.PrivateBinPath changes.
7863
7864         * object.c (mono_class_compute_gc_descriptor): It turns out some
7865         parts of the class libs (like System.Thread) holds pointers to
7866         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
7867         to treat native int a pointer type here.
7868         
7869 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
7870
7871         * appdomain.h, domain.c: add hashtable for jump target resolution.
7872
7873 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
7874
7875         * reflection.h reflection.c icall.c: Added new icalls 
7876         GetManifestResourceInfoInternal, GetModulesInternal and support
7877         infrastructure.
7878
7879 2003-05-16  Dick Porter  <dick@ximian.com>
7880
7881         * icall.c:
7882         * file-io.h:
7883         * file-io.c: Implement System.IO.MonoIO::GetTempPath
7884
7885 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
7886
7887         * object.c: mono_store_remote_field: little fix to previous patch.
7888
7889 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
7890
7891         * class.c: add constructors to array classes.
7892         * icall.c: special case array construction for InternalInvoke (),
7893
7894 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
7895
7896         * class.h class.c reflection.c object.c: Added support for field
7897         defaults in dynamically generated classes.
7898
7899 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
7900
7901         * reflection.c: properly encode charset for ddlimport.
7902
7903 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
7904
7905         * threads.c: allow compiling without GC.
7906
7907 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
7908
7909         * appdomain.h, object.c, object.h, threads.c, threads.h: added
7910         handling of thread static data.
7911
7912 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
7913
7914         * reflection.h, reflection.c: added mono_custom_attrs_free ().
7915
7916 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
7917
7918         * class.c (mono_array_class_get): always set the serializable flags
7919         (mono_array_class_get): always set the SEALED attribute for array types
7920
7921 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
7922
7923         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
7924         attributes (fix for bug 42021).
7925
7926 2003-05-12  Dick Porter  <dick@ximian.com>
7927
7928         * gc.c: Don't run finalizers when the finalizer thread is
7929         finishing up, because the default domain has already been
7930         destroyed.
7931
7932 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
7933
7934         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
7935         value is null, we should throw an exception.   This is slightly
7936         different than the other conventions used for the constructor.
7937
7938 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7939
7940         * socket-io.c: fixed windows build.
7941
7942 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7943
7944         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
7945
7946 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
7947
7948         * object.c (mono_string_new_wrapper): Compatibility fix for MS
7949         compilers.
7950
7951 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
7952
7953         * class.c (mono_class_layout_fields): Add experimental GC aware
7954         auto layout facility. Requires class library changes to work correctly.
7955
7956         (mono_class_setup_vtable): Avoid overriding explicit interface
7957         method implementations. Fixes iface3.exe test.
7958
7959         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
7960         object reference.
7961         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
7962         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
7963
7964         * metadata.h: Add new type classification macro which determines
7965         whenever the type holds an object reference.
7966
7967 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
7968
7969         * marshal.c (mono_marshal_get_native_wrapper): cleanups
7970
7971 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
7972
7973         * gc.c (finalizer_thread): Work around a GC bug.
7974
7975 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
7976
7977         * marshal.c (emit_struct_conv): allow unions
7978
7979         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
7980
7981 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
7982
7983         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
7984
7985 2003-05-06  Martin Baulig  <martin@ximian.com>
7986
7987         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
7988
7989 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7990
7991         * socket-io.c:
7992         (Select_internal): allow NULLs, don't create arrays if not needed.
7993         Coupled with Socket.cs changes.
7994
7995         * threadpool.c:
7996         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
7997         register a finalizer for it that will close the semaphore handle. This
7998         fixes the leak and make Lupus' test run with > 4080 loops.
7999
8000 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
8001
8002         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
8003         Jerome Laban (bug #42287)
8004
8005 2003-05-02  Martin Baulig  <martin@ximian.com>
8006
8007         * debug-mono-symfile.h
8008         (MonoSymbolFile): Moved declaration into mono-debug.h.
8009         (MonoDebugMethodJitInfo): Likewise.
8010         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
8011         argument.
8012         (_mono_debug_address_from_il_offset): Take a
8013         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
8014
8015         * mono-debug.h
8016         (MonoDebugDomainData): New struct.
8017         (mono_debug_get_domain_data): New function.
8018         (mono_debug_add_method): Take an additional `MonoDomain *'
8019         argument.
8020         (mono_debug_source_location_from_address): Likewise.
8021         (mono_debug_il_offset_from_address): Likewise.
8022         (mono_debug_address_from_il_offset): Likewise.
8023
8024 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
8025
8026         * reflection.c: one more check for null type in custom attrs.
8027
8028 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8029
8030         * reflection.c: avoid warning (comparison is always false due to limited
8031         range of data type).
8032
8033 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8034
8035         * icall.c: throw an exception in Type.GetField if the argument 'name'
8036         is NULL.
8037
8038 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
8039
8040         * reflection.c: fixed handling of enums in named arguments to custom
8041         attributes (bug #42123).
8042
8043 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
8044
8045         * reflection.c: use the right array element type and handle
8046         a null for a Type argument, too.
8047
8048 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
8049
8050         * reflection.c: handle arrays as arguments to custom attributes.
8051
8052 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
8053
8054         * reflection.c: handle a string value in a custom attr
8055         ctor that takes an object.
8056
8057 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
8058
8059         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
8060         (fix bug #42063)
8061
8062 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
8063
8064         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
8065
8066 2003-04-27  Martin Baulig  <martin@ximian.com>
8067
8068         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
8069         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
8070         MONO_DEBUGGER_EVENT_BREAKPOINT.
8071         (mono_breakpoint_trampoline_code): Removed.
8072         (mono_debugger_event_handler): The last argument is now a
8073         `guint32'.
8074         (mono_debugger_insert_breakpoint_full): Removed the
8075         `use_trampoline' argument.
8076         (mono_debugger_method_has_breakpoint): Likewise.
8077         (mono_debugger_trampoline_breakpoint_callback): Renamed to
8078         mono_debugger_breakpoint_callback(); take the method and
8079         breakpoint number as arguments.
8080
8081 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
8082
8083         * metadata.c: fix off by one when loading parameters attributes.
8084
8085 2003-04-24  Martin Baulig  <martin@ximian.com>
8086
8087         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
8088
8089 2003-04-24  Martin Baulig  <martin@ximian.com>
8090
8091         * mono-debug-debugger.c: Moved all code which interacts with the
8092         Mono Debugger here.
8093
8094         * debug-mono-symfile.c: This code now just deals with the symbol
8095         file itself, the debugger code is now in mono-debug-debugger.c.
8096
8097 2003-04-23  Martin Baulig  <martin@ximian.com>
8098
8099         * mono-debug.c (mono_debug_source_location_from_il_offset):
8100         New method; like mono_debug_source_location_from_address(), but
8101         takes an IL offset instead of a machine address.
8102
8103 2003-04-23  Martin Baulig  <martin@ximian.com>
8104
8105         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
8106         `line' field; this is now computed by the debugger.
8107
8108 2003-04-23  Martin Baulig  <martin@ximian.com>
8109
8110         * mono-debug.[ch]: New files.  This is the new debugging interface.
8111
8112         * mono-debug-debugger.[ch]: New files.  Moved all code which
8113         interacts with the Mono Debugger here.
8114
8115 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
8116
8117         * domain.c (mono_init): initialize mono_defaults.monitor_class
8118
8119 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
8120
8121         * reflection.c (method_encode_code): Add a spicy exception to help
8122         future compiler authors.
8123
8124 2003-04-21  Martin Baulig  <martin@ximian.com>
8125
8126         * icall.c
8127         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
8128         Make this work with relative pathnames; g_filename_to_uri() needs
8129         an absolute filename.
8130
8131 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
8132
8133         * icall.c: Track name changes in Object and ValueType.
8134
8135 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
8136
8137         * metadata.c (mono_type_stack_size): size should be a multiple of
8138         sizeof (gpointer)
8139
8140 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8141
8142         * gc.c:
8143         (internal_domain_finalize): moved into mono_domain_finalize. No need
8144         to create another thread because the finalizers will be run in the
8145         finalizer thread.
8146         
8147         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
8148         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
8149         to be run (MS does this too).
8150
8151 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
8152
8153         * object.c (mono_class_compute_gc_descriptor): Update comment.
8154
8155         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
8156
8157         * image.h: Add synchronized wrapper cache.
8158
8159         * image.c (do_mono_image_open): Initialize cache.
8160
8161         * reflection.c (create_dynamic_mono_image): Initialize cache.
8162
8163 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8164
8165         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
8166         ves_icall_System_Buffer_ByteLengthInternal.
8167
8168 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
8169
8170         * reflection.c: setup klass->nested_in earlier. Allow
8171         a dash in the assembly name.
8172
8173 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
8174
8175         * metadata.c (mono_type_to_unmanaged): dont access
8176         type->data.klass for MONO_TYPE_OBJECT
8177         (mono_type_to_unmanaged): consider System.Delegate class
8178
8179 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
8180
8181         * class.c: just setup supertypes in the proper place instead of
8182         initializing the full element class for arrays.
8183
8184 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
8185
8186         * class.c: ensure the element class of arrays is initialized.
8187         Setup the supertype info for array classes, too.
8188
8189 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
8190
8191         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
8192
8193 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8194
8195         * Makefile.am: re-added -m option when running cygpath. This way,
8196         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
8197         separator.
8198         * mono-config.c: same codepath for locating mono config file for WIN32
8199         and the rest.
8200         * assembly.c: if mono_assembly_setrootdir is called, don't override
8201         the value set.
8202
8203 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8204
8205         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
8206         MONO_ASSEMBLIES variable.
8207
8208 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
8209
8210         * icall.c: added Assembly::GetNamespaces() icall.
8211
8212 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8213
8214         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
8215
8216 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
8217
8218         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
8219         * object.c: fixed bug in the construction of vtable for proxies
8220
8221 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
8222
8223         * object.c (mono_array_new): Mark mono_array_new as an icall.
8224
8225 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8226
8227         * class.c: fixed test for public method when overriding interfaces.
8228         Closes bug #40970.
8229
8230 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
8231
8232         * appdomain.h, domain.c: added mono_domain_foreach() to
8233         be able to access the currently loaded appdomains.
8234         * object.c: make string interning work across sppdomains.
8235         Mark some functions for use as icalls.
8236
8237 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
8238
8239         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
8240
8241         * reflection.h reflection.c: Allocate long living data using 
8242         GC_MALLOC_ATOMIC so the collector does not need to scan it.
8243
8244         * reflection.c: Double the allocation size in streams instead of
8245         increasing it, to prevent unneccesary copying on large assemblies.
8246         
8247         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
8248         creation if the assembly does not have the Run flag set.
8249
8250 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
8251
8252         * class.h: avoid the C++ keywords in header files (Jerome Laban
8253         spotted and fixed this).
8254
8255 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8256
8257         * object.c:
8258         (mono_unhandled_exception): fill in the arguments for the
8259         UnhandledException event. Only trigger that event for the default
8260         domain (as MS does).
8261
8262 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
8263
8264         * object.c: Improve typed allocation stuff based on suggestions from
8265         Paolo. Also turn it on if the GC library supports it.
8266
8267 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
8268
8269         * object.c object.h class.h: Added experimental typed allocation
8270         facility using the interfaces in gc_gcj.h.
8271
8272         * os/gc_wrapper.h: Added new include files.
8273         
8274 2003-04-03  Martin Baulig  <martin@ximian.com>
8275
8276         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
8277         which is not yet enabled by default.
8278
8279         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
8280         functions.
8281         (mono_gc_lock, mono_gc_unlock): New static functions.
8282
8283         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
8284         functions; stop/start the world for the garbage collector.  This
8285         is using the windows API; we need to complete the SuspendThread()/
8286         ResumeThread() implementation in the io-layer to make this work on Unix.
8287         (mono_gc_push_all_stacks): New public function; tells the garbage
8288         collector about the stack pointers from all managed threads.
8289
8290 2003-04-03  Martin Baulig  <martin@ximian.com>
8291
8292         * object.h (MonoThread): Added `gpointer stack_ptr'.
8293
8294         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
8295
8296 2003-04-03  Martin Baulig  <martin@ximian.com>
8297
8298         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
8299
8300 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
8301
8302         * reflection.c (typebuilder_setup_fields): Initialize field.first and
8303         field.last.
8304
8305 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
8306
8307         * loader.c (mono_lookup_internal_call): Report the corlib that is
8308         out of sync.
8309
8310 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
8311
8312         * icall.c (ves_icall_type_GetTypeCode): fixed check for
8313         System.DBNull (it's class not valuetype).
8314
8315 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
8316
8317         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
8318         if the array method was already assigned a token (fixes bug#40646).
8319
8320 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
8321
8322         * reflection.c (mono_reflection_get_type): Attempt type resolve even
8323         if no assembly is given.
8324
8325 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
8326
8327         * metadata.h: Added the new tables.
8328
8329         * row-indexes.h: Added definitions for new tables.
8330
8331         * metadata.c: Add schemas for new tables, and add support for
8332         computing the sizes of them.
8333
8334         * class.c: Update for handling the new type cases.
8335
8336 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
8337
8338         * metadata.h (MONO_TYPE_IS_VOID): new macro
8339
8340 2003-03-31  Martin Baulig  <martin@ximian.com>
8341
8342         * threads.h (MonoThreadCallbacks): Added `thread_created'.
8343
8344         * threads.c (mono_thread_new_init): Call `thread_created' in the
8345         mono_thread_callbacks.
8346
8347 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
8348
8349         * loader.h: added marshalbyrefobject_class to mono_defaults
8350         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
8351         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
8352           generation of output parameters.
8353           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
8354         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
8355           contextbound and the target object belongs to the context of the caller.
8356         * object.h: added context and unwrapped_server variables in MonoRealProxy.
8357         * object.c: Implemented support for interfaces and abstract classes
8358           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
8359           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
8360
8361 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
8362
8363         * class.h class.c (mono_class_is_subclass_of): New function.
8364         
8365         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
8366         routines for most common case (calls from ArrayList::ToArray).
8367
8368         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
8369         routine so programs which call Environment::Exit() can be profiled.
8370
8371         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
8372         Added MONO_ARCH_SAVE_REGS.
8373
8374         * icall.c (ves_icall_type_is_subtype_of): Use new function.
8375
8376 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
8377
8378         * blob.h: Add a couple of new MonoType types definitions.
8379
8380         * tabledefs.h: Add a couple of new call convs.
8381
8382 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
8383
8384         * reflection.h (MonoReflectionDynamicAssembly): track changes in
8385         the layout of the class.
8386
8387         * reflection.c (alloc_table): double the size on overflow to avoid
8388         unnecessary copying.
8389
8390         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
8391         avoid filling out metadata tables and blobs. Also set mb->ilgen to
8392         null so it can be garbage collected.
8393         
8394 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
8395
8396         * reflection.c (mono_reflection_get_type): Return the resolved type
8397         only if it is in the assembly we searched.
8398
8399         * reflection.c (ensure_runtime_vtable): Initialize method slots.
8400
8401         * class.c (mono_class_setup_vtable): Set the slot of the overriding
8402         method.
8403
8404 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8405
8406         * appdomain.c:
8407         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
8408         the right one is 'file:///blah', but MS allows it.
8409         * assembly.c:
8410         (mono_assembly_open): allow 'file://blah'
8411
8412         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
8413
8414 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
8415
8416         * socket-io.c: fixes bug #40310.
8417
8418 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
8419
8420         * reflection.c (mono_reflection_parse_type): handle deeply nested
8421         types correctly.
8422
8423         * reflection.c (mono_image_create_token): Use unique token values
8424         since they will be put into a hash table.
8425
8426         * class.c (mono_class_setup_vtable): If a method occurs in more than
8427         one place in the vtable, and it gets overriden, then change the
8428         other occurances too.
8429
8430         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
8431         object as return type.
8432
8433 2003-03-22  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
8434
8435         * icall.c: Deleted "ToString" implementation for double and float
8436         because they are full implemented in managed code.
8437
8438 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
8439
8440         * reflection.c, reflection.h: implemented and exported functions
8441         to retrieve info about custom attributes.
8442
8443 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8444
8445         * appdomain.c: moved Uri handling to assembly.c
8446         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
8447         work when using a file Uri in *nix and windows.
8448
8449         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
8450         GetReferencedAssemblies.
8451
8452 2003-03-18  Dick Porter  <dick@ximian.com>
8453
8454         * icall.c: Rename a couple of internal calls
8455
8456         * threads.c: Set the thread state to Stopped when a thread exits.
8457         Fixes bug 39377.
8458
8459 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
8460
8461         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
8462         New icall.
8463
8464         * object.c (mono_class_vtable): fix warning.
8465
8466 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
8467
8468         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
8469
8470         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
8471         memory.
8472         (method_encode_clauses): Create exception info structures in the right
8473         order.
8474         (mono_reflection_setup_internal_class): Initialize supertypes field.
8475
8476         * class.c object.c: Handle interfaces which implement other interfaces 
8477         correctly.
8478
8479         * class.h class.c: Move the supertypes array initialization code into 
8480         a separate function so it can be used for dynamic types too. Also call
8481         it earlier, in mono_class_init(), since it can be used before the
8482         type is initialized.
8483
8484 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8485
8486         * Makefile.am:
8487         * assembly.c:
8488         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
8489
8490         * appdomain.c:
8491         * appdomain.h:
8492         * marshal.c:
8493         * object.c: remove warnings.
8494
8495 2003-03-13  Martin Baulig  <martin@ximian.com>
8496
8497         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
8498         (MonoDebugLexicalBlockEntry): New types.
8499
8500         * debug-mono-symfile.c
8501         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
8502
8503 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8504
8505         * process.c: ret can be any non-zero value accroding to MS doc.
8506
8507 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
8508
8509         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
8510         fixing a warning for a miss-used prototype, would have cause
8511         random memory corruption.
8512
8513 2003-03-07  Martin Baulig  <martin@ximian.com>
8514
8515         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
8516         getting really annoying ....
8517
8518 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
8519
8520         * reflection.c (fixup_method): added support for array methods.
8521
8522 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
8523
8524         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
8525         (pointed out by Michael Adams).
8526
8527 2003-03-04  Dick Porter  <dick@ximian.com>
8528
8529         * icall.c: Temporarily reverted the Double and Single ToString()
8530         change, because it broke nunit.
8531
8532 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
8533
8534         * object.h, threads.h: make include files compatible with C++
8535         (patch by Jerome Laban <jlaban@wanadoo.fr>).
8536
8537 2003-03-04  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
8538
8539         * icall.c: Erased ToString helper functions for Double and Single.
8540         Now, that implementations ar all in managed code (Double and Single
8541         Formatters).
8542
8543 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
8544
8545         * appdomain.c: Added method for initializing the default context of
8546         a domain. Added internal call for getting the default context.
8547         * appdomain.h: Added context variable in MonoDomain struct.
8548         * domain.c: mono_domain_set also sets the default context of the domain
8549         * icall.c: Mapped internal method InternalGetDefaultContext.
8550         * object.c: mono_object_get_virtual_method returns always a remoting
8551         wrapper if the object is a transparent proxy.
8552         mono_runtime_invoke_array: when creating an object by calling the
8553         constructor, if the created object is a proxy, then the constructor should
8554         be called using the a remoting wrapper.
8555
8556 2003-03-03  Dick Porter  <dick@ximian.com>
8557
8558         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
8559         variable so it compiles on solaris.  Problem spotted by
8560         Christopher Taylor <ct@cs.clemson.edu>
8561
8562 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8563
8564         * appdomain.c:
8565         (get_info_from_assembly_name): don't leak value.
8566
8567         * icall.c:
8568         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
8569         result.
8570
8571 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
8572
8573         * assembly.c: export mono_image_load_references ().
8574         * class.c: handle function pointers. mono_class_from_name() now
8575         supports nested type names directly.
8576
8577 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
8578
8579         * reflection.h reflection.c: Encode already created dynamic methods 
8580         and fields correctly as a DEF instead of a REF.
8581
8582         * reflection.c: Get rid of the force_ref argument to 
8583         mono_image_typedef_or_ref since it was wrong in the first place.
8584
8585         * string-icalls.c: add error checking to string constructors according
8586         to the MSDN docs.
8587
8588         * reflection.c: Emit types in the order their TypeBuilders were 
8589         created. Previously, a new table index was assigned to each type before
8590         the tables were emitted. This was wrong because the signature blob
8591         might already refer to a type by its original table index.
8592
8593 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
8594
8595         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
8596         change.
8597         
8598 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8599
8600         * Makefile.am: make assemblies dir have \ instead of / on windows.
8601
8602 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
8603
8604         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
8605         iterate over the NESTEDCLASS table using a linear search since the
8606         table is not guaranteed to be sorted by the secondary key.
8607
8608         * class.c (mono_class_create_from_typedef): fixed up call to
8609         mono_metadata_nesting_typedef.
8610         
8611 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
8612
8613         * marshal.c (mono_string_to_byvalstr): clear the memory as
8614         suggested by Jerome Laban <jlaban@wanadoo.fr>
8615
8616 2003-02-26  Dick Porter  <dick@ximian.com>
8617
8618         * process.c: Cope with padding in .rsrc blocks
8619
8620 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
8621
8622         * metadata.h: reverted the filter_len change, it breaks reflection
8623         
8624 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
8625
8626         * metadata.h: added a new field to store the filter_len
8627         
8628
8629 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
8630
8631         * reflection.c: handle custom attributes for types and members
8632         created with Reflection.Emit (bug#38422).
8633
8634 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
8635
8636         * reflection.c: define RTSpecialName automatically for constructors for
8637         compatibility with MS.NET.
8638
8639         * reflection.c (mono_reflection_create_runtime_class): initialize
8640         nested_in field of dynamically created classes.
8641
8642 2003-02-22  Martin Baulig  <martin@ximian.com>
8643
8644         * debug-mono-symfile.h: Incremented version number.
8645
8646 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
8647
8648         * object.h icall.c process.c: fix warnings.
8649
8650 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
8651
8652         * appdomain.h appdomain.c:
8653         (mono_domain_try_type_resolve): split the 
8654         name_or_tb argument into a name and a tb argument.
8655         (mono_domain_has_type_resolve): new function to check whenever the
8656         application has registered a TypeResolve event handler.
8657         
8658         * icall.c reflection.h reflection.c: move the type resolve logic into
8659         mono_reflection_get_type () so it will be invoked when 
8660         Assembly::GetType () is called.
8661
8662         * reflection.c:
8663         (mono_reflection_get_type): renamed to get_type_internal.
8664         (mono_reflection_get_type): fixed type name generation so it works 
8665         for nested types too.
8666         (mono_reflection_get_type): call has_type_resolve () to avoid the 
8667         costly type name generation if there is no resolve event handler.
8668
8669 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
8670
8671         * class.c, image.c: load exported types from file references.
8672
8673 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
8674
8675         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
8676           used to cache the managed methods used to create proxies and make 
8677           remote invocation of methods.
8678         * class.h: Added in MonoVTable a flag to indicate that a class needs 
8679           to be remotely created.
8680         * object.c: Modified the method mono_class_vtable(). It now initializes 
8681           the remote flag of the vtable. Modified mono_object_new_specific(), 
8682           so now it checks the remote flag.
8683         * icall.c: Added a couple of internal methods, one for enabling instance 
8684           creation interception for a type, and one for creating objects bypassing
8685           the remote check.
8686
8687 2003-02-18  Martin Baulig  <martin@ximian.com>
8688
8689         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
8690         New interncall to get a method's metadata token.
8691
8692         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
8693         New interncall for the debugger.
8694
8695 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
8696
8697         * class.c (mono_class_setup_vtable): allocate supertype array
8698
8699 2003-02-18  Martin Baulig  <martin@ximian.com>
8700
8701         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
8702
8703 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8704
8705         * reflection.c:
8706         (assembly_name_to_aname): jump over unknown properties (i've found
8707         something like: 'type, assembly, version=xxx, custom=null, public...',
8708         so now will ignore custom=null and still get the rest of the values).
8709
8710 2003-02-17  Dick Porter  <dick@ximian.com>
8711
8712         * threads.c: Have Thread.Start() wait for a semaphore to signal
8713         that the thread has set up all its local data.  This fixes bug
8714         34323, where Abort() raced the new thread's TLS data.
8715
8716         Also removes the handle_store() call from start_wrapper, because
8717         threads are now always created suspended and there is no longer a
8718         race between the parent and child threads to store the info.
8719
8720 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
8721
8722         * image.c: explain the #- heap issue in a message, hopefully
8723         avoiding FAQs on mono-list.
8724
8725 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8726
8727         * icall.c:
8728         (GetEntryAssembly): if the domain has not invoked
8729         AppDomain.ExecuteAssembly yet, return the assembly of the default
8730         AppDomain.
8731
8732 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
8733
8734         * class.c (mono_ldtoken): make it work in dynamic assemblies.
8735
8736 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
8737
8738         * metadata.c, reflection.c: simple speedup to type hash
8739         and equals code.
8740
8741 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
8742
8743         * image.c, image.h, class.c, assembly.c: move module loading
8744         to MonoImage. When loading metadata, consider alignemnet from
8745         the start of metadata, not from the metadata address in memory.
8746
8747 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
8748
8749         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
8750         AssemblyBuilder objects. Factored out custom attribute creation into
8751         a separate function.
8752         (create_custom_attr): new function to create custom attributes.
8753
8754 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
8755
8756         * Makefile.am: Got tired of typing the full pathname to pedump.
8757         Until there is another option, am installing this.
8758
8759 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
8760
8761         * class.c (class_compute_field_layout): always set field->parent 
8762         (mono_ldtoken): use mono_defaults.fieldhandle_class;
8763
8764 2003-02-11  Dick Porter  <dick@ximian.com>
8765
8766         * threads-types.h:
8767         * monitor.c: Rewrote Monitor, making lock much faster and
8768         Pulse/Wait work as specified.  Also uses much fewer handles, and only
8769         creates them as needed.
8770
8771         * exception.c: Added SynchronizationLockException
8772
8773         * threads.c: Deleted old Monitor implementation.  The new one is
8774         in a new file.
8775
8776 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
8777
8778         * class.c: handled TypedReference type code. Set the correct size for
8779         class data. Setup interface_offsets for interface classes, too.
8780
8781 2003-02-09  Martin Baulig  <martin@ximian.com>
8782
8783         * debug-mono-symfile.h: Reflect latest symbol writer changes.
8784
8785 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
8786
8787         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
8788         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
8789         * object.c: fixed mono_object_get_virtual_method () for interfaces.
8790         * verify.c: check for code that runs after the end of the method.
8791
8792 2003-02-08  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
8793
8794         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
8795         "System.Math::Round2".
8796         * sysmath.h: Added Floor, Round and Round2 definitions.
8797         * sysmath.c: Modified certain functions that were not 100% compliant
8798         with MS.NET (math precision) and added the implementation of Floor,
8799         Round and Round2.
8800
8801 2003-02-07  Martin Baulig  <martin@ximian.com>
8802
8803         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
8804
8805 2003-02-07  Martin Baulig  <martin@ximian.com>
8806
8807         * debug-mono-symfile.c: Reflected latest symwriter changes.
8808         (mono_debug_create_mono_symbol_file): Removed.
8809         (mono_debug_open_mono_symbol_file): Take an argument which
8810         specifies whether to create a dynamic symbol file.
8811
8812 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
8813
8814         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
8815
8816 2003-02-05  Martin Baulig  <martin@ximian.com>
8817
8818         * reflection.c (mono_image_build_metadata): Make this public,
8819         protect it against being called multiple times, don't create
8820         resources and don't build the compressed metadata here.
8821         (mono_image_create_pefile): Do this here.
8822
8823         * icall.c
8824         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
8825
8826 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8827
8828         * socket-io.c: fixed bug #36322.
8829
8830 2003-02-06  Piers Haken <piersh@friskit.com>
8831
8832         * appdomain.[ch]:
8833         * class.h:
8834         * debug-mono-symfile.c:
8835         * icall.c:
8836         * loader.c:
8837         * mono-config.c:
8838         * monosn.c:
8839         * reflection.c:
8840         * socket-io.c: warning cleanups
8841
8842 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
8843
8844         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
8845         function. works like remoting invoke, but does a check for the Proxy first.
8846
8847 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
8848
8849         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
8850
8851 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
8852
8853         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
8854         array of pointers.
8855         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
8856         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
8857
8858         * object.c (mono_store_remote_field_new): used by the new jit
8859         instead of mono_store_remote_field
8860         (mono_load_remote_field_new): used by the new jit
8861         instead of mono_load_remote_field
8862
8863 2003-02-05  Patrik Torstensson
8864
8865         * appdomain.c: changed unload to take the domain id instead
8866         of domain
8867         
8868         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
8869
8870
8871 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8872
8873         * appdomain.c: don't look for assemblies in ApplicationBase if
8874         PrivateBinPathProbe is set.
8875
8876 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8877
8878         * object.c: make the first argument in main_args contain the absolute
8879         path to the assembly. Fixes bug #37511.
8880
8881 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8882
8883         * icall.c: get correct UTC offset for countries not using daylight
8884         time saving. Fixes bug #30030.
8885
8886 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8887
8888         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
8889         and 1 are the family).
8890
8891 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
8892
8893         * icall.c (ves_icall_InternalExecute): removed wrong assertion
8894
8895         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
8896
8897 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
8898
8899         * reflection.c: added support for SignatureHelper tokens, which is
8900         needed by the Calli opcode.
8901
8902         * reflection.h: track changes to SignatureHelper class.
8903
8904         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
8905
8906 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8907
8908         * appdomain.c: fixed loading assemblies from PrivateBinPath.
8909
8910 2003-02-03  Patrik Torstensson
8911         * appdomain.[c|h], domain.c : 
8912          - Added support for getting a domain via domain id
8913          - Support for setting and getting domain from System.AppDomain 
8914            (used in cross appdomain channel)
8915          - Added support for get/set for a MonoAppContext on a thread 
8916            (Context class in System.Runtime.Remoting.Contexts),
8917          - Removed hack in Get/SetData and ExecuteAssembly.
8918         
8919         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
8920         the managed world to get control when a proxy is created.
8921
8922         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
8923         
8924 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
8925
8926         * icall.c
8927         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
8928         Populate the codebase field as well.
8929
8930 2003-02-02  Martin Baulig  <martin@ximian.com>
8931
8932         * debug-mono-symfile.c
8933         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
8934         (mono_debug_symfile_add_method): Allow interncalls.
8935
8936 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8937
8938         * icall.c: throw parse exception if strtod fails or the string is empty.
8939
8940 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
8941
8942         * marshal.c: handle object type separately from defined
8943         class types.
8944
8945 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
8946
8947         * marshal.c: handle NATIVE_LPSTR for strings when it's
8948         explicitly specified.
8949
8950 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
8951
8952         * reflection.c, reflection.h, icall.c: setup the reflection
8953         handle cache for ModuleBuilders and AssemblyBuilders.
8954
8955 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
8956
8957         * reflection.c (reflection_methodbuilder_to_mono_method): set
8958         pinvoke flag
8959
8960 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8961
8962         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
8963
8964 2003-01-29  Dick Porter  <dick@ximian.com>
8965
8966         * threads.c: No need for the fake_thread kludge now that Thread
8967         doesn't run a class constructor
8968         
8969 2003-01-29  Dick Porter  <dick@ximian.com>
8970
8971         * threads.c: Use g_direct_hash instead of the rather bogus
8972         g_int_hash
8973
8974 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
8975
8976         * marshal.c (mono_marshal_get_native_wrapper): add check for null
8977         (fix pinvoke12.exe)
8978         (mono_marshal_get_struct_to_ptr): generate valid IL code
8979         (mono_marshal_get_ptr_to_struct): generate valid IL code
8980         (*): correctly set sig->pinvoke, we need to memdup the signature
8981         to do that
8982
8983 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
8984
8985         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
8986         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
8987
8988 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
8989
8990         * profiler.c: provide more callers information.
8991
8992 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
8993
8994         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
8995
8996         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
8997
8998         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
8999
9000 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9001
9002         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
9003         exception instead of going into an infinite loop on dates which it 
9004         can't yet handle.
9005
9006         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
9007         out-of-range exception if needed.
9008
9009         * class.c (mono_class_setup_vtable): allow a virtual method to provide
9010         an implementation for an interface method and to override an inherited
9011         method at the same time. 
9012         Imagine a scenario when a virtual method is used to override a
9013         virtual abstract method in a parent class, and this same method 
9014         provides an implementation for an method inherited from an interface. 
9015         In this case, the interface resolution code will set im->slot, which 
9016         means that the virtual method override pass will skip this method 
9017         which means a pointer to the abstract method inherited from the parent
9018         will remain in the vtable of this non-abstract class.
9019
9020         * class.c: (mono_class_setup_vtable): continue search for a real 
9021         method if only an abstract method is found.     
9022
9023 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
9024
9025         * reflection.c: add size to encoding for ByValStr and ByValArray
9026         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
9027
9028 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9029
9030         * class.c (mono_class_setup_vtable): pass the override info as an
9031         argument.
9032
9033         * class.c (mono_class_setup_vtable): set the slot of overriding methods
9034         correctly.
9035         
9036         * reflection.c (ensure_runtime_vtable); add support for method 
9037         overrides.
9038         
9039 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9040
9041         * reflection.c (resolution_scope_from_image): Hack to work to work with
9042         dynamic assemblies.
9043
9044         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
9045         added a 'force_ref' argument to force this function to allways return 
9046         a TypeRef. This is needed by mono_image_get_memberref_token ().
9047         
9048 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9049
9050         * reflection.c (mono_image_get_type_info): interfaces really don't have
9051         a parent.
9052
9053         * reflection.c (mono_image_basic_init): fill out missing fields of
9054         image structure.
9055
9056         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
9057         dynamic assemblies. This is required so dynamic assemblies show up in
9058         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
9059         Type::GetType() etc. This is consistent with MS behaviour.
9060
9061         * image.c image.h reflection.c: add newly created classes to the name 
9062         cache so mono_class_get () will find them.      
9063
9064 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9065
9066         First part of changes to get IKVM.NET running under mono.
9067         
9068         * appdomain.h, appdomain.c: added new function 
9069         mono_domain_try_type_resolve() which will emit TypeResolve events. 
9070         This function will call AppDomain::DoTypeResolve to do the actual work.
9071
9072         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
9073         moved existing code dealing with dynamic tokens to a new function 
9074         called mono_reflection_lookup_dynamic_token (). This function will 
9075         raise TypeResolve events when appropriate. Since reflection.c is not 
9076         part of libmetadata, a new hook function called 
9077         mono_lookup_dynamic_token() is added to class.c which will call this.
9078
9079         * assembly.h assembly.c: make the invoke_load_hook function public,
9080         so it can be called for dynamic assemblies.
9081
9082         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
9083
9084         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
9085         type isn't found.
9086
9087         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
9088         MonoGHashTable, since it contains pointers to objects which the GC 
9089         needs to track.
9090
9091         * assembly.c (search_loaded): remove unused variable.
9092         
9093 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
9094
9095         * object.c: fixed issue exposed by gcc-generated IL programs
9096         that use RVA data for pointers.
9097
9098 2003-01-25  Martin Baulig  <martin@ximian.com>
9099
9100         * threads.c (start_wrapper): Moved the initialization of
9101         `start_func' above the mono_new_thread_init() call to which we
9102         pass it as argument.
9103
9104 2003-01-24  Martin Baulig  <martin@ximian.com>
9105
9106         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
9107         the MonoThread pointer.
9108
9109 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
9110
9111         * icall.c: Rename `PowImpl' to Pow.
9112
9113 2003-01-23  Dick Porter  <dick@ximian.com>
9114
9115         * threads.c (start_wrapper): Create a Thread object if needed, so
9116         the Main() thread can do the class initialisation in a subthread
9117         that has been set up to allow managed code execution.
9118
9119         Pass the thread ID instead of the MonoThread pointer to the thread
9120         start and attach callbacks.  This change is required, because the
9121         jit thread start callback must be called _before_ the Thread
9122         object can be created.
9123         
9124         (mono_thread_init): Removed much object creation code that is no
9125         longer needed.  No managed code is called from here now.
9126
9127         * object.c (mono_runtime_exec_managed_code): Create a subthread
9128         for Main, and call back to the runtime to use it.
9129         Set the exit code when Main exits.
9130
9131         * gc.c: Make sure domain finalisation happens in a subthread.
9132         Re-enable threaded GC, fixing bug 31333 (again).
9133
9134         * environment.c: System.Environment internall calls (so far just
9135         ExitCode is here, the others are still in icall.c)
9136
9137         * appdomain.c (mono_runtime_cleanup): All threads running managed
9138         code should have finished before mono_runtime_cleanup() is
9139         reached, so no need to clean up threads.
9140
9141 2003-01-22  Martin Baulig  <martin@ximian.com>
9142
9143         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
9144         `gpointer func' arguments.      
9145         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
9146         but added `MonoThread *thread' argument.
9147         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
9148
9149         * threads.c (mono_new_thread_init): Added `gpointer func' argument
9150         and pass it to the mono_thread_start_cb callback.
9151         (mono_install_thread_callbacks): New public function to install a
9152         set of callbacks which are set by the debugger.
9153         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
9154
9155 2003-01-22  Martin Baulig  <martin@ximian.com>
9156
9157         * Makefile.am: Install debug-mono-symfile.h.
9158
9159 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
9160
9161         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
9162
9163 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
9164
9165         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
9166         * class.c (mono_ptr_class_get): correctly set access levels of pointers
9167         (mono_array_class_get): correctly set access levels of arrays
9168
9169 2003-01-20      Patrik Torstensson
9170         * image.h (MonoAssemblyName): changed major, minor, build, revision
9171         from signed to unsigned.
9172
9173 2003-01-20  sean kasun <skasun@azstarnet.com>
9174
9175         * reflection.c (load_cattr_value): Now this handles
9176         MONO_TYPE_SZARRAY.  Fixes bug #35629
9177
9178 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
9179
9180         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
9181         integer value
9182
9183 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9184
9185         * decimal.c: fixed bug #26056.
9186
9187 2003-01-17  Martin Baulig  <martin@ximian.com>
9188
9189         * gc.c: Raise an ExecutionEngineException instead of using g_error().
9190
9191 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9192
9193         * exception.[ch]:
9194         (mono_get_exception_type_initialization): new function.
9195
9196         * object.c: throw a TypeInitializationException when an exception is
9197         thrown invoking the class constructor.
9198
9199 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9200
9201         * reflection.c: fixed attribute reading.
9202
9203 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9204
9205         * icall.c:
9206         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
9207         provided, look for the type in the calling assembly and then in
9208         mscorlib; if the assembly name is provided, only try that one.
9209
9210 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
9211
9212         * object.c: register the vtable before there is a chance it's
9213         queried again recursively.
9214
9215 2003-01-13  Duncan Mak  <duncan@ximian.com>
9216
9217         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
9218         gc-internal.h. 
9219         
9220 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
9221
9222         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
9223
9224 2003-01-11  Martin Baulig  <martin@ximian.com>
9225
9226         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
9227         this to 20 for the release.
9228
9229 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
9230
9231         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
9232
9233         * loader.c (mono_method_get_marshal_info): bug fix
9234
9235         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
9236         structures with explicit layout
9237
9238 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
9239
9240         * profiler.c: made the output more readable (and sorted). 
9241         Added caller information for the allocation profiler.
9242
9243 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
9244
9245         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
9246
9247 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9248
9249         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
9250         to get value types.
9251         
9252 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
9253
9254         * object.c, profiler.h, profiler.c, profiler-private.h:
9255         Added object allocation profiler.
9256
9257 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
9258
9259         * reflection.h, reflection.c: handle global methods.
9260         Compress blob entries.
9261
9262 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
9263
9264         * marshal.c: fix compilation.
9265
9266 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
9267
9268         * loader.c (mono_method_get_marshal_info): impl.
9269
9270         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
9271
9272 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9273
9274         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
9275         for reference types.
9276
9277 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
9278
9279         * loader.c: fixed off by one error in loaded parameter names.
9280
9281 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
9282
9283         * marshal.c (mono_marshal_get_icall_wrapper): like
9284         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
9285         instead of a MonoMethod.
9286
9287 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9288
9289         * decimal.c: fixed bug #36537.
9290
9291 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
9292
9293         * marshal.c: throw a missing method exception if a
9294         P/Invoke method is not found.
9295
9296 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
9297
9298         * icall.c: allow a null this for constructors.
9299
9300 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
9301
9302         * icall.c: raise the proper exceptions if the arguments to the
9303         internal Invoke are incorrect.
9304
9305 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
9306
9307         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
9308
9309 2003-01-03  Martin Baulig  <martin@ximian.com>
9310
9311         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
9312
9313 2002-12-31  Martin Baulig  <martin@ximian.com>
9314
9315         * debug-mono-symfile.c: Completely rewrote the type section.
9316         Instead of using individual malloc()ed fields, we use one big
9317         continuous memory area and offsets into this area.
9318         See the comments in the source code for details.
9319
9320 2002-12-30  Martin Baulig  <martin@ximian.com>
9321
9322         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
9323
9324 2002-12-30  Martin Baulig  <martin@ximian.com>
9325
9326         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
9327         line number table in this data blob instead of using an external
9328         pointer.
9329
9330 2002-12-28  Martin Baulig  <martin@ximian.com>
9331
9332         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
9333
9334 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
9335
9336         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
9337         as a boxed return type.
9338
9339 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
9340
9341         * appdomain.c
9342         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
9343         g_build_filename to properly get separators on the filename created.
9344
9345         * object.h: Small change, introduce MonoMarshalByRefObject to
9346         track the layout of that structure in the C# universe as we make
9347         changes there.
9348
9349 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
9350
9351         * object.c: removed assert to allow static fields on interfaces.
9352         * loader.c: a TypeSpec may be used for any type, not just arrays.
9353
9354 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
9355
9356         * class.c, class.h: added mono_class_array_element_size ().
9357         Ignore static methods in interfaces.
9358
9359 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9360
9361         * threads.c: fixed the build under cygwin.
9362
9363 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
9364
9365         * reflection.c: handle nullref constants. Allocate keys for
9366         reflection handles with the GC.
9367
9368 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
9369
9370         * threads.c, threads.h: added mono_thread_get_abort_signal()
9371         to get a suitable signal for thread abort.
9372
9373 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
9374
9375         * metadata.c: fix handling of ExportedType table.
9376
9377 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9378
9379         * icall.c: added WriteWindowsDebugString internal call.
9380
9381 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9382
9383         * reflection.h: added fields to match C# implementation.
9384
9385 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9386
9387         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
9388
9389 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
9390
9391         * gc.h, gc-internal.h: Rename header for GC internal calls to
9392         gc-internal.h from gc.h as to not clash with Boehm GC having its
9393         header installed as <gc.h> in outside include paths.
9394         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
9395         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
9396
9397 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9398
9399         * icall.c: assign minor, build and revision in FillName.
9400
9401 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
9402
9403         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
9404         Added support for running code generated by Reflection.Emit.
9405
9406 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9407
9408         * appdomain.c: check for NULL argument in LoadFrom.
9409
9410 2002-12-10  Dick Porter  <dick@ximian.com>
9411
9412         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
9413
9414 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9415
9416         * appdomain.c: fix buglet when building exe file name.  Handle full
9417         assembly name (needed after latest changes to AssemblyName).
9418         * image.c:
9419         (mono_image_close): free some hashtables.
9420
9421 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
9422
9423         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
9424         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
9425         on some systems (redhat 7.3) 
9426
9427 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
9428
9429         * threads.c: delete the critical section of a sync block,
9430         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
9431
9432 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
9433
9434         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
9435
9436 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9437
9438         * appdomain.[ch]: handle the assembly preload event to try loading the
9439         assemblies using the paths we have in the current domain.
9440
9441         * assembly.[ch]: created an assembly preload hook that is called to try
9442         loading the assembly by other means that the ones provided here.
9443
9444         * domain.c: initialize the domain search path.
9445
9446         From now on, assemblies (TODO: except corlib and System) are loaded
9447         according to these rules when using mono_assembly_load ():
9448
9449                 1. It tries to load the assembly from the ApplicationBase
9450                 of the current domain appending .dll and .exe (TODO: have to
9451                 try loading from name/name.dll and name/name.exe).
9452
9453                 2. It tries the search path specified in PrivateBinPath for the
9454                 current domain (if any).
9455
9456                 3. Previous behavior.
9457
9458 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
9459
9460         * icall.c: implemented GetInterfaceMap() related icall.
9461         * domain.c, loader.h: load MethodInfo in mono_defaults.
9462
9463 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
9464
9465         * gc.c: disable the finalizer thread for now, untill all the issues
9466         with it are resolved.
9467
9468 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
9469
9470         * string-icalls.c: handle embedded nulls in string ctor when the
9471         length is specified.
9472
9473 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
9474
9475         * class.c: look for explicit interface implementation in parent
9476         classes, too.
9477
9478 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
9479
9480         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
9481
9482 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
9483
9484         * gc.c: protect handles with a critical section.
9485
9486 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9487
9488         * icall.c:
9489         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
9490         parameters. If no assembly specified, try getting the type from all
9491         the assemblies in the current domain, else, load the assembly and get
9492         the type from it.
9493
9494 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9495
9496         * marshal.c: applied patch from Aleksey Demakov that fixes
9497         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
9498
9499 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9500
9501         * icall.c: fixed get_location.
9502
9503 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
9504
9505         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
9506         declarations to make it work with older gcc. 
9507
9508         * loader.c (mono_get_method): set signature->pinvoke for native calls
9509
9510 2002-11-20  Dick Porter  <dick@ximian.com>
9511
9512         * threads.c (mono_thread_init): Set the main thread's handle
9513
9514 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
9515
9516         * gc.c: allow compilation without GC support. Changed to match the
9517         mono coding style.
9518
9519 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
9520
9521         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
9522
9523 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
9524
9525         * reflection.c: set a public key token on the core assemblies.
9526
9527 2002-11-18  Dick Porter  <dick@ximian.com>
9528
9529         * threads.c: Split out some thread initialisation so that other
9530         files can set the start callback function.
9531
9532         * gc.c: Run finalisers in a separate thread, to avoid stack
9533         overflow.  Fixes bug 31333.
9534
9535         * appdomain.c: Set up GC finalisation thread.
9536
9537         * reflection.c: 
9538         * object.c: 
9539         * domain.c: Use gc.h macros for GC_malloc
9540         
9541 2002-11-15  Dick Porter  <dick@ximian.com>
9542
9543         * threadpool.c: 
9544         * threads.c:
9545         * appdomain.c: Removed mono_runtime_init_with_attach(),
9546         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
9547         merging the extra parameter with the existing function.  Removed
9548         unneeded code in mono_thread_attach().
9549
9550 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
9551
9552         * image.c (mono_image_loaded_by_guid): a method to get loaded
9553         images by guid. 
9554         (load_metadata_ptrs): we store the guid as string.
9555
9556 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
9557
9558         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
9559
9560         * metadata.c (mono_guid_to_string): imported method form Zoltan
9561         Varga (slightly modified)
9562
9563         * assembly.c (mono_assembly_open): load precompiled code
9564
9565         * loader.h (MonoMethod): we store the method token for use in the
9566         aot compiler. 
9567
9568 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9569
9570         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
9571         the hook function called when an assembly is loaded.
9572         
9573         * domain.c: Modified file.
9574         (mono_domain_assembly_load): removed hash table insertion of assemblies.
9575
9576         Fixes bug #33196.
9577
9578 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
9579
9580         * reflection.c: Map PEFileKind to the value expected by the WinNT
9581         image loader. 
9582
9583 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9584
9585         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
9586         Read until the buffer is filled completely.
9587
9588 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9589
9590         * icall.c: implemented MonoType.InternalGetEvent ().
9591
9592 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9593
9594         * appdomain.c: implemented InitAppDomainSetup. Delayed
9595         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
9596         the entry_assembly.
9597
9598         * assembly.c: base_dir is now an absolute path ending with
9599         G_DIR_SEPARATOR.
9600
9601         * icall.c: modified get_location according to the above changes.
9602
9603         * object.c: init AppDomain.SetupInformation for the default domain after
9604         we have the entry assembly.
9605
9606         * domain.c: when unloading a domain, setup = NULL.
9607
9608 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
9609
9610         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
9611
9612 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
9613
9614         * object.h, object.c: introduced mono_object_get_virtual_method ()
9615         to lookup the method invoked on an object when a callvirt is done on
9616         a method.
9617         * icall.c: make MethodInfo::Invoke() always do a virtual call.
9618
9619 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9620
9621         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
9622         current domain when loaded an assembly and failed to load it.
9623
9624         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
9625
9626 2002-10-31  Dick Porter  <dick@ximian.com>
9627
9628         * icall.c: 
9629         * file-io.h: 
9630         * file-io.c: Return the error status in a parameter, as the
9631         GetLastError() value has long since been blown away if we try and
9632         look it up in a subsequent internal call invocation.  Delete the
9633         GetLastError() internal call, because it's useless.
9634
9635 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
9636
9637         * class.[ch]: added cast_class to fix bug 29517
9638
9639 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
9640
9641         * marshal.c: create valid IL code in the filter clause:
9642         the new JIT is less forgiving:-)
9643
9644 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9645
9646         * icall.c: removed get_property internal call.
9647
9648 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
9649
9650         * appdomain.h domain.c: Added an ID to appdomains.
9651         
9652         * threads.c threads.h icall.c: Implement icall
9653         Thread:GetDomainID(), and remove unused icall 
9654         CurrentThreadDomain_internal.
9655
9656 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9657
9658         * icall.c: Don't recurse through the base types in GetConstructor.
9659         Fixes bug #32063. 
9660
9661 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
9662
9663         * mempool.h, mempool.c: added mono_mempool_empty() and
9664         mono_mempool_stats().
9665
9666 2002-10-23  Dick Porter  <dick@ximian.com>
9667
9668         * file-io.c: 
9669         * file-io.h: 
9670         * icall.c: Added MonoIO.GetFileType internal call
9671
9672 2002-10-17  Dick Porter  <dick@ximian.com>
9673
9674         * appdomain.c (mono_runtime_cleanup): Don't signal the async
9675         delegate semaphore before waiting for all threads to finish,
9676         because new threads can also call async delegates.  Fixes bug
9677         32004.
9678
9679         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
9680         of 3 seconds, in case another async job is queued.  (This part is
9681         needed because the bug fix reintroduced the 3s exit lag.)  This
9682         makes the mono_runtime_shutdown flag superfluous.
9683
9684 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
9685
9686         * reflection.c: include ehader size in method section headers.
9687         Really check for suplicated modules entries.
9688
9689 2002-10-17  Martin Baulig  <martin@gnome.org>
9690
9691         * debug-mono-symfile.c: Added back support for locals.
9692
9693 2002-10-14  Martin Baulig  <martin@gnome.org>
9694
9695         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
9696         MONO_TYPE_VOID.
9697
9698 2002-10-14  Martin Baulig  <martin@gnome.org>
9699
9700         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
9701         mono_class_get() instead of looking in the class cache. 
9702
9703 2002-10-13  Martin Baulig  <martin@gnome.org>
9704
9705         * debug-mono-symfile.c: Set version number to 28, include the
9706         signature in method names.
9707
9708 2002-10-13  Martin Baulig  <martin@gnome.org>
9709
9710         * debug-mono-symfile.h: Set version number to 27.
9711
9712 2002-10-11  Martin Baulig  <martin@gnome.org>
9713
9714         * gc.c: Don't register/unregister NULL pointers as disappearing links.
9715
9716 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
9717
9718         * metadata.c, metadata.h: added helper function to allocate signatures.
9719
9720 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9721
9722         * icall.c: added internal call to get the location of machine.config.
9723
9724 2002-10-08  Martin Baulig  <martin@gnome.org>
9725
9726         * debug-mono-symfile.c: Ignore classes with a pending init for the
9727         moment.
9728
9729 2002-10-03  Dick Porter  <dick@ximian.com>
9730
9731         * threads.c: Freebsd pthread_t is a pointer
9732
9733 2002-10-03  Dick Porter  <dick@ximian.com>
9734
9735         * socket-io.c: Implemented GetHostName_internal
9736
9737 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9738
9739         * mono-config.c:
9740         (mono_config_parse_file): don't leak the text.
9741
9742 2002-10-02  Martin Baulig  <martin@gnome.org>
9743
9744         * debug-mono-symfile.c: Added support for methods.
9745
9746 2002-10-01  Martin Baulig  <martin@gnome.org>
9747
9748         * debug-mono-symfile.c: Don't emit methods and line numbers for
9749         the dynamic symbol file, just write the type table.  We can easily
9750         have an external helper program which creates a symbol file for an
9751         IL file.        
9752
9753 2002-10-01  Dick Porter  <dick@ximian.com>
9754
9755         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
9756         Only add the handle to the cleanup array when we're about to
9757         launch the thread.  Bug 31425 deadlocked when the test was run on
9758         mono under w32.
9759
9760 2002-10-01  Martin Baulig  <martin@gnome.org>
9761
9762         * debug-mono-symfile.c: Added support for properties.
9763
9764 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
9765
9766         * reflection.c: unaligned store fix from Mark Crichton
9767         <crichton@gimp.org>.
9768
9769 2002-09-27  Martin Baulig  <martin@gnome.org>
9770
9771         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
9772         New interncall.
9773
9774 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
9775
9776         * assembly.h, assembly.c: use a sane API to hook into the assembly
9777         loading process instead of a useless special-purpouse hack
9778         (ngen needs a hook, too, for example).
9779
9780 2002-09-27  Dick Porter  <dick@ximian.com>
9781
9782         * threads.c (mono_thread_init): Call GetCurrentProcess() so
9783         io-layer can set up some process handle info.  Not needed on w32,
9784         but doesn't hurt either.
9785
9786         * process.c: Pass the program name in the second parameter to
9787         CreateProcess, so the path is searched.  Include the working
9788         directory. Implemented process name, process enumeration, and some
9789         process detail internal calls.
9790         
9791         * icall.c: Added internal calls for process lookup, and some
9792         process details
9793
9794 2002-09-26  Martin Baulig  <martin@gnome.org>
9795
9796         * assembly.c (mono_install_open_assembly_hook): New global
9797         function to install a function to be invoked each time a new
9798         assembly is loaded.
9799         (mono_assembly_open): Run this callback function if set.
9800
9801         * debug-mono-symfile.c: Put back line numbers for the dynamic
9802         symbol file and also record the .il file as source file.  This
9803         allows us to install the temporary symbol file as `file.dbg' just
9804         like a compiler-generated one.
9805
9806 2002-09-26  Nick Zigarovich <nick@chemlab.org>
9807
9808         * Corrected typo in gc.c (BOHEM vs BOEHM).
9809
9810 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9811
9812         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
9813         GetProperties. Also avoid calling g_slist_length in GetProperties and
9814         GetMethods.
9815
9816 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
9817
9818         * reflection.c: avoid unaligned stores (bug spotted by
9819         Mark Crichton  <crichton@gimp.org>).
9820
9821 2002-09-25  Martin Baulig  <martin@gnome.org>
9822
9823         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
9824         instead of guint64 for addresses and added prologue/epilogue info.
9825
9826 2002-09-25  Martin Baulig  <martin@gnome.org>
9827
9828         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
9829         store line number info.  For the dynamic symbol file, we only need
9830         to provide the JIT generated dynamic line number info for the dynamic
9831         symbol file.
9832
9833 2002-09-25  Martin Baulig  <martin@gnome.org>
9834
9835         * debug-mono-symfile.h: Incremented version number.
9836
9837 2002-09-24  Martin Baulig  <martin@gnome.org>
9838
9839         * class.c (mono_debugger_class_init_func): New global function
9840         pointer variable.
9841         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
9842         call it.
9843
9844         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
9845         function.  This is called via the mono_debugger_class_init_func
9846         hook to add all types to the dynamic type table.
9847         (ves_icall_MonoDebugger_GetType): New interncall to get a class
9848         from its metadata token.
9849
9850         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
9851         New interncall for the debugger.
9852
9853 2002-09-24  Nick Drochak <ndrochak@gol.com>
9854
9855         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
9856         before using it in case it is null.
9857         
9858 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9859
9860         * metadata.c: allow custom modifiers in local var signatures
9861         (bug spotted by Zoltan Varga).
9862
9863 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
9864
9865         * class.c: deal with the <Module> class that may have a NULL vtable.
9866         Eliminate warnings.
9867
9868 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
9869
9870         * image.c, image.h: more strong name helpers.
9871         * monosn.c: more work: convert pem keys to cryptoapi format.
9872
9873 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
9874
9875         * string-icalls.c: speedup IndexOf.
9876
9877 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
9878
9879         * icall.c: updates from Zoltan.2.Varga@nokia.com.
9880
9881 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
9882
9883         * icall.c: cleanup: use mono_object_domain ().
9884
9885 2002-09-23  Martin Baulig  <martin@gnome.org>
9886
9887         * debug-mono-symfile.c: Improved type support.
9888
9889 2002-09-22  Martin Baulig  <martin@gnome.org>
9890
9891         * debug-mono-symfile.c: Added support for reference types and strings.
9892
9893 2002-09-22  Martin Baulig  <martin@gnome.org>
9894
9895         * debug-mono-symfile.c: Started to work on the type table.
9896
9897 2002-09-21  Martin Baulig  <martin@gnome.org>
9898
9899         * debug-mono-symfile.c: Largely reworked the symbol table format.
9900         The symbol table is now incrementally updated each time a new
9901         method is added.  We're now also using our own magic and version
9902         so that you don't need to recompile all your classes if the
9903         dynamic table changes.
9904         (mono_debug_update_mono_symbol_file): Removed.
9905         (mono_debug_symfile_add_method): New function to add a method.
9906
9907 2002-09-21  Martin Baulig  <martin@gnome.org>
9908
9909         * icall.c
9910         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
9911         New interncall.
9912
9913         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
9914         New interncall to get a method from its metadata token.
9915
9916 2002-09-21  Martin Baulig  <martin@gnome.org>
9917
9918         * debug-mono-symfile.c: Create type table.
9919
9920 2002-09-20  Martin Baulig  <martin@gnome.org>
9921
9922         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
9923
9924 2002-09-20  Martin Baulig  <martin@gnome.org>
9925
9926         * debug-mono-symfile.c: Provide information about params and locals.
9927
9928 2002-09-20  Martin Baulig  <martin@gnome.org>
9929
9930         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
9931         New interncall.
9932
9933         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
9934         interncall to get a method from its metadata token.
9935
9936 2002-09-20  Martin Baulig  <martin@gnome.org>
9937
9938         * debug-mono-symfile.c: Added a few checks for method->header
9939         being non-NULL.  This should never happen, but for the moment
9940         let's use a g_warning() rather than a g_assert().
9941
9942 2002-09-19  Mark Crichton  <crichton@gimp.org>
9943
9944         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
9945         even if support for it isn't present.  Added an #ifdef to fix this.
9946
9947         * socket-io.c: Added checks back for Solaris support.
9948
9949 2002-09-19  Martin Baulig  <martin@gnome.org>
9950
9951         * debug-mono-symfile.c (read_string, write_string): Reflect latest
9952         changes in the symbol file format.
9953
9954 2002-09-18  Martin Baulig  <martin@gnome.org>
9955
9956         * debug-mono-symfile.c: Set version number to 21.
9957
9958 2002-09-18  Dick Porter  <dick@ximian.com>
9959
9960         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
9961         on netbsd.  Fixes bug 30051.
9962
9963 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9964
9965         * reflection.c:
9966         (set_version_from_string): little fix.
9967
9968 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
9969
9970         * monosn.c, Makefile.am: added strong name utility.
9971         * reflection.h, reflection.c: implemented delayed signing,
9972         locale, version and hash id assembly attributes.
9973
9974 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
9975
9976         * loader.c, metadata.c: load param attributes in signatures.
9977
9978 2002-09-16  Martin Baulig  <martin@gnome.org>
9979
9980         * debug-mono-symfile.c: Added string table with all method names.
9981
9982 2002-09-14  Martin Baulig  <martin@gnome.org>
9983
9984         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
9985         fast method lookup.
9986
9987 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
9988
9989         * reflection.c: record the public key token of referenced assemblies.
9990
9991 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
9992
9993         * image.c, image.h: added functions to get the strong name and the
9994         public key of an assembly.
9995         * pedump.c: use them.
9996
9997 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
9998
9999         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
10000
10001 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
10002
10003         * marshal.c (mono_marshal_get_managed_wrapper): Added
10004         MONO_TYPE_BOOLEAN 
10005
10006 2002-09-11  Martin Baulig  <martin@gnome.org>
10007
10008         * gc.c: Call GC_unregister_disappearing_link() on all links when
10009         finalizing them, this is necessary to aviod a crash in boehm's
10010         finalize handler.
10011
10012 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10013
10014         * gc.c: handle GetTarget for finalized objects spotted and fixed by
10015         nick@chemlab.org.
10016
10017 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
10018
10019         * icall.c: implemented MonoType::Module.
10020         * reflection.c, reflection.h: mono_module_get_object () from
10021         Tomi Pakarinen <tomi.pakarinen@welho.com>.
10022
10023 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
10024
10025         * icall.c: ignore overridden methods in GetMethods ().
10026         Fix for FieldInfo::SetValue().
10027         * object.c: handle float/double in runtime invoke.
10028
10029 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
10030
10031         * object.c: allow a constructor to be called again on an object.
10032
10033 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
10034
10035         * class.h, class.c: move field layout code to it's own function and
10036         export it. Get an interface id earlier. Move fields in MonoClass
10037         so they are more cache friendly and align the bitfields.
10038         * loader.c: temporary handle get_param_names() for a runtime method.
10039         * reflection.c, reflection.h: more code to handle runtime creation of
10040         types.
10041
10042 2002-09-09  Martin Baulig  <martin@gnome.org>
10043
10044         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
10045         signature with the pinvoke field being set for the actual call.
10046
10047 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10048
10049         * icall.c: removed some unused icalls. Start of map of glib charsets
10050         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
10051
10052 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
10053
10054         * debug-helpers.c: break infinite loop (found and fixed by
10055         Holger Arnold <harnold@gmx.de>).
10056
10057 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
10058
10059         * icall.c: target may be null in create_delegate.
10060
10061 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
10062
10063         * marshal.c: handle a boolean return type.
10064
10065 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
10066
10067         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
10068
10069 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
10070
10071         * gc.c: fix weakreferences.
10072
10073 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
10074
10075         * icall.c: added icall to get default codepage.
10076
10077 2002-09-03  Dick Porter  <dick@ximian.com>
10078
10079         * threads.h: 
10080         * threads.c: Use MonoThread instead of MonoObject where
10081         apropriate.
10082
10083         Store running thread objects in a hash table, so that we have all
10084         the info to hand when waiting for them to finish
10085         (means we don't need OpenThread() any more, so mingw builds should
10086         be fully functional again.)
10087
10088         * verify.c:
10089         * object.h: Added thread ID to MonoThread
10090
10091 2002-09-03  Martin Baulig  <martin@gnome.org>
10092
10093         * icall.c (System.Reflection.Assembly::get_location): New interncall.
10094
10095 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10096
10097         * icall.c: fixed leak in get_temp_path. Thanks lupus.
10098
10099 2002-09-03  Martin Baulig  <martin@gnome.org>
10100
10101         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
10102         argument to store the end address of the disassembled instruction.
10103
10104         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
10105         here from debug-symfile.h.
10106         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
10107         JIT into this struct.
10108         (MonoSymbolFile): Added `char *image_file' field.
10109         (MonoDebugGetMethodFunc): Removed.
10110         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
10111         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
10112         (mono_debug_find_method): New method.
10113
10114         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
10115         create a full symbol file.
10116         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
10117         and static symbol files.
10118         (mono_debug_find_method): The symbol file keeps an internal method hash,
10119         call this to get a MonoDebugMethodInfo from a MonoMethod.
10120
10121         * debug-symfile.[ch]: Removed.
10122
10123 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
10124
10125         * image.c (do_mono_image_open): Remove linker version check.
10126
10127 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
10128
10129         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
10130         wrappers for instance methods.
10131         
10132 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10133
10134         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
10135
10136 2002-08-28  Dick Porter  <dick@ximian.com>
10137
10138         * Makefile.am: Export HOST_CC for w32 builds
10139
10140 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
10141
10142         * file-io.c process.c: MonoString are null terminated, no
10143         need for mono_string_to_utf16() anymore.
10144
10145 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10146
10147         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
10148
10149 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
10150
10151         * icall.c, reflection.h: speedup System.MonoType.
10152
10153 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
10154
10155         * reflection.c: allow null as the value of a string argument in
10156         custom attributes constructors.
10157
10158 2002-08-27  Martin Baulig  <martin@gnome.org>
10159
10160         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
10161         `trampoline_address' field.
10162
10163 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
10164
10165         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
10166         check (fixes bug #29486) 
10167
10168 2002-08-27  Martin Baulig  <martin@gnome.org>
10169
10170         * debug-mono-symfile.c: Changed the file format in a way that allows us
10171         open it read-only and to use a specially malloced area for all the
10172         dynamic data.  We can now also generate a symbol file on-the-fly if we're
10173         debugging IL code and there is no MCS generated symbol file for it.
10174
10175 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
10176
10177         * object.c: added a define for a good string and array
10178         creation speedup (not enabled by default because we need to deal with
10179         the synch stuff).
10180
10181 2002-08-26  Martin Baulig  <martin@gnome.org>
10182
10183         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
10184         function to create a dynamic symbol file.  This is used by the
10185         debugger to create a symbol file for IL code on-the-fly.
10186
10187 2002-08-26  Martin Baulig  <martin@gnome.org>
10188
10189         * loader.c (mono_lookup_pinvoke_call): Include the error message
10190         from g_module_error() in the error message.
10191
10192 2002-08-24  Martin Baulig  <martin@gnome.org>
10193
10194         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
10195         function to update the symbol file.  The symbol file is mmap()ed
10196         writable, but private.  This allows us to install the symbol file
10197         together with the assembly.
10198
10199 2002-08-24  Martin Baulig  <martin@gnome.org>
10200
10201         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
10202         but they can read the new symbol file format which mcs is now creating.
10203
10204         * debug-symfile.c (mono_debug_find_source_location): Moved to
10205         debug-mono-symfile.c; this is now operating on the new symbol file.
10206
10207 2002-08-23  Martin Baulig  <martin@gnome.org>
10208
10209         * debug-helpers.c (mono_method_desc_from_method): New function to get
10210         a MonoMethodDesc from a MonoMethod.
10211
10212 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
10213
10214         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
10215         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
10216
10217 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
10218
10219         * string-icalls.[ch]: make helper methods static.
10220
10221 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10222
10223         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
10224         types to it and to SetValueInternal.
10225
10226         * object.c: Moved handle_enum label to its proper place. This was the
10227         f... bug! ;-)
10228
10229         This time i compiled mcs and gtk-sharp and they both work.
10230
10231 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10232
10233         * icall.c: reverted partially my previous patch until 
10234         object.c:set_value handles enums correcly.
10235
10236 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10237
10238         * icall.c:
10239         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
10240         (ves_icall_System_Environment_get_MachineName): removed warning when
10241         compiling under cygwin.
10242
10243 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
10244
10245         * object.c: fixed field_get_value() for reference types.
10246
10247 2002-08-22  Dick Porter  <dick@ximian.com>
10248
10249         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
10250         Don't free a buffer while it's still needed.  Patch from Jonathan
10251         Liger <Jonathan.liger@wanadoo.fr>
10252
10253 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
10254
10255         * icall.c (ves_icall_System_Environment_get_Platform): Add new
10256         internal call.
10257
10258 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
10259
10260         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
10261         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
10262
10263         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
10264         we call unmanaged code which throws exceptions.
10265
10266 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10267
10268         * appdomain.h: added per-domain entry_assembly.
10269         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
10270         arguments.
10271         * icall.c: Assembly::GetEntryAssembly icall.
10272         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
10273         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
10274
10275 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10276
10277         * appdomain.h, gc.c: added mono_domain_finalize ().
10278
10279 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10280
10281         * object.c:
10282         (mono_print_unhandled_exception): changed g_warning by g_printerr
10283         because g_log has a 1024 characters limit (yeah, i got a big stack
10284         trace). Don't print exception name, that should be in ToString 
10285         returned string.
10286
10287 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10288
10289         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
10290         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
10291
10292 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10293
10294         * object.c:
10295         (mono_print_unhandled_exception): after previous commit, i realized
10296         that MS calls ToString on the exception. I changed this function to
10297         do that. This way we get stack_trace for free.
10298
10299 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10300
10301         * object.c:
10302         (mono_print_unhandled_exception): invoke Message property instead of
10303         getting 'message' field from Exception. Don't allocate memory for
10304         'trace' and 'message' if not needed.
10305
10306 2002-08-18  Dick Porter  <dick@ximian.com>
10307
10308         * unicode.c: Fix asserts to match Encoder.cs checks
10309
10310 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10311
10312         * marshal.c: fix unaligned store issue and a few wrong
10313         opcode argument types.
10314
10315 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10316
10317         * icall.c: added GetUninitializedObjectInternal internal call.
10318
10319 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
10320
10321         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
10322         to the right domain.
10323
10324 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
10325
10326         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
10327
10328         * class.c (class_compute_field_layout): set blittable to false for Strings
10329
10330         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
10331
10332 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10333
10334         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
10335         first chunk of code to create types at runtime. Code to
10336         handle ReflectedType/DeclaringType. Make reflection handles
10337         domain specific.
10338
10339 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
10340
10341         * class.c: set correct name in arrays.
10342
10343 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
10344
10345         * appdomain.c (mono_domain_transfer_object): make it work with
10346         valuetypes. bug fixes.
10347
10348 2002-08-12  Dick Porter  <dick@ximian.com>
10349
10350         * object.h: Rename some parameters to avoid c++ keywords (Patch
10351         from Joseph Wenninger <kde@jowenn.at>)
10352
10353 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
10354
10355         * icall.c: added icall to implement Assembly.GetFile*.
10356
10357 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
10358
10359         * reflection.h, reflection.c: code to embed managed resources.
10360
10361 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
10362
10363         * class.c: move all the type size stuff into
10364         class_compute_field_layout().
10365
10366 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10367
10368         * class.c: ensure enums have always the correct instance size.
10369         * unicode.c: remove wrong assert.
10370
10371 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
10372
10373         * assembly.c: fix mem corruption issue.
10374         * image.h, image.c: added mono_image_get_resource () to access
10375         managed resources.
10376         * icall.c: implemented Assembly.EntryPoint property and some
10377         Managed Resources related internalcalls.
10378
10379
10380 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
10381
10382         * image.c, image.h: impemented mono_image_get_entry_point ().
10383         * appdomain.c: use mono_image_get_entry_point.
10384
10385 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10386
10387         * reflection.c: support the object type argument when loading
10388         custom attributes.
10389
10390 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
10391
10392         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
10393         String as return type.
10394
10395 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
10396
10397         * reflection.c: fix encoding of named args for custom attrs to match
10398         the ms implementation. Read them back when instantiating custom
10399         attributes.
10400
10401 2002-08-02  Radek Doulik  <rodo@ximian.com>
10402
10403         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
10404         by Dietmar as quick fix
10405         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
10406         16 as stack size, used on more places as quick fix before Dietmar
10407         will fix it properly
10408
10409 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
10410
10411         * object.h, object.c: added accessors for fields and properties.
10412
10413 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10414
10415         * class.c, class.h: made mono_class_get_field_from_name ()
10416         loop on parent types.
10417         Added mono_class_get_property_from_name ().
10418
10419 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
10420
10421         * class.c, class.h: move the code to setup the type vtable in its own
10422         function so that it can be reused also for types created at runtime.
10423         Eliminate the "class" identifier from the header file.
10424         * reflection.c: setup the vtable for enums so that we can create
10425         objects for use in SetConstant ().
10426
10427 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
10428
10429         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
10430         instead of the delegate itself as this pointer (bug #28383)
10431
10432 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
10433
10434         * marshal.c (mono_marshal_get_managed_wrapper): added return type
10435         conversions.
10436
10437 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10438
10439         * loader.c: don't set the pinvoke bit on icalls.
10440
10441 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
10442
10443         * debug-helpers.c (mono_method_full_name): only print a number to
10444         indicate wrapper type (so that the output is more readable in traces).
10445
10446 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
10447
10448         * class.c (mono_class_init): include method override patch from Paolo
10449
10450 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
10451
10452         * icall.c: fixed GetTypeCode().
10453
10454 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
10455
10456         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
10457         use real delegate invoke function to make it work with multicast
10458         delegates (fix bug# 28291).
10459
10460 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
10461
10462         * object.c: load constant strings.
10463
10464 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10465
10466         * reflection.c: no magic numbers.
10467         * tabledefs.h: security action enum.
10468
10469 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
10470
10471         * assembly.c: fix possible memory corruption.
10472
10473 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
10474
10475         * reflection.h, reflection.c: added support for linking resources.
10476         * verify.c: check we have an updated corlib.
10477
10478 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
10479
10480         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
10481         string arrays.
10482         (mono_marshal_string_array): null terminate unmanaged string arrays.
10483         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
10484
10485 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
10486
10487         * icall.c: Type.GetType () can now return also types from the
10488         calling assembly.
10489
10490 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
10491
10492         * loader.h, loader.c: stack walking support.
10493         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
10494         GetCallingAssembly.
10495
10496 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
10497
10498         * marshal.c: added optimisations for blittable types 
10499
10500         * class.c (mono_array_class_get): do not set blittable attribute on arrays
10501         (mono_class_setup_mono_type): set blittable attribute for single
10502         and double.
10503
10504         * marshal.c (mono_string_utf8_to_builder): impl.
10505         (mono_string_builder_to_utf8): impl.
10506         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
10507
10508 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
10509
10510         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
10511         (mono_marshal_get_managed_wrapper): impl. byref types
10512
10513 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10514
10515         * icall.c:
10516         (search_method): don't display debug message. 
10517
10518 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
10519
10520         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
10521
10522 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
10523
10524         * appdomain.c: set the missing filename when throwing exception.
10525
10526 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
10527
10528         * metadata.c (mono_type_size): code cleanup
10529         (mono_type_stack_size): removed some test code
10530
10531 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
10532
10533         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
10534         mono_get_exception_file_not_found now.
10535
10536         * exception.c (mono_exception_from_name_two_strings): New version
10537         that will call a constructor with two string arguments. 
10538         (mono_get_exception_file_not_found): New helper routine, used to
10539         report file-not-found errors.
10540
10541 2002-07-20  Dick Porter  <dick@ximian.com>
10542
10543         * process.h:
10544         * process.c: Pass file handles to CreateProcess
10545         
10546         * icall.c:
10547         * file-io.h:
10548         * file-io.c: Implemented CreatePipe
10549
10550 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
10551
10552         * metadata.c (mono_get_param_info): set alignment for value types
10553
10554 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10555
10556         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
10557         Constify mono_domain_assembly_open().
10558         * loader.c: handle null namespace in icalls.
10559
10560 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
10561
10562         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
10563         (emit_str_to_ptr_conv): marshal object as structs
10564
10565         * metadata.c (mono_type_to_unmanaged): marshal object as structs
10566
10567         * marshal.c (mono_marshal_get_runtime_invoke): support value types
10568
10569 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
10570
10571         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
10572         (mono_marshal_get_native_wrapper): we an now return value types
10573
10574 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10575
10576         * verify.c: more checks implemented.
10577
10578 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
10579
10580         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
10581         (fix bug #27695)
10582         (mono_marshal_get_native_wrapper): allow byref arguments
10583         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
10584         impl. PtrToStringXXX methods
10585         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
10586         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
10587         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
10588         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
10589         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
10590
10591 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10592
10593         * reflection.c: fix buglet in parsing an assembly name.
10594
10595 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
10596
10597         * marshal.c (emit_ptr_to_str_conv): first impl.
10598
10599 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
10600
10601         * object.c, class.h: cache the vtable in the class as suggested by
10602         vargaz@freemail.hu (Zoltan Varga).
10603
10604 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10605
10606         * class.h, loader.c: added mono_field_from_token().
10607         * verify.c: first cut of type checking code.
10608
10609 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
10610
10611         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
10612
10613 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
10614
10615         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
10616         (fix bug #27782)
10617         (mono_marshal_get_remoting_invoke): impl.
10618         (mono_delegate_begin_invoke): impl.
10619         (mono_mb_emit_save_args): impl.
10620         (mono_delegate_end_invoke): impl.
10621         (mono_marshal_get_delegate_begin_invoke):
10622         (mono_marshal_get_delegate_end_invoke):
10623         (mono_marshal_get_delegate_invoke): generate a special name for
10624         those methods (including the signature) and associate them whith
10625         the delegate class. 
10626
10627 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
10628
10629         * reflection.[ch]: 
10630         (mono_reflection_type_from_name): now it has a MonoImage parameter
10631         which is used as the default image to search the type in. If the image
10632         is NULL or getting the type from it fails, it defaults to corlib.
10633
10634         * icall.c: changed 1 call to mono_reflection_type_from_name to match
10635         new parameter.
10636
10637 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10638
10639         * reflection.c: update the parameter table index.
10640
10641 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
10642
10643         * domain.c: don't include the mark byte in the string hash.
10644
10645 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
10646
10647         * icall.cs: icall for Type.GetTypeCode ().
10648         * verify: a couple of fixes and disabled local initialization checks.
10649
10650 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
10651
10652         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
10653
10654         * debug-helpers.c (mono_method_full_name): print the type of the
10655         runtime wrapper
10656
10657         * metadata.c (mono_signature_hash): a hash function for signatures
10658         (mono_signature_hash): better hash algorithm
10659
10660         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
10661
10662         * debug-helpers.c (mono_method_full_name): this can now generate
10663         method names with signatures
10664
10665         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
10666         method dont have this pointers.
10667
10668 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
10669
10670         * reflection.c: fixup typebuilder tokens.
10671         * image.c: fix buglet.
10672         * marshal.h: remove whitespace.
10673         * metadata.h, metadata.c: reinstate code that was removed.
10674         * verify.c: handle catch directives and fix another couple of bugs.
10675
10676 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
10677
10678         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
10679         (mono_marshal_get_native_wrapper): make it comp. with the old code
10680         (mono_marshal_get_native_wrapper): support boolean
10681         (mono_marshal_get_managed_wrapper): support more types
10682
10683 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
10684
10685         * class.c (class_compute_field_layout): compute class->blittable attribute.
10686
10687 2002-07-09  Dick Porter  <dick@ximian.com>
10688
10689         * threads.c: Make the thread cleaning up cope with threads that
10690         call ExitThread()
10691
10692 2002-07-08  Radek Doulik  <rodo@ximian.com>
10693
10694         * reflection.c (method_encode_code): use non-translated values to
10695         compute finally_start, this fixes exception handling on ppc, yay!
10696
10697         * decimal.h (struct signscale): fix endianess
10698
10699 2002-07-07  Radek Doulik  <rodo@ximian.com>
10700
10701         * reflection.c: swap box_val and not val
10702
10703 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
10704
10705         * reflection.c, reflection.h: handle full assembly info in type name.
10706         Handle Type arguments when loading custom attributes.
10707         * icall.c: updated to use new mono_reflection_type_from_name () method.
10708
10709 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10710
10711         * loader.c:
10712         (method_from_memberref): also print assembly name when method not found.
10713
10714 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10715
10716         * icall.c:
10717         (ves_icall_TypeGetProperties): fixed bug #27473. 
10718
10719 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10720
10721         * reflection.c: display image name and token when cannot find the
10722         .ctor for an attribute.
10723
10724 2002-07-05  Martin Baulig  <martin@gnome.org>
10725
10726         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
10727
10728 2002-07-04  Dick Porter  <dick@ximian.com>
10729
10730         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
10731         compile on mingw.  This will cause mingw builds to not wait for
10732         subthreads to terminate after the main thread does.  I've lodged a
10733         bug with the mingw developers for them to wrap OpenThread().
10734
10735 2002-07-03  Dick Porter  <dick@ximian.com>
10736
10737         * threads.c: Store thread IDs instead of handles, because
10738         GetCurrentThread() returns a pseudohandle and therefore stores
10739         useless values.  mono_thread_cleanup() continues checking the
10740         array of threads until it is empty, to cope with subthreads
10741         spawning new threads after the main thread has finished.
10742
10743         * profiler.h:
10744         * profiler.c:
10745         * profiler-private.h: Pass the thread ID to thread profiler
10746         functions, instead of a handle
10747
10748 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
10749
10750         * verify.c: fixes to make it more usable.
10751         * pedump.c: added --verify code to verify IL code in an assembly.
10752
10753 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10754
10755         * reflection.c: turn errors into warnings to allow compiling corlib.
10756
10757 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
10758
10759         * reflection.c: add special cases to compile corlib.
10760
10761 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
10762
10763         * reflection.c: handle properties with only a set method.
10764
10765 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
10766
10767         * opcodes.h: add enum with opcodes in opval order.
10768
10769 2002-07-01  Dick Porter  <dick@ximian.com>
10770         
10771         * object.h:
10772         * object.c (mono_runtime_run_main): Removed unneeded argument
10773
10774 2002-06-28  Martin Baulig  <martin@gnome.org>
10775
10776         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
10777
10778 2002-06-27  Dick Porter  <dick@ximian.com>
10779
10780         * threads.c: Store the handle in both the parent thread and in the
10781         subthread, to minimise the time between starting a new thread and
10782         storing its ID.
10783
10784 2002-06-26  Dick Porter  <dick@ximian.com>
10785
10786         * appdomain.c (mono_runtime_cleanup): Close the socket library
10787         after all the threads have finished, not before
10788
10789 2002-06-26  Martin Baulig  <martin@gnome.org>
10790
10791         * debug-symfile.c (mono_debug_find_source_location): Added
10792         `guint32 *line_number' argument.  If it's not NULL, store the line number
10793         there and return the file name without the line number.
10794
10795 2002-06-25  Dick Porter  <dick@ximian.com>
10796
10797         * icall.c:
10798         * process.h:
10799         * process.c: Process forking and other support functions
10800
10801 2002-06-25  Dick Porter  <dick@ximian.com>
10802
10803         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
10804         things dont happen when the image is closed.
10805         (mono_image_lookup_resource): Walk the resource section looking
10806         for a particular entry
10807
10808         * cil-coff.h: PE resource section decoding
10809
10810 2002-06-25  Dick Porter  <dick@ximian.com>
10811         
10812         * assembly.h:
10813         * assembly.c: 
10814         (mono_assembly_foreach): Accessor functions to walk the list of
10815         loaded assemblies
10816         (mono_assembly_set_main):
10817         (mono_assembly_get_main): Process methods need to know which
10818         assembly is the "main" one
10819
10820         * object.c (mono_runtime_run_main): Record the main assembly
10821
10822         * debug-helpers.c: Fix typo
10823
10824 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
10825
10826         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
10827         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
10828
10829 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
10830
10831         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
10832
10833 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
10834
10835         * image.c (do_mono_image_open): Initialize reference count,
10836         otherwise we leak the MonoImage.
10837
10838 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
10839
10840         * reflection.c: small tweak to handle self-hosting.
10841
10842 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
10843
10844         * reflection.c: fix type name parse code.
10845
10846 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
10847
10848         * reflection.c: break out of the loop.
10849         * image.c: special case corlib.
10850
10851 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10852
10853         * reflection.c: add all the custom attrs at the end to ensure the
10854         ctors have been properly initialized when the attributes are defined
10855         in the current assembly.
10856
10857 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
10858
10859         * reflection.c: handle correctly multiple-nested types.
10860
10861 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
10862
10863         * row-indexes.h: fix typos.
10864         * reflection.c: adjust for typos and fix method_def_or_ref
10865         encoding in MethodImpl table.
10866
10867 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
10868
10869         * reflection.c: fix entry point patching (thanks Serge!).
10870
10871 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
10872
10873         * verify.c: add check for System.Exception
10874
10875 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
10876
10877         * image.c, class.c: minifix for code just c&p'ed.
10878         * reflection.c: warning fix.
10879         * object.h, loader.h, domain.c: load also StringBuilder.
10880
10881 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
10882
10883         * marshal.h, marshal.c: some support code to handle complex marshaling.
10884
10885 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10886
10887         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
10888         Better signatures with vtable error dump.
10889
10890 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
10891
10892         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
10893
10894 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
10895
10896         * icall.c (ves_icall_Type_GetField): impl.
10897
10898 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10899
10900         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
10901         to retrieve a marshal description blob for a field or param.
10902
10903 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
10904
10905         * reflection.h, reflection.c: change order of nested type emission
10906         to avoid table corruption. The NestedTypes table is sorted.
10907         * icall.c: change order of GetConstructor results to workaround mcs bug.
10908
10909 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
10910
10911         * reflection.h, reflection.c: handle field and param marshal
10912         information.
10913
10914 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10915
10916         * icall.c, marshal.c marshal.h: more Marshal class implementation.
10917
10918 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10919
10920         * reflection.c: fix call convention.
10921
10922 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10923
10924         * reflection.h, reflection.c: mono_image_get_memberref_token()
10925         takes a type instead of a class, now. Added
10926         mono_image_get_array_token() to create tokens for the special
10927         multi-dim array methods.
10928
10929 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
10930
10931         * assembly.c: handle modules (no assembly table). Split
10932         loading references in its own function.
10933         * class.c: handle moduleref resolution scope.
10934         * image.c, image.h: cache module name in image.
10935
10936 2002-06-07  Martin Baulig  <martin@gnome.org>
10937
10938         * reflection.c (mono_image_get_type_info): Only add a class layout entry
10939         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
10940
10941 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
10942
10943         * icall.c: more signature fixes that used uint instead of int.
10944
10945 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10946
10947         * reflection.c: fixed signature of field refs.
10948
10949 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10950
10951         * class.c, reflection.c: handle typerefs of nested types
10952         (both on read and when writing files).
10953
10954 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
10955
10956         * icall.c: fix method signatures that tried to workaround the previous
10957         typo, d'oh!
10958
10959 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
10960
10961         * debug-helpers.c: fix typo.
10962
10963 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
10964
10965         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
10966         rewrote the PE/COFF writing code (our programs are understood by the
10967         ms runtime, now).
10968
10969 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
10970
10971         * gc.c, gc.h, icall.c: weakreference support.
10972
10973 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10974
10975         * Makefile.am, mono-config.c: use $(sysconfdir).
10976
10977 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
10978
10979         * icall.c: changed default precision of Double.ToString() to 15.
10980         Fixed memory leak. Unified with Single.ToString.
10981
10982 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
10983
10984         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
10985
10986 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
10987
10988         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
10989         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
10990         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
10991         and myself.
10992
10993 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
10994
10995         * debug-symfile.c, sysmath.c: yet more compilation fixes.
10996
10997 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10998
10999         * reflection.c, socket-io.c: more compilation fixes.
11000
11001 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
11002
11003         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
11004         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
11005         unicode.c: warning and compiler compatibility fixes.
11006
11007 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
11008
11009         * class.h, metadata.c: fixed warnings/compilation errors.
11010
11011 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
11012
11013         * Makefile.am, mono-config.c, mono-config.h: configuration file
11014         support routines.
11015         * loader.c, loader.h: make Dll mapping configurable at runtime in the
11016         config file. Export methods to insert and lookup mappings.
11017
11018 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
11019
11020         * reflection.c: handle types and boxed objects in custom attr
11021         constructors.
11022
11023 2002-05-30  Martin Baulig  <martin@gnome.org>
11024
11025         * debug-symfile.c
11026         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
11027
11028 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
11029
11030         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
11031         to lookup the implmap row for a P/Invoke method.
11032         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
11033         P/Invoke method from the runtime on an as needed basis.
11034
11035 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
11036
11037         * metadata.c (mono_metadata_parse_signature): impl.
11038
11039 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11040
11041         * class.c: handle .pack directive.
11042
11043 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
11044
11045         * object.c: initialize static fields with RVA data.
11046
11047 2002-05-25  Martin Baulig  <martin@gnome.org>
11048
11049         * debug-symfile.c
11050         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
11051
11052 2002-05-24  Martin Baulig  <martin@gnome.org>
11053
11054         * debug-symfile.c
11055         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
11056         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
11057         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
11058
11059 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
11060
11061         * object.c: special case string ctros in invoke.
11062         * gc.c: silly whitespace changes.
11063
11064 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
11065
11066         * threadpool.[ch]: impl. a threadpool that can
11067         be used by mint and mono.
11068
11069 2002-05-22  Martin Baulig  <martin@gnome.org>
11070
11071         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
11072         The first argument is now a `MonoReflectionModuleBuilder *', the return
11073         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
11074         `methods' field to get the method builder.  The `token' argument is the
11075         unfixed token.
11076
11077         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
11078         invalid characters instead of g_assert_not_reached()ing.  This seems
11079         to be the behaviour of mscorlib.
11080
11081 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
11082
11083         * object.c (mono_runtime_invoke_array): applied patch from Rachel
11084         Hestilow to fix bug #25104
11085
11086 2002-05-21  Martin Baulig  <martin@gnome.org>
11087
11088         * debug-symfile.c (mono_debug_find_source_location): New function.
11089         Looks up an IL offset in the line number table and returns the source
11090         location as a string.
11091
11092 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11093
11094         * icall.c:
11095         (mono_double_ToStringImpl): changed %f by %g until we have something
11096         better.
11097
11098 2002-05-21  Nick Drochak  <ndrochak@gol.com>
11099
11100         * icall.c : Use different name for Math.Pow's icall.  Needed to check
11101         parameters first in C#.
11102
11103 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11104
11105         * icall.c, reflection.h: added icall to get info about an event.
11106
11107 2002-05-20  Radek Doulik  <rodo@ximian.com>
11108
11109         * object.c (mono_value_box): don't use memcpy for boxing on BIG
11110         endian
11111         (mono_value_box): don't use memcpy for small sizes on
11112         architectures with unaligned access
11113
11114 2002-05-20  Martin Baulig  <martin@gnome.org>
11115
11116         * reflection.c (mono_reflection_setup_internal_class): Don't crash
11117         if `tb->parent == NULL'.
11118         (mono_reflection_create_internal_class): New function.  This is
11119         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
11120         for enum types.
11121
11122         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
11123         New interncall.
11124
11125 2002-05-19  Martin Baulig  <martin@gnome.org>
11126
11127         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
11128         argument to get the length, don't default to the array length.
11129
11130 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
11131
11132         * assembly.c (mono_assembly_setrootdir): New function used to
11133         override the MONO_ASSEMBLIES directory.
11134
11135 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
11136
11137         * icall.c: ValueType_GetHashCode() initialize local var.
11138
11139 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
11140
11141         * reflection.c: sort custom attributes table.
11142
11143 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
11144
11145         * reflection.c: support named args in custom attributes (write support).
11146
11147 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
11148
11149         * reflection.c: fix finally position calculation.
11150
11151 2002-05-15  Radek Doulik  <rodo@ximian.com>
11152
11153         * reflection.c: fixed endianess at many places
11154
11155         * icall.c (ves_icall_InitializeArray): comment out debug msg
11156
11157 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
11158
11159         * object.c (mono_unhandled_exception): new function to handle
11160         unhandled exceptions.
11161         (mono_unhandled_exception): call the UnhandledException event.
11162         (mono_runtime_delegate_invoke): impl.
11163
11164 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
11165
11166         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
11167         returns the RVA, not the direct pointer to the data. Handle the case
11168         when the class size is fixed.
11169
11170 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
11171
11172         * reflection.c: fix some endianess issues.
11173
11174 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
11175
11176         * object.c (mono_runtime_invoke): is now able to catch exceptions.
11177
11178         * threads.c (mono_thread_init): added a callback which is invoked
11179         at thread start.
11180
11181 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
11182         
11183         * icall.c: make GetHashCode return non-negative values.
11184
11185 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
11186
11187         * object.c, icall.c, gc.c: revert to address-based hashcode.
11188
11189 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
11190
11191         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
11192
11193 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
11194
11195         * icall.c, class.c: special case <Module>.
11196
11197 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
11198
11199         * icall.c: fix bug in GetNow().
11200
11201 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
11202
11203         * object.c (mono_runtime_class_init): make sure that we call all
11204         static class constructors.
11205
11206 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
11207
11208         * reflection.c: sort methodsemantics table.
11209
11210 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
11211
11212         * reflection.h, reflection.c: honour init locals setting.
11213
11214 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
11215
11216         * icall.c: copied Double ToStringImpl for Single ToStringImpl
11217
11218 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
11219
11220         * reflection.c: support ContructorBuilders in attribute blob creation.
11221
11222 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11223
11224         * reflection.c: some changes to build a binary that can be run
11225         directly in windows.
11226
11227 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
11228
11229         * loader.c: print a big message when an icall can't be found.
11230
11231 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11232
11233         * string-icalls.c: fix bug 24248.
11234
11235 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
11236
11237         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
11238         icall.c, reflection.h: separate assembly loading by pathname and by
11239         assembly name. Use the MONO_PATH env var to search for assemblies.
11240
11241 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
11242
11243         * assembly.c, image.h: add some support for assemblies
11244         with multiple modules.
11245         * class.c, class.h: export mono_class_from_typeref().
11246         * loader.c: remove duplicated code and use mono_class_from_typeref(),
11247         instead.
11248
11249 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
11250
11251         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
11252         documentation says (the ECMA one is correct).
11253
11254 2002-05-02  Dick Porter  <dick@ximian.com>
11255
11256         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
11257         Don't name the synchronisation mutex.
11258
11259 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
11260
11261         * rand.c
11262         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
11263         Make the prototypes match.
11264         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
11265         Same.
11266
11267         * icall.c
11268         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
11269         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
11270         all systems have tm.tm_zone, so use strftime() with %Z to print
11271         the timezone abreviation into a temp string.
11272
11273         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
11274         rather than mono_array_addr() on a MonoString on Big Endian
11275         machines.
11276
11277 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
11278
11279         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
11280         fix bug 24041
11281
11282 2002-04-30  Dick Porter  <dick@ximian.com>
11283
11284         * socket-io.c: Cope with SOCKET being an integer rather than a
11285         pointer now.
11286
11287         * threads.c: Added Thread_free_internal, to deal with thread
11288         handle cleanup.  Moved calls to handle_store() and handle_remove()
11289         to start_wrapper(), so each can only be called once.  Allocate
11290         synchronisation blocks with GC_malloc(), and use GC finalisation
11291         to close the handles.
11292
11293         * icall.c: added System.Threading.Thread::Thread_free_internal
11294
11295 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
11296
11297         * icall.c: support Environment.Exit, CommandLineArgs().
11298
11299 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
11300
11301         * object.c, object.h: added mono_runtime_run_main () and
11302         mono_runtime_get_main_args () for use in System.Environment.
11303
11304 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
11305
11306         * gc.c: fix thinko, enable actual finalization since the jit is now
11307         fixed.
11308
11309 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11310
11311         * gc.c, object.c: take into account that an object may be offset wrt the address
11312         returned by GC_malloc().
11313
11314 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
11315
11316         * image.c: handle files without entries in the assembly table (modules).
11317
11318 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
11319
11320         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
11321         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
11322         allowed to be null when it's System.Object class setup.
11323
11324 2002-04-27  Martin Baulig  <martin@gnome.org>
11325
11326         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
11327         if `tb->parent == NULL' rather than crashing.
11328
11329 2002-04-28  Nick Drochak  <ndrochak@gol.com>
11330
11331         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
11332         calling acos() where asin() should have been called.
11333
11334 2002-04-26  Martin Baulig  <martin@gnome.org>
11335
11336         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
11337         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
11338         there's a subdirectory called `System', but we don't want to read that
11339         subdirectory as an assembly.
11340
11341 2002-04-25  Martin Baulig  <martin@gnome.org>
11342
11343         * debug-symfile.c: Reflect latest MonoString changes.
11344
11345 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
11346
11347         * rand.c, rand.h: instance method icalls need to have an explicit
11348         this pointer as first argument in the C implementation.
11349
11350 2002-04-25  Nick Drochak <ndrochak@gol.com>
11351
11352         * icall.c: Fix typo in map for GetNonZeroBytes
11353
11354 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11355
11356         * string-icalls.c : String does now passes unit tests without any 
11357         errors, the following changes has been made:
11358         
11359         Implemented replace methods.
11360         Renaming of methods to (try) follow the standard.
11361         Fixed compare ordinal
11362         Made all memory allocated directly to function instead of via icall function.
11363         Small performance fix in is_in_array function
11364                         
11365  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
11366
11367         c (mono_string_Internal_ctor_charp_int_int):
11368         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
11369         sindex < 0, throw ArgumentOutOfRangeException instead of
11370         ArgumentNullException.
11371
11372         Added new check for length == 0, however
11373         I need to make it return String.Empty from the C code.
11374         
11375         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
11376         that calculate the length for us here.
11377         
11378         (mono_string_Internal_ctor_sbytep_int_int): Replaced
11379         mono_string_new_utf16 with mono_string_new, since value is utf8.
11380
11381 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11382
11383         * object.c: register the object for finalization if needed.
11384         Allocate one more char in the string for the terminating 0 char.
11385
11386 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
11387
11388         * class.c, class.h, image.c: check if a type implemenst a destructor.
11389         Use the proper key for array class lookups.
11390         * icall.c: register the icalls in the System.GC class.
11391         * gc.c, gc.h: GC-related functions and icalls.
11392
11393 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11394
11395         * icall.c:
11396         * socket-io.c:
11397         * unicode.c: free some strings gotten from mono_string_to_utf8 and
11398         changed a couple of free () by g_free ().
11399
11400         * decimal.c: one-liner in the comments for decimal2string ().
11401
11402 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11403
11404         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
11405
11406 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11407
11408         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
11409         * object.c (mono_runtime_invoke_array) : handle null in params
11410
11411 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11412
11413         * string-icalls.c: fixed bug in split (one off bug)
11414
11415 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11416
11417         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
11418         * icalls.c: added String::Equals as internal method
11419
11420 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11421
11422         * threads.c: fixed bug in the double interlocked functions
11423
11424 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
11425
11426         * threads.c: implemented all of the new interlocked icalls.
11427         * string-icalls.c: fix a bug in insert.
11428         * icalls.c: added the icalls for interlocked, removed old string functions.
11429         
11430 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
11431
11432         * loader.c: fix off-by-one error when reading argument names.
11433
11434 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11435
11436         * profiler.c: win32 counter implementation (untested).
11437         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
11438         (the latter needs testing and more complete impl. from win32 folks).
11439
11440 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
11441
11442         * object.c: mono_array_new_full workaround mono_array_class_get
11443         problem.
11444
11445 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11446
11447         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
11448         * object.h (mono_string_chars): Changed casting type.
11449
11450 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11451
11452         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
11453                            method signatures to use gunichar2 instead of gint16.
11454
11455 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
11456
11457         * object.h, object.c: domain-specific versions of mono_object_new and
11458         mono_array_new.
11459
11460 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
11461
11462         * object.c: changed String layout
11463
11464         * string-icalls.c (mono_string_Internal_ctor_chara): added
11465         internal string constructors.
11466
11467 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
11468
11469         * threads.c: pass 'this' to the thread start routine.
11470
11471 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11472
11473         * string-icalls.c: fix IndexOf and LastIndexOf. Now
11474         InternalCompareStr don't call twice mono_string_cmp_char for the last
11475         character. Improved performance in mono_string_cmp_char.
11476
11477 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
11478
11479         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
11480         code into its own library: libmonoruntime.
11481
11482 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
11483
11484         * object.h, object.c: changed array format so that szarrays do not
11485         require a bounds structure.
11486         * icall.c, appdomain.c: support for new szarray format.
11487
11488 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
11489
11490         * metadata.c: compare also the retuns type when comparing signatures:
11491         we didn't do this as an optimization since really overloaded methods
11492         must differ also in the arguments, but this doesn't work with
11493         low-level IL code (or when using explicit conversion operators: see
11494         bug#23498 for an example).
11495
11496 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
11497
11498         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
11499
11500 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
11501
11502         * icall.c: make MonoType::GetElementType its own icall.
11503
11504 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
11505
11506         * icall.c: remove MonoMethod_get_Name().
11507         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
11508         object.
11509
11510 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11511
11512         * string-icalls.c: optimized a few methods.
11513
11514 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11515
11516         * icall.c: added all new string internal calls
11517         * string-icalls.c: added, new string internal call implementation.
11518         * object.c: added mono_string_new_size for allocating a string a size
11519
11520 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
11521
11522         * object.c (mono_object_isinst): use the same code as in the
11523         optimized x86 version.
11524
11525 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11526
11527         * profiler.c: TSC-based timer code (faster and more accurate).
11528         Not hooked up in configure, yet (set USE_X86TSC to 1).
11529
11530 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
11531
11532         * profiler.c, profiler.h: track time spent compiling methods.
11533         * threads.c: track thread creation/destruction.
11534
11535 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
11536
11537         * profiler.c, profiler.h, profiler-private.h: profiling interface
11538         and sample implementation. Moved here so that it can be used also by
11539         the jit.
11540
11541 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
11542
11543         * reflection.c, reflection.h: keep types and other handles separate in
11544         the hash tables for referred tokens. Add guid for modules.
11545
11546 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
11547
11548         * assembly.c: fix bugs found with valgrind.
11549         * metadata.h, metadata.c: added mono_metadata_guid_heap().
11550
11551 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
11552
11553         * threads: added icall support for getting current domain for
11554                    the thread.
11555  
11556 2002-04-13  Martin Baulig  <martin@gnome.org>
11557
11558         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
11559         (MonoDebugVarInfo): Added `index' field for register based addresses.
11560         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
11561         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
11562         `MonoDebugVarInfo *params' and `guint32 this_offset' with
11563         `MonoDebugVarInfo *this_var'.
11564
11565         * debug-symfile.c (relocate_variable): New static function to write
11566         a location description for a local variable or method parameter.
11567
11568 2002-04-12  Martin Baulig  <martin@gnome.org>
11569
11570         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
11571         stack offset and begin/end scope address of a local variable.
11572         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
11573         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
11574         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
11575
11576         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
11577         Added new relocation types for start/end scope of a local variable.
11578
11579 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11580
11581         * object.h: add mono_object_domain() macro.
11582         * reflection.c: handle typespecs.
11583         * icall.c: MonoMethod::get_Name() implementation.
11584
11585 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11586
11587         * icall.c: String::GetHashCode() icall implementation.
11588
11589 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11590
11591         * icall.c: String::IndexOfAny icall.
11592         * object.c, object.h: make array->max_length more useful.
11593         Intrduced mono_object_class() and mono_string_length() macros.
11594
11595 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11596
11597         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
11598         instead of g_unichar_isdigit.
11599
11600 2002-04-11  Nick Drochak  <ndrochak@gol.com>
11601
11602         * icall.c: Implement a simple Double.ToString().
11603
11604 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
11605
11606         * appdomain.h: only io-layer.h is supposed to be included.
11607         * icall.c: explicitly import environ. Fix warning.
11608
11609 2002-04-10  Nick Drochak  <ndrochak@gol.com>
11610
11611         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
11612                 return true even if it's not Daylight Savings time.
11613                 Only return false for the case where the function isn't
11614                 implemented for a plaform (read Windows).
11615
11616 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11617
11618         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
11619         data with a mutex.
11620
11621 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
11622
11623         * mempool.c (mono_mempool_alloc): only use g_malloc when
11624         absolutely necessary.
11625
11626 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
11627
11628         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
11629
11630         * class.c (mono_class_vtable): use domain mempool to allocate vtable
11631         (mono_class_proxy_vtable): use domain mempool
11632
11633 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
11634
11635         * appdomain.h, appdomain.c: split initialization that requires the
11636         execution engine support into mono_runtime_init().
11637
11638 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
11639
11640         * class.c (mono_class_init): don't include vtable inside MonoClass
11641         to save some memory, gather some statistics.
11642         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
11643
11644 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
11645
11646         * icall.c: internalcall implementation for ValueType.Equals().
11647
11648 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
11649
11650         * object.c (mono_message_init): moved 
11651         (mono_runtime_exec_main): new arch. independent impl.
11652         (mono_runtime_invoke_array): new method - like
11653         mono_runtime_invoke, but you can pass an array of objects.
11654         (mono_remoting_invoke): new arch. independent impl.
11655         (mono_message_invoke): new arch. independent impl.
11656         (mono_runtime_class_init): new arch. independent impl.
11657         (mono_runtime_object_init): new arch. independent impl.
11658
11659 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11660
11661         * metadata.c, object.c, reflection.c: documented the exported
11662         functions.
11663
11664 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
11665
11666         * icall.c: simpler code to pass the assembly builder data to corlib.
11667         Implement GetNestedTypes() internalcall.
11668
11669 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
11670
11671         * class.c: warn if a type can't be loaded.
11672
11673 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
11674
11675         * image.h: typedef MonoImageOpenStatus
11676         * types.h: removed unused file
11677         
11678 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
11679
11680         * icall.c: Enum_ToObject accepts enum value arguments.
11681
11682 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
11683
11684         * class.c: move initialization of properties, events and nested
11685         classes, so that they happen for interfaces, too.
11686
11687 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
11688
11689         * icall.c: cleanup some ugly casts in Array_SetValue*.
11690
11691 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
11692
11693         * icall.c: the values array fro enums is of the correct type, now.
11694         Implement (correctly) getFullName instead of assQualifiedName for
11695         MonoType.
11696         * reflection.h, reflection.c: added mono_type_get_name ().
11697
11698 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
11699
11700         * assembly.c, image.h: for each MonoImage, record from wich assembly
11701         it was loaded.
11702         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
11703         Make Type.Assembly work.
11704
11705 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
11706
11707         * debug-symfile.h: use char* instead of gpointer to avoid
11708         unnecessary casts.
11709
11710         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
11711
11712         * icall.c (ves_icall_InternalExecute): impl. FielSetter
11713         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
11714
11715 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
11716
11717         * icall.c (mono_message_init): impl. (code cleanup)
11718         (ves_icall_InternalExecute): impl. FieldGetter
11719
11720         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
11721         defined we call all (non-static)methods through the vtable. 
11722
11723 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
11724
11725         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
11726         finalizer even though the memory is still referenced (and the chunk of
11727         memory is not freed).
11728
11729 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
11730
11731         * assembly.c: fix brokeness.
11732
11733 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
11734
11735         * class.c: kill some warnings. Check explicit interface method
11736         implementation also without considering the namespace.
11737         Load also literal strings in static class data.
11738
11739 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
11740
11741         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
11742         (default_assembly_name_resolver): Make the resolver take the
11743         "base" directory where the assembly was originally defined, so we
11744         can load DLLs that are in the same directory as the assembly that
11745         is being referenced.
11746
11747 2002-03-28  Dick Porter  <dick@ximian.com>
11748
11749         * file-io.h: 
11750         * file-io.c:
11751         * socket-io.c: 
11752         * unicode.h: 
11753         * unicode.c: Warning cleanups
11754
11755 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
11756
11757         * object.h, reflection.h: use the correct type instead of MonoObject.
11758
11759 2002-03-28  Martin Baulig  <martin@gnome.org>
11760
11761         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
11762         (mono_debug_update_symbol_file): Initialize classes if necessary.
11763
11764 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
11765
11766         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
11767         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
11768
11769 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
11770
11771         * assembly.h: fix function prototype.
11772         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
11773         * mono-endian.h: use const cast.
11774
11775 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
11776
11777         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
11778
11779 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
11780
11781         * loader.c: don't assert when a typeref can't be loaded, give
11782         a chance to the runtime to trow an exception instead.
11783         * loader.h: fix warning.
11784
11785 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
11786
11787         * class.c (mono_class_proxy_vtable): added proxy support
11788
11789 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
11790
11791         * icall.c: removed last of PAL calls, added System.Environment
11792         * file-io.h, file-io.c: MonoIO implementation
11793         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
11794
11795 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
11796
11797         * appdomain.c: do not use the byte marker in ldstr table lookup.
11798         * debug-helpers.c: allow two ':' to separate class and method name.
11799         * object.c: allocate arrays bounds with the GC, too.
11800         * verify: add a few more checks.
11801
11802 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
11803
11804         * reflection.c: output also literal strings. Allocate parameter data
11805         with GC_malloc() (thanks, Martin, for catching this!).
11806
11807 2002-03-26  Martin Baulig  <martin@gnome.org>
11808
11809         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
11810         include the `this' offset in the `param_offsets'.
11811
11812 2002-03-25  Martin Baulig  <martin@gnome.org>
11813
11814         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
11815         mono_debug_get_class() function to get the classes. Added new
11816         relocation types for arrays and strings.
11817         (mono_debug_get_class): New static function to search in all
11818         referenced assemblies for a metadata token.
11819
11820         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
11821
11822 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
11823
11824         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
11825         hold gc-allocated objects. Make the string heap a stream like the
11826         others. Removed duplicated code when writing stream info.
11827         Added asserts to catch possible buffer overflows. Set the sorted map
11828         for tables that need sorting. Added some documentation.
11829
11830 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
11831
11832         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
11833         for interned strings and vtables.
11834
11835 2002-03-24  Martin Baulig  <martin@gnome.org>
11836
11837         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
11838         it in the array since it was created with g_slist_prepend().
11839
11840 2002-03-24  Martin Baulig  <martin@gnome.org>
11841
11842         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
11843         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
11844         (mono_debug_method_from_token): Renamed to
11845         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
11846         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
11847
11848         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
11849         relocation types.
11850
11851         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
11852
11853 2002-03-24  Martin Baulig  <martin@gnome.org>
11854
11855         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
11856         (mono_debug_method_from_token): New func.
11857
11858         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
11859         New interncall, calls mono_debug_local_type_from_signature().
11860         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
11861         calls mono_debug_method_from_token().
11862
11863 2002-03-23  Martin Baulig  <martin@gnome.org>
11864
11865         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
11866         specifies the number of bytes to be converted, not the array size.
11867         Return the number of chars, not the number of bytes.
11868         (ves_icall_iconv_get_chars): The `byteCount' argument
11869         specifies the number of bytes to be converted, not the array size.
11870
11871 2002-03-23  Martin Baulig  <martin@gnome.org>
11872
11873         * reflection.h (MonoReflectionSigHelper): New type.
11874
11875         * reflection.c (mono_reflection_sighelper_get_signature_local),
11876         (mono_reflection_sighelper_get_signature_local): New functions.
11877
11878         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
11879         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
11880         interncalls.
11881
11882 2002-03-23  Martin Baulig  <martin@gnome.org>
11883
11884         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
11885         is_writeable is set.
11886         (mono_raw_buffer_update): New function to write the modified map
11887         back to disk.
11888
11889         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
11890
11891         * debug-symfile.c (mono_debug_update_symbol_file): Call
11892         mono_raw_buffer_update() when done writing.
11893
11894 2002-03-23  Martin Baulig  <martin@gnome.org>
11895
11896         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
11897
11898         * debug-symfile.c: Added support for arguments and local variables.
11899
11900 2002-03-23  Dick Porter  <dick@ximian.com>
11901
11902         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
11903         protected by ifdefs, hence breaking the w32 build.
11904
11905 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
11906
11907         * object.c: implement is_interned() the right way.
11908
11909 2002-03-21  Martin Baulig  <martin@gnome.org>
11910
11911         * debug-symfile.[ch]: New files to handle debugging information
11912         files. There's also support to dynamically update these symbol
11913         files to include machine dependent information.
11914
11915 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
11916
11917         * threads.c (mono_thread_create): new function to create thread
11918         from C
11919
11920 2002-03-20  Martin Baulig  <martin@gnome.org>
11921
11922         * icall.c (ves_icall_InternalInvoke): Create a new object if the
11923         method is a constructor.
11924         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
11925         points to ves_icall_InternalInvoke().
11926
11927 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
11928
11929         * file-io.c: Flush shouldn't throw exceptions.
11930
11931 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
11932
11933         * file-io.c: FileStream flush support; FileSetLength now
11934         restores file pointer.
11935
11936 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
11937
11938         * class.c: set image for pointer classes.
11939
11940 2002/03/19  Nick Drochak <ndrochak@gol.com>
11941
11942         * sysmath.c: Forgot one.
11943
11944 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
11945
11946         * sysmath.c: Avoid redefining existing names.
11947
11948 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
11949
11950         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
11951         handled by runtime as icall rather than dllimport from libm.so
11952         * file-io.c, file-io.h: fixed handle argument type.
11953
11954 2002-03-18  Dick Porter  <dick@ximian.com>
11955
11956         * reflection.c (mono_image_get_type_info): rename interface to
11957         iface, because of "#define interface struct" on windows.
11958
11959 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
11960
11961         * class.c, class.h: rename and export mono_ptr_class_get().
11962         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
11963         * reflection.c, reflection.h, icall.c: better/saner type name
11964         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
11965         method signatures.
11966
11967 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
11968
11969         * class.c (mono_class_init): removed hardcoded GHC_SLOT
11970
11971         * icall.c (ves_icall_InternalInvoke): impl.
11972
11973 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
11974
11975         * reflection.c: output the interface map table, too.
11976
11977 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
11978
11979         * class.c (class_compute_field_layout): separate computation of 
11980         static field layout
11981
11982 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
11983
11984         * icall.c: added System.Buffer support.
11985         * file-io.c: moved file icalls from PAL to FileStream.
11986
11987 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
11988
11989         * icall.c (ves_icall_System_Object_GetHashCode): impl.
11990
11991 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
11992
11993         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
11994
11995 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
11996
11997         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
11998
11999 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
12000
12001         * debug-helpers.{c,h}: moved here from monograph some useful functions
12002         to locate a method by name/signature in a class or image. Included
12003         also a small and flexible IL disassembler.
12004
12005 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
12006
12007         * reflection.c: fixup tokens in methods with small header size, too.
12008
12009 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
12010
12011         * object.c (mono_string_to_utf8): remove assert(!error), instead
12012         print a warning. 
12013
12014 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
12015
12016         * icall.c: update to the new mono_Array_class_get interface.
12017
12018 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
12019
12020         * appdomain.c, object.c: Boehm-GC enable.
12021         * icall.c: make get_data_chunk() support split data requests.
12022         Ensure a class is initialized in more cases. Return only the first
12023         property found in GetProperties() or the compiler gets confused. 
12024         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
12025         * reflection.h, reflection.c: add fixup mechanism for field and method
12026         tokens. Initialize assembly->typeref in a single place. Output
12027         properties after events. Support custom attributes for events, too.
12028         Typo fix for paramter custom attrs.
12029
12030 2002-03-07  Martin Baulig  <martin@gnome.org>
12031
12032         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
12033
12034 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
12035
12036         * class.c (mono_array_class_get): fix. for multi. dim. arrays
12037
12038 2002-03-06  Martin Baulig  <martin@gnome.org>
12039
12040         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
12041         non-zero lower bounds. See testcases #F10-#F13.
12042
12043 2002-03-05  Martin Baulig  <martin@gnome.org>
12044
12045         * exception.c (mono_get_exception_argument_out_of_range): New exception.
12046
12047         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
12048         ves_icall_System_Array_GetValue(), only calculate the absolute array position
12049         here.
12050         (ves_icall_System_Array_SetValue): Likewise.
12051         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
12052         as argument and does the actual work. This function is used when copying a
12053         multi-dimensional array.
12054         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
12055         now do all the widening conversions of value types.
12056         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
12057
12058 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12059
12060         * class.c: remove some magic numbers and use the smbolic names,
12061         instead. Added init_events() to load event info at class init time.
12062         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
12063         and mono_metadata_methods_from_event().
12064         * reflection.h, reflection.c: added support for writing out the evnets
12065         related information.
12066
12067 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
12068
12069         * reflection.h, icall.c: use a different method (GetInterfaces)
12070         to gather interface info and add isbyref, isprimitive and
12071         ispointer to the ves_icall_get_type_info() return value.
12072
12073 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
12074
12075         * class.h: stared adding support for events.
12076         * icall.c: split find_members implementation. Added debug icall to get
12077         the address of an object.
12078         * reflection.c: handle TypeBuilders in mono_type_get_object().
12079
12080 2002-03-01  Martin Baulig  <martin@gnome.org>
12081
12082         * icall.c (ves_icall_System_Array_GetLength): This must throw an
12083         ArgumentOutOfRangeException(), not an ArgumentException().
12084         (ves_icall_System_Array_GetLowerBound): Likewise.
12085         (ves_icall_System_Array_GetValue): Improved argument checking.
12086         (ves_icall_System_Array_SetValue): Improved argument checking.
12087
12088 2002-03-01  Martin Baulig  <martin@gnome.org>
12089
12090         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
12091         called with invalid arguments rather than just dying with g_assert().
12092         (ves_icall_System_Array_SetValue): Likewise.
12093         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
12094         raise a NotImplementedException instead.
12095         (ves_icall_System_Array_GetLength): Added argument checking.
12096         (ves_icall_System_Array_GetLowerBound): Added argument checking.
12097
12098 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
12099
12100         * object.h (mono_assert): new macros mono_assert and
12101         mono_assert_not_reached
12102
12103 2002-02-28  Martin Baulig  <martin@gnome.org>
12104
12105         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
12106         and "System::String::IsInterned" to "System::String::_IsInterned".
12107
12108 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
12109
12110         * icall.c: remove hacks for typebuilder. Added icall to create a
12111         modified type from a tybebuilder.
12112         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
12113         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
12114         to create a backing MonoClass for a TypeBuilder.
12115
12116 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12117
12118         * class.c, class.h: more refactoring of class init.
12119         Export mono_class_setup_mono_type() and mono_class_setup_parent().
12120
12121 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
12122
12123         * marshal.c, marshal.h: start of marshaling interface.
12124
12125 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
12126
12127         * icall.c: fix order in assembly qualified name icall.
12128
12129 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
12130
12131         * class.c: do not free str, since we store it in the hash table.
12132         * reflection.h: add label field to MonoILExceptionInfo.
12133         * reflection.c: handle references to more than one assembly. Handle
12134         case when there isn't a module created in the assembly.
12135
12136 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
12137
12138         * class.c: Fix typo. Start refactoring of class init code.
12139
12140 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
12141
12142         * appdomain.c: exit with 1 on error.
12143         * class.c: we already have the name in MonoClassField.
12144         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
12145         MonoStreamHeader instead of an offset of image->raw_metadata.
12146
12147 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
12148
12149         * appdomain.c (mono_init): Be even more descriptive about the error.
12150
12151 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
12152
12153         * appdomain.c: give the user an informative message when corlib can't
12154         be loaded.
12155
12156 2002-02-26  Martin Baulig  <martin@gnome.org>
12157
12158         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
12159         New icall to get the time zone data.
12160
12161 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12162
12163         * reflection.c: set virtual and raw size of section correctly.
12164         * threads.c: transfer domain information to newly created threads.
12165
12166 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
12167
12168         * class.c: when instancing a class in a domain, load the default
12169         vaules for static fields from the constant table. Fix System.Enum to
12170         not be an enum.
12171         * icall.c: implement Object::GetType() internalcall. Implemented
12172         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
12173         Fixed checking of binding flags in find_members().
12174         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
12175         * reflection.c: handle enumerations when writing to the constant
12176         table. Use a different object cache for types.
12177
12178
12179 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
12180
12181         * object.c (mono_object_isinst): fix for arrays
12182
12183         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
12184
12185 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
12186
12187         * object.c: don't use mprotect ()  and fix intern pool hash table
12188         lookup for big endian systems.
12189
12190 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
12191
12192         * icall.c: change type_is_subtype_of () signature.
12193
12194 2002-02-21  Mark Crichton  <crichton@gimp.org>
12195
12196         * rand.c, rand.h: Added random number generator for
12197         System.Security.Cryptography classes.
12198
12199         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
12200
12201         * icall.c: Added System.Security.Cryptography calls.
12202
12203 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
12204
12205         * class.c, icall.c, metadata.c: better support for pointer types.
12206         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
12207         * reflection.c: Add support for getting custom attrs for properties
12208         and simplify some code.
12209
12210 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
12211
12212         * icall.c: change getToken () and add custom attribute GetBlob()helper
12213         method.
12214         * reflection.h: add custom attrs array to the reflection builder structures.
12215         * reflection.c: encode and emit custom attributes for all the relevant
12216         reflection objects. Cache fieldref and methodref tokens. Change
12217         mono_image_create_token() interface to take a MonoDynamicAssembly.
12218         More complete custom attributes decoder. Load custom attributes for
12219         Assembly, Field, Method and Constructor objects, too. Make the
12220         returned array an Attribute[] one, not object[]. Added
12221         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
12222         custom attribute constructor.
12223
12224 2002-02-20  Dick Porter  <dick@ximian.com>
12225
12226         * icall.c:
12227         * rawbuffer.c:
12228         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
12229         problem code out for now).
12230
12231 2002-02-19  Radek Doulik  <rodo@ximian.com>
12232
12233         * object.c (mono_ldstr): use hash table to avoid multiple swapping
12234
12235 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
12236
12237         * icall.c: register the GetCustomAttributes method.
12238         * object.c, object.h: add mono_string_new_len ().
12239         * reflection.h, reflection.c: added mono_runtime_invoke(),
12240         mono_install_runtime_invoke(). Added
12241         mono_reflection_get_custom_attrs () to load custom attributes and
12242         create the attribute objects.
12243
12244 2002-02-19  Dick Porter  <dick@ximian.com>
12245         * threads-dummy-types.c:
12246         * threads-dummy-types.h:
12247         * threads-dummy.c:
12248         * threads-dummy.h:
12249         * threads-pthread-types.c:
12250         * threads-pthread-types.h:
12251         * threads-pthread.c:
12252         * threads-pthread.h:  Deleted obsolete files
12253
12254 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
12255
12256         * class.c (mono_class_vtable): runtime init the class when we
12257         allocate static class data.
12258
12259         * icall.c (ves_icall_System_Array_SetValue): check for null values.
12260
12261         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
12262         and String - but we will need generic marshalling support in the
12263         future. 
12264         (mono_init): set the domain name in a ms compatible way
12265
12266         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
12267         String[].
12268
12269 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
12270
12271         * object.c (mono_array_clone): use alloca() instead of g_malloc  
12272         for sizes
12273
12274         * appdomain.c (mono_domain_unload): impl.
12275
12276 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
12277
12278         * appdomain.c, object.c: fix intern pool implementation.
12279         * class.c: fix alignment code.
12280
12281 2002-02-16  Radek Doulik  <rodo@ximian.com>
12282
12283         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
12284         and s2 > s1, just copy lower bytes to be compatible with little
12285         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
12286         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
12287
12288         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
12289         force big_endian to be 1 for big endian machines 
12290         (ves_icall_iconv_new_decoder): ditto
12291
12292 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
12293
12294         * socket-io.c (convert_sockopt_level_and_name): If the system
12295         doesn't define SOL_IP or SOL_TCP, get them by hand using
12296         getprotobyname() and caching the values (because this could be a
12297         slow operation).
12298         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
12299         Use the appropriate struct when the system does support it. Ie,
12300         not all systems have struct ip_mreqn so use struct ip_mreq when
12301         appropriate.
12302
12303 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
12304
12305         * reflection.c: handle finally clauses.
12306
12307 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
12308
12309         * socket-io.c: use g_snprintf() instead of snprintf.
12310
12311 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
12312
12313         * reflection.c (mono_param_get_objects): Cast second argument to
12314         mono_method_get_param_names to a const char** to silence the
12315         compiler warning.
12316
12317         * appdomain.c (mono_domain_assembly_open): Put parens around the
12318         truth statement in the for-loop.
12319
12320         * unicode.c (iconv_convert): Got rid of a compiler warning about
12321         int i being unused when the system has a new iconv.
12322         (iconv_get_length): Same.
12323
12324         * image.c (load_class_names): Cast the second argument to
12325         g_hash_table_insert() to char* to hush compiler warnings about the
12326         arg being a const.
12327         (mono_image_open): Same here.
12328
12329         * socket-io.c: Don't conditionally include sys/filio.h or
12330         sys/sockio.h here anymore since we now get them from
12331         io-layer/io-layer.h
12332         (inet_pton): If the system doesn't support inet_aton, implement
12333         using inet_addr and also #define INADDR_NONE if it isn't defined
12334         by the system.
12335
12336 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
12337
12338         * metadata.c, metadata.h: added function to get packing and size info
12339         of a typedef.
12340         * reflection.h, reflection.c: handle field RVA data. Save info about
12341         the table layout if needed. Assign typedef indexes to all the types
12342         before dumping the info about them to avoid forward reference problems.
12343
12344 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
12345
12346         * socket-io.c (convert_sockopt_level_and_name): ifdef
12347         SO_ACCEPTCONN because it is not defined on my system (old debian)
12348
12349 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
12350
12351         * opcode.c: use stddef.h to get NULL.
12352
12353 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
12354
12355         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
12356         for FIONBIO, FIONREAD and SIOCATMARK.
12357         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
12358         define INADDR_NONE and besides, inet_addr() is deprecated and
12359         should not be used. Use inet_pton() instead - it also has the
12360         added bonus that it can easily handle IPv6 addresses as well.
12361         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
12362
12363 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
12364
12365         * decimal.c: remove _MSC_VER conditional.
12366
12367 2002-02-13  Dick Porter  <dick@ximian.com>
12368
12369         * socket-io.c: 
12370         * icall.c: Internal calls for Blocking, Select, Shutdown,
12371         GetSocketOption and SetSocketOption
12372
12373 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12374
12375         * assembly.cs: better resolver: use it instead of some kludgy
12376         code.
12377
12378 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
12379
12380         * reflection.c: the best way to speed-up the compiler is to avoid
12381         infinite loops.
12382
12383 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
12384
12385         * class.c (mono_class_vtable): changed the object layout
12386         (obj->vtable->class). 
12387         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
12388
12389 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12390
12391         * assembly.c: look for assemblies in the assembly dir, too.
12392
12393 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
12394
12395         * class.c: fix thinko in mono_class_from_type().
12396
12397 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12398
12399         * exception.h, exception.c: added TypeLoadException.
12400         * object.h, object.c: added mono_array_clone ().
12401         * icall.c: handle throwOnError in AssemblyGetType().
12402         Added Array.Clone().
12403         * opcode.h, opcode.c: use a single value for the opcode val.
12404         Compile fix for non-gcc compilers.
12405
12406 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
12407
12408         * opcodes.c, opcodes.h: export interesting info about opcodes.
12409
12410 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
12411
12412         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
12413         icalls. 
12414
12415         * class.c (class_compute_field_layout): set element_class for enums
12416         (mono_class_create_from_typedef): set element_class for normal classes
12417
12418         * icall.c (ves_icall_System_Enum_get_value): impl.
12419
12420         * class.c (mono_class_create_from_typedef): do not set valuetype
12421         flag for System.ValueType and System.Enum
12422
12423 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
12424
12425         * unicode.c (iconv_convert): fix big endian problem.
12426
12427 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
12428
12429         * class.c: add asserts if we are ever going to scribble over memory.
12430         * socket-io.c: not all systems have AF_IRDA defined.
12431
12432 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
12433
12434         * class.c (class_compute_field_layout): do not consider static
12435         fields to compute alignment
12436
12437 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
12438
12439         * appdomain.c (mono_appdomain_get): impl.
12440         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
12441
12442 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
12443
12444         * icall.c: ignore "file://" prefix when loading an assembly.
12445
12446 2002-01-23  Dick Porter  <dick@ximian.com>
12447
12448         * socket-io.c:
12449         * icall.c:
12450         * Makefile.am: Added socket support
12451
12452 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
12453
12454         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
12455         code back.  This should return the assemblies that are loaded by
12456         the runtime on behalf of an application domain. 
12457
12458         The current implementation is still broken, it just returns every
12459         assembly loaded, but until we get real applications domain this
12460         will do.
12461
12462 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
12463
12464         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
12465         AppDomain object.
12466
12467 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
12468
12469         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
12470         the mono_class_from_name lookup.
12471         (ves_icall_get_parameter_info): ditto.
12472         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
12473         method.
12474         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
12475
12476 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
12477
12478         * class.c: load also nested classes on class init.
12479         System.ValueType instance methods gets passed boxed
12480         values, unless methods in derived classed that get a pointer to the
12481         data.
12482         * icall.c: use better name parsing code in GetType().
12483         * image.c, image.h: add mono_image_loaded ().
12484         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
12485         * reflection.c, reflection.h: added mono_reflection_parse_type().
12486
12487 2002-01-22  Veronica De Santis <veron78@interfree.it>
12488
12489         * icall.c : Added mapping of internal calls for Manual and Auto reset events
12490         * threads.c : Added the implementation of internal calls for events
12491         * threads.h : Added prototypes of internal calls for events
12492         
12493 2002-01-21  Radek Doulik  <rodo@ximian.com>
12494
12495         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
12496
12497 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
12498
12499         * class.c (mono_class_init): set min_align to 1 (instead of 0)
12500         (mono_class_value_size): use min_align
12501
12502 2002-01-20  Dick Porter  <dick@ximian.com>
12503
12504         * threads.h:
12505         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
12506         so it compiles on w32.
12507
12508 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
12509
12510         * metadata.c (mono_type_stack_size): impl.
12511
12512         * class.c (mono_class_get_field): impl. memberref token
12513
12514 2002-01-16 Veronica De Santis <veron78@@interfree.it>
12515
12516         * icall.h : Added the internal calls mapping for CreateMutex_internal
12517                     and ReleaseMutex_internal.
12518         * threads.h : Added the prototype of mutexes internal calls.
12519         * threads.c : Added the implementations of mutexes internal calls.
12520
12521 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
12522
12523         * metaparse.h: removed unused file.
12524         * reflection.c, reflection.h: added stream_data_align () function 
12525         to align data in streams and keep stream aligned. Add support for
12526         exception support in method headers.
12527
12528 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
12529
12530         * unicode.c: make iconv_convert () return the number of bytess written
12531         in the output buffer.
12532
12533 2002-01-15  Dick Porter  <dick@ximian.com>
12534         * threads.c: Make the runtime's idea of infinite timeouts coincide
12535         with the class library's
12536
12537         Fix a particularly egregious bug in mono_thread_cleanup(). That
12538         code was so utterly bogus it must have been written on a Monday.
12539
12540 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
12541
12542         * reflection.h: add subtypes field to TypeBuilder.
12543         * reflection.c: encode constants for literal fields.
12544         Handle subtypes. Fix user string token (and add a zero byte)
12545         at the end.
12546         
12547 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
12548
12549         * class.c (mono_class_init): bug fix: assign slot numbers for
12550         abstract methods.
12551
12552 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
12553
12554         * reflection.c: don't try to output a code RVA for abstract methods.
12555         Small fixes for method header format. Output parameter info to the
12556         ParamDef table. Save method overriding info to MethodImpl table.
12557         Fix property support. Allow typedef.extends to be a type in the
12558         building assembly.
12559         * verify.c: fix off-by-one error.
12560
12561 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
12562
12563         * class.c: fix mono_class_from_mono_type () for szarray types.
12564         Remove unused cache check in mono_class_from_type_spec().
12565         * icall.c: *type_from_name () functions handle simple arrays and byref.
12566         * reflection.c: handle byref and szarray types. Handle methods without
12567         body (gets P/Invoke compilation working). Handle types and fields in
12568         get_token ().
12569         * reflection.h: add rank to MonoTypeInfo.
12570
12571 2002-01-10  Dick Porter  <dick@ximian.com>
12572
12573         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
12574         internal calls
12575
12576 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
12577
12578         * icall.c: initialize class in type_from_handle ().
12579         Loop also in parent classes for get_method ().
12580         * reflection.c: properly encode class and valuetype types.
12581         Start on encoding TypeBuilder types. Handle fieldrefs.
12582         Use correct length when registering a user string.
12583         Handle ConstructorBuilder and MonoMethod in get_token ().
12584         Make mono_type_get_object () aware of cached types.
12585         * object.c: back out change to mono_string_new ().
12586
12587 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
12588         * object.c: mono_string_new should return a NULL when the string 
12589         passed in is NULL -- not try to deference it.
12590         
12591 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
12592
12593         * icall.c: hack to make IsSubType work for TypeBuilders.
12594         * reflection.c: emit constructors before methods.
12595         Retrieve param names in mono_param_get_objects().
12596
12597 2002/01/05  Nick Drochak  <ndrochak@gol.com>
12598
12599         * Makefile.am: fix list of headers and sources so automake 1.5
12600         doesn't complain. Removed \# at end of list.
12601
12602 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
12603
12604         * reflection.c: get token for a method ref. Set return type of
12605         constructor to void.
12606         * loader.c: debug message.
12607         * class.c: typo fix.
12608
12609 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
12610
12611         * icall.c: fix array init with rank > 1. FindMembers
12612         loops in parent class as well.
12613         * image.c: do not insert nested types in name cache.
12614         * reflection.c: warning fix.
12615         * reflection.h: add override method (for interface impl).
12616
12617 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
12618
12619         * metadata.c: fix customattr decoding.
12620
12621 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
12622
12623         * rawbuffer.cs: Added native Win32 implementation, avoids using
12624         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
12625
12626 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
12627
12628         * class.c: make the low-level routines handle the cache.
12629
12630 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
12631
12632         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
12633
12634 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
12635
12636         * class.c: fix mono_array_element_size() for objects.
12637         * class.h, class.c: add properties to MonoClass and load them
12638         at init time.
12639         * icall.c: check with isinst() when assigning a value to an array
12640         instead of requiring the classes to match exactly.
12641         Implemented icall for System.Type::GetType().
12642         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
12643         enums. Handle bindingflags when looking for methods and fields.
12644         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
12645         and mono_metadata_methods_from_property().
12646         * reflection.h, reflection.c: added structures for propreties,
12647         parameters and enums. Implemented mono_property_get_object() and
12648         mono_param_get_objects().
12649
12650 2001-12-18  Dick Porter  <dick@ximian.com>
12651
12652         * file-io.c: Use mono_string_to_utf16() instead of
12653         mono_string_chars()
12654
12655         * object.c: Added mono_string_to_utf16(), which copies the non
12656         NULL-terminated MonoString into a new double-null-terminated
12657         buffer.
12658
12659 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
12660
12661         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
12662
12663 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
12664
12665         * file-io.c: raise exceptions if handle is invalid.
12666
12667 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
12668
12669         * assembly.c: yet another check for mscorlib.
12670         * class.c, class.h: load nesting info for classes.
12671         * icall.c: many new functions to support the Reflection classes.
12672         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
12673         * reflection.h, reflection.c: mono_image_create_token(),
12674         mono_assembly_get_object(), mono_type_get_object(),
12675         mono_method_get_object(), mono_field_get_object(): methods to return
12676         objects that parallel the C representation of assemblies, types,
12677         methods, fields.
12678
12679 2001-12-11  Dick Porter  <dick@ximian.com>
12680
12681         * icall.c:
12682         * file-io.c: Internal calls for file IO.
12683
12684 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
12685
12686         * tabledefs.h: missing FileAttributes.
12687         * verify.h, verify.c: use is_valid_string () to simplify and check for
12688         valid strings more correctly. Fix warnings and speeling.
12689         Check more tables: Filed, File, ModuleRef, StandAloneSig.
12690         Check code: branches, maxstack, method calls.
12691
12692 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
12693
12694         * object.c (mono_object_allocate): removed static, so that the jit
12695         can allocate value types.
12696
12697         * icall.c (ves_icall_System_DateTime_GetNow): impl.
12698
12699 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
12700
12701         * class.c: init enum types right away and register the
12702         token->MonoClass map in mono_class_create_from_typedef ().
12703         * verify.h, verify.c: first cut of the verifier.
12704         * pedump.c: add --verify switch to verify metadata tables.
12705         * tabledefs.h: add some missing enums.
12706
12707 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
12708
12709         * class.c (mono_install_runtime_class_init): impl.
12710         (mono_class_init): renamed mono_class_metadata_init to
12711         mono_class_init, also removed the metadata_inited flag
12712
12713         * object.c (mono_object_isinst): use faster algorithm
12714
12715 2001-11-30  Radek Doulik  <rodo@ximian.com>
12716
12717         * mono-endian.h: reverted last change
12718         added function prototypes
12719
12720         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
12721         add mono-endian.c back
12722
12723         * mono-endian.c: returned back, as Paolo pointed out, it's needed
12724         for unaligned access, I've mistaked it with endianess. I am
12725         sorry.
12726         (mono_read16): fix reverted endianess
12727         (mono_read64): ditto
12728         (mono_read32): ditto
12729
12730 2001-11-30  Dick Porter  <dick@ximian.com>
12731
12732         * exception.c: Implement mono_exception_from_name()
12733
12734 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
12735
12736         * metadata.h, metadata.c: remove params_size and locals_size and their
12737         calculation from the metadata code: they are only usefult to the
12738         interp.
12739
12740 2001-11-29  Radek Doulik  <rodo@ximian.com>
12741
12742         * object.c (mono_ldstr): swap bytes here, it's probably not the
12743         best place, but works for me now, I'll redo it once I know mono
12744         better, also note that I add PROT_WRITE and don't reset back, also
12745         note that it's only affects big endians, so x86 should be OK
12746
12747         * mono-endian.h (read16): use just glib macros for both endians
12748
12749         * mono-endian.c: removed as glib macros are used in in
12750         mono-endian.h so we don't need to care about endianess for read
12751         macros as glib does that for us already
12752
12753 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
12754
12755         * class.h, class.h: take minimum alignment into consideration so
12756         that the fields of a class remain aligned also when in an array.
12757
12758 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
12759
12760         * loader.h, loader.c: add mono_method_get_param_names().
12761         * class.c: 0-init class fields.
12762
12763 2001-11-26  Dick Porter  <dick@ximian.com>
12764
12765         * icall.c:
12766         * threads-types.h:
12767         * threads.c: New file that handles System.Threading on all platforms
12768
12769         * object.c: 
12770         * object.h: Remove the synchronisation struct from MonoObject,
12771         replace it with a pointer that gets initialised on demand
12772
12773         * Makefile.am: Replace all the system-specific threading code with
12774         a single file that uses the new wrapper library
12775
12776 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
12777
12778         * class.c, class.h: add mono_install_trampoline() so that the runtime
12779         can register a function to create a trampoline: removes the ugly
12780         requirement that a runtime needed to export arch_create_jit_trampoline.
12781         * object.h, object.c: added mono_install_handler() so that the runtime
12782         can install an handler for exceptions generated in C code (with
12783         mono_raise_exception()). Added C struct for System.Delegate.
12784         * pedump.c: removed arch_create_jit_trampoline.
12785         * reflection.c: some cleanups to allow registering user strings and
12786         later getting a token for methodrefs and fieldrefs before the assembly
12787         is built.
12788         * row-indexes.h: updates and fixes from the new ECMA specs.
12789
12790 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
12791
12792         * class.h, class.c: add enum_basetype field to MonoClass.
12793         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
12794         to get index in the constant table reated to a field, param or
12795         property.
12796         * reflection.h, reflection.c: handle constructors. Set public-key and
12797         version number of the built assembly to 0.
12798         * row-indexes.h: update from new ECMA spec.
12799
12800 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
12801
12802         * class.h, class.c: add a max_interface_id to MonoClass.
12803         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
12804         since it's used to do that. Added mono_type_type_from_obj().
12805         Make GetType() return NULL instead of segfaulting if the type was not
12806         found. Handle simple arrays in assQualifiedName.
12807         * object.h: add a struct to represent an Exception.
12808         * reflection.c: output call convention in method signature.
12809         Add code to support P/Invoke methods and fixed offsets for fields.
12810
12811 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
12812
12813         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
12814         the value.
12815         * icall.c: use mono_array_addr instead of array->vector: fixes the
12816         reflection image writing.
12817         * reflection.c: init call convention byte to 0 in method signature.
12818         Encode the property signature. Don't output property-related methods
12819         twice. Really process the properties for a type (don't cast a field to
12820         a property, my mom always told me that).
12821         Fix 64 bit issues in pointer alignment in a different and more
12822         readable way.
12823
12824 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
12825
12826         * loader.h: Removed type class from MonoDefaults, added monotype
12827
12828         * loader.c: Loaded MonoType, removed loading of Type
12829
12830         * icall.c (my_mono_new_object): Now returns a System.MonoType,
12831         and fills in System.Type._impl with a RuntimeTypeHandle rather
12832         than the actual MonoClass *
12833
12834         (ves_icall_type_from_handle): change from type_class to
12835         monotype_class
12836
12837         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
12838         implemented
12839
12840         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
12841         implemented
12842
12843         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
12844
12845         (ves_icall_System_Reflection_Assembly_GetType): implemented
12846
12847         (ves_icall_System_MonoType_assQualifiedName): implemented
12848
12849         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
12850
12851 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
12852
12853         * assembly.c (mono_assembly_open): Implement a cache for the
12854         assemblies. 
12855
12856         (mono_assembly_close): only destroy the assembly when the last
12857         reference is gone.
12858         
12859 2001-11-09  Dick Porter  <dick@ximian.com>
12860
12861         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
12862
12863 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
12864
12865         * class.c (mono_class_metadata_init): bug fix: compute the right slot
12866
12867 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
12868
12869         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
12870         from Martin Weindel.
12871         * object.h: add mono_string_chars ().
12872
12873 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
12874
12875         * reflection.c (build_compressed_metadata): Eliminates warnings
12876         and uses 64-bit clean code.
12877
12878         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
12879         (mono_type_equal): Change signature to eliminate warnings.
12880
12881 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
12882
12883         * icall.c, loader.c: remove the internalcall array constructors.
12884         Changes to match the new MonoArray structure.
12885         * object.h, object.c: an array object doesn't allocate an extra
12886         vector. Add mono_array_new_full () to create jagged arrays easily.
12887
12888 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
12889
12890         * metadata.h, metadata.c: add mono_metadata_field_info () to
12891         retreive all the info about a field from vairous tables.
12892         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
12893         * class.h, class.c: augment MonoClassField with more info.
12894         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
12895         policy and load a field's RVA if needed.
12896
12897 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
12898
12899         * class.c (mono_class_metadata_init): create a trampoline for all
12900         virtual functions instead of actually compiling them.
12901
12902 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
12903
12904         * class.h, class.c: include name in MonoClassField.
12905         * class.c: fix fundamental type of System.Object and System.String.
12906         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
12907         tokens in ldtoken.
12908         * icall.c: remove internalcalls for the Reflection stuff that is now
12909         done in C# code.
12910         * loader.c: mono_field_from_memberref () implementation.
12911         * mono-endian.c: thinko (s/struct/union/g).
12912         * object.c, object.h: make the mono_string_* prototypes actually use
12913         MonoString instead of MonoObject.
12914         * reflection.c, reflection.h: updates for changes in the reflection
12915         code in corlib: we use C structures that map to the actual C# classes.
12916         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
12917         fat method header if needed and use the info from the ILGenerator for
12918         methods. Handle fields in types. Misc fixes.
12919
12920 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
12921
12922         * class.c (mono_class_metadata_init): bug fix: always allocate
12923         space for static class data
12924
12925 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
12926
12927         * class.c (mono_compute_relative_numbering): use relative
12928         numbering to support fast runtime type checks.
12929
12930 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
12931
12932         * class.c (mono_class_create_from_typeref): added debugging output
12933         to print class name when MonoDummy is returned instead of real class
12934
12935 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
12936
12937         * class.c (mono_class_metadata_init): interface offset table now
12938         contains pointers into the vtable - this is more efficient for the jit
12939
12940 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
12941
12942         * class.c (mono_class_metadata_init): use a temporary vtable (the
12943         old algorithm only worked for the interpreter, but not for the jit)
12944
12945 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
12946
12947         * loader.c (method_from_memberref): use mono_class_get to get the
12948         class of an array instead of using System.Array directly.
12949         (mono_get_method): also add MEMBERREF methods to the method cache
12950         which usefull for arrays.
12951
12952 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
12953
12954         * pedump.c (arch_compile_method): added to compute vtable entry
12955
12956         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
12957         number of interfaces.
12958         
12959         * class.h: merged MonoArrayClass into MonoClass
12960
12961         * class.c (mono_class_create_from_typedef): compute the vtable size and
12962         allocate space to include the vtable inside MonoClass
12963         (mono_class_metadata_init): initialize the vtable
12964
12965 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
12966
12967         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
12968         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
12969         * image.c: endian fixes by Laurent Rioux.
12970         * object.h, object.c: rename MonoStringObject to MonoString and
12971         MonoArrayObject to MonoArray. Change some function names to conform to
12972         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
12973         guint16* as first argument, so don't use char*.
12974         Provide macros to do the interesting things on arrays in a portable way.
12975         * threads-pthread.c: updates for the API changes and #include <sched.h>
12976         (required for sched_yield()).
12977         * icall.c: updates for the API changes above.
12978         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
12979         platforms that need them.
12980
12981 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
12982
12983         * class.c: set the correct type for all the fundamental
12984         type when loading the class.
12985
12986 2001-10-05  Dick Porter  <dick@ximian.com>
12987
12988         * threads-pthread.c (pthread_mutex_timedlock): Simple
12989         compatibility version for C libraries that lack this call.
12990
12991 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
12992
12993         * class.c: MonoTypes stored in MonoClass are stored as
12994         fundamental MonoTypes when the class represents a
12995         fundamental type (System.Int32, ...).
12996         The TypeHandle return by ldtoken is a MonoType*.
12997         * icall.c: ves_icall_get_data_chunk () write out all the
12998         PE/COFF stuff. Implement ves_icall_define_method (),
12999         ves_icall_set_method_body (), ves_icall_type_from_handle ().
13000         * image.c: properly skip unknown streams.
13001         * loader.h, loader.c: add type_class to mono_defaults.
13002         * metadata.c, metadata.h: export compute_size () as
13003         mono_metadata_compute_size () with a better interface.
13004         Typo and C&P fixes.
13005         * pedump.c: don't try to print the entry point RVA if there is no entry point.
13006         * reflection.c, reflection.h: many cleanups, fixes, output method
13007         signatures and headers, typedef and typeref info, compress the metadata
13008         tables, output all the heap streams, cli header etc.
13009         * row-indexes.h: typo fixes.
13010
13011 2001-10-04  Dick Porter  <dick@ximian.com>
13012
13013         * object.h: Add a synchronisation mutex struct to MonoObject
13014
13015         * object.c (mono_new_object): Initialise the object
13016         synchronisation mutexes
13017
13018         * icall.c: System.Threading.Monitor internal calls
13019         
13020         * threads-pthread.h:
13021         * threads-pthread.c: System.Threading.Monitor internal calls
13022
13023         * threads-types.h: New file, includes the system-specific thread
13024         structures
13025         
13026         * threads-pthread-types.h:
13027         * threads-pthread-types.c: New files, handle pthread-specific
13028         synchronisation types
13029
13030         * threads-dummy-types.h: 
13031         * threads-dummy-types.c: New files of dummy support for
13032         thread-specific types
13033
13034         * metadata.c:
13035         * image.c:
13036         * pedump.c: include mono-endian.h not endian.h
13037         
13038         * Makefile.am: More threads files.
13039         Name mono-endian.h not endian.h
13040
13041 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
13042
13043         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
13044         stuff and implement a few more bits.
13045         * icall.c: a field needs to be dereferenced twice. Do not use the same
13046         name for two variables in the same scope.
13047         * image.c, image.h: cleanups.
13048
13049 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
13050
13051         * class.c (mono_class_metadata_init): bug fix: compute the right size
13052
13053 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
13054
13055         * icall.c: implemented some of the Reflection internalcalls.
13056         * image.c, image.h: start writing out the PE/COFF image.
13057         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
13058         that does the reverse than decode_blob_size ().
13059         * object.c: use mono_metadata_encode_value (). Move here
13060         temporary implementation of mono_string_to_utf8 ().
13061         * rawbuffer.c: make malloc_map static.
13062
13063 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
13064
13065         * metadata.c: fix type comparison for arrays.
13066         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
13067         Added a couple of new classes to monodefaults.
13068         * icall.c: added a couple of Reflection-related internalcalls.
13069         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
13070         Added a byval_arg MonoType to MonoClass.
13071
13072 2001-09-28  Dick Porter  <dick@ximian.com>
13073
13074         * icall.c:
13075         * threads-pthread.h: 
13076         * threads-pthread.c: Implemented internal calls for
13077         LocalDataStoreSlot operations.  Applied mutexes around all shared
13078         data.  Reworked the thread creation and Start() operations to
13079         avoid a race condition.
13080         
13081         * threads-dummy.h:
13082         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
13083
13084 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
13085
13086         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
13087
13088 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
13089
13090         * class.c, loader.c: warn and return NULL instead of erroring out.
13091         * icall.c: added System.AppDomain::getCurDomain().
13092         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
13093
13094 2001-09-25  Dick Porter  <dick@ximian.com>
13095
13096         * threads-pthread.h:
13097         * threads-pthread.c: Implemented timed thread joining and added
13098         System.Threading.Thread::Join_internal internal call
13099
13100         * icall.c: Added System.Threading.Thread::Join_internal internal call
13101
13102         * threads-dummy.h:
13103         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
13104
13105 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
13106
13107         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
13108         mono_string_intern () to implement the semantics of the ldstr opcode
13109         and the interning of System.Strings.
13110         * icall.c: provide hooks to make String::IsIntern and String::Intern
13111         internalcalls.
13112
13113 2001-09-23  Dick Porter  <dick@ximian.com>
13114
13115         * threads-dummy.c: 
13116         * threads-dummy.h: New files of dummy threading routines
13117
13118         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
13119         support code based on system specifics
13120
13121         Rename PTHREAD_LIBS to THREAD_LIBS
13122         
13123 2001-09-23  Dick Porter  <dick@ximian.com>
13124
13125         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
13126         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
13127         internal calls.
13128         (mono_thread_init): Set up a Thread object instance to return when
13129         the main thread calls Thread.CurrentThread
13130         (mono_thread_cleanup): Wait for all subthreads to exit
13131
13132         * icall.c: New internal calls for System.Threading.Thread::Sleep
13133         (including Schedule) and CurrentThread
13134
13135         * threads.h: New file, to insulate thread-specific stuff from the
13136         rest of the code
13137
13138 2001-09-21  Dick Porter  <dick@ximian.com>
13139
13140         * threads-pthread.h: 
13141         * threads-pthread.c: New file, for handling pthreads-style
13142         threading support.  Start() now starts a new thread and executes
13143         the ThreadStart delegate instance.
13144
13145         * icall.c: Added the internalcall for
13146         System.Threading.Thread::Start_internal
13147
13148         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
13149
13150 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
13151
13152         * loader.c: work around the different signatures for delegates
13153         constructors csc generates in compiled code vs the ones compiled in mscorlib.
13154
13155 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
13156
13157         * class.h, class.c: add mono_class_get_field_from_name ().
13158         * *: Fix C comments and other ANSI C issues.
13159
13160 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
13161
13162         * endian.h, assembly.c: fix some endianness issues.
13163
13164 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
13165
13166         * loader.h, load.c: add delegate_class to mono_defaults.
13167         Handle runtime provided methods in mono_get_method ().
13168
13169 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
13170
13171         * loader.c (mono_get_method): use pinvoke for internal call
13172
13173         * icall.c: use pinvoke for internal call
13174
13175         * loader.c (method_from_memberref): set the method name
13176
13177 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
13178
13179         * metadata.c: help the compiler generate better code for
13180         mono_class_from_mono_type ().
13181
13182 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
13183
13184         * class.c (mono_class_metadata_init): delayed computing of the
13185         class size to mono_class_metadata_init ()
13186
13187 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
13188
13189         * class.c, class.h: add an interfaces member to MonoClass.
13190         * image.c, image.h: add assembly_name field to MonoImage
13191         from the assembly table.
13192         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
13193
13194 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
13195
13196         * class.c: Handle Array in mono_class_from_mono_type ().
13197         * metadata.c, pedump.c: some endian fixes.
13198
13199 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
13200
13201         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
13202         * metadata.c: fix small problem introduced with the latest commit.
13203
13204 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
13205
13206         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
13207         We don't need a MonoMetadata pointer anymore to compare signatures in
13208         mono_metadata_signature_equal (), update callers.
13209         Reduced memory usage an number of allocations for MonoMethodHeader and
13210         MonoMethodSignature.
13211
13212 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
13213
13214         * metadata.c: added compare for szarray.
13215
13216 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
13217
13218         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
13219         and add a couple more types to it and mono_defaults. Give an hint on
13220         classes that need implementing in our corlib and are referenced
13221         in mscorlib.
13222
13223 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
13224
13225         * class.h, class.c: keep track if a class is also an Enum.
13226         * loader.c: Implement a couple more types for use in libffi
13227         marshalling. Gives better diagnostics when failing to dlopen
13228         a library. Set method->klass for P/Invoke methods, too.
13229
13230 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
13231
13232         * class.c, class.h: add a MonoType this_arg to MonoClass that
13233         represents a pointer to an object of the class' type that
13234         can be used by the interpreter and later the type cache.
13235         Add best guess alignment info for valuetype objects.
13236
13237 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
13238
13239         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
13240         into MonoType: one less level of indirection and allocation and
13241         simplifies quite a bit of code. Added cache for MonoTypes that are
13242         used frequently, so that we don't need to allocate them all the time.
13243
13244 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
13245
13246         * class.c (mono_class_create_from_typedef): System.Enum is also a
13247         value type, although it does not derive from System.ValueType
13248         (maybe a bug in the ms compiler?)
13249
13250         * metadata.c (mono_type_size): return the right size for value types
13251
13252         * loader.c (mono_get_method): only initialize method header if not abstract
13253
13254         * class.c (mono_class_from_mono_type): use mono_default values. 
13255
13256 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
13257
13258         * *: use MonoClass pointers instead of <type_tokens>
13259         
13260         * class.h: new flag: metadata_inited.
13261
13262         * class.c (mono_class_metadata_init): impl.
13263         (mono_class_instance_size): impl.
13264         (mono_class_data_size): impl.
13265
13266 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
13267
13268         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
13269         MonoClass now has the name and name_space fields. 
13270         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
13271         mono_get_method () takes and optional MonoClass as argument.
13272         Removed mono_typedef_from_name() and added mono_class_token_from_name()
13273         instead that takes advantage of a map from class names to typedef
13274         tokens in MonoImage.
13275
13276 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
13277
13278         * metadata.c: zero is not a valid alignment boundary.
13279         Merge MONO_TYPE_VOID in default decoding code.
13280
13281 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
13282
13283         * image.h: merged MonoMetadata into MonoImage
13284
13285         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
13286         identify the type of elements.
13287
13288 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
13289
13290         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
13291         * cil-coff.h: split MonoMSDOSHeader and add size info.
13292         * image.c: add some consistency checks.
13293         * metadata.c: fix row size computation: one programmer
13294         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
13295         add explanation for the locator routine.
13296         Fix decoding of size in method header.
13297         
13298 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
13299
13300         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
13301         (g_concat_dir_and_file): Bring g_concat_dir_and_file
13302         function from gnome-libs.  This uses the right path separator
13303         based on the OS, and also works around a bug in some systems where
13304         a double slash is not allowed. 
13305         (default_assembly_name_resolver): Use g_concat_dir_and_file
13306         (mono_assembly_open): ditto.
13307
13308 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
13309
13310         * metadata.c (mono_metadata_signature_equal): impl.
13311
13312         * *: void is now a realy MonoType (instead of using NULL)
13313         
13314         * metadata.c (do_mono_metadata_parse_type): use
13315         mono_metadata_parse_type to parse void value.
13316
13317 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
13318
13319         * metadata.c, metadata.h: in the signature and method header store
13320         only the space required for holding the loca vars and incoming arguments.
13321
13322 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
13323
13324         * metadata.c (do_mono_metadata_parse_type): treat void like any
13325         other type (instead of assigning NULL);
13326
13327 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
13328
13329         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
13330
13331 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
13332
13333         * image.c (do_mono_image_open): added a cache for arrays.
13334
13335 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
13336
13337         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
13338         decode a single column from a row in a metadata table and changes
13339         to take advantage of it in the typedef locator (gives a nice speed up).
13340         Store offset info for function params.
13341
13342 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
13343
13344         * image.h (MONO_IMAGE_IS_CORLIB): removed 
13345
13346 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
13347
13348         * assembly.c: how could mono_assembly_close () had ever worked?
13349         * metadata.c, metadata.h: provide offset info for local vars.
13350         Implement mono_type_size () to take care of alignment as well
13351         as size (it was mono_field_type_size in cli/class.c before).
13352
13353 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
13354
13355         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
13356
13357         * assembly.h (CORLIB_NAME): set to corlib.dll
13358
13359         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
13360
13361 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
13362
13363         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
13364         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
13365         tokentype.h: massive namespace cleanup.
13366
13367 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
13368
13369         * metadata.h, metadata.c: decode exception clauses when parsing method header.
13370
13371 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
13372
13373         * metadata.c (mono_metadata_free_type): added check for type !=
13374         NULL (void) before calling mono_metadata_free_type()
13375
13376 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
13377
13378         * metadata.h, row_indexes.h: added header with enumerations to use
13379         to index in the columns from tables in metadata and to decode coded
13380         tokens: we should start using this instead of embedding magic numbers
13381         all over the code.
13382
13383 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
13384
13385         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
13386         Move metadata_t info from cli_image_info_t to MonoImage, where
13387         it's easily accessible. Changed all the uses accordingly.
13388         Added the method and class caches to MonoImage.
13389         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
13390         and mono_metadata_decode_value () signature to be more consistent
13391         with the other parse functions (and simplify code). Taken advantage
13392         of zero-length array allocation with GCC. Removed reduntant (and
13393         wrong) MonoFieldType struct and use MonoParam instead. Changed
13394         mono_metadata_parse_field_type () to use common code for parsing.
13395         Added mono_metadata_typedef_from_field () and
13396         mono_metadata_typedef_from_method () to lookup a typedef index from a
13397         field or method token.
13398         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
13399
13400 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
13401
13402         * metadata.c (mono_metadata_parse_field_type): Implement. 
13403         (do_mono_metadata_parse_type): Split engine from
13404         mono_metadata_parse_type, so that we can create smaller structures
13405         for things that just have one pointer to the MonoType (look at
13406         the MonoFieldType)
13407
13408 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
13409
13410         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
13411         as Jan Gray found out, it is incorrect. 
13412
13413 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
13414
13415         * assembly.c: Implement asssembly loading.  This loads an image
13416         and loads all the referenced assemblies.  Come to think of it, we
13417         could always do lazy loading of the assemblies. 
13418
13419         * image.c (mono_image_open): Keep loaded images in a hashtable.
13420
13421         * image.h (MonoImage): Add reference count.
13422
13423 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
13424
13425         * assembly.c (mono_assembly_open): Keep track of the file name in
13426         case the assembly has no ASSEMBLY table.
13427
13428         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
13429         from get.c here.
13430
13431 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
13432
13433         * metadata.c, metadata.h: decode local vars in method header
13434         parse function. Change callers accordingly.
13435
13436 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
13437
13438         * metadata.h, cil-coff.h: protect against multiple inclusion.
13439         Added some new structures to hold information decoded from metadata:
13440         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
13441         and relevant decoding/free functions.
13442         * metadata.c: implement decoding functions. Add warning for out of bounds
13443         index in mono_metadata_locate(). Implement mono_get_method () to retreive
13444         all the info about a method signature and invocation. Remove check on
13445         uninitialized local var in parse_mh() and fix memory leak.
13446
13447 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
13448
13449         * metadata.h: More macros.
13450
13451         * tokentype.h: New file.
13452
13453 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
13454
13455         * assembly.c: added a consistency check and initialize
13456         some structures with g_new0().
13457         * metadata.c: fixed a couple more bugs in table size computation
13458         and add other checks for out-of bound access to metadata.
13459
13460 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
13461
13462         * metatada.c: fix bugs computing table sizes. Spew a
13463         warning when index in string heap is out of bounds.
13464
13465 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
13466
13467         * metadata.h: Add a couple of macros to manipulate tokens. 
13468
13469 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
13470
13471         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
13472         cli_section_tables).
13473
13474 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
13475
13476         * metadata.c (mono_metadata_user_string): New function, provides
13477         access to the UserString heap. 
13478
13479 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
13480
13481         * metadata.c: Add inline documentation.
13482
13483 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
13484
13485         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
13486         files. 
13487
13488 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
13489
13490         * typeattr.h: New file, TypeAttribute flags. 
13491
13492 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
13493
13494         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
13495         mono_assembly_ensure_section): Section loading code.
13496         (load_section_tables): Load the sections.
13497
13498         * mono/metadata/metadata.c (mono_metadata_locate_token,
13499         mono_metadata_locate): Functions to locate the information
13500         definition given a token or a table and an index.
13501         (mono_metadata_compute_table_bases): New.
13502         (compute_size): New function to compute the sizes of the various
13503         tables.
13504
13505         * mono/metadata/metadata.h: Finish listing the different index
13506         types. 
13507
13508         * mono/metadata/pedump.c: Improve to dump new information.
13509
13510 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
13511
13512         * mono/metadata/metadata.c: Entered all the tables matching
13513         Beta2. 
13514
13515         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
13516