Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
[mono.git] / mono / metadata / ChangeLog
1
2 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
3
4         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
5         start providing a GC API and keeping different implementations in
6         their own file.
7         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
8
9 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
10
11         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
12         mmap rather than allocating a huge buffer.
13         (mono_debug_close_mono_symbol_file): Free the buffer allocated
14         above.
15
16 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
17
18         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
19         and CheckExecutionRights.
20         * reflection.c|h: Keep the index of the declarative security to be 
21         used, instead of the pointer, when AOT compiler is used. Also add 
22         class initialization when requesting demands.
23         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
24         CheckExecutionRights. Both properties are now FALSE by default, and
25         unmodifiable, unless the --security option is used.
26
27 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
28
29         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
30         reflection.c: properly refcount images and assemblies, many leaks fixed.
31
32 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33
34         * threadpool.c: increase the timeout for threads in the thread pool to
35         10s.  Fixes bug #67159.
36
37 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
38
39         * class-internals.h: Sun's compiler insists on explicit
40         signed on bit fields to handle then correctly.
41
42 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
43
44         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
45         Make the size of the array fit only the number of invalid path
46         chars that we have.
47
48         * class.c (_mono_class_get): Improve the error reporting when a
49         class referenced is not found, to assist debugging. 
50
51 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
52
53         * threads.c: fix off-by-one error.
54         * domain.c: free data allocated in the domain.
55
56 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
57
58         * reflection.c (mono_method_body_get_object): Fill out exception info
59         as well.
60
61         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
62         structure.
63         
64 2005-01-19  Martin Baulig  <martin@ximian.com>
65
66         * loader.c (mono_get_method_constrained): Make this work again.
67
68 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
69
70         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
71         guint16 to match the managed side.
72
73         * reflection.c (mono_reflection_body_get_object): Fill out local
74         variables array.
75
76         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
77         as well.
78
79         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
80         'local_var_sig_token'.
81
82 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
83
84         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
85         System.Drawing.
86
87         * reflection.c (mono_method_body_get_object): Handle abstract and
88         runtime methods.
89
90 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
91
92         * marshal.c, loader.c, class-internals.h, reflection.c:
93         store the emthod data for a wrapper in an array instead of a list.
94
95 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
96
97         * marshal.c: change the code to allocate memory more
98         conservatively for method wrappers.
99
100 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
101
102         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
103         fields from MonoClass to the marshal info structure where they belong.
104
105 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
106
107         * class.c, object.c, class-internals.h, marshal.c: rearrange
108         some fields and tweak some types to lower memory usage.
109
110 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
111
112         * threads.c (signal_thread_state_change): Handle the case when the
113         target thread is the current thread.
114
115         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
116
117         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
118         emit_ptr_to_object_conv. 
119
120         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
121         marshalling. Fixes #71352.
122
123 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
124
125         * metadata.h, blob.h: move table enum to blob.h so it can be included
126         in any header.
127         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
128         cut the size of MonoImage/MonoDynamicImage.
129
130 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
131
132         * profiler.c (mono_profiler_install_simple): Fix default arguments.
133
134 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
135
136         * reflection.c, reflection.h, icall.c: add a function to check
137         if an attribute type is defined for a metadata object.
138
139 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
140
141         * object-internals.h: Added some needed fields from StringBuilder class.
142         * marshal.c: Set the maxCapacity when creating a StringBuilder.
143
144 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
145
146         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
147         threads before shutting down the runtime.
148
149         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
150
151 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
152
153         * object-internal.h, threads.c: implement stacksize and 
154         parameterized thread start functionality (requires
155         matching corlib). Marked broken code for later removal.
156
157 2005-01-12  Martin Baulig  <martin@ximian.com>
158
159         * class-internals.h (MonoGenericClass): Moved the `initialized'
160         flag to MonoDynamicGenericClass, removed `init_pending'.
161         (MonoGenericInst): Added `is_reference' flag.
162
163 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
164
165         * reflection.c (mono_image_create_pefile): Only set the pe_offset
166         inside the MSDOS header. Fixes #71201.
167
168         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
169         gc thread.
170         (mono_domain_finalize): Ditto.
171
172 2005-01-12  Martin Baulig  <martin@ximian.com>
173
174         * class.c (mono_get_shared_generic_class): Use the cache for
175         non-dynamic generic classes.
176
177         * class-internals.h (mono_class_create_generic_2): Removed
178         function prototype, this function is now static inside class.c.
179
180         * class.c (mono_class_create_generic_2): Made this static, only
181         call it from mono_class_init() and mono_class_setup_parent().
182         (collect_implemented_interfaces_aux): Call mono_class_init() on
183         the interfaces we collect.
184         (mono_class_setup_vtable): Call mono_class_init (class->parent).
185
186 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
187
188         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
189         it a real thread handle.
190
191         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
192         MonoJitExceptionInfo, since each catch clause needs its own variable.
193         
194 2005-01-11  Dick Porter  <dick@ximian.com>
195
196         * image.c (mono_pe_file_open): New variant on mono_image_open()
197         that does not set up the CLI metadata; used for FileVersionInfo so
198         it can get the data for windows binaries too.
199         
200         * process.c (process_read_string_block): Don't read off the end of
201         the StringTable block.
202
203         These both fix bug 70766.
204
205 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
206
207         * gc.c: set some fields to NULL at GC cleanup time.
208         * threads.c: if we quit the main thread, call exit ().
209
210 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
211
212         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
213
214 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
215
216         * threads.h, threads.c, object.c: added accessor and settor for
217         main_thread. Handle it specially when exiting from it: wait
218         for other foreground threads to exit.
219
220 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
221
222         * process.c, verify.c: remove some bloat.
223
224 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
225
226         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
227         the calling convention to cdecl under win32.
228
229 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
230
231         * object.c (mono_object_get_size): New function to get the size of
232         an object instance.
233
234         * profiler.c (simple_allocation): Use above.
235
236 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
237
238         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
239         ves_icall_System_AppDomain_getRootDomain (as it's not required to
240         get an appdomain by it's id and we can't assume the root's id is 0).
241         * domain-internals.h: Change the function prototype to match.
242         * icall.c: Change the icall table for AppDomain.
243
244 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
245
246         * locales.c (string_invariant_compare_char): Only compute
247         GUnicodeTypes in the case where we need them.  Test for ordinality
248         first and return if so.
249
250         From the commit:
251
252                 /*
253                  * FIXME: here we must use the information from c1type and c2type
254                  * to find out the proper collation, even on the InvariantCulture, the
255                  * sorting is not done by computing the unicode values, but their
256                  * actual sort order.
257                  */
258
259 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
260
261         * loader.c: for P/Invoke methods, allow the "Internal" shared
262         library name to refer to the calling process symbol namespace.
263
264 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
265
266         * Makefile.am: Add the security manager to the build.
267         * security-manager.c|h: New. Initialization of the security manager.
268
269 2005-01-07  Dick Porter  <dick@ximian.com>
270
271         * threads.c: 
272         * monitor.c: Update thread state during Monitor and WaitHandle
273         waits.  Fixes bug 71031.
274
275 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
276
277         * reflection.c (property_encode_signature): Correctly handle when the
278         property has no methods.
279
280 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
281
282         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
283         
284         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
285         fields from mb, not rmb. Fixes #71017.
286
287         * marshal.c (emit_ptr_to_str_conv): Add support for 
288         ByValTStr -> string conversion. Fixes #71015.
289
290         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
291
292         * mempool.c (mono_mempool_contains_addr): New helper function.
293
294 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
295
296         * metadata.c (mono_metadata_compute_size): Fix size calculation of
297         HasSematics encoded fields.
298         
299         * metadata.c (mono_type_to_unmanaged): Improve error message for 
300         invalid string marshalling.
301
302         * metadata.c: Fix warnings.
303         
304 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
305
306         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
307         profiler support.
308
309 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
310
311         * domain.c object.c domain-internals.h: Revert part of r38077 since the
312         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
313         tests.
314
315 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
316
317         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
318         so methods containing these can be AOTed.
319
320 2005-01-03  Martin Baulig  <martin@ximian.com>
321
322         * loader.c (find_method): Removed the hack for generic instances.
323         (method_from_memberref): If our parent is a generic instance, pass
324         its generic type definition to find_method() and then inflate the
325         method.
326         (mono_get_method_constrained): Pass the generic type definition to
327         find_method() and inflate the method later.
328
329         * class-internals.h (MonoStats): Added `generic_class_count'.
330
331         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
332         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
333
334         * reflection.c (mono_custom_attrs_from_params): Don't ignore
335         generic type definitions.
336
337 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
338
339         * loader.c icall.c: Fix warnings.
340
341 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
342
343         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
344         blittable types. Fixes #70864.
345
346 2004-12-29  Martin Baulig  <martin@ximian.com>
347
348         * icall.c
349         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
350
351         * reflection.c (mono_method_get_object): Create a
352         "System.Reflection.MonoGenericMethod" for inflated methods; don't
353         call mono_get_inflated_method().
354
355         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
356
357 2004-12-27  Martin Baulig  <martin@ximian.com>
358
359         * class-internals.h (MonoMethod): Added `is_inflated' flag.
360         (MonoMethodInflated): Added `inflated' field.
361
362         * class.c (mono_class_inflate_generic_method): Don't really
363         inflate the method here; just set the `is_inflated' flag in the
364         MonoMethod.
365         (mono_class_get_inflated_method): Actually inflate the method here
366         if it's not already inflated; we use the MonoMethodInflated's new
367         `inflated' field as a cache.
368
369 2004-12-26  Martin Baulig  <martin@ximian.com>
370
371         * class.c
372         (inflate_generic_class): Moved some code out of inflate_generic_type().
373         (mono_class_inflate_generic_method): If we're already inflated,
374         inflate the context and use the declaring method; ie. make sure
375         the declaring method of an inflated method is always the generic
376         method definition.
377         (mono_class_create_from_typedef): Create
378         `class->generic_container->context->gclass'.
379
380 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
381
382         * metadata-internals.h, marshal.c, reflection.c: More
383         MonoGHashTable->GHashTable.
384
385         * domain-internals.h, class.c: Change MonoGHashTable's into
386         GHashTables for some cases where no gc stuff is used
387
388         All users: update apis
389
390 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
391
392         * metadata.c (builtin_types): Make this `const'. Makes this get
393         put into the shareable section.
394         (mono_metadata_init): Casts to make gcc happy.
395
396 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
397
398         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
399
400 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
401
402         * icall.c: Added an internal call to retrieve the position and length
403         of assembly-level declarative security attributes (RequestMinimum, 
404         RequestOptional and RequestRefuse). This is used by the Assembly class
405         to re-create the corresponding permission sets.
406
407 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
408
409         * marshal.c: fix the stelemref wrapper to be type correct
410         (and faster).
411
412 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
413
414         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
415         to do key & 0x7fffffff. Hashtable already does this. It just
416         results in longer code.
417
418 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
419
420         * appdomain.c: Bump corlib version.
421         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
422         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
423         * reflection.c|h: Add functions to get declarative security infos
424         (blob position and length) for assemblies, classes and methods.
425
426 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
427
428         * reflection.c: sort the constant table (bug #70693).
429
430 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
431
432         * object-internals.h, threads.c, domain.c: add accessors for
433         the MonoThread and MonoDomain tls keys.
434
435 2004-12-18  Martin Baulig  <martin@ximian.com>
436
437         * class.c (inflate_generic_type): If we're inflating a generic
438         instance, set `ngclass->context->container = context->container';
439         ie. the container we inflated into.
440
441         * metadata.c (mono_metadata_parse_generic_param): Reflect above
442         inflate_generic_type() changes.
443
444 2004-12-17  Martin Baulig  <martin@ximian.com>
445
446         * class-internals.h
447         (MonoGenericClass): Replaced `MonoType *generic_type' with
448         `MonoClass *generic_class'.  Removed `dynamic_info'; if
449         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
450         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
451
452 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
453
454         * exception.c (mono_exception_from_token): New helper function.
455
456 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
457
458         * assembly.c (mono_assembly_load_with_partial_name): Call 
459         mono_assembly_loaded before invoking the preload hooks. Fixes
460         #70564.
461
462         * object-internals.h (MonoThread): Change culture_info and 
463         ui_culture_info into an array.
464
465         * threads.c: Cache culture info objects from more than one appdomain.
466
467         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
468         current UI culture.
469
470 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
471
472         * threads.h threads.c appdomain.c: Clear the culture_info field of
473         all threads during unloading if they point to an object in the dying
474         appdomain.
475
476 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
477
478         * culture-info.h (TextInfoEntry): New struct
479         * object-internals.h: sync with managed
480         * locales.c: fill the `text_info_data' field
481         * culture-info-tables.h: update
482
483 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
484
485         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
486         collector.
487
488 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
489
490         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
491         (ves_icall_ModuleBuilder_getMethodToken): Ditto
492
493 2004-12-12  Martin Baulig  <martin@ximian.com>
494
495         * mono-debug-debugger.c (write_type): If we're an enum and the
496         builtin types have already been initialized, call mono_class_init().
497
498 2004-12-11  Martin Baulig  <martin@ximian.com>
499
500         * metadata.c (mono_metadata_load_generic_params): Added
501         `MonoGenericContainer *parent_container' argument; automatically
502         compute `container->is_method'; pass the correct owner to
503         get_constraints().      
504
505         * reflection.c (compare_genericparam): Sort the GenericParam table
506         according to increasing owners. 
507
508 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
509
510         * profiler.c: allow disabling the default profiler.
511
512 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
513
514         * decimal.c, icall.c: allow disabling System.Decimal support.
515
516 2004-12-09  Marek Safar <marek.safar@seznam.cz>
517
518         * reflection.c: Add support for null attribute arguments.
519
520 2004-12-09  Martin Baulig  <martin@ximian.com>
521
522         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
523         names to get rid of compiler warnings.
524
525 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
526
527         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
528         mono_marshal_load_type_info (). Fixes #69625.
529         (mono_marshal_get_ptr_to_struct): Likewise.
530
531 2004-12-08  Martin Baulig  <martin@ximian.com>
532
533         * mono-debug.h: Bumped version number to 47.
534
535         * mono-debug-debugger.c
536         (mono_debugger_event_handler, mono_debugger_event): Take two
537         guint64 arguments insteed of a gpointer and a guint32.  
538
539 2004-12-08  Martin Baulig  <martin@ximian.com>
540
541         * debug-mono-symfile.h
542         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
543         `address' to `native_offset'.
544
545 2004-12-08  Martin Baulig  <martin@ximian.com>
546
547         * class.c (mono_class_create_from_typespec): Only inflate if we
548         either have `context->gclass' or `context->gmethod'.
549
550 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
551
552         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
553
554         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
555
556         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
557
558         * reflection.c (mono_assembly_get_object): Remove the workaround put
559         in for the release.
560         
561         * appdomain.c: Use the corlib_internal field from MonoAssembly.
562
563         * appdomain.c: Bump corlib version.
564
565         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
566         be visible in other appdomains.
567
568 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
569
570         * threads.c: Interlocked inc and dec for longs were messed up,
571         use a KISS based impl for this. Fixes 70234
572
573 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
574
575         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
576
577 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
578
579         * icall.c: fix to follow policy not to allow struct
580         arguments in icalls.
581
582 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
583
584         * process.c: make the patch that handles spaces in file paths work
585         on mono/windows too.
586
587 2004-12-06  Martin Baulig  <martin@ximian.com>
588
589         * class.c (mono_class_create_generic): Call
590         mono_class_setup_supertypes() if we're dynamic.
591         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
592
593 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
594
595         * object-internals.h: Add new fields to MonoThread.
596
597         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
598
599         * icall.c threads-types.h threads.c: Add new icalls.
600
601         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
602
603         * object-internals.h (MonoReflectionAssembly): Sync object layout with
604         managed side.
605
606         * appdomain.c: Bump corlib version.
607
608         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
609         internal assemblies. Fixes #69181.
610
611 2004-12-05  Martin Baulig  <martin@ximian.com>
612
613         * class.c (mono_class_inflate_generic_signature): Make this a
614         no-op if `context' is NULL or we don't have any type parameters;
615         also copy `sentinelpos'.        
616
617 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
618
619         * image.c: Add unbox_wrapper_cache.
620
621         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
622
623         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
624         function generator.
625         
626         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
627         Fixes #70173.
628
629         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
630         
631 2004-12-04  Martin Baulig  <martin@ximian.com>
632
633         * loader.c (mono_method_get_signature_full): New public function;
634         like mono_method_get_signature(), but with an additional
635         `MonoGenericContext *' argument.
636
637         * class.c (mono_class_inflate_generic_signature): Formerly known
638         as inflate_generic_signature(); make this public.
639
640 2004-12-04  Martin Baulig  <martin@ximian.com>
641
642         * metadata.c
643         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
644         instead of a `MonoGenericContainer *'.  
645         (mono_metadata_parse_array_full): Likewise.
646         (mono_metadata_parse_signature_full): Likewise.
647         (mono_metadata_parse_method_signature_full): Likewise.
648         (mono_metadata_parse_generic_inst): Likewise.
649         (mono_metadata_parse_generic_param): Likewise.
650         (mono_metadata_parse_mh_full): Likewise.
651         (mono_type_create_from_typespec_full): Likewise.
652
653 2004-12-03  Martin Baulig  <martin@ximian.com>
654
655         * class-internals.h (MonoGenericContainer): Replaced the
656         `MonoGenericContext * pointer with a `MonoGenericContext'
657         structure and made it the first element.
658
659 2004-12-03  Martin Baulig  <martin@ximian.com>
660
661         * class.c
662         (inflate_generic_type): Set the `context->container' when creating
663         a new MonoGenericContext.
664         (mono_class_inflate_generic_method): Likewise.
665         (mono_class_create_from_typespec): Just use `context->container'
666         to get the container.
667
668         * loader.c (method_from_methodspec): Set `context->parent' from
669         `context->container' - and if that's a method container, use its
670         parent.  Also set the `context->container' when creating a new
671         MonoGenericContext.
672         (mono_get_method_from_token): Use just `context->container' to get
673         the container.
674
675         * metadata.c (do_mono_metadata_parse_generic_class): Also set
676         `gclass->context->container'.
677
678         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
679         the `context->container' when creating a new MonoGenericContext.
680
681 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
682
683         * reflection.c (compare_genericparam): Sort params with identical
684         owner by their number. Fixes gen-111 on sparc.
685
686 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
687
688         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
689         around the domain changes.
690
691         * appdomain.c (mono_domain_unload): Handle the case when the thread
692         calling Unload is itself being aborted during unloading. Fixes #70022.
693
694         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
695
696         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
697         checkpoint_func as an icall so it gets a wrapper.
698         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
699         in the cross-appdomain wrappers too.
700
701         * threads.c (mono_thread_has_appdomain_ref): Make this public.
702
703         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
704
705         * reflection.c: Fix some memory leaks.
706         
707 2004-12-02  Martin Baulig  <martin@ximian.com>
708
709         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
710
711         * metadata.c (generic_class_cache): New static hashtable.
712         (mono_metadata_lookup_generic_class): New public method.
713
714 2004-12-02  Martin Baulig  <martin@ximian.com>
715
716         * class.c (mono_class_create_from_typedef): Call
717         mono_class_setup_parent() and mono_class_create_mono_type() before
718         parsing the interfaces.
719
720 2004-12-02  Martin Baulig  <martin@ximian.com>
721
722         * metadata.c (generic_inst_cache): New static hashtable.
723         (mono_metadata_lookup_generic_inst): New public function.
724         (mono_metadata_inflate_generic_inst): New public function.
725         (mono_metadata_parse_generic_inst): New public function.
726         (do_mono_metadata_parse_generic_class): Use the new
727         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
728         since this'll also use the cache.
729
730         * reflection.c (mono_reflection_bind_generic_method_parameters):
731         Use mono_metadata_lookup_generic_inst() to use the new cache.
732
733         * class.c (inflate_mono_type): Use
734         mono_metadata_inflate_generic_inst() to inflate a generic
735         instance; this'll also use the new cache.
736
737         * loader.c (method_from_methodspec): Use
738         mono_metadata_parse_generic_inst() and
739         mono_metadata_inflate_generic_inst() rather than parsing it
740         manually, so we can use the new cache.
741
742 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
743
744         * threads.c (wait_for_tids): Do not incorrectly free threads when 
745         the wait times out.
746
747 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
748
749         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
750         iter->args based on whether parameters are passed in registers (i.e.
751         MONO_ARCH_REGPARMS is defined)
752
753 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
754
755         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
756         the exception message. Fixes #70070.
757         (method_from_methodspec): Fix warnings.
758
759 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
760
761         * process.c: (complete_path) return the path quoted
762
763 2004-12-01  Martin Baulig  <martin@ximian.com>
764
765         * class-internals.h (MonoGenericInst): New structure.
766         (MonoGenericClass): Replaced `type_argc', `type_argv' and
767         `is_open' with `MonoGenericInst *inst'.
768         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
769         `is_open' with `MonoGenericInst *inst'.
770
771 2004-11-30  Martin Baulig  <martin@ximian.com>
772
773         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
774
775         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
776         to `generic_class_cache'.
777
778         * metadata.c
779         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
780         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
781         (mono_generic_inst_is_valuetype): Renamed to
782         mono_generic_class_is_valuetype().
783
784         * class-internals.h
785         (MonoGenericInst): Renamed to MonoGenericClass.
786         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
787         (MonoClass): Renamed `generic_inst' to `generic_class'.
788         (MonoGenericContext): Renamed `ginst' to `gclass'.
789
790         * object-internals.h
791         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
792
793         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
794         mono_reflection_generic_class_initialize().
795
796         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
797         now known as "System.Reflection.MonoGenericClass".
798         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
799
800 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
801
802         * class-internals.h: Added a flag field to MonoClass to cache the
803         declarative security attributes actions associated with the class.
804         * domain-internals.h: Added booleans to MonoJitInfo to cache the
805         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
806         applicable to the JITted method.
807         * reflection.c|h: Added functions to extract (as flags) which security
808         actions are available (declaratively) for a method, class or assembly.
809         * metadata.c|h: Added functions to search the declarative security
810         table in the metadata.
811         
812 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
813
814         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
815         EXPORTEDTYPES are already in the class name cache, so there is no
816         need to add extra code here to look at them. Just removes a bit of
817         cruft.
818
819         (ves_icall_System_Environment_get_TickCount): No need for #if
820         WINDOWS. We already have the code in io-layer.
821
822 2004-11-28  Martin Baulig  <martin@ximian.com>
823
824         * loader.c
825         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
826         Fixes gen-112.cs.
827
828 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
829
830         * assembly.c (do_mono_assembly_open): Instead of having a
831         conditional WITH_BUNDLE, incorporate support for bundles here, by
832         having a global `bundles' variable holding a pointer to the actual
833         bundles. 
834
835         (mono_register_bundled_assemblies): New API call used by the
836         bundle code. 
837
838         See mkbundle.1 for details.
839         
840 2004-11-27  Martin Baulig  <martin@ximian.com>
841
842         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
843         the vtable for generic methods.
844
845 2004-11-26  Martin Baulig  <martin@ximian.com>
846
847         * metadata.c
848         (mono_metadata_generic_method_hash): New public function.
849         (mono_metadata_generic_method_equal): Likewise.
850
851         * class-internals.h
852         (MonoGenericContainer): Added `GHashTable *method_hash'.
853
854         * reflection.c (ReflectionMethodBuilder): Added
855         `MonoGenericContainer *generic_container'.
856         (reflection_methodbuilder_to_mono_method): Don't create a new
857         MonoGenericContainer each time we're called.
858         (mono_reflection_bind_generic_method_parameters): Use
859         `container->method_hash' to cache the results so we don't create a
860         different method if we're called several times with the same
861         arguments.
862
863         * loader.c (method_from_methodspec): Use the new
864         `container->method_hash' here, too.
865
866 2004-11-26  Martin Baulig  <martin@ximian.com>
867
868         * class.c (inflate_generic_signature): Correctly compute
869         `res->has_type_parameters'.
870         (mono_class_vtable): Use the `has_type_parameters' flag to
871         determine whether we're a generic method.
872
873         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
874
875 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
876
877         * object.c (mono_runtime_run_main): Fix a small memory leak.
878
879 2004-11-25  Martin Baulig  <martin@ximian.com>
880
881         * class.c (set_generic_param_owner): Fixed the loop.
882
883 2004-11-25  Martin Baulig  <martin@ximian.com>
884
885         * object.c (mono_class_vtable): Don't create any JIT wrappers for
886         generic methods.
887
888 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
889
890         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
891         names. Fixes #69787.
892
893 2004-11-24  Martin Baulig  <martin@ximian.com>
894
895         * class.c (mono_class_create_generic_2): If we don't have a
896         `ginst->parent', inflate `gklass->parent' to get our parent.
897
898 2004-11-24  Martin Baulig  <martin@ximian.com>
899
900         * reflection.c (compare_genericparam): Correctly sort the
901         GenericParam table; fixes #69779.
902
903 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
904
905         * reflection.c: When writing a PE file, don't create a huge
906         buffer in memory. Just write the arrays we have to the file.
907         This reduces memory usage.
908
909         * metadata-internals.h: MonoDynamicStream pefile is no longer used
910         globally.
911
912 2004-11-17  Martin Baulig  <martin@ximian.com>
913
914         * class.c (mono_class_init): Don't setup `class->parent' for
915         dynamic instances; moved this to mono_class_generic_2().
916         (mono_class_create_generic): Also set `klass->inited' for dynamic
917         generic instances.
918         (mono_class_create_generic_2): Don't do anything for dynamic
919         generic instances.  Set `klass->parent' here and also call
920         mono_class_setup_parent() here. 
921
922         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
923         `MonoType *parent' argument; set `ginst->parent' before calling
924         mono_class_create_generic_2(), so we set the correct parent.
925
926 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
927
928         * reflection.c: allow getting attributes from ModuleBuilder
929         (used by ikvm).
930
931 2004-11-17  Martin Baulig  <martin@ximian.com>
932
933         * class.c (mono_class_create_from_typedef): If a type parameter is
934         inherited from an outer class, set its owner to that class.
935
936 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
937
938         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
939           for (int*) written size. This fixes bug #69592.
940
941 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
942
943         * icall.c: Added IsAuthenticodePresnet internal call.
944         * image.c|h: New function that check a MonoImage for an Authenticode
945         signature in the certificate PE data directory.
946         * security.c|h: New internal call to ask the runtime if an 
947         Authenticode signature seems referenced in the PE header.
948
949 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
950
951         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
952
953         * reflection.c (mono_image_create_pefile): Free the assembly streams
954         after writing out the assembly file.
955
956         * object.c (mono_runtime_run_main): Fix small memory leak.
957
958         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
959         property access modifiers. Fixes #69389.
960
961 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
962
963         * domain.c, object.c, object-internals.h, domain-internals.h,
964         object.h, marshal.c: keep dynamic code info per domain.
965
966 2004-11-15  Martin Baulig  <martin@ximian.com>
967
968         * class.c (mono_type_get_name_recurse): Put type arguments in
969         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
970         see bug #68387.
971
972 2004-11-15  Martin Baulig  <martin@ximian.com>
973
974         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
975         (mono_class_setup_vtable): When computing `the_cname' for a
976         generic instance, don't include the namespace since we'd otherwise
977         add it twice.
978
979 2004-11-15  Martin Baulig  <martin@ximian.com>
980
981         * class.c (mono_class_create_generic): Changed return type to void.
982         (mono_class_create_generic_2): New public function; setup
983         `class->method', `class->field' and `class->interfaces' here
984         instead of in mono_class_init().
985
986         * class.h (mono_class_create_generic): Moved to class-internals.h.
987
988 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
989
990         * reflection.c (mono_image_create_pefile): take a file HANDLE.
991         rather than writing to memory, write to this file. Right now,
992         we are just writting into a buffer, and copying that. However
993         we can avoid the buffer later.
994
995         (mono_dynamic_stream_reset): new function
996
997         * icall.c, object-internals.h: update for the above.
998
999 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
1000
1001         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
1002         have been using gc'd memory. First it is slower, unlikely
1003         the comment in the source code said, secondly, it increases
1004         our footprint to do it in the gc.
1005
1006         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
1007         the method so that it does not have to copy to managed code.
1008
1009 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
1010
1011         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
1012
1013 2004-11-12  Martin Baulig  <martin@localhost>
1014
1015         * reflection.c (mono_image_create_token): Allow generic method
1016         definitions here, since they may appear in an `.override'; see
1017         gen-98/gen-99 for an example.
1018
1019 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
1020
1021         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
1022         #69365.
1023
1024         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
1025         descriptive.
1026
1027 2004-11-11  Martin Baulig  <martin@ximian.com>
1028
1029         * class.c (mono_class_setup_vtable): In an explicit interface
1030         implementation, the method name now includes the arity.
1031
1032 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
1033
1034         * object.c (mono_array_full_copy): Fix warning.
1035
1036 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
1037
1038         * appdomain.c: Removed look_for_method_by_name(). Use the new method
1039         mono_class_get_method_from_name() instead.
1040         
1041         * class-internals.h: Added two new types of wrappers. 
1042         Added MonoRemotingTarget enum. Added new trampoline function type, which
1043         takes an additional MonoRemotingTarget value as parameter, so it is
1044         possible to request a trampoline for a specific target.
1045         
1046         * class.c: Added new mono_class_get_method_from_name() method.
1047         
1048         * class.h: In MonoRemoteClass, we can have now to vtables, one for
1049         general remoting sinks and one specific for cross domain calls.
1050         
1051         * debug-helpers.c: Added new wrapper names.
1052         
1053         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
1054         of a remote class.
1055         
1056         * image.c: Porperly delete value objects form the remoting invoke hashtable.
1057         
1058         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
1059         with several other methods (mono_marshal_get_xappdomain_dispatch,
1060         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
1061         and others) can generate a fast remoting wrapper for cross domain calls.
1062         More information can be found in docs/remoting.
1063         Other changes: Removed mono_find_method_by_name, and used
1064         mono_class_get_method_from_name instead.
1065         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
1066         is stored in the remoting invoke hashtable.
1067         
1068         * marshal.h: published the new method for getting the xdomain wrapper,
1069         and also added a method for getting the adequate wrapper for a given
1070         method and target.
1071         
1072         * object-internals.h, object.c: Added a couple of methods for capying and
1073         cloning arrays.
1074         Modified mono_install_remoting_trampoline, which takes the new remoting
1075         trampoline that has a remoting target as parameter.
1076         mono_class_proxy_vtable now also takes a remoting target as parameter, and
1077         will return the most suitable vtable for the target.
1078         Added mono_remote_class_vtable, which returns the vtable of a remote class
1079         (which can be the normal remoting vtable or the xdomain vtable).
1080         
1081         * threads.c: the xdomain invoke and dispatch wrappers must also be
1082         protected against interruptions.
1083
1084 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1085
1086         * icall.c: use memmove in BlockCopyInternal when the source and
1087         destination arrays are the same.
1088
1089 2004-11-09  Martin Baulig  <martin@ximian.com>
1090
1091         * class-internals.h (MonoGenericContainer): Removed `method' and
1092         `signature', replaced them with `is_method' and `is_signature'
1093         flags.  Added `context'.
1094
1095         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
1096         instead of a `MonoGenericContainer *'.
1097
1098         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
1099         for dynamic type parameters.
1100         (mono_metadata_load_generic_params): Setup `container->context'.
1101
1102         * reflection.c (mono_reflection_setup_generic_class): Setup
1103         `tb->generic_container->context'.
1104         (do_mono_reflection_bind_generic_parameters): Use
1105         mono_class_inflate_generic_type() to correctly inflate types,
1106         rather than using our own hack just for MONO_TYPE_VAR.
1107
1108 2004-11-09  Martin Baulig  <martin@ximian.com>
1109
1110         * class.c (mono_class_inflate_generic_method): Small fix; don't
1111         crash here.
1112
1113         * icall.c
1114         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
1115         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
1116         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
1117         (ves_icall_Type_BindGenericParameters): Likewise.
1118         (ves_icall_Type_get_IsGenericInstance): Likewise.
1119         (ves_icall_Type_GetGenericParameterPosition): Likewise.
1120         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
1121         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
1122         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
1123
1124 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
1125
1126         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
1127         assembly versions and public key tokens. Fixes #69113.
1128
1129 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
1130
1131         * metadata.c: fix bug introduced with the type cache changes
1132         on 2004-11-06.
1133
1134 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
1135
1136         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
1137         the MonoClass pointer instead of the token in exception clauses.
1138         * reflection.c: updates for the above and make the code not depend
1139         on the structure of MonoExceptionClause.
1140
1141 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
1142
1143         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
1144         Add support for dynamic assemblies. Fixes #69114.
1145
1146         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
1147
1148 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
1149
1150         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
1151         since most only those methods use it. the code member of
1152         MonoMethodPInvoke was dead, so that can be removed too. Also,
1153         remove inline_count (again, not used), and move slot so that it
1154         can share bits with some other flags. This saves 8 bytes in the
1155         structure and gives us about 50 kb back for mcs helloworld.cs
1156
1157         * *.[ch]: Do naming changes for the above.
1158
1159         * loader.c (mono_method_get_header): Lazily init the header
1160         on first access.
1161         (mono_get_method_from_token): don't init the header here
1162         (mono_free_method): the header may never be allocated
1163
1164         Overall, this saves 150 kb of unmanaged allocations
1165         for mcs helloworld.cs. That accounts for 10% of the unmanaged
1166         memory at runtime.
1167         
1168         * loader.c, loader.h (mono_method_get_header): new accessor.
1169
1170         * *.[ch]: use the above method. Prepares us to lazily load
1171         the header.
1172
1173         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
1174         three warnings, which are actual bugs (see 69206).
1175
1176         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
1177         unused. Saves a cool 4 bytes / method.
1178
1179 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
1180
1181         * metadata.c (builtin_types): Add types for System.Object here.
1182         (mono_metadata_parse_type_full): Cache MonoType*'s that are
1183         for a class or valuetype from klass->this_arg or klass->byval_arg.
1184
1185         On mcs for a hello world, this gets us down from 21836 MonoType's
1186         to 14560.
1187
1188         (mono_metadata_free_type): Account for the above change.
1189
1190 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
1191
1192         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
1193         exception instead of asserting if name is null.
1194         (ves_icall_System_AppDomain_GetData): Ditto.
1195
1196 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
1197
1198         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
1199         EnumBuilder.
1200
1201         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
1202         Return NULL when the domain does not have entry_assembly set.
1203
1204         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
1205         Add a 'resource_modules' argument.
1206         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
1207
1208         * reflection.c (mono_reflection_create_runtime_class): Move setting
1209         of wastypebuilder here, so mono_get_type_object () returns a MonoType
1210         for enums too.
1211
1212         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
1213         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
1214         Throw an ArgumentNullException if 'ptr' is null.
1215
1216         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
1217         assemblies here. Fixes #69020.
1218
1219 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
1220
1221         * reflection.c (build_compressed_metadata): Fix the previous patch for
1222         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
1223         the stack.
1224
1225 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
1226
1227         * assembly.c (mono_assembly_names_equal): Allow a match if one of
1228         the cultures is false. Fixes #69090.
1229
1230         * reflection.c (build_compressed_metadata): Fix invalid memory read 
1231         detected by valgrind.
1232         
1233         * reflection.c (mono_reflection_get_type): Avoid triggering a 
1234         TypeResolve multiple times for the same type. Fixes #65577.
1235
1236 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
1237
1238         * marshal.c: Avoid using ldftn to call managed functions. It is
1239         much slower than just a call.
1240
1241         * reflection.c (mono_module_get_object): free the basename we
1242         allocate here from glib.
1243         
1244         * reflection.c (ensure_runtime_vtable): make sure to free
1245         overrides.  Also, we were allocating an array of MonoMethod not an
1246         array of MonoMethod*.
1247
1248         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
1249
1250         * image.c (mono_image_close): free image->guid here.
1251
1252 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
1253
1254         * reflection.c: Fix some spec conformance issues with the PE file
1255         structures so mcs compiled apps run on the Net 2.0 beta.
1256
1257 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
1258
1259         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
1260         Implement this. Fixes #67264.
1261
1262         * debug-helpers.h debug-helpers.c marshal.c: Move 
1263         mono_find_method_by_name to debug-helpers.c.
1264
1265 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
1266
1267         * object.c (mono_release_type_locks): type_initialization_hash is
1268         a GHashTable.
1269
1270         * reflection.c object.c object-internals.h: Fix warnings.
1271
1272         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
1273         without accessors. Fixes #61561.
1274
1275         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
1276         application base from the root domain if not set. Fixes #65641.
1277         (mono_runtime_init): Fix warning.
1278
1279 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1280
1281         * appdomain.c: call mono_thread_pool_init.
1282         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
1283         of worker threads based on the number of CPUs and the environment
1284         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
1285         for non-windows (windows) systems.
1286
1287 2004-10-27  Chris Toshok  <toshok@ximian.com>
1288
1289         * mono-debug-debugger.c (write_class): don't call mono_class_init
1290         here, as even with the check for (!klass->init_pending), we get
1291         into a situation where we're hitting cycles in class
1292         initialization.  Fixes #68816.
1293
1294 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
1295
1296         * image.c: Avoid overwriting values in the loaded_images_hash when an
1297         assembly is loaded multiple times. Fixes #61152.
1298
1299         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
1300         so multiple satellite assemblies for the same name can be loaded.
1301         Fixes #68259.
1302
1303         * mono_domain_assembly_preload: Actually return the loaded assembly, 
1304         not NULL.
1305
1306         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
1307         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
1308
1309         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
1310         pending finalizers are not invoked after the appdomain has been 
1311         unloaded. Fixes #67862.
1312
1313 2004-10-22  Martin Baulig  <martin@ximian.com>
1314
1315         * mono-debug-debugger.c
1316         (mono_debugger_runtime_invoke): Don't box valuetypes.
1317
1318 2004-10-22  Chris Toshok  <toshok@ximian.com>
1319
1320         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
1321         don't hide private methods.
1322
1323 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
1324
1325         * icall.c: Allows the runtime to "share" (when known) the public key
1326         token of an assembly. This avoid the need to recalculate the token 
1327         (from the public key) in managed code.
1328
1329 2004-10-21  Chris Toshok  <toshok@ximian.com>
1330
1331         * debug-helpers.c (append_class_name): argh, revert last patch.
1332         
1333 2004-10-21  Chris Toshok  <toshok@ximian.com>
1334
1335         * debug-helpers.c (append_class_name): use '+' as the delimiter,
1336         not '/', so that it matches what the debugger uses to look up
1337         methods.
1338
1339 2004-10-21  Martin Baulig  <martin@ximian.com>
1340
1341         * mono-debug-debugger.c (mono_debugger_throw_exception): New
1342         public method; this is called each time an exception is thrown and
1343         allows the debugger to use exception catch points.
1344
1345 2004-10-21  Martin Baulig  <martin@ximian.com>
1346
1347         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
1348         the stack pointer and the exception object in some struct and pass
1349         that to the debugger.
1350
1351 2004-10-21  Chris Toshok  <toshok@ximian.com>
1352
1353         * mono-debug-debugger.c (do_write_class): add instance/static
1354         event support.  We don't expose "raise" or "other" yet.
1355         (event_is_static): new method.
1356
1357 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
1358
1359         * mono-debug-debugger.c
1360         (mono_debugger_handle_exception): Remove
1361         bogus return value for fussy compilers.
1362
1363 2004-10-20  Martin Baulig  <martin@ximian.com>
1364
1365         * mono-debug-debugger.c
1366         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
1367         (mono_debugger_handled_exception): Likewise.
1368
1369 2004-10-20  Martin Baulig  <martin@ximian.com>
1370
1371         * mono-debug-debugger.h (MonoDebuggerEvent): Added
1372         MONO_DEBUGGER_EVENT_EXCEPTION.
1373
1374         * mono-debug-debugger.c (mono_debugger_handle_exception): New
1375         public function to send the debugger a notification for an
1376         exception and inform it about a catch/finally clause.
1377
1378 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
1379
1380         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
1381         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
1382         fix 2.95 build. 
1383
1384         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
1385
1386 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
1387
1388         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
1389         marshalled as [In,Out]. Fixes #58325.
1390
1391 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
1392
1393         * reflection.c (mono_method_body_get_object): Implement some fields.
1394
1395 2004-10-12  Martin Baulig  <martin@ximian.com>
1396
1397         * reflection.c (mono_reflection_bind_generic_parameters): Small
1398         fix, correctly retrieve our parent from a generic instance.
1399
1400 2004-10-12  Martin Baulig  <martin@ximian.com>
1401
1402         * metadata.c (mono_metadata_generic_param_equal): We always have
1403         an owner.
1404
1405         * class.c
1406         (mono_class_from_generic_parameter): We need to have an owner.
1407         (my_mono_class_from_generic_parameter): Likewise.
1408
1409         * reflection.c (mono_reflection_setup_generic_class): Renamed to
1410         mono_reflection_create_generic_class() and added a new
1411         mono_reflection_setup_generic_class().  
1412         (mono_reflection_initialize_generic_param): If we're a nested
1413         generic type and inherited from the containing class, set our
1414         owner to the outer class.
1415
1416 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
1417
1418         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
1419
1420         * reflection.c (mono_method_body_get_object): New function to create
1421         a MethodBody object.
1422
1423         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
1424
1425 2004-10-11  Martin Baulig  <martin@ximian.com>
1426
1427         * metadata.c (_mono_metadata_type_equal): Renamed to
1428         do_mono_metadata_type_equal() and made static.
1429
1430 2004-10-11  Martin Baulig  <martin@ximian.com>
1431
1432         * appdomain.c: Bump corlib version number to 28.
1433
1434 2004-10-10  Martin Baulig  <martin@ximian.com>
1435
1436         * class-internals.h
1437         (MonoGenericInst): Added `MonoGenericContainer *container'.
1438         (MonoGenericMethod): Likewise.
1439         (MonoGenericContext): Likewise.
1440         (MonoGenericParam): Added `MonoGenericContainer *owner'.
1441
1442         * metadata.c
1443         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
1444         (do_mono_metadata_parse_generic_inst): Likewise.
1445         (mono_metadata_parse_type_full): New public method.  This is the actual
1446         mono_metadata_parse_type() implementation - with an additional
1447         `MonoGenericContainer *' argument.
1448         (mono_metadata_parse_array_full): Likewise.
1449         (mono_metadata_parse_signature_full): Likewise.
1450         (mono_metadata_parse_method_signature_full): Likewise.
1451         (mono_metadata_parse_mh_full): Likewise.
1452         (mono_type_create_from_typespec): Likewise.
1453         (mono_metadata_interfaces_from_typedef_full): New public method;
1454         this is similar to the other _full() methods, but we take a
1455         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
1456         (mono_metadata_parse_generic_param): Take an additional
1457         `MonoGenericContainer *' argument and lookup the MonoGenericParam
1458         from that container.
1459         (mono_metadata_generic_param_equal): New static method to compare
1460         two type parameters.
1461         (_mono_metadata_type_equal): New static method; takes an
1462         additional `gboolean signature_only' argument - if true, we don't
1463         compare the owners of generic parameters.
1464         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
1465         with a TRUE argument - do a signature-only comparision.
1466
1467         * loader.c: Use the new _full() methods and pass the
1468         MonoGenericContainer to them.
1469
1470         * object-internals.h (MonoReflectionTypeBuilder): Added
1471         `MonoGenericContainer *generic_container' field.
1472         (MonoReflectionMethodBuilder): Likewise.
1473
1474 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
1475
1476         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
1477         case initial images of dynamic assemblies.
1478
1479         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
1480
1481         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
1482
1483         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
1484         length of event->other array.
1485         (typebuilder_setup_events): Ditto.
1486
1487         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
1488         'assembly_by_name' and add an 'assemblies' list.
1489
1490         * assembly.h assembly.c: Add a new search hook for determining whenever
1491         an assembly is already loaded. Use this instead of searching in the
1492         loaded_assemblies list.
1493
1494         * domain.c appdomain.c: Implement the new search hook so loaded 
1495         assemblies are now scoped by appdomain. Fixes #67727.
1496
1497 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
1498
1499         * threads.c (mono_thread_attach): Initialize synch_lock field so
1500         mono_thread_detach works again.
1501
1502         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
1503         'lib' too. Fixes #63130.
1504
1505 2004-10-06  Jackson Harper  <jackson@ximian.com>
1506
1507         * culture-info-tables.h: regenerated.
1508
1509 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
1510
1511         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
1512         implemented by other interfaces in the result. Fixes #65764.
1513         
1514         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
1515         Handle unloadable modules without crashing.
1516
1517         * image.c (load_modules): Revert the previous patch since modules must
1518         have a fixed index inside the array.
1519         
1520         * image.c (load_modules): Don't include native modules in the modules
1521         array.
1522
1523 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
1524
1525         * reflection.h: Add param_defaults field.
1526
1527         * reflection.c: Add support for parameter defaults in dynamic methods.
1528         Fixes #64595.
1529
1530         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
1531         an empty string when a type has no namespace. Fixes #64230.
1532
1533 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
1534
1535         * tabledefs.h: Added "internal" security actions to support non-CAS
1536         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
1537         Note: they do not seems to be used anymore in 2.0 (new metadata format)
1538
1539 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
1540
1541         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
1542         constructor of abstract class. Fixes #61689.
1543
1544 2004-10-04  Martin Baulig  <martin@ximian.com>
1545
1546         * class-internals.h (MonoGenericContainer): New type.
1547         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
1548         `MonoGenericContainer *generic_container'.
1549         (MonoClass): Replaced `gen_params' and `num_gen_params' with
1550         `MonoGenericContainer *generic_container'.
1551
1552         * metadata.c (mono_metadata_load_generic_params): Return a
1553         `MonoGenericContainer *' instead of a `MonoGenericParam *';
1554         removed the `num' argument.
1555
1556 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
1557
1558         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
1559         for dynamic images.
1560
1561         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
1562         machine fields.
1563
1564         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
1565
1566         * reflection.c: Save pe_kind and machine values into the generated
1567         image file.
1568
1569         * appdomain.c: Bump corlib version number.
1570
1571         * object-internals.h: Reorganize layout of LocalBuilder.
1572
1573         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
1574         New helper function.
1575
1576         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
1577         created MonoType for dynamic types. Fixes #66180.
1578
1579 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
1580
1581         * threadpool.c: the ares hashtable needs a critical section around it.
1582         this prevents some nasty segfaults
1583
1584 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
1585
1586         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
1587         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
1588         bug 67324).
1589         
1590 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
1591
1592         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
1593         
1594 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
1595
1596         * image.c: Always canonicalize image file names, to avoid loading
1597         the same assembly twice when referenced using a relative path.
1598
1599 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
1600
1601         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
1602
1603         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
1604
1605         * marshal.c: Fix warnings.
1606
1607 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
1608
1609         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
1610         attempting to marshal the delegate_trampoline as the method_addr.
1611         This patch has a static hashtable of marshalled delegates so that 
1612         we can map delegate_trampoline addresses back to delegates.  This
1613         allows a delegate passed to managed code to be passed back into native
1614         code.  Fixes #67039
1615
1616 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
1617
1618         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
1619
1620         * reflection.c (method_encode_code): Align method headers properly.
1621         Fixes #66025.
1622
1623 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
1624
1625         * marshal.c: In the runtime invoke wrapper, reset the abort
1626         exception if it is cached. This avoids the automatic rethrowal of 
1627         the exception after the catch of the wrapper. Also check for pending
1628         interruptions before calling the managed method. This is done using
1629         the new method emit_thread_force_interrupt_checkpoint, since the
1630         normal checkpoint method is ignored when running the invoke wrapper.
1631         * object.c: If the abort exception is rethrown, set the abort_exc
1632         field of the thread, so it will be rethrown aftere every catch.
1633         * threadpool.c: Only run an interruption checkpoint if what has been
1634         requested is a stop of the thread (aborts will be ignored).
1635         * threads.c: By default, a thread will now never be interrumped while
1636         running the runtime invoke wrapper (this ensures that runtime_invoke
1637         will always return to the caller if an exception pointer is provided).
1638         There is a new special method mono_thread_force_interruption_checkpoint()
1639         to force an interruption checkpoint even if running a protected
1640         wrapper, which is used by the same runtime invoke wrapper to do a check
1641         at a safe point.
1642
1643 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
1644
1645         * object.c, object-internals.h: Implemented mono_release_type_locks,
1646         which releases the cctor locks held by a thread.
1647         * threads.c, threads.h: In thread_cleanup, release cctor locks held
1648         by a thread. Added mono_thread_exit() method to be used to safely stop
1649         a thread.
1650
1651 2004-09-28  Raja R Harinath  <rharinath@novell.com>
1652
1653         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
1654         Move null check before dereference.  Avoid indexing beyond the end
1655         of the 'modules' array.
1656
1657 2004-09-28  Raja R Harinath  <rharinath@novell.com>
1658
1659         * metadata-internals.h (MonoImage): Add module_count field.
1660         * image.c (load_modules): Set image->module_count.
1661         (mono_image_load_file_for_image): Use image->module_count.
1662         * reflection.c (mono_image_load_module): Append to image->modules array 
1663         of dynamic assembly.
1664         (mono_module_get_object): Fix loop to actually increment index.
1665         Use image->module_count.
1666         * assembly.c (mono_assembly_load_references): Use image->module_count.
1667         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
1668         Likewise.
1669
1670 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
1671
1672         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
1673         Avoid assert on generic types.
1674
1675 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
1676
1677         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
1678
1679         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
1680
1681         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
1682         function to convert a MarshalSpec structure to its managed counterpart.
1683
1684         * reflection.c: Fix warnings.
1685         
1686         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
1687         field.
1688
1689         * icall.c (mono_create_icall_signature): Fix build.
1690
1691 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
1692
1693         * icall.c: Add MakePointType icall.
1694
1695         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
1696         warnings.
1697
1698 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1699
1700         * threadpool.c: reuse allocated slots in the queue.
1701
1702 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
1703
1704         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
1705
1706         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
1707
1708         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
1709         previous change.
1710
1711         * tabledefs.h: Add constants for pinvoke attributes BestFit and
1712         ThrowOnUnmappableChar.
1713
1714         * icall.c (ves_icall_Type_GetPacking): New icall.
1715
1716 2004-09-24  Martin Baulig  <martin@ximian.com>
1717
1718         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
1719
1720 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1721
1722         * appdomain.c:
1723         (mono_domain_set): allow setting a domain that is being unloaded.
1724         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
1725         being unloaded.
1726
1727 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
1728
1729         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
1730         the GetCustomAttributes icall.
1731
1732 2004-09-23  Martin Baulig  <martin@ximian.com>
1733
1734         * object-internals.h (MonoReflectionGenericParam): Replaced
1735         'has_ctor_constraint', `has_reference_type' and `has_value_type'
1736         with `guint32 attrs'.
1737
1738 2004-09-23  Martin Baulig  <martin@ximian.com>
1739
1740         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
1741
1742 2004-09-23  Martin Baulig  <martin@ximian.com>
1743
1744         * object-internals.h (GenericParameterAttributes): New enum.
1745
1746 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
1747
1748         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
1749         
1750         * class.c (init_events): Fill out event->other field.
1751
1752         * class.c: Fix warnings.
1753
1754         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
1755
1756 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
1757
1758         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
1759         walk which doesn't supply the IL offset.
1760
1761 2004-09-22  Martin Baulig  <martin@ximian.com>
1762
1763         * reflection.c (mono_reflection_setup_internal_class): If we're
1764         System.ValueType, System.Object or System.Enum, set
1765         `klass->instance_size' and create the vtable.
1766         (mono_reflection_create_internal_class): If we're an enum type,
1767         get the base class from our current corlib.
1768
1769 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
1770
1771         * reflection.h (MonoResolveTokenError): New type.
1772
1773         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
1774         icall.
1775
1776         * icall.c: Add an 'error' argument to the ResolveToken icalls.
1777
1778 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
1779
1780         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
1781         Support also calling constructors, but only for already allocated objects.
1782
1783 2004-09-17  Geoff Norton <gnorton@customerdna.com>
1784
1785         * reflection.c (type_get_qualified_name): If the klass is null
1786         return the typename to avoid a NullRefEx.
1787         (encode_cattr_value): Get the qualified name of the boxed type,
1788         not the underlying enumtype.  Fixes #62984.
1789
1790 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
1791
1792         * marshal.c: Fix problems with previous checkin.
1793
1794 2004-09-21    <vargaz@freemail.hu>
1795
1796         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
1797         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
1798
1799         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
1800
1801 2004-09-21  Geoff Norton <gnorton@customerdna.com>
1802
1803         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
1804         should only return a type for pointers, arrays, and passbyref types.
1805         Fixes bug #63841.
1806
1807 2004-09-21  Martin Baulig  <martin@ximian.com>
1808
1809         * domain.c (mono_debugger_check_runtime_version): New public
1810         function.
1811
1812         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
1813
1814 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
1815
1816         * reflection.c: Added missing sort to the declarative security 
1817         attributes table. MS implementation stops seeing the attributes if the
1818         token number regress in the table (as shown by ildasm and permview).
1819
1820 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
1821
1822         * object-internals.h (MonoReflectionModule): Add 'token' field.
1823         
1824         * reflection.c (mono_reflection_get_token): Add support for Module
1825         and Assembly.
1826         (mono_module_get_object): Set 'token' field.
1827         (mono_module_file_get_object): Set 'token' field.
1828
1829         * icall.c: Add new Assembly and Module icalls.
1830
1831         * appdomain.c: Bump corlib version.
1832
1833 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
1834
1835         * loader.h loader.c class.h class.c: Add helper functions for obtaining
1836         tokens of metadata objects.
1837
1838         * reflection.h reflection.c (mono_reflection_get_token): New function
1839         to obtain the token of a metadata object.
1840
1841         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
1842
1843 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
1844
1845         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
1846         
1847         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
1848
1849 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
1850
1851         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
1852         * object-internals.h: Added 3 MonoArray* members to MonoReflection
1853         AssemblyBuilder to access the permissions set in the class lib.
1854         * reflection.c: Added security attributes encoding step in 
1855         mono_image_build_metadata.
1856         * tabledefs.h: Added new security actions defined in 2.0:
1857         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
1858
1859 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
1860
1861         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
1862         macro parameter.
1863
1864 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
1865  
1866         * locales.c: nullify the ICU_collator member of CompareInfo when it is
1867           finalized. There where random SIGSEVs at program termination, when
1868           an object being finalized was trying to do a string comparison and
1869           the current culture was already finalized.
1870  
1871 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1872
1873         * threads.c: call thread_cleanup before finishing the thread if we get
1874         there.
1875
1876 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
1877
1878         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
1879         assemblies from the parent. Fixes #65665.
1880
1881 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
1882
1883         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
1884         modifiers.
1885
1886 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
1887
1888         * reflection.h: add prototype for mono_get_dbnull_object
1889         * reflection.c: add prototypes for get_default_param_value_blobs 
1890         and mono_get_object_from_blob for fussier compilers
1891
1892 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
1893  
1894         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
1895         false deadlock checks in class initialization.
1896  
1897 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
1898
1899         * image.c (mono_image_addref): Fix comment.
1900
1901         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
1902         possible.
1903
1904 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
1905
1906         * reflection.c (mono_param_get_objects): Modified to return
1907         ParameterInfo.DefaultValue object.
1908
1909         (get_default_param_value_blobs):
1910         (mono_get_object_from_blob):
1911         (mono_get_dbnull_object): New helper routines. 
1912
1913         * object.c (mono_get_constant_value_from_blob): New helper routine
1914         carved out from get_default_field_value ()
1915
1916         * object-internals.h (mono_get_constant_value_from_blob): Added
1917         function declaration.
1918
1919 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
1920
1921         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
1922         referenced assemblies. Fixes #62135.
1923
1924         * exception.h exception.c (mono_get_exception_file_not_found2): New
1925         helper function.
1926
1927 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
1928
1929         * class.h class.c: Add mono_type_get_underlying_type ().
1930
1931 2004-09-09  Geoff Norton <gnorton@customerndna.com>
1932
1933         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
1934         Fix GetTypes() to support dynamically created assemblies.
1935
1936 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
1937
1938         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
1939         
1940         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
1941         previous patch.
1942
1943         * reflection.h reflection.c loader.c: Allow dynamic construction of
1944         pinvoke methods. Fixes #65571.
1945         
1946         * reflection.c (mono_reflection_get_type): Revert previous change since
1947         it causes regressions.
1948
1949 2004-09-08  Martin Baulig  <martin@ximian.com>
1950
1951         * class.c (class_compute_field_layout): Don't call
1952         mono_class_layout_fields() for open generic instances.
1953
1954 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
1955         * threads.c appdomain.c: fix typo in GC macro
1956
1957 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1958
1959         * threads.c: don't call mono_thread_detach() in start_wrapper(),
1960         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
1961
1962 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
1963
1964         * image.c (mono_image_close): Applied patch from 
1965         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
1966         assembly is loaded multiple times from data.
1967         
1968         * image.c (mono_image_open): Fix warning.
1969
1970 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
1971
1972         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
1973         once. Fixes #58334.
1974         
1975         * reflection.c (mono_reflection_create_runtime_class): Initialize
1976         klass->nested_classes. Fixes #61224.
1977
1978 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
1979
1980         * threads.c: sched_yield() on exit, to allow threads to quit.
1981
1982 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
1983
1984         * object.c (mono_unhandled_exception): Remove leftover debug code.
1985
1986 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
1987
1988         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
1989
1990 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
1991
1992         * marshal.c (emit_marshal_array): Really null terminate string arrays.
1993         
1994         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
1995
1996 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
1997
1998         * marshal.c (emit_marshal_array): Null terminate string arrays.
1999         
2000         * marshal.c (raise_auto_layout_exception): Fix warning.
2001
2002         * reflection.c (mono_param_get_objects): Initialize the default value
2003         with DBNull.Value, not null. Fixes #62123.
2004
2005 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
2006
2007         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
2008         throw an exception with a cute explanation.
2009
2010 2004-09-06  Dick Porter  <dick@ximian.com>
2011
2012         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
2013         Close the new process's thread handle, as we don't use it.  The
2014         handle stays around forever otherwise.
2015
2016 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
2017
2018         * object.c (arith_overflow): Fix warning.
2019
2020         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
2021         calling conventions in method refs. Fixes #65352.
2022
2023         * reflection.c: Fix warnings.
2024
2025 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
2026
2027         * icall.c: Add a new icall for Array.Clear
2028
2029 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
2030
2031         * object.c: When allocating an array, we have to throw
2032         an overflow exception if any of the lengths are < 0.
2033
2034 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
2035
2036         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
2037         properly. Also move implementation of string array marshalling to 
2038         managed code. Fixes #42316.
2039
2040 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2041
2042         * assembly.c: provide more information when loading an assembly fails.
2043
2044 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2045
2046         * filewatcher.c: don't expect the development fam package to be
2047         installed.
2048
2049 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
2050
2051         * marshal.c: Make a copy of the signature cookie since it will be
2052         freed by the caller.
2053         
2054         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
2055
2056         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
2057
2058         * metadata.c (mono_metadata_free_marshal_spec): New function to free
2059         marshal specs.
2060
2061         * marshal.c: More refactoring.
2062         
2063         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
2064         smaller functions.
2065
2066 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
2067
2068         * object.c: In mono_message_invoke, fill the output parameter array after
2069           calling the managed method (it was done before the call). This fixes
2070           bug #59299.
2071
2072 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
2073
2074         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
2075         as well.
2076
2077 2004-09-02  Martin Baulig  <martin@ximian.com>
2078
2079         * class.c (mono_class_instance_size): Don't allow generic type
2080         definitions or open generic instances.
2081         (mono_class_array_element_size): If we're a value type, call
2082         mono_class_instance_size() on the original class.
2083
2084         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
2085         handle generic instances.
2086
2087         * mono-debug-debugger.c (write_type): Handle generic instances
2088         like classes.
2089
2090 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
2091
2092         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
2093         the allocation request fails. Fixes #65089.
2094
2095         * object.c (mono_runtime_free_method): Do not call mono_free_method.
2096         
2097         * object.c (mono_runtime_free_method): New function to free a dynamic
2098         method.
2099
2100         * marshal.c (mono_delegate_free_ftnptr): New function to free the
2101         delegate trampoline.
2102
2103         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
2104         with hasthis as dynamic,
2105
2106         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
2107
2108         * domain.c (mono_jit_info_table_remove): New function to remove an
2109         entry from the jit info table.
2110
2111         * class-internals.h (MonoMethod): Add 'dynamic' field.
2112
2113         * loader.c: Fix warnings.
2114
2115 2004-09-01  Martin Baulig  <martin@ximian.com>
2116
2117         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
2118         instead of mono_debugger_lock() because the latter one is a no-op
2119         unless running in the debugger.
2120
2121 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
2122
2123         * class.c (class_compute_field_layout): Classes with auto-layout or
2124         reference fields are not blittable.
2125         
2126 2004-09-01  Dick Porter  <dick@ximian.com>
2127
2128         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
2129         mono_image_get_filename() to get the assembly location.
2130
2131         * icall.c:
2132         * metadata.h: Fix compile warnings
2133
2134 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
2135
2136         * class.c (class_compute_field_layout): System.Object is blittable.
2137
2138         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
2139         as in/out. Fixes #59909.
2140
2141 2004-09-01  Martin Baulig  <martin@ximian.com>
2142
2143         * metadata.h (MONO_TYPE_ISREFERENCE): Call
2144         mono_metadata_generic_inst_is_valuetype() if we're a generic
2145         instance to check whether our underlying type is a reference type.
2146
2147 2004-09-01  Martin Baulig  <martin@ximian.com>
2148
2149         * metadata.c (mono_type_size): If we're a generic instance, call
2150         mono_class_value_size() for value types.
2151
2152 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
2153
2154         * marshal.c: Implement more custom marshalling functionality. Fixes
2155         #64915.
2156
2157 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
2158
2159         * mono-debug.c, debug-mono-symfile.c: add some locking love.
2160
2161 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
2162
2163         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
2164
2165         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
2166
2167         * icall.c: Fix some warnings.
2168
2169         * threads.c (abort_appdomain_thread): Fix unref errors.
2170         (mono_thread_current): Fix THREAD_DEBUG define.
2171
2172 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
2173
2174         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
2175
2176         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
2177
2178 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
2179
2180         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
2181         string arrays.
2182
2183 2004-08-28  Martin Baulig  <martin@ximian.com>
2184
2185         * metadata.c
2186         (mono_metadata_generic_inst_is_valuetype): New public function.
2187
2188         * metadata.h (MONO_TYPE_ISSTRUCT): Call
2189         mono_metadata_generic_inst_is_valuetype() if we're a generic
2190         instance to check whether our underlying type is a valuetype.
2191
2192 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
2193
2194         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
2195         #63768.
2196
2197 2004-08-25  Martin Baulig  <martin@ximian.com>
2198
2199         * loader.c (mono_get_method_from_token): Abstract methods can also
2200         be generic and thus have type parameters.
2201
2202         * metadata-internals.h
2203         (MonoDynamicImage): Added `GPtrArray *gen_params'.
2204
2205         * reflection.c (mono_image_get_generic_param_info): Don't create a
2206         metadata row, just add an entry to the `gen_params' array.
2207         (build_compressed_metadata): Sort the `gen_params' array and then
2208         actually create the metadata.
2209
2210 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2211
2212         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
2213
2214 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
2215
2216         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
2217
2218 2004-08-24  Martin Baulig  <martin@ximian.com>
2219
2220         * class.cs (mono_class_is_subclass_of): Like an interface, a
2221         generic instance also derives from System.Object.
2222
2223 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
2224
2225         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
2226         custom modifiers to be in any order. Fixes #61990.
2227
2228 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
2229
2230         * object.c: Register mono_object_new_fast icall.
2231         
2232         * object.c (mono_class_get_allocation_ftn): Return to calling
2233         mono_object_new_fast, since it seems faster to compute the object 
2234         size in unmanaged code than passing it as a parameter.
2235
2236         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
2237
2238         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
2239         this function with Boehm as the oom handler, so we don't have to check
2240         the result of GC_malloc.
2241
2242         * object.c: Remove checks for oom.
2243
2244         * object.h object.c (mono_class_get_allocation_ftn): New function to
2245         return the icall which can be used to allocate an instance of a given
2246         class. 
2247
2248         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
2249
2250         * class-internals.h: Add 'enabled' field.
2251
2252 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
2253
2254         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
2255
2256 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
2257         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
2258         value 0x0010.
2259
2260 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
2261
2262         * appdomain.c: use the Tls function for appdomain too,
2263         at Zoltan's request. Actually return in mono_context_get
2264
2265         * appdomain.c, profiler.c, threads.c: use __thread
2266
2267 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
2268
2269         * appdomain.c threads.c: Call GC_CreateThread on windows.
2270
2271         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
2272         multiple libraries since this don't work on windows.
2273
2274 2004-08-18  Martin Baulig  <martin@ximian.com>
2275
2276         * class-internals.h
2277         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
2278         MonoMethodHeader.
2279
2280         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
2281         MonoMethodNormal since we also need it for abstract and interface
2282         methods.
2283
2284         * reflection.c
2285         (build_compressed_metadata): Sort the GenericParam table.
2286         (mono_image_create_token): Added `gboolean create_methodspec'
2287         argument; this is false when generating a MethodImpl token.
2288         (reflection_methodbuilder_to_mono_method): Abstract and interface
2289         methods may also have generic parameters.
2290
2291 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
2292
2293         * appdomain.c: thread local alloc
2294
2295 2004-08-17  Martin Baulig  <martin@ximian.com>
2296
2297         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
2298
2299         * icall.c
2300         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
2301         argument.
2302
2303         * class.c (mono_type_get_full_name): New public function.
2304         (mono_type_get_name): Don't include the type arguments.
2305
2306 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
2307
2308         * Makefile.am: Build static versions of libmetadata and libmonoruntime
2309         for inclusion into the mono executable.
2310
2311 2004-08-16  Martin Baulig  <martin@ximian.com>
2312
2313         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
2314         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
2315
2316 2004-08-14  Martin Baulig  <martin@ximian.com>
2317
2318         * class.c (dup_type): Also copy the `byref' field.
2319
2320 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
2321
2322         * reflection.c (create_dynamic_mono_image): Revert the last change 
2323         since it breaks bootstrap.
2324
2325 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
2326
2327         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
2328
2329         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
2330         not free them with g_free.
2331
2332 2004-08-11  Martin Baulig  <martin@ximian.com>
2333
2334         * reflection.c (mono_reflection_setup_internal_class): Also call
2335         mono_class_setup_mono_type() if we already have a `tb->type.type'.
2336
2337 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
2338
2339         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
2340         called during default (first) AppDomain creation. Keep track of
2341         Evidence when loading assemblies.
2342
2343 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
2344
2345         * opcodes.c, opcodes.h: reduce runtime relocations.
2346
2347 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
2348
2349         * culture-info.h, locales.c: fixes and chages to sue the new
2350         optimized format of the locale data.
2351         * culture-info-tables.h: regenerated.
2352
2353 2004-08-06  Geoff Norton <gnorton@customerdna.com>
2354         
2355         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
2356
2357 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
2358
2359         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
2360         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
2361         * domain-internals.h: icall declaration.
2362         * icall.c: icall registration.
2363         * object-internals.h: New fields in MonoAssembly for CAS.
2364
2365 2004-08-05  Duncan Mak  <duncan@ximian.com>
2366
2367         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
2368         CEE_LDELEM_ANY.
2369
2370 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
2371
2372         * reflection.c: fix to deal with object[] arrays in custom ctors
2373         (bug #62550).
2374
2375 2004-08-05  Martin Baulig  <martin@ximian.com>
2376
2377         * class.c (mono_class_array_element_size): Added support for
2378         generic instances and correctly handle "recursive" types.
2379
2380 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
2381
2382         * assembly.c: Fix warnings.
2383
2384 2004-08-04  Martin Baulig  <martin@ximian.com>
2385
2386         * class.c
2387         (mono_type_get_name_recurse): Added `gboolean include_arity'
2388         argument specifying whether or not we should include the generic
2389         arity in the type name.
2390         (_mono_type_get_name): New static function.
2391         (mono_class_setup_vtable): If we're a generic instance, don't
2392         include the generic arity in the names of explicit method
2393         implementations.        
2394
2395 2004-08-03  Martin Baulig  <martin@ximian.com>
2396
2397         * class.c (mono_type_get_name_recurse): Enclose the generic type
2398         arguments in `<', '>'.
2399
2400 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
2401
2402         * gc.c: make GC warning messages use the trace API, they are just
2403         noise to most of the users.
2404
2405 2004-08-03  Martin Baulig  <martin@ximian.com>
2406
2407         * debug-mono-symfile.c (read_string): Correctly read the string.
2408
2409 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
2410
2411         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
2412         
2413         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
2414         icalls.
2415         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
2416
2417 2004-07-30  Martin Baulig  <martin@ximian.com>
2418
2419         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
2420         Reflect latest symbol writer changes.   
2421
2422 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
2423
2424         * object.c: always create an object if null is passed
2425         to Invoke() where a valuetype is expected.
2426
2427 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
2428
2429         * marshal.c (mono_marshal_init): make managed
2430         signatures match native ones better for 64bits.
2431
2432 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2433
2434         * appdomain.c: hack to build correctly the private bin path on windows.
2435         Fixes bug #61991.
2436
2437 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
2438
2439         * assembly.c: Load mscorlib from the correct framework directory
2440           (mono/<version>/mscorlib.dll).
2441         * appdomain.h: Added prototypes for new functions.
2442         * internals.h: Added some prototypes.
2443         * domain.c: When initializing the runtime, get from the executable and
2444           the configuration files the runtime version that the app supports.
2445           Added support methods for reading app.exe.config. Added list of versions
2446           supported by the JIT. Added two new methods: mono_init_from_assembly,
2447           which initializes the runtime and determines the required version from
2448           the provided exe file, and mono_init_version, which initializes
2449           the runtime using the provided version.
2450         * icall.c: Get machine.config from version-specific directory.
2451         * reflection.c: When generating an image, embed the version number
2452           of the current runtime.
2453
2454 2004-07-28  Dick Porter  <dick@ximian.com>
2455
2456         * socket-io.c
2457         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
2458         returned sockaddr size before creating the remote address object.
2459         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
2460         61608.
2461
2462 2004-07-28  Dick Porter  <dick@ximian.com>
2463
2464         * locales.c (string_invariant_compare_char): Fix invariant char
2465         compares between upper and lower cases.  Fixes bug 61458.
2466
2467 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
2468         
2469         * marshal.c: actually cache stelem.ref wrappers.
2470         
2471 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
2472
2473         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
2474         sections and remove the mono_cli_rva_map () function.
2475
2476 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
2477
2478         * debug-mono-symfile.c: fix one more endianess issue, from a patch
2479         by Geoff Norton (<gnorton@customerdna.com>).
2480
2481 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
2482
2483         * class.c: fix class loads for pointer types (typeof(int) !=
2484         typeof(int*)).
2485
2486 2004-07-27  Martin Baulig  <martin@ximian.com>
2487
2488         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
2489         reading the debugging information from an external ".mdb" file.
2490
2491 2004-07-24  Martin Baulig  <martin@ximian.com>
2492
2493         * reflection.c (mono_image_get_type_info): Only write a class
2494         layout entry if we actually have a size or a packing size.
2495
2496 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
2497
2498         * reflection.c (type_get_fully_qualified_name): 
2499         insert cast to get type checking of ?: with non-gcc compilers
2500
2501 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
2502
2503         * rand.c: use g_getenv for both lookups of
2504         MONO_EGD_SOCKET
2505
2506 2004-07-17  Martin Baulig  <martin@ximian.com>
2507
2508         * reflection.c (mono_reflection_bind_generic_method_parameters):
2509         Set `gmethod->reflection_info'.
2510
2511 2004-07-17  Martin Baulig  <martin@ximian.com>
2512
2513         * class.c (mono_class_create_from_typedef): Insert the newly
2514         created class into the hash table before computing the interfaces
2515         since we could be called recursively.
2516
2517 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
2518
2519         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
2520         function to implement stelem.ref in managed code
2521         * class-internals.h, debug-helpers.c: a new wrapper type
2522         for the above.
2523
2524 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
2525
2526         * gc.c: allow GC handles to work even when no GC is compiled in.
2527         Fix part of bug #61134 (GetAddrOfPinnedObject).
2528
2529 2004-07-13  Peter Williams  <peter@newton.cx>
2530  
2531         * process.c (complete_path): Make sure we don't attempt to execute
2532         directories.
2533  
2534 2004-07-12  Geoff Norton <gnorton@customerdna.com>
2535
2536         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
2537           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
2538           and will add/subtract the hour if needed
2539
2540 2004-07-12  Martin Baulig  <martin@ximian.com>
2541
2542         * reflection.c (mono_field_get_object): If we have
2543         `field->generic_info', take the attributes from
2544         `field->generic_info->generic_type'.    
2545
2546 2004-07-12  Martin Baulig  <martin@ximian.com>
2547
2548         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
2549         This function must be called before initializing the runtime.
2550         (mono_debug_init_1): New function; call this after initializing
2551         the runtime, but before loading the assembly.  It tells the
2552         debugger to load corlib and the builtin types.
2553
2554         * mono-debug-debugger.c: Did some larger changes in the debugging
2555         code; support recursive class declarations, make sure we actually
2556         add all classes.
2557
2558 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2559
2560         * debug-helpers.c: undo my previous patch and fixed the real issue in
2561         ../mini/exceptions-x86.c
2562
2563 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2564
2565         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
2566         when no HOME env. variable was set and a NullRef was thrown in a .cctor
2567         called from other .cctors.
2568
2569 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
2570
2571         * loader.c: Removed the mono_loader_wine_init hack now that we are
2572         doing a managed version of Windows.Forms.
2573
2574 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
2575
2576         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
2577         threadpool.c, threads.c: remove static data from rootset.
2578
2579 2004-07-09  Dick Porter  <dick@ximian.com>
2580
2581         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
2582         Don't do any more processing if the matched length was 0.  It was
2583         increasing the size of the string before.  Fixes bug 61167.
2584
2585 2004-07-09  Dick Porter  <dick@ximian.com>
2586
2587         * socket-io.h:
2588         * socket-io.c
2589         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
2590         Add support for SO_PEERCRED if its available.
2591
2592 2004-07-09  Peter Bartok <pbartok@novell.com>
2593         * loader.c: winelib.exe.so error message is now only displayed if
2594         MONO_DEBUG is set. To help us avoid questions when people are trying
2595         out the new Managed.Windows.Forms.
2596
2597 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
2598
2599         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
2600         for isinst and castclass wrappers.
2601
2602         * class-internals.h icall.c: Move registration and lookup of JIT icalls
2603         to libmetadata from the JIT, so they could be used by the marshalling
2604         code and the interpreter.
2605
2606         * marshal.c: Register marshalling related JIT icalls here instead of
2607         in mini.c. Use CEE_MONO_ICALL instead of the family of 
2608         CEE_MONO_PROC<x> opcodes to call marshalling functions.
2609
2610         * metadata.h: Remove unneeded marshalling conversions.
2611
2612         * opcodes.c: Update for new opcodes.
2613         
2614 2004-07-08  Martin Baulig  <martin@ximian.com>
2615
2616         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
2617         (mono_debug_get_domain_data): Make this function static.
2618
2619 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
2620
2621         * gc.c, object.h: add nice GC handle API for embedders.
2622
2623 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
2624
2625         * reflection.c: more changes for the new api
2626
2627         * object.c: When we reflect on a field w/ a constant value, it
2628         will not have a memory location, so we must access metadata. Also,
2629         allow easier reading of strings so that we can read them from
2630         the constant data.
2631
2632         * class.c (mono_class_layout_fields): no need for literal fields here.
2633
2634         * class-internals.h: api changes for const fields
2635
2636         * icall.c (ves_icall_get_enum_info): use new apis for const fields
2637
2638 2004-07-06  Martin Baulig  <martin@ximian.com>
2639
2640         * mono-debug.h: Increment version number to 44.
2641
2642         * mono-debug.c (mono_debug_add_wrapper): The second argument is
2643         now a gpointer, rewrote this whole method.
2644
2645         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
2646         function.  Add information about the wrapper in a new "misc table".
2647
2648         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
2649         for the new misc table.
2650
2651 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
2652
2653         * metadata-internals.h image.c: Add a cache for helper signatures.
2654
2655         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
2656
2657 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
2658
2659         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
2660         delegates from a delegate. Fixes #61033.
2661         
2662         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
2663         marshalling of stringbuilder arrays. Fixes #59900.
2664
2665 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
2666
2667         * icall.c: Add EnumBuilder:setup_enum_type icall.
2668
2669 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
2670
2671         * icall.c: Added a new icall for the property version of
2672         OffsetOfStringData.
2673
2674 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
2675
2676         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
2677         it has a constant size across platforms.
2678
2679         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
2680         stack trace.
2681
2682 2004-06-29  Martin Baulig  <martin@ximian.com>
2683
2684         * mono-debug.c (mono_debug_add_method): Protect the whole function
2685         in mono_debugger_lock(), not just parts of it.
2686
2687 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
2688
2689         * reflection.c: make sure padding bytes in heaps are zeroed.
2690
2691 2004-06-24  David Waite  <mass@akuma.org>
2692
2693         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
2694         image.c, loader.c, locales.c, marshal.c, metadata.c,
2695         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
2696         string-icalls.c, threads.c: change to C90-style comments from C99 /
2697         C++ -style
2698
2699 2004-06-24  Dick Porter  <dick@ximian.com>
2700
2701         * threads.c
2702         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
2703         return createdNew.  Fixes bug 60412.
2704
2705         * threads-types.h: 
2706         * icall.c: Add createdNew parameter to CreateMutex icall
2707
2708 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
2709
2710         * reflection.c, object-internals.h: save default value in params.
2711
2712 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2713
2714         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
2715         no need to build a new path combining that with the application base.
2716         Fixes bug #60442.
2717
2718 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
2719
2720         * reflection.c: fixed minor standard compliance issues.
2721
2722 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
2723
2724         * reflection.c: fixed issue with encoding some custom attributes
2725         (arrays in properties and fields, bug #60411).
2726
2727 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2728
2729         * reflection.c: fix start address when copying the public key token.
2730
2731 2004-06-23  Martin Baulig  <martin@ximian.com>
2732
2733         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
2734         the `exc' object in a static object to put it into the GC's root set.
2735
2736 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
2737
2738         * reflection.c: make mono_reflection_setup_internal_class ()
2739         callable a second time to setup a new parent class.
2740
2741 2004-06-23  Dick Porter  <dick@ximian.com>
2742
2743         * threads.c: Check for WAIT_IO_COMPLETION return values.
2744
2745 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
2746
2747         * appdomain.c: Removed the g_free on the public key token. Now copy 
2748         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
2749         * assembly.c: Added public key token string value when loading 
2750         assemblies. Fix bug #60439.
2751         * icall.c: Added missing informations (like public key) in 
2752         GetReferencedAssemblies. Fix #60519.
2753         * image.h: Changed definition for public key token from const char*
2754         public_tok_value to guchar public_key_token [17];
2755         * reflection.c: Updated for changes to public key token.
2756
2757 2004-06-22  Lluis Sanchez Gual
2758
2759         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
2760         for the field in base classes.
2761
2762 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
2763
2764         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
2765         mark headers as not supported, they are installed only for use by the
2766         debugger.
2767
2768 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
2769
2770         * *.c, *.h: avoid namespace pollution in public headers.
2771
2772 2004-06-21  Martin Baulig  <martin@ximian.com>
2773
2774         * exception.c (mono_get_exception_security): It's in
2775         "System.Security", not in "System".
2776
2777         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
2778         the exception classes.
2779
2780 2004-06-21  Martin Baulig  <martin@ximian.com>
2781
2782         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
2783         Protect the exception object from being finalized.
2784
2785 2004-06-21  Martin Baulig  <martin@ximian.com>
2786
2787         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
2788         public function.
2789
2790 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
2791
2792         * reflection.c: Load the assembly in mono_reflection_type_from_name,
2793         if it was not loaded before. Fix parts of #60439.
2794
2795 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
2796
2797         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
2798         code that was broken since Ben's change: wrappers are now
2799         dependent on the method signature only again.
2800
2801 2004-06-21  Martin Baulig  <martin@ximian.com>
2802
2803         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
2804         added interface support.
2805
2806 2004-06-21  Martin Baulig  <martin@ximian.com>
2807
2808         * class.c (mono_vtable_get_static_field_data): New public method.
2809
2810 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
2811
2812         * filewatcher.c : Windows build fix to be compliant with API changes.
2813
2814 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
2815
2816         * class.h, class.c: more accessors.
2817         * metadata.h, metadata.c: prepare for hiding MonoType and
2818         MonoMethodSignature: people should use the accessors from now on
2819         outside of the tree.
2820
2821 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
2822
2823         * *.c, *.h: more API cleanups.
2824
2825 2004-06-18  Jackson Harper  <jackson@ximian.com>
2826
2827         * assembly.c: Trace loading assemblies.
2828         * loader.c: Trace loading native libraries.
2829         * mono-config.c: Trace loading config files.
2830         
2831 2004-06-18  Dick Porter  <dick@ximian.com>
2832
2833         * locales.c: Tell ICU the lengths of strings, it can cope with
2834         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
2835
2836 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
2837
2838         * image.c: swapped name/filename;
2839
2840 2004-06-18  Martin Baulig  <martin@ximian.com>
2841
2842         * mono-debug-debugger.c (write_class): Write the parent class at
2843         the end of the header.
2844
2845 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
2846
2847         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
2848
2849 2004-06-17  Raja R Harinath  <rharinath@novell.com>
2850
2851         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
2852         (bundle_obj): New conditional define.
2853         (BUILT_SOURCES): Remove.
2854         ($(bundle_srcs)): Make parallel-make safe.
2855         (libmonoruntime_la_LIBADD): Make unconditional.
2856         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
2857         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
2858
2859 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
2860
2861         * culture-info-tables.h: It was inconsistent with the latest
2862           supp info files.
2863
2864 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
2865
2866         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
2867         be loaded.
2868
2869         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
2870         with gcc 2.95.
2871
2872 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
2873
2874         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
2875         cleaned up public header threads.h.
2876
2877 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
2878
2879         * Makefile.am, *.c, *.h: more API cleanups.
2880
2881 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
2882
2883         * Makefile.am: removed monosn from compilation.
2884         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
2885         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
2886         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
2887         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
2888         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
2889         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
2890
2891 2004-06-15  Jackson Harper  <jackson@ximian.com>
2892
2893         * assembly.c: Make locales lower case when searching the GAC for
2894         assemblies. gacutil will always make locales lowercase when
2895         installing so this effectively makes them case insensitive.
2896         
2897 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
2898
2899         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
2900         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
2901           parameter which allows to choose whether the wait can be interrupted or 
2902           not. Also added the method mono_monitor_enter(), which locks the monitor
2903           using an infinite wait and without allowing interruption.
2904           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
2905           interrupted.
2906         * object.h: Added new fields in MonoThread. suspend_event holds the event
2907           used to susped/resume the thread. synch_lock is the lock object to use for
2908           modifying the thread state.
2909         * threads.c: Use the new synch_lock object for locking, instead of "this",
2910           which can generate deadlocks.
2911           Moved thread state change in Thread.Sleep and Thread.Join from managed
2912           to unmanaged code. This avoids a deadlock when the thread was suspended
2913           just after acquiring the thread lock.
2914           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
2915           Implemented Thread.Suspend using an event instead of ThreadSuspend,
2916           which is not fully implemented in the io-layer.
2917         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
2918
2919 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
2920
2921         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
2922         threads-types.h: more API cleanups.
2923
2924 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
2925
2926         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
2927         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
2928         threadpool.c, threads.c: first pass at the exported API cleanup.
2929
2930 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
2931
2932         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
2933
2934 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2935
2936         * icall.c: added internalGetHome.
2937
2938 2004-06-14  Dick Porter  <dick@ximian.com>
2939
2940         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
2941         possible to return successfully when '.' or '..' were the only
2942         entries in a directory, but were skipped.  The MonoIOStat was not
2943         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
2944         Fixes bug 59574.
2945
2946 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
2947
2948         * reflection.c: make binaries run on .Net 1.1 by default.
2949
2950 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
2951
2952         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
2953
2954 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
2955
2956         * marshal.c: keep track of struct size with explicit layout
2957         (bug #59979).
2958
2959 2004-06-12  Martin Baulig  <martin@ximian.com>
2960
2961         * mono-debug-debugger.c: Comment out a debugging g_message().
2962
2963 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
2964
2965         * reflection.c, reflection.h: do not free custom attrs that are cached.
2966         * icall.c: use braces to make code clearer.
2967
2968 2004-06-11  Martin Baulig  <martin@ximian.com>
2969
2970         * class.h (MonoInflatedField): New type.
2971         (MonoClassField): Replaced `MonoType *generic_type' with
2972         `MonoInflatedField *generic_info'.
2973
2974         * icall.c
2975         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
2976
2977 2004-06-11  Martin Baulig  <martin@ximian.com>
2978
2979         * reflection.c (mono_image_create_method_token): Correctly encode
2980         varargs methods.
2981
2982 2004-06-11  Martin Baulig  <martin@ximian.com>
2983
2984         * metadata.c (mono_metadata_parse_method_signature): When parsing
2985         a MethodDef which has VarArgs, also set sentinelpos if we don't
2986         have any parameters.
2987
2988 2004-06-11  Martin Baulig  <martin@ximian.com>
2989
2990         * verify.c (mono_method_verify): In CEE_CALL, use
2991         mono_method_get_signature() to get the method's signature, unless
2992         we're a PInvoke method.
2993
2994 2004-06-10  Jackson Harper  <jackson@ximian.com>
2995
2996         * assembly.c: Use <path>/lib/mono/gac for the extra paths
2997         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
2998         logical name as the supplied path is just a prefix to the gac not
2999         the direct path to it.
3000         
3001 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
3002
3003         * reflection.c: make the token for a created method match
3004         the token of the MethodBuilder it was created from
3005         (IKVM requires this behaviour now).
3006
3007 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
3008
3009         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
3010         reflection.c, socket-io.c: leak fixes.
3011
3012 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
3013
3014         * icall.c: handle sentinel pos in vararg methods in position different
3015         from 0.
3016
3017 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3018
3019         * culture-info-tables.h: freshly generated.
3020
3021 2004-06-09  Martin Baulig  <martin@ximian.com>
3022
3023         * loader.c (mono_get_method_constrained): Call `mono_class_init
3024         (constrained_class)'.   
3025
3026 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
3027
3028         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
3029         any methods. Fixes #59629.
3030
3031 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
3032
3033         * culture-info-tables.h: reflecting locale-builder updates.
3034
3035 2004-06-08  Dick Porter  <dick@ximian.com>
3036
3037         * object.h:
3038         * locales.c: Fixed compile warnings, including a real bug in
3039         CompareInfo_internal_compare.
3040         
3041 2004-06-08  Dick Porter  <dick@ximian.com>
3042
3043         * locales.c
3044         (ves_icall_System_Globalization_CompareInfo_internal_index):
3045         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
3046         Double-check the resuls of usearches, because ICU currently
3047         ignores most of the collator settings here.  Fixes bug 59720.
3048         
3049 2004-06-08  Dick Porter  <dick@ximian.com>
3050
3051         * locales.c
3052         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
3053         Fix memory leak and segfault-causing typo.  No idea how this one
3054         lasted so long without being noticed.
3055
3056 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
3057
3058         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
3059         any methods. Fixes #59629.
3060
3061 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3062
3063         * assembly.c:
3064         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
3065         own the critical section before). Removed dead code (that's done
3066         in the preload hook).
3067
3068         (mono_assembly_load_with_partial_name): call the preload hook.
3069
3070 2004-06-08  Martin Baulig  <martin@ximian.com>
3071
3072         * metadata.c (mono_metadata_signature_alloc): Default
3073         `sentinelpos' to -1.
3074
3075         * reflection.c (mono_image_get_array_token): Likewise.
3076
3077 2004-06-08  Martin Baulig  <martin@ximian.com>
3078
3079         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
3080
3081         * metadata.c (mono_metadata_parse_method_signature): When parsing
3082         a MethodDef which has VarArgs, set sentinelpos.
3083
3084         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
3085         `gint16' since we're using -1 for non-varargs methods.
3086
3087         * reflection.c
3088         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
3089         (method_encode_signature): Added varargs support.
3090         (method_builder_encode_signature): Likewise.
3091         (mono_image_get_varargs_method_token): New static method.
3092         (mono_image_create_method_token): New public method; this is
3093         called via an icall instead of mono_image_create_token() when
3094         calling a varargs method.       
3095
3096 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
3097
3098         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
3099
3100 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
3101
3102         * culture-info-tables.h : Reflecting the latest locale-builder that
3103           fixed empty array representation ({} to {0}).
3104
3105 2004-06-07  Jackson Harper  <jackson@ximian.com>
3106
3107         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
3108         looking up extra gac paths. This allows MONO_GAC_PATH to act
3109         exactly like a prefix.
3110         
3111 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
3112
3113         * reflection.c (mono_reflection_type_from_name): Make a copy of the
3114         type name before modifying it. Fixes #59405.
3115
3116 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
3117
3118         * culture-info.h: added fields for "all datetime patterns".
3119         * locales.c: (  ves_icall_System_Globalization_CultureInfo
3120           _construct_datetime_format ()): fill xxx_patterns fields.
3121         * object.h: added fields for "all datetime patterns" to
3122           MonoDateTimeFormatInfo.
3123         * culture-info-tables.h: reflecting locale-builder updates.
3124
3125 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
3126
3127         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
3128         the event has no add and remove methods. Fixes #59629.
3129
3130 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
3131
3132         * object.c: Fixed possible integer overflow when allocating large
3133         strings.
3134
3135 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
3136
3137         * culture-info-tables.h: reflecting locale-builder updates.
3138
3139 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
3140
3141         * culture-info-tables.h: reflecting locale-builder updates.
3142
3143 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
3144
3145         * culture-info-tables.h: reflecting locale-builder updates.
3146
3147 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
3148
3149         * threads.c: Made Thread.Sleep abortable.
3150
3151 2004-06-02  Martin Baulig  <martin@ximian.com>
3152
3153         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
3154
3155         * debug-mono-symfile.h: Bumped symbol file version number to 37.
3156
3157 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
3158
3159         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
3160
3161 2004-05-30  Jackson Harper  <jackson@ximian.com>
3162
3163         * reflection.c: Do not hardcode assembly versions or public key
3164         tokens anymore. All of this except the corlib section was dead
3165         code anyways.
3166         
3167 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
3168
3169         * object.c (mono_runtime_invoke_array): Automatically create boxed
3170         objects for byref valuetypes if needed. Fixes #59300.
3171         
3172         * object.c (mono_method_return_message_restore): Handle 
3173         MONO_TYPE_OBJECT as well.
3174
3175 2004-05-28  Jackson Harper  <jackson@ximian.com>
3176
3177         * reflection.c: The modified type encoding was causing build
3178         problems. Reverted for now.
3179         
3180 2004-05-28  Jackson Harper  <jackson@ximian.com>
3181
3182         * reflection.c/h: Take an assembly ref so that we dont create
3183         fully qualified names when encoding types in the same assembly as
3184         the custom attribute being emitted.
3185         * appdomain.c: Increment version number.
3186         
3187 2004-05-26  Duncan Mak  <duncan@ximian.com>
3188
3189         * icall.c
3190         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
3191         Set the full version number (major, minor, build, revision).
3192
3193 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
3194
3195         * marshal.c (emit_struct_conv): increment src/dst after blit
3196         (mono_marshal_get_managed_wrapper,
3197         mono_marshal_get_native_wrapper): make sure we have marshalling
3198         info before marshalling params (info computation affects
3199         blittable)
3200
3201         * class.c (class_compute_field_layout): correctly deal with
3202         blittable
3203         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
3204         value types (as per what windows dows by default)
3205         (mono_class_setup_mono_type): System.ValueType is blittable
3206         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
3207         blittable
3208
3209         * marshal.c (mono_marshal_load_type_info): flag types  as
3210         non-blittable if the native layout doesn't match the managed
3211         layout
3212
3213 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3214
3215         * appdomain.c: don't add stuff in the private search path that is
3216         above the application base. If application base is not set, there's
3217         no private search path.
3218
3219 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
3220
3221         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
3222         byref struct arguments in native->managed marshalling.
3223
3224 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
3225
3226         * marshal.c (mono_marshal_get_runtime_invoke): correctly
3227         cache methods using signature (special case for methods
3228         that are value type or string class)
3229         
3230         * image.c (mono_image_close): clean up allocated GSList's
3231         in runtime_invoke_cache.
3232
3233 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3234
3235         * mono-config.c: set the correct path for mono_cfg_dir on windows when
3236         there's no MONO_CFG_DIR environment variable defined.
3237
3238 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3239
3240         * threads.c: windows version must be >= 0x0500 to include OpenThread.
3241
3242 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
3243
3244         * threadpool.c: Really wait for 500ms after the async call, even if the wait
3245           is interrumped.
3246         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
3247           before waiting for it, and call CloseHandle after the wait to unref it.
3248           This will make sure that handles are not disposed too early.
3249
3250 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3251
3252         * appdomain.c:
3253         * appdomain.h:
3254         * icall.c: removed
3255         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
3256         needed now.
3257
3258         * object.c: se the application_base only for the domain that runs
3259         Main. Fixes bug #59216,
3260
3261 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3262
3263         * appdomain.c:
3264         * object.c: only the domain in which Main is run have
3265         SetupInformation.ConfigurationFile set, so moved a few lines from
3266         appdomain.c to object.c.
3267
3268 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3269
3270         * appdomain.c: we tried to load [name].(dll|exe), but according
3271         to bug #57710, we must also try [culture]/[name].(dll|exe) and
3272         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
3273         There's a test case attached to bug #58922.
3274
3275 2004-05-27  Dick Porter  <dick@ximian.com>
3276
3277         * icall.c:
3278         * file-io.c: Implemented icalls for locking and unlocking regions
3279         in a file.
3280         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
3281         FALSE on error (fixes both compiler warning and real bug.)
3282
3283 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
3284
3285         * culture-info-tables.h: reflecting locale-builder updates.
3286
3287           (Added missing ChangeLog entry for 05/26)
3288
3289 2004-05-27  Jackson Harper  <jackson@ximian.com>
3290
3291         * locales.c: Fix some cut and paste errors.
3292         
3293 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3294
3295         * mono-config.c: set the correct path for config. directory on windows.
3296
3297 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
3298
3299         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
3300           on win32.
3301
3302 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
3303
3304         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
3305         from pinvoke functions.
3306         
3307         * marshal.c (mono_ftnptr_to_delegate): Implement this.
3308
3309 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
3310
3311         * culture-info-tables.h: reflecting locale-builder updates.
3312
3313 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
3314
3315         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
3316         #59086.
3317
3318 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
3319
3320         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
3321         * icall.c: Modified icalls for RNG.
3322         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
3323         Windows (CryptoAPI).
3324
3325 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
3326
3327         * locales.c: Fix build.
3328
3329 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
3330
3331         * culture-info-tables.h: reflecting locale-builder updates.
3332
3333 2004-05-25  Jackson Harper  <jackson@ximian.com>
3334
3335         * locales.c: When creating the current culture use the $LANGs
3336         specific culture. So DateTimeFormat and NumberFormat entries are created.
3337         
3338 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
3339
3340         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
3341         a char array as parameter.
3342
3343 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
3344
3345         * image.c: In mono_image_open(), always use an absolute path name to
3346           look for already loaded images.
3347
3348 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
3349
3350         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
3351         missing in the windows build (like older cygwin include files).
3352
3353 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
3354
3355         * icall.c: Fixed check for possible integer overflow in Buffer_
3356         BlockCopy icall. Replaced comments style // by /* */.
3357
3358 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
3359
3360         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
3361         
3362         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
3363         check after MONO_VTADDR. Fixes pinvoke2.exe.
3364
3365         * marshal.h marshal.c metadata.h: Add beginnings of support for
3366         ftnptr -> delegate marshalling.
3367
3368 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
3369
3370         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
3371         * threads.c: Fix warnings.
3372
3373 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
3374
3375         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
3376         * icall.c: Registered icalls for Suspend and Resume.
3377         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
3378           Thread.Abort.
3379         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
3380         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
3381         * process.c: Use WaitForSingleObjectEx.
3382         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
3383           checkpoints.
3384         * threads.c, threads.h: Make use of new Ex wait methods. Improved
3385           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
3386           for Suspend and Resume. Added new mono_thread_stop, used for stoping
3387           background threads. Added basic support for Abort in Windows.
3388           Start new threads using a managed delegate invoke wrapper. This wrapper
3389           has an interruption checkpoint that is needed since an interruption
3390           can be requested before the thread leaves the unmanaged code that starts 
3391           the thread.
3392         * marshal.c: Added interruption checkpoint after every native call, and
3393           also before managed calls for wrappers called from unmanaged code to
3394           go into managed code.
3395         * object.h: Added new field in MonoThread to keep track of interruption
3396           requests.
3397
3398 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
3399
3400         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
3401         calls.
3402
3403 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3404
3405         * appdomain.c:
3406         * assembly.c:
3407         * gc.c:
3408         * locales.c:
3409         * mono-config.c:
3410         * rand.c: getenv -> g_getenv (windows!)
3411
3412         * process.c: complete_path is also used on non-windows platforms.
3413
3414 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3415
3416         * icall.c: new signature for Process_Start.
3417
3418         * process.[ch]: new signature for Process_Start. If we're on windows
3419         and UseShellExecute is false, we have to search for the program by
3420         ourselves if we don't get a full path.
3421
3422 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
3423
3424         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
3425         marshalling and call CleanUpNativeData if needed. Fixes #58646.
3426
3427 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3428
3429         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
3430         Fixes bug #58373.
3431
3432 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3433
3434         * process.c: use double quotes to quote program name and arguments on
3435         windows. Fixes bug #58575.
3436
3437 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3438
3439         * file-io.c: don't return "." and ".." when using windows Find*File.
3440
3441 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
3442
3443         * marshal.c: Don't pass wrappers to message init because method 
3444         addressed used to lookup metadata. part of remoting[2|3] fix.
3445
3446 2004-05-15  Jackson Harper  <jackson@ximian.com>
3447
3448         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
3449         path is essentially the same as MONO_PATH except that it points to
3450         GACs instead of lib directories.
3451         * loader.h: The user gac is gone so we dont need function to
3452         enable/disable it.
3453         * mono-config.c: user gac option is now gone.
3454         
3455 2004-05-15  Jackson Harper  <jackson@ximian.com>
3456
3457         * culture-info.h: Make defines more consistent, add calendar data
3458         to the culture info table.
3459         * culture-info-tables.h: Add basic calendar data. Basically
3460         everyone gets default gregorian until all the data is
3461         updated.
3462         * locales.c: Use the new consistent defines. Set calendar data for
3463         culture info objects.
3464         * object.h: add a field for calendar data to CultureInfo
3465         
3466 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
3467
3468         * image.c: image->runtime_invoke_cache is keyed on signatures now.
3469         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
3470         a signature.
3471         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
3472         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
3473         an extra param that is the pointer of the method to invoke. The IL for
3474         the invoke method is no longer specific to the method, but to the
3475         signature of the method. Thus, we can share the same code for multiple
3476         methods. This reduces the number of methods that have to be compiled.
3477
3478 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
3479
3480         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
3481
3482         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3483
3484         * icall.c: Optimize Buffer.BlockCopy.
3485
3486 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3487
3488         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
3489         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
3490         quote). Changed them to "MMMM yyyy".
3491
3492 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
3493
3494         * rand.c
3495         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
3496
3497 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
3498
3499         * reflection.h: Updated after changes to managed structures.
3500
3501         * appdomain.c: Bump corlib version.
3502
3503 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3504
3505         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
3506         windows.
3507
3508 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3509
3510         * Makefile.am: link to ../os/libmonoos.la on windows.
3511
3512         * assembly.c:
3513                 -If MONO_DEBUG, warn about non-existing directories in
3514                 MONO_PATH.
3515                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
3516                 compile time variable.
3517                 -Removed init_default_path and call mono_set_rootdir from
3518                 libmonoos.a instead (windows only).
3519
3520         * assembly.h: declare mono_assembly_getrootdir().
3521
3522         * domain.c:
3523         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
3524
3525         * loader.c: s/getenv/g_getenv/
3526
3527 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
3528
3529         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
3530
3531         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
3532
3533         * metadata.h: Add new marshalling conversions.
3534
3535         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
3536         function.
3537
3538         * reflection.c (mono_reflection_get_type): Lookup the type in all
3539         modules of a multi-module assembly. Fixes #58291.
3540
3541 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
3542
3543         * threads.c: Before aborting a background, set the StopRequested
3544         state.  This avoids throwing the Abort exception.
3545         In mono_thread_manage, don't continue with the shutdown until all
3546         aborted threads have actually stopped.
3547
3548 2004-05-10  Jackson Harper  <jackson@ximian.com>
3549
3550         * locales.c: Remove the modifier from culture names.
3551         
3552 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3553
3554         * Makefile.am: monosn is not installed any more. It has been deprecated
3555         in favor of sn.
3556
3557 2004-05-07  Jackson Harper  <jackson@ximian.com>
3558
3559         * locales.c
3560         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
3561         Fix array construction, add bailout if the length is 0.
3562
3563 2004-05-07  Dick Porter  <dick@ximian.com>
3564
3565         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
3566         machine doesn't have a DNS entry.  Patch by Urs Muff
3567         (umuff@quark.com), fixes bug 57928.
3568
3569 2004-05-06  Jackson Harper  <jackson@ximian.com>
3570
3571         * reflection.c: Handle null PublicTokens properly. alloc mem for
3572         assembly names culture so we dont crash when freeing it.
3573         
3574 2004-05-06  Jackson Harper  <jackson@ximian.com>
3575
3576         * assembly.c: Check the usergac when loading with partial names.
3577         
3578 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
3579
3580         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
3581         does nothing for now (not required for Linux/Windows) but the class
3582         library can call it (and a newer or modified runtime could need it).
3583         * icall.c: Registred icall.
3584
3585 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3586
3587         * loader.c: prints a message on module loading error we set MONO_DEBUG
3588         environment variable.
3589
3590 2004-05-05  Jackson Harper  <jackson@ximian.com>
3591
3592         * appdomain.c: Handle PublicKeyToken=null properly.
3593         
3594 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
3595
3596         * environment.c|h: Added icall ves_icall_System_Environment_
3597         GetOSVersionString to get the current OS version as a string.
3598         * icall.c: Registred icall.
3599
3600 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
3601
3602         * object.c: in mono_object_get_virtual_method(), take into account that
3603         non-virtual methods don't have a slot in the vtable. Check needed when
3604         the object is a proxy.
3605
3606 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
3607
3608         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
3609         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
3610
3611         * object.c (mono_class_compute_gc_descriptor): Fix warning.
3612
3613         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
3614         passed when a valuetype is expected.
3615
3616         * object.c (mono_unhandled_exception): Only set the exit code if the
3617         exception happens in the main thread. Fixes thread5.exe.
3618
3619         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
3620         invalid names. Fixes #58047.
3621
3622 2004-05-03  Jackson Harper  <jackson@ximian.com>
3623
3624         * assembly.c: This line was committed accidently and is unneeded.
3625         
3626 2004-05-03  Jackson Harper  <jackson@ximian.com>
3627
3628         * icall.c: Add new icall for Assembly::LoadWithPartialName
3629         * assembly.c/.h: new function that probes the GAC to load partial
3630         assembly names by Paolo Molaro.
3631         
3632 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3633
3634         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
3635         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
3636         (type_get_fully_qualified_name): Added PublicKeyToken when building a
3637         full type name.
3638
3639 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3640
3641         * appdomain.c: fixed check for 'neutral' culture and removed warning.
3642         * reflection.c: fix bug when parsing a full type name and Version is not
3643         the last thing in the string.
3644
3645 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
3646
3647         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
3648         crashes when it is freed.
3649
3650 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3651
3652         * assembly.c: print the compat warning to stderr.
3653
3654 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
3655
3656         * assembly.c (mono_assembly_load_references): Add a compatibility
3657         hack to run old applications that might be still referencing the
3658         3300-based assemblies, only do this for System.xxx.
3659
3660 2004-05-01  Jackson Harper  <jackson@ximian.com>
3661
3662         * appdomain.c: If the culture is neutral we set it to "".
3663         
3664 2004-04-29  Jackson Harper  <jackson@ximian.com>
3665
3666         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
3667
3668 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3669  
3670         * string-icalls.c: added low overhead function for copying chars
3671         * icall.c: added needed icall for the above function
3672  
3673 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3674
3675         * icall.c: fix return value of get_global_assembly_cache.  Implemented
3676         Environment.GetLogicalDrives.
3677
3678 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
3679
3680         * rand.c: try and talk to egd or prngd
3681         for random bytes if opening devices fail.
3682
3683 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
3684
3685         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
3686         alignment for the type using the native alignment of its members 
3687         instead of using klass->min_align.
3688
3689         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
3690
3691 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3692
3693         * file-io.c:
3694         * socket-io.c: added check for sys/aio.h.
3695
3696 2004-04-28  Dick Porter  <dick@ximian.com>
3697
3698         * threads.c: Don't abort a thread thats already aborting, when
3699         terminating everything.
3700
3701 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3702
3703         * icall.c: added 2 new async calls for Socket.
3704
3705         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
3706         IO on *nix systems.
3707
3708         * threadpool.c: removed unused variable.
3709
3710 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
3711
3712         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
3713
3714 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
3715
3716         * locales.c: put back string_invariant_tolower () and
3717         string_invariant_toupper ().
3718
3719 2004-04-26 David Waite <mass@akuma.org>
3720
3721         * file-io.h:
3722         * socket-io.h:
3723         * threads.h:
3724         * unicode.h: remove comma from end of enumeration declarations
3725
3726 2004-04-26 David Waite <mass@akuma.org>
3727
3728         * debug-mono-symfile.h:
3729         * decimal.c:
3730         * mono_debug.h:
3731         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
3732
3733
3734 2004-04-26  Jackson Harper  <jackson@ximian.com>
3735
3736         * appdomain.c: Increment version number.
3737         
3738 2004-04-26  Jackson Harper  <jackson@ximian.com>
3739
3740         * appdomain.c: Set assembly references public token value when
3741         PublicKeyToken is specified, not the hash_value. Free public token
3742         values when free assembly name data. Previously the public key
3743         token was hex decoded, however we are using hex encoded public key
3744         tokens, so this is not neccasary.
3745         * assembly.c: Lookup assemblies in the gac if their public token
3746         value is set. Add function to allow enabling user gac
3747         lookups. Specify whether or not the assembly was loaded from the
3748         GAC. Compare full assembly names when checking the cache for
3749         assemblies (Temporarily disabled see comment in code). Remove
3750         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
3751         specifies trace-loader they get extra info to stdout on the
3752         loading of assemblies.
3753         * image.h: Add a field for an assembly references public token
3754         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
3755         whether an assembly has been loaded from the GAC.
3756         * image.c: Remove a corlib -> mscorlib name mapping.
3757         * loader.h: Add function to enable/disable the user gac.
3758         * mono-config.c: Check if the usergac is enabled in the config
3759         file.
3760         * icall.c: New icall to determine whether or not an assembly has
3761         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
3762         * tabldefs.h: Add constant for assemblyref flag that specifies a
3763         full public key is used instead of a public token.
3764         * reflection.c: Remove mscorlib -> corlib mappings. Set
3765         PublicTokenValue instead of hash value. This value is a hex
3766         string so it does not need to be expanded.
3767
3768 2004-04-26  Martin Baulig  <martin@ximian.com>
3769
3770         * mono-debug-debugger.c (mono_debugger_initialize): Set
3771         `mono_debugger_initialized' before calling mono_debug_lock().
3772
3773 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
3774
3775         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
3776           InternalToUpper/InternalToLower.
3777         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
3778           removed invariant culture shortcut.  This is now done in managed code.
3779         * locales.c: (string_invariant_toupper/tolower) removed.
3780
3781 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3782
3783         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
3784         Added Poll internal call.
3785
3786         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
3787         call for Poll. Select was too heavy for polling a single socket.
3788
3789         * threadpool.[ch]: added mono_threadpool_cleanup.
3790         * threads.c: use it. Don't use Thread_Abort on windows.
3791
3792 2004-04-23  Martin Baulig  <martin@ximian.com>
3793
3794         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
3795
3796 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
3797
3798         * icall.c: Registred new icalls for key pair protection and added an
3799         icall for Environment.GetFolderPath on Windows.
3800         * security.c|h: Added new icalls for key pair protection.
3801
3802 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3803
3804         * socket-io.c: don't display the non-supported family warning for known
3805         families. Now this is not displayed on windows when checking support
3806         for IPv4/IPv6.
3807
3808 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3809
3810         * class.c: don't display the layout warning for static fields.
3811
3812 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
3813
3814         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
3815         * locales.c, locales.h: Added new icalls for culture-specific
3816         Char.ToLower and Char.ToUpper.
3817
3818 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3819
3820         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
3821         by David Waite.
3822
3823 2004-04-20  Martin Baulig  <martin@ximian.com>
3824
3825         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
3826         of the type name before passing it to mono_reflection_type_from_name().
3827
3828 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
3829
3830         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
3831         encodings here. Fixes #56965.
3832
3833 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
3834
3835         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
3836         fix test on strstr result not that I can see anything that
3837         relies on the result.
3838
3839 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
3840
3841         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
3842         Fixes #57081.
3843
3844         * marshal.c (mono_marshal_get_string_encoding): New helper function.
3845
3846         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
3847         function to determine which marshalling to use for strings. Fixes
3848         #56965.
3849
3850         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
3851
3852         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
3853
3854 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
3855
3856         * icall.c: #include mono-config.h
3857
3858 2004-04-15  Jackson Harper  <jackson@ximian.com>
3859
3860         * culture-info-tables.h: Fix date formats for en-US culture.
3861         
3862 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
3863
3864         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
3865         ThreadPool.SetMinThreads.
3866         * threadpool.c: Implemented ThreadPool.GetMinThreads and
3867         ThreadPool.SetMinThreads.
3868
3869 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
3870
3871         * mono-config.c: also load the .config file in the directory
3872         where the assembly was found.
3873
3874 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
3875
3876         * assembly.c: load per-assembly config files.
3877         * icall.c: decrapified code to get the config dir and moved to
3878         mono-config.c.
3879         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
3880         per-assembly config files. When doing a dll map lookup give precedence
3881         to the per-assembly data.
3882
3883 2004-04-14  Martin Baulig  <martin@ximian.com>
3884
3885         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
3886         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
3887         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
3888
3889         * mono-debugger-debugger.c: While the debugger is locked, remember
3890         whether the symbol tables have changes and send one single
3891         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
3892
3893 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
3894
3895         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
3896
3897         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
3898         function.
3899
3900         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
3901         account when marshalling string arrays. Fixes #56965.
3902
3903 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
3904
3905         * icall.c: Add new icalls mapping for security.
3906         * security.c|h: Add internal calls for WindowsIdentity,
3907         WindowsImpersonationContext and WindowsPrincipal.
3908
3909 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
3910
3911         * class.c: Added comment to ensure the System.MonoDummy class
3912         is removed when no longer necessary
3913
3914 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
3915
3916         * appdomain.c: Pass arguments to the bootstraping exceptions to
3917         minimize JITed methods at boot
3918
3919         * metadata.c (mono_exception_from_name_two_strings): Allow for the
3920         second string to be null.
3921
3922         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
3923         Change the protocol to minimize the JIT methods at startup.  Now
3924         it Returns the internal codepage, if the value of "int_code_page"
3925         is 1 at entry, and we can not compute a suitable code page
3926         number, returns the code page as a string.
3927
3928 2004-04-13  Jackson Harper  <jackson@ximian.com>
3929
3930         * culture-info-tables.h: Fix number of decimal digits for all
3931         english locales.
3932
3933 2004-04-13  Jackson Harper  <jackson@ximian.com>
3934
3935         * icall.c: Clairfy out of sync error message. It is not always
3936         your corlib that is out of sync.
3937
3938 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
3939
3940         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
3941         properties when only the set accessor is overriden. Fixes #55874.
3942
3943 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
3944
3945         * assembly.c (mono_assembly_load_references): Make this thread safe.
3946         Fixes #56327.
3947
3948 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
3949
3950         * monosn.c: Add missing initialization calls.
3951
3952 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
3953
3954         * locales.c:
3955         ves_icall_System_Globalization_CultureInfo_construct_number_format
3956         Fix g_assert so it compiles on fussier compilers re int/ptr
3957         mismatch
3958
3959 2004-04-08  Dick Porter  <dick@ximian.com>
3960
3961         * socket-io.h:
3962         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
3963         53992.  Also rearrange the code so that the internal calls return
3964         an error value and exceptions are thrown from managed code.
3965
3966         * icall.c: Add type info to the socket icalls.
3967
3968 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3969
3970         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
3971         owes me a beer.
3972
3973 2004-04-07  Martin Baulig  <martin@ximian.com>
3974
3975         * class.c (mono_class_from_generic_parameter): Don't default
3976         `klass->parent' to `mono_defaults.object_type'.
3977
3978 2004-04-07  Martin Baulig  <martin@ximian.com>
3979
3980         * reflection.c (mono_reflection_initialize_generic_parameter): Set
3981         `param->pklass->reflection_info'.       
3982
3983 2004-04-07  Jackson Harper  <jackson@ximian.com>
3984
3985         * culture-info-tables.h: Fix date separator symbol.
3986         
3987 2004-04-07  Martin Baulig  <martin@ximian.com>
3988
3989         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
3990         from System.Type to System.MonoType.
3991
3992 2004-04-07  Martin Baulig  <martin@ximian.com>
3993
3994         * reflection.h
3995         (MonoReflectionGenericParam): Added `has_reference_type' and
3996         `has_value_type' fields.
3997
3998         * reflection.c (mono_image_get_generic_param_info): Encode the
3999         correct flags if we have the `class' or `struct' constraint.
4000
4001 2004-04-07  Martin Baulig  <martin@ximian.com>
4002
4003         * reflection.h
4004         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
4005
4006 2004-04-07  Jackson Harper  <jackson@ximian.com>
4007
4008         * appdomain.c: Revert extra patches, just wanted to bump the
4009         version number.
4010         
4011 2004-04-07  Jackson Harper  <jackson@ximian.com>
4012
4013         * Makefile.am: Add culture-info private headers.
4014         * icall.c: Add new icalls for contructing locales.
4015         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
4016         * locales.h: Declare new culture info construction methods.
4017         * object.h: Add new fields used to avoid the CultureMap to
4018         MonoCultureInfo.
4019         * culture-info.h: Definition of structs used in the culture info
4020         tables.
4021         * culture-info-tables.h: Autogenerated tables that contain culture
4022         info data. This file was generated with the locale-builder tool.
4023         * appdomain.c: Incement corlib version number.
4024         
4025 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
4026
4027         * appdomain.c: (mono_runtime_init) move mono_thread_init
4028         to before mono_object_new calls so critical sections
4029         are initialized before use.
4030
4031 2004-04-07  Martin Baulig  <martin@ximian.com>
4032
4033         * icall.c
4034         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
4035         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
4036         (ves_icall_MonoGenericParam_initialize): Removed.
4037         (monogenericparam_icalls): Removed.
4038         (generictypeparambuilder_icalls): Added new table for
4039         System.Reflection.Emit.GenericTypeParameterBuilder.
4040
4041         * reflection.c
4042         (mono_reflection_define_generic_parameter): Removed.
4043         (mono_reflection_initialize_generic_parameter): This is now called
4044         from GenericTypeParameterBuilder's .ctor.
4045
4046 2004-04-06  Martin Baulig  <martin@ximian.com>
4047
4048         * class.c (mono_class_init): Don't inflate nested classes in a
4049         generic instance.
4050         (mono_type_get_name_recurse): Include the generic arguments for
4051         generic instances and generic type declarations.
4052         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
4053         (_mono_class_get_instantiation_name): Removed.
4054         (mono_class_create_generic): Always use `gklass->name' as our name.
4055
4056         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
4057
4058         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
4059         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
4060         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
4061         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
4062         closed generic methods here.
4063
4064         * reflection.c
4065         (mono_reflection_generic_inst_get_nested_types): Removed.
4066         (inflate_mono_method): Copy the generic parameters from the
4067         MonoMethodHeader into out MonoGenericMethod.
4068
4069 2004-04-06  Martin Baulig  <martin@ximian.com>
4070
4071         * row-indexes.h
4072         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
4073
4074         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
4075
4076         * reflection.c (build_compressed_metadata): If we have any entries
4077         in the GenericParam, MethodSpec or GenericParamConstraint tables,
4078         set the header version to 1.1.
4079
4080 2004-04-06  Martin Baulig  <martin@ximian.com>
4081
4082         * class.c (mono_class_init): If we're a generic instance,
4083         initialize our nested classes, too.
4084         (_mono_class_get_instantiation_name): Deal with the new `!%d'
4085         suffix. 
4086
4087 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4088
4089         * process.c: quote the argument passed to the shell on windows.
4090
4091 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
4092
4093         * threads.c (mono_alloc_special_static_data): Allow this to be
4094         called during startup.
4095
4096 2004-04-02  Martin Baulig  <martin@ximian.com>
4097
4098         * icall.c
4099         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
4100
4101 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
4102
4103         * icall.c: Fix build.
4104
4105 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
4106
4107         * Makefile.am: Added security.c|h.
4108         * icall.c: Added icall for get_UserName;
4109         * security.c: New file for security related icalls. Added function
4110         get_UserName for System.Environment (fix #56144).
4111         * security.h: New. Header file for security.c
4112
4113 2004-04-02  Dick Porter  <dick@ximian.com>
4114
4115         * icall.c: Deleted the icalls that were obsoleted some time ago
4116         by the ICU string code, and which were mixed into the icall
4117         rearranging.  Fixes bug 55969.
4118
4119         * string-icalls.h: 
4120         * string-icalls.c: Deleted the code that those icalls reference.
4121
4122 2004-04-01  Martin Baulig  <martin@ximian.com>
4123
4124         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
4125
4126         * class.c (mono_class_from_generic_parameter): Don't set 
4127         TYPE_ATTRIBUTE_INTERFACE.
4128         (my_mono_class_from_generic_parameter): Likewise.
4129
4130 2004-04-01  Martin Baulig  <martin@ximian.com>
4131
4132         * loader.c (find_method): Added an optional `MonoClass *ic'
4133         argument to search in a specific interface.
4134         (mono_get_method_constrained): New public function.
4135
4136 2004-04-01  Martin Baulig  <martin@ximian.com>
4137
4138         * reflection.c (mono_image_get_generic_field_token): Use the
4139         `handleref' cache here.
4140
4141 2004-04-01  Martin Baulig  <martin@ximian.com>
4142
4143         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
4144
4145         * reflection.c (create_generic_typespec): Use the `typespec' hash
4146         here, not the `typeref' one.    
4147
4148 2004-04-01  Martin Baulig  <martin@ximian.com>
4149
4150         * class.c (mono_class_inflate_generic_type): Moved the
4151         functionality into a new static inflate_generic_type() which
4152         returns NULL if it didn't do anything.  Only increment the
4153         `mono_stats.inflated_type_count' if we actually inflated
4154         something.
4155         (mono_class_get_full): Check the classes type to see whether we
4156         need to inflate it; also inflate MONO_TYPE_(M)VAR.
4157
4158 2004-04-01  Jackson Harper  <jackson@ximian.com>
4159
4160         * reflection.c: Set culture for assembly references.
4161         
4162 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
4163
4164         * reflection.[ch], icall.[ch], Fix support for pinning variables.
4165
4166 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4167
4168         * assembly.c:
4169         (do_mono_assembly_open): the critical section also covers
4170         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
4171
4172 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4173
4174         * threads.c:
4175         (mono_manage_threads): abort the background threads when finishing.
4176         Fixes bug #47232.
4177
4178 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4179
4180         * gc.c: only close the done_event handle if there was no timeout.
4181         C-ified comments.
4182
4183 2004-03-30  Martin Baulig  <martin@ximian.com>
4184
4185         * icall.c (icall_entries): It's called "System.Activator", not
4186         "System.Activation".    
4187
4188 2004-03-30  Martin Baulig  <martin@ximian.com>
4189
4190         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
4191         (mono_class_create_from_typespec): Likewise.
4192
4193 2004-03-30  Martin Baulig  <martin@ximian.com>
4194
4195         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
4196         `has_ctor_constraint' and `initialized'.
4197
4198 2004-03-30  Martin Baulig  <martin@ximian.com>
4199
4200         * reflection.c (encode_new_constraint): New static function to add
4201         the constructor constraint attribute to a type parameter.
4202         (encode_constraints): Call encode_new_constraint() if necessary.
4203
4204         * reflection.h
4205         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
4206
4207         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
4208         
4209 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
4210
4211         * reflection.c, icall.c: add support for pinning variables. 
4212
4213 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
4214
4215         * marshal.c (mono_marshal_get_managed_wrapper):
4216         init bool local with zero rather than null.
4217
4218 2004-03-29  Martin Baulig  <martin@ximian.com>
4219
4220         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
4221         the "official" behavior here.
4222         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
4223
4224 2004-03-29  Martin Baulig  <martin@ximian.com>
4225
4226         * icall.c: Reflect latest API changes.
4227
4228 2004-03-29  Martin Baulig  <martin@ximian.com>
4229
4230         * loader.c (mono_get_method_from_token): Also call
4231         mono_metadata_load_generic_params () for abstract and interface
4232         methods; replace the type arguments in the method signature with
4233         the ones which are loaded from the metadata.
4234
4235 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
4236
4237         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
4238         of the lock is not the current thread. MS.NET don't do it, in spite of
4239         what the documentation says. See bug #56157.
4240
4241 2004-03-28  Martin Baulig  <martin@ximian.com>
4242
4243         * class.c (mono_class_init): Don't call init_properties() and
4244         init_events() for generic instances; set `prop->parent' when
4245         inflating properties.
4246
4247         * reflection.c (mono_generic_inst_get_object): Call
4248         `mono_class_init (ginst->klass)'.
4249         (mono_type_get_object): Only create a MonoGenericInst if your
4250         generic type is a TypeBuilder.
4251         (do_mono_reflection_bind_generic_parameters): Only set
4252         `ginst->is_dynamic' if our generic type is a TypeBuilder.
4253
4254 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
4255
4256         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
4257         Fixes #56091.
4258
4259 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4260
4261         * icall.c: added Kill_internal icall.
4262         * process.[ch]: added Kill_internal icall.
4263
4264 2004-03-25  Martin Baulig  <martin@ximian.com>
4265
4266         * class.h (MonoStats): Added `generic_instance_count',
4267         `inflated_method_count', `inflated_type_count' and
4268         `generics_metadata_size'.       
4269
4270 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4271
4272         * reflection.c: no warnings now.
4273
4274 2004-03-25  Martin Baulig  <martin@ximian.com>
4275
4276         * class.c (mono_class_get_full): New public function; does a
4277         mono_class_get(), but also takes a `MonoGenericContext *'.
4278
4279         * loader.c (mono_field_from_memberref): Renamed to
4280         `field_from_memberref', made static and added `MonoGenericContext *'
4281         argument.
4282         (mono_field_from_token): Added `MonoGenericInst *' argument.
4283         (method_from_memberef): Likewise.
4284         (mono_get_method_from_token): Likewise.
4285         (mono_get_method_full): New public function; does a
4286         mono_get_method(), but also takes a `MonoGenericContext *'.
4287
4288         * verify.c (mono_method_verify): Get the method's generic context
4289         and pass it to mono_field_from_token(), mono_get_method_full() and
4290         mono_class_get_full().
4291
4292 2004-03-25  Martin Baulig  <martin@ximian.com>
4293
4294         * class.c (mono_class_inflate_generic_type): Take a
4295         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
4296         `MonoGenericMethod *'.
4297
4298 2004-03-25  Martin Baulig  <martin@ximian.com>
4299
4300         * loader.h (MonoMethodInflated): Store the MonoGenericContext
4301         instead of the MonoGenericMethod here.
4302
4303 2004-03-25  Martin Baulig  <martin@ximian.com>
4304
4305         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
4306         each time we create a new MonoGenericInst, we also create a new
4307         context which points back to us.
4308
4309         * class.c (inflate_method): Use `ginst->context' instead of
4310         creating a new context.
4311
4312         * loader.c (method_from_memberref): Use
4313         `klass->generic_inst->context' instead of creating a new context.
4314
4315 2004-03-25  Martin Baulig  <martin@ximian.com>
4316
4317         * class.h (MonoGenericContext): New struct.
4318         (MonoGenericMethod): Removed `generic_inst'.
4319
4320         * class.c (mono_class_inflate_generic_method): Take a
4321         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
4322
4323 2004-03-25  Martin Baulig  <martin@ximian.com>
4324
4325         * loader.h (MonoMethodInflated): New typedef.
4326
4327         * metadata.h (MonoMethodSignature): Removed `gen_method', make
4328         `generic_param_count' consume just 30 bits, added `is_inflated'
4329         and `has_type_parameters' flags (one bit each).
4330
4331         * class.c (mono_class_inflate_generic_method): Create a
4332         MonoMethodInflated instead of a MonoMethodNormal and set
4333         `is_inflated' in the method signature.
4334
4335         * class.h (MonoGenericMethod): Removed `generic_method'.
4336
4337 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
4338
4339         * image.c: Make sure the name of a MonoImage is always an absolute path.
4340           This fixes bug #54415.
4341
4342 2004-03-24  Martin Baulig  <martin@ximian.com>
4343
4344         * class.c (mono_class_setup_vtable): If we're a generic instance,
4345         use our generic type's vtable size.
4346
4347 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
4348
4349         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
4350         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
4351         problems.
4352
4353 2004-03-23  Martin Baulig  <martin@ximian.com>
4354
4355         * class.h (MonoDynamicGenericInst): Added `int count_events' and
4356         `MonoEvent *events'.
4357
4358         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
4359         (typebuilder_icalls): Added "get_event_info"; calls
4360         mono_reflection_event_builder_get_event_info(). 
4361
4362         * reflection.c (mono_reflection_generic_inst_initialize): Added
4363         `MonoArray *events'.
4364         (mono_reflection_event_builder_get_event_info): New function.
4365
4366 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
4367
4368         * object.h: add mono_type_initialization_init
4369
4370         * object.c (mono_runtime_class_init): 
4371         implement class constructor synchronization rules
4372         to cope with threading issues.  
4373         add mono_type_initialization_init
4374
4375         * appdomain.c (mono_runtime_init): call 
4376         mono_type_initialization_init
4377
4378         * class.h: removing initializing field from MonoVTable
4379
4380 2004-03-23  Martin Baulig  <martin@ximian.com>
4381
4382         * class.c (my_mono_class_from_generic_parameter): Use
4383         `param->name' if it's not NULL. 
4384
4385 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
4386
4387         * class.c: do not insert non-virtual methods in the vtable.
4388         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
4389         that means the method is non-virtual. This never would have
4390         happened before.
4391
4392 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
4393
4394         * profiler.c: Added lock for accessing coverage_hash.
4395
4396 2004-03-22  Martin Baulig  <martin@ximian.com>
4397
4398         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
4399         `method->method->signature->generic_param_count != 0' to make it
4400         work for interface methods.
4401
4402 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4403
4404         * process.c: quote the string passed to the shell using g_shell_quote.
4405
4406 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4407
4408         * threads.c:
4409         (mono_threads_manage): don't remove the finalizer thread and self
4410         from the threads hash table so that mono_thread_manage can be called
4411         more than once.
4412
4413 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4414
4415         * process.c: quote the arguments when UseShellExecute is true. Fixes
4416         bug #55790.
4417
4418 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4419
4420         * threads.c: set mono_thread_detach as a cleanup routine for every
4421         thread. This way it's always executed upon thread termination, either
4422         aborted or finished normally. No more xsp hangs!
4423
4424 2004-03-17  Martin Baulig  <martin@ximian.com>
4425
4426         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
4427         `int count_nested' and a `MonoType **nested'.
4428
4429         * reflection.c (mono_reflection_bind_generic_parameters): Moved
4430         most of the functionality into a new static
4431         do_mono_reflection_bind_generic_parameters() and don't take a
4432         `MonoType *nested_in' argument any more.  Don't compute nested
4433         types here.
4434         (mono_reflection_generic_inst_get_nested_types): New public method
4435         to get nested types.
4436
4437         * class.c (mono_class_create_generic): Set `klass->nested_in' if
4438         we're a nested class.
4439
4440         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
4441         mono_reflection_generic_inst_get_nested_types() to compute the
4442         nested types.
4443
4444 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
4445
4446         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
4447         descriptive error message under windows.
4448         
4449 2004-03-17  Martin Baulig  <martin@ximian.com>
4450
4451         * class.c (dup_type): Added `const MonoType *original' argument;
4452         copy the attrs from the original type.
4453
4454 2004-03-17  Martin Baulig  <martin@ximian.com>
4455
4456         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
4457         `m->generic_inst_cache' here.
4458
4459 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
4460
4461         * exception.h exception.c: Add stack_overflow_exception.
4462
4463 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4464
4465         * threadpool.c:
4466         (overlapped_callback): call SetEvent *after* invoking the callback.
4467         No need to call CloseHandle.
4468
4469 2004-03-16  Martin Baulig  <martin@ximian.com>
4470
4471         * reflection.c (mono_image_get_fieldref_token): Take a
4472         `MonoReflectionField *' instead of a `MonoClassField *' and a
4473         `MonoClass *'; store the `MonoReflectionField *' in the hash.
4474
4475 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4476
4477         * appdomain.c: don't add the culture to the filename we're looking for
4478         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
4479
4480 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4481
4482         * locales.c: don't ignore symbols when doing case insensitive compares.
4483         Thanks Dick! Fixes bug #54046.
4484
4485         * threads.c: surround 'threads' usage with enter/leave in
4486         mono_thread_manage.
4487
4488 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
4489
4490         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
4491         implicitly marshalled as [Out]. Fixes #55450.
4492
4493         (mono_marshal_get_runtime_invoke): Zero out the result if there is
4494         an exception.
4495
4496 2004-03-16  Martin Baulig  <martin@ximian.com>
4497
4498         * class.c (mono_class_from_generic_parameter): Use the actual
4499         parameter name. 
4500
4501 2004-03-16  Martin Baulig  <martin@ximian.com>
4502
4503         * reflection.c (type_get_signature_size): New static function.
4504         Compues the size of the type in a method signature.
4505         (method_get_signature_size): New static function; calls
4506         type_get_signature_size() to compute the actual size of the
4507         method's signature.
4508         (method_encode_signature): Use method_get_signature_size() to get
4509         the signature's size rather than using `nparams * 10'.
4510
4511 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4512
4513         * file-io.h: define here WapiOverlapped on windows. I don't want the
4514         regular OVERLAPPED one.
4515
4516         * file-io.c:
4517         * threadpool.c: somehow, BindIoCompletionCallback is not found.
4518         Disabling AIO on windows.
4519
4520 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4521
4522         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
4523         bug #55385.
4524
4525 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4526
4527         * appdomain.c: upgraded corlib version.
4528
4529         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
4530         and BeginWrite. Allow opening files for asynchrnous operations.
4531
4532         * file-io.h: new struct that maps FileStreamAsyncResult.
4533         * icall.c: added new icalls.
4534         * process.[ch]: support setting child process environment variables
4535         and use the SHELL or COMSPEC when UseShellExecute is true.
4536
4537         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
4538         callback for async. IO is here and also BindHandle.
4539
4540         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
4541         from here.
4542
4543 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
4544
4545         * reflection.c (create_custom_attr): Allow len == 0.
4546
4547         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
4548         computation on big-endian machines.
4549
4550 2004-03-13  Martin Baulig  <martin@ximian.com>
4551
4552         * class.h (MonoGenericInst): Added `int count_ifaces'.
4553
4554         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
4555         `ginst->count_ifaces' instead `klass->interface_count' since we
4556         may get called before the vtable is created.
4557
4558         * loader.c (mono_method_get_param_names): If we're a generic
4559         instance, return and don't initialize the class.
4560
4561         * reflection.c (mono_reflection_setup_generic_class): Don't call
4562         ensure_runtime_vtable().
4563         (mono_reflection_bind_generic_parameters): Set
4564         `ginst->count_ifaces'.
4565
4566 2004-03-11  Jackson Harper <jackson@ximian.com>
4567
4568         * icall.c:
4569         * unicode.c:
4570         * unicode.h: Remove unused System.Char icalls.
4571         
4572 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
4573
4574         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
4575         code when we P/Invoke the first library in Windows.Forms, instead
4576         of when we first open the assembly.
4577
4578         * assembly.c: Drop the lookup from here.
4579
4580 2004-03-10  Martin Baulig  <martin@ximian.com>
4581
4582         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
4583         class for properties, fields and events.  Finally fixes #54945.
4584
4585 2004-03-10  Martin Baulig  <martin@ximian.com>
4586
4587         * metadata.c (mono_metadata_class_equal): New static function;
4588         checks whether two generic instances or two generic parameters are
4589         equal.
4590         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
4591         compare classes.        
4592
4593 2004-03-10  Martin Baulig  <martin@ximian.com>
4594
4595         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
4596
4597         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
4598         argument and write it into the `reflection_info' field.
4599
4600         * icall.c
4601         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
4602         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
4603
4604 2004-03-09  Jackson Harper  <jackson@ximian.com>
4605
4606         * char-conversions.h: use 8 bits for numeric data its all we need
4607         * icall.c: numeric data is only 8 bits now.
4608
4609 2004-03-09  Martin Baulig  <martin@ximian.com>
4610
4611         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
4612
4613         * class.c (init_properties, init_events): Initialize the new
4614         `parent' field.
4615
4616         * reflection.c (typebuilder_setup_properties): Likewise.
4617         (typebuilder_setup_events): Likewise.
4618
4619         * reflection.h (MonoEventInfo): Replaced `parent with
4620         `declaring_type' and `reflected_type'.
4621
4622         * icall.c (ves_icall_get_property_info): Distinguish between
4623         declaring and reflected type.
4624         (ves_icall_get_event_info): Likewise.
4625
4626 2004-03-09  Martin Baulig  <martin@ximian.com>
4627
4628         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
4629         (ves_icall_Type_GetField): Correctly set field->klass.
4630
4631 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
4632
4633         * loader.h: Fix warning.
4634
4635 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
4636
4637         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
4638         library routine if present.  Notice that it will still continue
4639         executing even if its missing, for those working on the Gtk#
4640         edition of Windows.Forms.
4641
4642         * assembly.c (do_mono_assembly_open): If loading the
4643         System.Windows.Forms call mono_loader_wini_init.
4644
4645 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
4646
4647         * class.h: Added MonoRemoteClass struct.
4648         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
4649         function for MonoStrings.
4650         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
4651         Added internal call for getting the proxy type.
4652         * marshal.c: Get the type of transparent proxies from its remote_class.
4653         Added methods that generate the IL for type checks and casts:
4654         mono_marshal_get_isinst, mono_marshal_get_castclass, 
4655         mono_marshal_get_proxy_cancast.
4656         * marshal.h: Declaration of the previous new methods.
4657         * object.c: Added new moethods for creating and updating MonoRemoteClass
4658         instances: mono_remote_class, mono_upgrade_remote_class, 
4659         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
4660         * verify.c: FIx transparent_proxy_fields layout.
4661         * appdomain.c: Bump corlib version.
4662
4663 2004-03-04  Jackson Harper  <jackson@ximian.com>
4664
4665         * icall.c: Add icall to access char conversion tables.
4666         * char-conversions.h: Character conversion tables.
4667         * Makefile.am: Add char-conversions.h private header file.
4668         
4669 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
4670
4671         * appdomain.c (unload_thread_main): Increase unloading timeout to
4672         10 sec as a temporary workaround for Nant problems.
4673
4674 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
4675
4676         * gc.c: Add checks for GC_enable and GC_disable.
4677
4678         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
4679         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
4680         (bug #54988).
4681         
4682 2004-02-27  Martin Baulig  <martin@ximian.com>
4683
4684         * reflection.c (mono_reflection_bind_generic_parameters): Take a
4685         `MonoReflectionType *' instead of a `MonoType *'.
4686
4687 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
4688
4689         * gc.c (run_finalize): Avoid finalizing the object representing the
4690         finalizer thread.
4691         (finalizer_thread): Fix warning.
4692
4693 2004-02-25  Martin Baulig  <martin@ximian.com>
4694
4695         * class.c (_mono_class_get_instantiation_name): Added `int offset'
4696         argument for nested types.
4697         (mono_class_create_generic): Added support for nested generictypes.
4698
4699         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
4700         `GList *nested'.
4701
4702         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
4703
4704         * reflection.c (method_encode_signature): Increase the minimum
4705         value of `size' from 10 to 11.
4706         (mono_reflection_bind_generic_parameters): Take `int type_argc'
4707         and `MonoType **types' arguments instead of the `MonoArray
4708         *types'; added `MonoType *nested_in'.  Recursively instantiate
4709         nested classes. 
4710
4711 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
4712
4713         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
4714         stack_overflow_ex members which are used by exception handling.
4715
4716         * appdomain.c (mono_runtime_init): Initialize the new members.
4717
4718         * gc.c (mono_gc_enable): New helper function.
4719         * gc.c (mono_gc_disable): New helper function.
4720
4721 2004-02-23  Martin Baulig  <martin@ximian.com>
4722
4723         * icall.c: I must have been really stupid - make it actually work
4724         this time ;-)
4725
4726 2004-02-23  Martin Baulig  <martin@ximian.com>
4727
4728         * loader.c (method_from_memberref): Only inflate the method if
4729         it's in another klass.
4730
4731 2004-02-23  Martin Baulig  <martin@ximian.com>
4732
4733         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
4734         (mono_class_init): If we're a generic instance and an interface,
4735         compute `class->interface_id'; also create `class->interfaces'
4736         here and inflate them.
4737
4738         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
4739         `ginst->is_open'.
4740         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
4741
4742         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
4743
4744 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
4745
4746         * reflection.c (method_encode_code): Improved the error message
4747         generated by the exception.
4748
4749 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4750
4751         * icall.c: Martin did not do what he said in the ChangeLog for
4752         2004-02-18, but put back the changes for properties and events.
4753         Commenting those changes out again and adding comment to bug #54518.
4754         
4755         * process.c: removed warning.
4756
4757 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
4758
4759         * marshal.c (emit_struct_conv): Print an error message instead of
4760         asserting when a type does not have the StructLayout attribute.
4761
4762 2004-02-20  Martin Baulig  <martin@ximian.com>
4763
4764         * reflection.c (mono_type_get_object): Also use the cache for
4765         generic instances.
4766         (mono_reflection_bind_generic_parameters): Always compute
4767         `ginst->ifaces'.        
4768
4769 2004-02-20  Martin Baulig  <martin@ximian.com>
4770
4771         * class.h (MonoGenericMethod): Removed `klass'.
4772
4773         * class.c (mono_class_inflate_generic_method): Added `MonoClass
4774         *klass' argument.
4775
4776 2004-02-20  Martin Baulig  <martin@ximian.com>
4777
4778         * reflection.c (method_encode_methodspec): Actually use the
4779         uninflated signature for the memberref.
4780
4781 2004-02-20  Martin Baulig  <martin@ximian.com>
4782
4783         * class.h (MonoGenericMethod): Removed `declaring'.
4784
4785         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
4786         is NULL, compute it here.
4787
4788 2004-02-20  Martin Baulig  <martin@ximian.com>
4789
4790         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
4791
4792         * metadata.c (mono_metadata_generic_inst_hash): New method.
4793         (mono_metadata_generic_inst_equal): New method.
4794
4795         * reflection.c (mono_reflection_bind_generic_parameters): Use the
4796         `klass->image->generic_inst_cache' cache to avoid creating
4797         duplicate MonoGenericInst's.
4798
4799         * class.c (mono_class_inflate_generic_type): Use the cache.
4800
4801 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
4802
4803         * object.c: fixed gc descriptor calculation for embedded valuetypes.
4804
4805 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4806
4807         * icall.c: added Socket.WSAIoctl icall.
4808
4809         * socket-io.[ch]: implemented
4810         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
4811
4812 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
4813
4814         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
4815
4816 2004-02-18  Urs C Muff  <umuff@quark.com>
4817
4818         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
4819         this work on PPC and other big-endian architectures.
4820
4821         * debug-mono-symfile.h: Prepended the names of all the `guint32'
4822         fields with an underscore to make sure they're only accessed by
4823         the read32() macro.
4824
4825 2004-02-18  Martin Baulig  <martin@ximian.com>
4826
4827         * icall.c: Put the klass->refclass changes back for methods and
4828         fields, but not for properties and events.  We're currently not
4829         distinguishing between DeclaringType and ReflectedType for
4830         properties and events, that's what caused the regressions.
4831
4832 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4833
4834         * object.c:
4835         (mono_async_result_new): the handle can be NULL.
4836
4837         * threadpool.c: Use an event instead of a semaphore, don't initialize
4838         it until needed. This saves quite a few semaphores from being created
4839         when using the threadpool.
4840
4841 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
4842
4843         * object.c (mono_string_is_interned_lookup): Fix interning of long
4844         strings. Fixes #54473.
4845
4846         * domain.c (ldstr_equal): Optimize if the two strings are equal.
4847
4848         * icall.c: Revert the klass->refclass changes since they introduce
4849         regressions (bug #54518).
4850
4851 2004-02-18  Martin Baulig  <martin@ximian.com>
4852
4853         * class.c (mono_class_init): If we're a generic instance and don't
4854         come from a TypeBuilder, inflate our members here.
4855         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
4856         (mono_class_create_generic): New public method.
4857         (mono_class_initialize_generic): Removed.
4858         (get_instantiation_name): Renamed to
4859         _mono_class_get_instantiation_name() and made it public.
4860
4861 2004-02-18  Martin Baulig  <martin@ximian.com>
4862
4863         * class.c (mono_class_inflate_generic_type): Clear the new
4864         instance's `nginst->klass' when inflating a generic instance.
4865         (mono_class_is_subclass_of): Added (basic) support for generic
4866         instances.
4867
4868 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
4869
4870         * appdomain.h, domain.c: use a MonoCodeManager instead of a
4871         MonoMempool to hold compiled native code.
4872
4873 2004-02-17  Martin Baulig  <martin@ximian.com>
4874
4875         * class.h (MonoDynamicGenericInst): Added `count_properties' and
4876         `properties'.
4877
4878         * reflection.c (mono_reflection_generic_inst_initialize): Added
4879         `MonoArray *properties' argument.
4880
4881         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
4882
4883 2004-02-17  Martin Baulig  <martin@ximian.com>
4884
4885         * icall.c (ves_icall_Type_GetFields): Renamed to
4886         ves_icall_Type_GetFields_internal() and added a
4887         `MonoReflectionType *rtype' argument; pass it to
4888         mono_field_get_object() to set the field's "reflected" type.
4889         (ves_icall_Type_GetConstructors): Likewise.
4890         (ves_icall_Type_GetEvents): Likewise.
4891         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
4892         argument; pass it to mono_method_get_object() to set the method's
4893         "reflected" type.       
4894
4895 2004-02-17  Martin Baulig  <martin@ximian.com>
4896
4897         * class.h (MonoDynamicGenericInst): New type.
4898         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
4899
4900         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
4901         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
4902         (ves_icall_MonoGenericInst_GetFields): New interncall.
4903
4904         * class.c (mono_class_from_generic): Don't call
4905         mono_class_initialize_generic() if this is a dynamic instance;
4906         ie. it's being created from a TypeBuilder.
4907         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
4908         `class->byval_arg.type'.
4909
4910         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
4911         to `inflate_method' and made static.
4912         (mono_reflection_inflate_field): Removed.
4913         (mono_reflection_generic_inst_initialize): New public method.
4914
4915         * reflection.h (MonoReflectionGenericInst): Removed `methods',
4916         `ctors' and `fields'; added `initialized'.
4917
4918 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
4919
4920         * debug-helpers.c (mono_method_full_name): Fix output for empty
4921         namespaces.
4922
4923 2004-02-12  Martin Baulig  <martin@ximian.com>
4924
4925         * class.h (MonoClassField): Added `MonoType *generic_type'.
4926
4927         * reflection.c (mono_image_get_fieldref_token): Added support for
4928         instantiated generic types.
4929         (field_encode_inflated_field): Removed.
4930         (mono_image_get_inflated_field_token): Removed.
4931         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
4932
4933         * reflection.h (MonoReflectionInflatedField): Removed.
4934
4935 2004-02-12  Martin Baulig  <martin@ximian.com>
4936
4937         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
4938         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
4939
4940         * reflection.c (mono_image_get_methodspec_token): Take a
4941         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
4942         (mono_image_create_token): Check whether we have a
4943         `method->signature->gen_method' and call
4944         mono_image_get_methodspec_token() if appropriate.
4945         (inflated_method_get_object): Removed.
4946         (mono_reflection_bind_generic_method_parameters): Return a
4947         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
4948         (mono_reflection_inflate_method_or_ctor): Likewise.
4949
4950         * reflection.h (MonoReflectionInflatedMethod): Removed.
4951
4952 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
4953
4954         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
4955         for custom valuetype marshalling.
4956
4957         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
4958
4959 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4960
4961         * icall.c: fixed WSAGetLastError_internal name.
4962
4963 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
4964
4965         * threads.c (mono_thread_attach): Allow this to be called multiple
4966         times for a thread.
4967         
4968         * threads.c (build_wait_tids): Do not wait for ourselves.
4969
4970         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
4971         appdomain list is empty.
4972
4973         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
4974         memory returned by mono_string_builder_to_utf16, since it points into
4975         managed memory. Thanks to Bernie Solomon for noticing this.
4976
4977         * icall.c: Add AppDomainSetup icalls.
4978
4979         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
4980
4981         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
4982         types.
4983
4984         * reflection.c (reflection_methodbuilder_to_mono_method): Save
4985         custom attributes to the method_aux struct. Also fix array indexes etc.
4986
4987         * loader.c (mono_method_get_param_names): Make dynamic case work again.
4988         
4989 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
4990
4991         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
4992         (both static and runtime) and reduce startup time.
4993
4994 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
4995
4996         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
4997         AsAny marshalling conversion instead of crashing.
4998
4999         * marshal.c: Fix warnings.
5000
5001 2004-02-09  Martin Baulig  <martin@ximian.com>
5002
5003         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
5004
5005         * reflection.h (MonoReflectionInflatedMethod): Removed the
5006         `declaring' field, it's now in the unmanaged MonoGenericMethod.
5007
5008         * reflection.c (method_encode_methodspec): Removed the `method'
5009         argument; we get it from `gmethod->declaring'.
5010         (inflated_method_get_object): Removed the `declaring' argument.
5011
5012 2004-02-09  Martin Baulig  <martin@ximian.com>
5013
5014         * class.h (MonoGenericMethod): New type.
5015         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
5016         `generic_method'.
5017
5018         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
5019         a `MonoGenericMethod *gen_method' one.
5020
5021         * class.c (mono_class_inflate_generic_type): Take an additional
5022         `MonoGenericMethod * argument.  This is only non-NULL if we're
5023         inflating types for a generic method.   
5024         (mono_class_inflate_generic_signature): Renamed to
5025         inflate_generic_signature() and made static; take a
5026         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
5027         (inflate_generic_header): Take a `MonoGenericMethod *' argument
5028         instead of a `MonoGenericInst *' one.
5029         (mono_class_inflate_generic_method): Likewise.
5030
5031         * reflection.c (encode_generic_method_sig): Take a
5032         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
5033         (method_encode_methodspec): Likewise.
5034         (inflated_method_get_object): Likewise. 
5035
5036         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
5037         field with a `MonoGenericMethod *gmethod' one.  
5038
5039 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
5040
5041         * class.h (mono_class_has_parent): add parens to expansion
5042         so you can ! this.
5043
5044 2004-02-08  Martin Baulig  <martin@ximian.com>
5045
5046         * image.h (MonoImage): Removed `generics_cache'.
5047
5048         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
5049         instead of a `MonoType *' argument; removed the `inflate_methods'
5050         argument.  Don't inflate methods here.
5051
5052         * loader.c (find_method): If it's a generic instance, call
5053         mono_class_init() on the `sclass->generic_inst->generic_type'.
5054
5055         * metadata.c (mono_type_size): Make this work on uninitialized
5056         generic instances; call it on the `ginst->generic_type's class.
5057
5058         * reflection.c (mono_reflection_bind_generic_parameters): Call
5059         mono_class_from_generic() to create the `ginst->klass'.
5060
5061 2004-02-08  Martin Baulig  <martin@ximian.com>
5062
5063         * class.h (MonoClass): Changed type of `generic_inst' from
5064         `MonoType *' to `MonoGenericInst *'.
5065
5066 2004-02-08  Martin Baulig  <martin@ximian.com>
5067
5068         * icall.c (ves_icall_Type_BindGenericParameters): Just call
5069         mono_type_get_object(), this is now creating a `MonoGenericInst'
5070         for MONO_TYPE_GENERICINST.
5071         (ves_icall_MonoGenericInst_GetParentType): Likewise.
5072         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
5073
5074         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
5075         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
5076         (inflated_method_get_object): Added `MonoClass *refclass' argument.
5077         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
5078         and reflected type.
5079
5080         * reflection.h (MonoReflectionInflatedMethod): Removed
5081         `declaring_type' and `reflected_type'.
5082
5083 2004-02-08  Martin Baulig  <martin@ximian.com>
5084
5085         * class.h (MonoGenericInst): Added `MonoType *parent' and
5086         `MonoType **ifaces'.
5087
5088         * reflection.h (MonoReflectionGenericInst): Removed `klass',
5089         `parent' and `interfaces'.
5090
5091         * reflection.c (mono_reflection_bind_generic_parameters): Take a
5092         `MonoType *' argument and return a `MonoType *'.
5093
5094         * icall.c
5095         (ves_icall_MonoGenericInst_GetParentType): New interncall.
5096         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
5097
5098 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
5099
5100         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
5101         valuetype marshalling.
5102
5103 2004-02-06  Martin Baulig  <martin@ximian.com>
5104
5105         * class.c
5106         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
5107         (my_mono_class_from_generic_parameter): Likewise.
5108
5109 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
5110
5111         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
5112         contents of the symbol files lazily.
5113
5114         * object.h (MonoThread): Add 'name' and 'name_len' fields.
5115
5116         * threads.h threads.c icall.c: New icalls for getting and setting the
5117         threads name.
5118
5119 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
5120
5121         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
5122         Raise an exception when the domain is not found.
5123
5124 2004-02-03  Martin Baulig  <martin@ximian.com>
5125
5126         * reflection.c (mono_image_get_methodspec_token): Use the
5127         uninflated signature; fixes gen-33.
5128
5129 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
5130
5131         * gc.c threads.c: Make the finalizer thread a normal managed thread so
5132         the finalizer code can use thread functionality.
5133
5134         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
5135         the finalizer thread.
5136
5137         * threads.c: Make some functions more robust.
5138
5139         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
5140
5141         * metadata.h: Add new marshalling conventions.
5142
5143         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
5144         stringbuilder marshalling. Fixes #53700.
5145
5146         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
5147
5148         * reflection.c (mono_image_get_type_info): Save declarative security
5149         info.
5150
5151         * reflection.c (mono_image_get_field_info): Handle uninitialized 
5152         unmanaged fields as well.
5153
5154         * appdomain.c: Bump corlib version.
5155
5156 2004-02-01  Martin Baulig  <martin@ximian.com>
5157
5158         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
5159         method type arguments.  
5160
5161 2004-01-30  Duncan Mak  <duncan@ximian.com>
5162
5163         * marshal.h: Add prototype for
5164         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
5165         and
5166         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
5167         fix the build.
5168
5169 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
5170
5171         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
5172         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
5173
5174 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
5175
5176         * marshal.c (mono_marshal_get_native_wrapper): Add support for
5177         custom marshalling of valuetypes.
5178
5179         * marshal.c: Fix some warnings.
5180
5181 2004-01-29  Martin Baulig  <martin@ximian.com>
5182
5183         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
5184         for generic method parameters.
5185
5186         * reflection.c (method_encode_methodspec): Write the uninflated
5187         signature into the methodspec table.
5188         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
5189         is always the uninflated method.
5190         (reflection_methodbuilder_to_mono_method): Copy the generic
5191         parameters from the MethodBuilder into `header->gen_params'.
5192
5193 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
5194
5195         * class.c (mono_class_from_generic_parameter): Fix warning.
5196
5197 2004-01-27  Martin Baulig  <martin@ximian.com>
5198
5199         * class.c (mono_class_from_generic_parameter): Don't create
5200         `klass->methods' here.  
5201
5202 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
5203
5204         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
5205         extension since it does not work with libraries named lib<FOO>.dll.so.
5206
5207 2004-01-25  Martin Baulig  <martin@ximian.com>
5208
5209         * class.c (mono_class_inflate_generic_type): Added support for
5210         MONO_TYPE_GENERICINST.
5211
5212         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
5213         inflate methods on open constructed types.      
5214
5215 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5216
5217         * object.c: fire ProcessExit event in the root AppDomain after running
5218         Main. Fixes bug #53299.
5219
5220 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
5221
5222         * socket-io.c: include the new socket-wrappers.h header.
5223         Use the wrappers instead of the unix socket functions to make the code
5224         more clear.
5225
5226 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
5227
5228         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
5229
5230         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
5231         Fixes #22532.
5232
5233 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
5234
5235         * reflection.c (mono_image_create_pefile): Handle the case when the
5236         entry point is not a MethodBuilder.
5237
5238         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
5239         field to ReflectionMethod since it is not allways a builder.
5240
5241         * reflection.c (type_get_fully_qualified_name): New helper function to
5242         return the fully qualified name of a type.
5243
5244         * reflection.c (encode_marshal_blob): Always emit the fully qualified
5245         type name for custom marshallers.
5246
5247         * reflection.c (mono_marshal_spec_from_builder): Ditto.
5248
5249         * class.c (mono_class_setup_vtable): If a parent class already 
5250         implements an interface, use the implementing methods from that class.
5251         Fixes #53148.
5252
5253 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5254
5255         * threadpool.c: just return instead of ExitThread to allow for thread
5256         clean up earlier.
5257
5258 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
5259
5260         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
5261         when closing resource modules.
5262
5263         * reflection.c (mono_image_create_pefile): Handle the case when the
5264         entry point is not a MethodBuilder.
5265
5266         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
5267         field to ReflectionMethod since it is not allways a builder.
5268
5269 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
5270
5271         * marshal.c (mono_marshal_get_managed_wrapper): 
5272         mono_marshal_alloc takes native int so CONV_I
5273         the arg for 64bits.
5274
5275 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
5276
5277         * reflection.c (fixup_cattrs): New function to fixup the methoddef
5278         tokens in the cattr table. Fixes #53108.
5279
5280 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5281
5282         * loader.c: don't trim ".dll" before looking up in the config file.
5283         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
5284
5285 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
5286
5287         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
5288         Return the module which contains the resource as well.
5289         (ves_icall_System_Reflection_Module_Close): New icall.
5290
5291         * appdomain.c: Bump corlib version number.
5292
5293         * image.c (mono_image_addref): New public function.
5294
5295         * assembly.c: Call mono_image_addref.
5296
5297         * reflection.c (mono_module_get_object): Increase reference count of 
5298         the image.
5299
5300         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
5301         Fixes #22532.
5302
5303         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
5304         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
5305         proper exceptions on DllImport problems.
5306
5307 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
5308
5309         * class.c, metadata.c: eliminate CSIZE macro.
5310
5311 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
5312
5313         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
5314         * object.h: Added async_callback field in MonoAsyncResult.
5315         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
5316         * verify.c: Added async_callback in MonoAsyncResult layout.
5317
5318 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
5319
5320         * reflection.c (mono_reflection_get_custom_attrs): Add support
5321         for Modules.
5322
5323 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
5324
5325         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
5326         marshalling.
5327         (mono_marshal_method_from_wrapper): Add null pointer check.
5328
5329 2004-01-16  Martin Baulig  <martin@ximian.com>
5330
5331         * debug-mono-symfile.h: Set version number to 36 and reflect
5332         latest symbol writer changes.
5333
5334 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
5335
5336         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
5337         multi-dimensional arrays.
5338         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
5339         (mono_class_from_mono_type): Use bounded_array_class_get.
5340         
5341         * class.c (mono_bounded_array_class_get): New function which takes
5342         a 'bounded' bool argument to distinguish vectors from one dimensional
5343         arrays.
5344
5345         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
5346         bounded_array_class_get if the array has bounds.
5347
5348         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
5349         Search modules loaded using AssemblyBuilder:AddModule as well.
5350
5351 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5352
5353         * appdomain.c: increased corlib version.
5354         * filewatcher.c: removed g_print.
5355         * icall.c:
5356         (get_property_info): only allocate what is actually requested.
5357         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
5358
5359 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5360
5361         * Makefile.am: added filewatcher.[ch]
5362         * filewatcher.[ch]: FileSystemWatcher runtime support.
5363         * icall.c: added new FSW icalls.
5364
5365 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
5366
5367         * string-icalls.c: fix stringbuilder regression as suggested by
5368         Iain McCoy <iain@mccoy.id.au>.
5369
5370 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
5371
5372         * process.c (process_read_stringtable_block): Recognize '007f' as
5373         a language neutral stringtable block.
5374
5375 2004-01-12  Patrik Torstensson
5376
5377         * object.h (MonoStringBuilder) : Changed layout to support our
5378         new stringbuilder class.
5379         * marshal.c: Change marshalling to support the new layout of 
5380         string builder.
5381         * appdomain.c: increased version number because new layout of
5382         string builder.
5383
5384 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
5385
5386         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
5387         assembly name as an string instead of an AssemblyName, since it is
5388         easier to extract info from it.
5389
5390         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
5391         the culture subdirectories too. Fixes #52231.
5392
5393 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5394
5395         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
5396         It takes 2 new parameters with an optional name for the method to look
5397         for and case ignoring info.
5398
5399         * threadpool.c: removed unused variable.
5400
5401 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5402
5403         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
5404         It takes 2 new parameters with an optional name for the property to look
5405         for and case ignoring info.
5406         Fixes bug #52753.
5407
5408 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
5409
5410         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
5411         Fix #52451.
5412
5413 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5414
5415         * appdomain.c:
5416         * assembly.c: escape the uri before passing it to g_filename_from_uri.
5417         Fixes bug #52630.
5418
5419 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
5420
5421         * reflection.c: Add support for more than one unmanaged resource.
5422
5423         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
5424         in field->def_value, as done in all other cases.
5425
5426         * reflection.c (mono_reflection_get_custom_attrs): Add support for
5427         TypeBuilders.
5428
5429         * reflection.c (mono_reflection_create_runtime_class): Remove 
5430         errorneous assignment to klass->element_class, since it is already
5431         done in mono_reflection_setup_internal_class.
5432
5433 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5434
5435         * gc.c: added missing LeaveCriticalSection.
5436         * icall.c: indented a couple of lines.
5437         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
5438         if we call EndInvoke inside a callback. Fixes bug #52601.
5439
5440 2004-01-07  Martin Baulig  <martin@ximian.com>
5441
5442         * mono-debug-debugger.h
5443         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
5444
5445 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
5446
5447         * appdomain.c: Use messages in NotImplementedException.
5448
5449         * exception.c (mono_get_exception_not_implemented): Now this takes
5450         a message argument.
5451
5452         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
5453         exception instead of g_asserting an aborting when something is not
5454         implemented.
5455
5456         Add some inline docs.
5457
5458 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
5459
5460         * reflection.h: Update after changes to object layout.
5461
5462         * reflection.c: Implement saving of unmanaged aka win32 resources.
5463
5464         * appdomain.c: Bump version number.
5465
5466         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
5467         Handle missing domains gracefully.
5468
5469 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
5470
5471         * file-io.c : On Windows, there are much more invalid_path_chars.
5472
5473 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
5474
5475         * class.h, object.c: prepare for GetType () speedup.
5476
5477 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
5478
5479         * profiler.c: workaround for --profile null reference exception on
5480           cygwin. Patch by Patrik Torstensson.
5481
5482 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
5483
5484         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
5485         make work for unaligned access.
5486
5487 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
5488
5489         * class.c: small cleanup (class->fields [i] -> field).
5490         * image.c: check address of metadata is valid.
5491
5492 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
5493
5494         * assembly.h assembly.c (mono_assembly_loaded): New public function to
5495         search the list of loaded assemblies.
5496
5497         * reflection.c (mono_reflection_type_from_name): Use 
5498         mono_assembly_loaded instead of mono_image_loaded.
5499
5500         * reflection.c: Fix warnings.
5501
5502 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
5503
5504         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
5505         is dynamic. This is needed since an assembly can contain both dynamic and
5506         non-dynamic images.
5507
5508         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
5509         assembly->dynamic.
5510
5511         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
5512
5513         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
5514         to store modules loaded using AddModule.
5515
5516         * reflection.c (mono_image_fill_file_table): Generalize this so it works
5517         on Modules.
5518
5519         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
5520
5521         * reflection.c (mono_image_fill_export_table_from_module): New function to
5522         fill out the EXPORTEDTYPES table from a module.
5523
5524         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
5525         into a separate function. Also handle loaded non-dynamic modules.
5526
5527         * reflection.c (mono_image_basic_init): Fix memory allocation.
5528
5529         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5530
5531         * assembly.c (mono_assembly_load_references): Make this public.
5532
5533 2003-12-19  Martin Baulig  <martin@ximian.com>
5534
5535         * class.c (mono_class_initialize_generic): Made this static, take
5536         a `MonoGenericInst *' instead of a `MonoClass *'.
5537         (mono_class_from_generic): Call mono_class_initialize_generic()
5538         unless we're already initialized or being called from
5539         do_mono_metadata_parse_generic_inst().
5540
5541         * class.h (MonoGenericInst): Added `initialized' and
5542         `init_pending' flags.
5543
5544         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
5545         `mono_class_init (gklass)' or mono_class_initialize_generic()
5546         here; set `generic_inst->init_pending' while parsing the
5547         `type_argv'.
5548
5549 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
5550
5551         * locales.c: include string.h for memxxx prototypes
5552
5553 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
5554
5555         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
5556         constructor when accessing literal fields.
5557
5558 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
5559
5560         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5561
5562         * reflection.c (assembly_add_resource_manifest): New function to fill
5563         the MANIFESTRESOURCE table.
5564
5565         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
5566
5567         * reflection.h: Update to changes in class layout.
5568
5569         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
5570         Reenable call to mono_runtime_is_shutting_down ().
5571
5572         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
5573         determine if the runtime is shutting down.
5574
5575 2003-12-16  Jackson Harper <jackson@ximian.com>
5576
5577         * icall.c: comment out call to mono_runtime_is_shutting_down to
5578         fix build.
5579         
5580 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
5581
5582         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
5583         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
5584
5585 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
5586
5587         * reflection.c: move definition of swap_with_size
5588         to before its first call
5589
5590 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
5591
5592         * appdomain.c (mono_runtime_is_shutting_down): New public function.
5593
5594         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
5595         icall.
5596
5597         * object.c: Fix warnings.
5598
5599         * icall.c (ves_icall_Type_Get...): Only consider inherited static
5600         members if FlattenHierarchy is set.
5601
5602         * reflection.c (mono_image_add_decl_security): New function to emit
5603         declarative security.
5604
5605         * reflection.h reflection.c: Add support for declarative security.
5606
5607         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
5608         
5609 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
5610
5611         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
5612         
5613         * appdomain.c verify.c: Moved corlib version checking into its own
5614         function in appdomain.c since it needs to create vtables etc.
5615
5616 2003-12-13  Patrik Torstensson <p@rxc.se>
5617
5618         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
5619         instead of unwrapped server.
5620
5621 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
5622
5623         * verify.c (check_corlib): Fix field index.
5624
5625 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
5626
5627         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
5628         GetGacPath icall.
5629
5630 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
5631
5632         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
5633         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
5634         cope with sizeof(size_t) != sizeof(guint32).
5635
5636 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5637
5638         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
5639         in case of failure.
5640
5641 2003-12-10  Mark Crichton <crichton@gimp.org>
5642
5643         * icall.c: removed the GetNonZeroBytes.  We now handle this case
5644         in managed code.
5645
5646         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
5647
5648 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
5649
5650         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
5651         marked as deleted.
5652
5653 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
5654
5655         * verify.c (check_corlib): Handle the case when the version field is 
5656         initialized by a static constructor.
5657
5658 2003-12-08  Patrik Torstensson  <p@rxc.se>
5659
5660     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
5661
5662 2003-12-08  Martin Baulig  <martin@ximian.com>
5663
5664         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
5665         a MonoReflectionGenericParameter, also take the parameter index
5666         and name as arguments.
5667         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
5668         (ves_icall_MonoGenericParam_initialize): New interncall.
5669         (ves_icall_Type_make_byref_type): New interncall.
5670
5671         * reflection.h (MonoReflectionGenericParam): Derive from
5672         MonoReflectionType, not just from MonoObject.  Added `refobj' and
5673         `index' fields.
5674
5675         * reflection.c (mono_reflection_define_generic_parameter): Create
5676         and return a new MonoReflectionGenericParam; don't initialize the
5677         constraints here.
5678         (mono_reflection_initialize_generic_parameter): New public method;
5679         initializes the constraints and creates the `param->pklass'.
5680
5681 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
5682
5683         * reflection.h reflection.c: Use the new fields 'num_types', 
5684         'num_fields' and 'num_methods' to track the number of types etc.
5685
5686         * verify.c (check_corlib): Check corlib version number.
5687
5688 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
5689
5690         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
5691         function works on all methods.
5692
5693 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
5694
5695         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
5696         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
5697         the custom_type_info flag of the transparent proxy.
5698         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
5699         objects that supports IRemotingTypeInfo.
5700         * object.h: Added custom_type_info field in transparent proxy.
5701
5702 2003-12-06  Martin Baulig  <martin@ximian.com>
5703
5704         * class.c (mono_class_create_from_generic): Removed.
5705         (mono_class_from_generic): Check `ginst->klass' before doing
5706         anything else.  This is important to fully support "recursive"
5707         generic types.
5708
5709         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
5710         empty `generic_inst->klass' before doing anything else.
5711
5712 2003-12-06  Dick Porter  <dick@ximian.com>
5713
5714         * verify.c: 
5715         * object.h:
5716         * icall.c:
5717         * locales.c: Use C structs to access class fields.  Don't do a
5718         conversion between MonoString and UChar because both are
5719         platform-endian UTF-16.  Compare now takes startindex and count
5720         parameters.  Add a char overload for IndexOf.  Speed up the
5721         invariant string IndexOf.
5722
5723 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
5724
5725         * Makefile.am (monosn_LDADD): Fix parallel build.
5726
5727 2003-12-04  Martin Baulig  <martin@ximian.com>
5728
5729         * icall.c
5730         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
5731         (ves_icall_Type_make_array_type): New interncall.       
5732
5733 2003-12-04  Martin Baulig  <martin@ximian.com>
5734
5735         * locales.c: also change it in the !HAVE_ICU case.
5736
5737 2003-12-04  Dick Porter  <dick@ximian.com>
5738
5739         * icall.c:
5740         * locales.c: construct_compareinfo is now in CompareInfo, not
5741         CultureInfo.
5742
5743 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
5744
5745         * image.c (mono_image_load_file_for_image): Cache loaded images in the
5746         image->files array.
5747
5748         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
5749         table as well.
5750
5751         * assembly.c (mono_assembly_load_references): Only load references
5752         once.
5753
5754         * class.c (mono_class_from_name): Avoid linear search of the 
5755         EXPORTEDTYPE table.
5756
5757         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
5758
5759 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
5760
5761         * image.h (MonoImage): Add 'field_cache' field.
5762
5763         * loader.c (mono_field_from_token): Cache field lookups.
5764         
5765         * reflection.c (mono_module_get_object): Fix name property.
5766
5767         * icall.c (ves_icall_get_enum_info): Update after changes to 
5768         mono_metadata_get_constant_index ().
5769
5770         * icall.c: Get rid of get_type_info icall, use a separate icall for
5771         each type property to avoid needless memory allocations. Fixes #51514.
5772
5773         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
5774         to avoid needless binary searches.
5775
5776         * class.c (class_compute_field_layout): Move the initialization of
5777         field->def_value to mono_class_vtable ().
5778
5779         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
5780         non-corlib types.
5781
5782         * object.c (mono_object_allocate): Make it inline.
5783
5784         * object.c (mono_object_allocate_spec): Make it inline.
5785         
5786 2003-12-02  Dick Porter  <dick@ximian.com>
5787
5788         * locales.c (create_NumberFormat): NumberFormatInfo construction.
5789         Patch by Mohammad DAMT (mdamt@cdl2000.com).
5790
5791 2003-12-01  Dick Porter  <dick@ximian.com>
5792
5793         * threads.c: Fix signature and call in CreateMutex and
5794         CreateEvent.
5795
5796 2003-12-01  Dick Porter  <dick@ximian.com>
5797
5798         * icall.c: 
5799         * locales.c: Implement string compares and searching
5800
5801         * object.h: Add extra Thread field
5802
5803 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
5804
5805         * reflection.c (fixup_method): Add support for MonoCMethod.
5806
5807 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
5808
5809         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
5810
5811         * reflection.c (assembly_name_to_aname): Allow extra characters in
5812         assembly names. Fixes #51468.
5813
5814 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
5815
5816         * exception.c (mono_exception_from_name_domain): New helper function.
5817
5818         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
5819         exception object in the correct domain.
5820
5821         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
5822         formatting + make a copy a the input data.
5823
5824         * loader.c (mono_get_method_from_token): Methods which contain
5825         native code do not have entries in the ImplMap.
5826
5827         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
5828         Thanks to Gonzalo for spotting this.
5829         
5830         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
5831         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
5832
5833         * assembly.h (mono_assembly_load_from): Split the second part of 
5834         assembly loading into a new public function.
5835
5836         * exception.h (mono_get_exception_bad_image_format): New function.
5837
5838 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
5839
5840         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
5841         Enumerate all modules inside a dynamic assembly. Fixes #51293.
5842         
5843         * icall.c: Add new icall for creating dynamic methods.
5844
5845         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
5846
5847         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
5848
5849         * reflection.c (mono_reflection_create_dynamic_method): New icall to
5850         create a dynamic method.
5851
5852         * reflection.c (resolve_object): New helper function.
5853
5854         * reflection.c: Generalize ReflectionMethodBuilder and the functions
5855         which manipulate it so they can also work on dynamic methods.
5856
5857         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
5858         creating the MonoReflectionMethodAux structure if it is not needed.
5859         
5860         * reflection.h verify.c: Update after changes to object layout.
5861
5862         * reflection.c (method_builder_encode_signature): Fix compilation on
5863         gcc 2.95.x.
5864
5865 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
5866
5867         * appdomain.h: Added support for context static fields. Added static_data
5868           field to MonoAppContext and renamed thread_static_fields to a more
5869           generic special_static_fields in MonoAppDomain, since it can now contain
5870           context static fields.
5871         * domain.c: Updated hashtable name.
5872         * object.c: Replaced field_is_thread_static() for a more generic
5873           field_is_special_static() which also checks for context static attribute.
5874           In mono_class_vtable(), added support for static context fields.
5875         * threads.c: Changed methods that manage thread static fields to more
5876           generic methods so they can be reused both for thread and context static
5877           data.
5878         * threads.h: Declared some new methods.
5879
5880 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
5881
5882         * reflection.h: Update after changes to the managed types.
5883
5884         * reflection.c (encode_custom_modifiers): New helper function.
5885
5886         * reflection.c (method_encode_signature): Emit custom modifiers.
5887
5888         * reflection.c (field_encode_signature): Emit custom modifiers.
5889
5890 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
5891
5892         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
5893
5894         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
5895         implementation.
5896
5897         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
5898         icall.
5899
5900         * object.c (mono_field_get_value_object): New function.
5901
5902         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
5903         specific.
5904
5905 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
5906
5907         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
5908         return a preallocated out-of-memory exception instance.
5909
5910         * object.c (out_of_memory): Use the new function.
5911
5912         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
5913         flag is before the custom modifiers. Fixes #49802.
5914
5915 2003-11-16  Martin Baulig  <martin@ximian.com>
5916
5917         * class.c (mono_class_is_open_constructed_type): Implemented the
5918         MONO_TYPE_GENERICINST case.
5919
5920 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
5921
5922         * assembly.c (mono_assembly_fill_assembly_name): New function to
5923         fill out the MonoAssemblyName structure.
5924         (mono_assembly_open): Use the new function.
5925
5926         * icall.c (fill_reflection_assembly_name): New helper function.
5927
5928         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
5929         new function.
5930
5931         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
5932
5933 2003-11-15  Martin Baulig  <martin@ximian.com>
5934
5935         * class.c (mono_class_is_open_constructed_type): New public
5936         function; checks whether a type is an open constructed type,
5937         ie. whether it still contains type parameters.
5938         (mono_class_inflate_generic_type): If we're a type parameter and
5939         the inflated type is also a MONO_TYPE_(M)VAR, return the original
5940         type.
5941
5942         * class.h (MonoGenericInst): Added `guint32 is_open'.
5943
5944         * loader.c (method_from_methodspec): Check whether we're an open
5945         or closed constructed type and set `ginst->is_open'.
5946
5947         * reflection.c (mono_reflection_bind_generic_parameters): Check
5948         whether we're an open or closed constructed type and set
5949         `ginst->is_open'.
5950         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
5951         from open constructed types.
5952
5953 2003-11-15  Martin Baulig  <martin@ximian.com>
5954
5955         * reflection.c (mono_reflection_bind_generic_parameters): If we're
5956         a generic instance (instead of a generic type declaration) with
5957         unbound generic parameters, bind them to our actual types.
5958
5959 2003-11-14  Martin Baulig  <martin@ximian.com>
5960
5961         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
5962
5963         * reflection.c (mono_reflection_bind_generic_parameters): If we're
5964         an interface type, populate `res->interfaces' with instantiated
5965         versions of all the interfaces we inherit.
5966
5967 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
5968
5969         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
5970         when MONO_PATH is set but doesn't contain the install dir.
5971
5972 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5973
5974         * icall.c:
5975         (ves_icall_Type_GetInterfaces): don't return an interface twice when
5976         it's also implemented in base classes. Fixes bug #50927.
5977
5978 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
5979
5980         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
5981         if this method is called from a finalizer. Fixes #50913.
5982
5983 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
5984
5985         * threads.c: Implement VolatileRead/VolatileWrite
5986
5987         * icall.c: Add new icalls for VolatileRead/VolatileWrite
5988
5989 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
5990
5991         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
5992         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
5993         2.95.3.
5994
5995         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
5996         from Peter Ross (pro@missioncriticalit.com).
5997         
5998 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
5999
6000         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
6001
6002 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
6003
6004         * assembly.c (mono_assembly_load_references): Disable check because it
6005         triggers on older corlibs which lots of people have.
6006
6007 2003-11-12  Jackson Harper  <jackson@ximian.com>
6008
6009         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
6010         load corlib.dll if mscorlib.dll is not found.
6011         * assembly.h: Remove corlib name define.
6012         * class.c:
6013         * domain.c:
6014         * image.c: Change corlib name to mscorlib.
6015         
6016 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
6017
6018         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
6019
6020 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
6021
6022         * appdomain.h: Added loader_optimization here to sync with the C#
6023         code, and add disallow_binding_redirects field.
6024
6025 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
6026
6027         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
6028
6029         * reflection.c (mono_image_build_metadata): Fix crash on modules
6030         with no types.
6031
6032         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
6033
6034         * icall.c (ves_icall_get_method_info): Return callingConvention as
6035         well.
6036
6037         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
6038         namespaces from the EXPORTEDTYPE table as well.
6039
6040         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
6041         from all modules inside the assembly.
6042         
6043 2003-11-11  Martin Baulig  <martin@ximian.com>
6044
6045         * reflection.c (mono_reflection_bind_generic_parameters): Make
6046         this work for interfaces.
6047
6048 2003-11-11  Martin Baulig  <martin@ximian.com>
6049
6050         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
6051
6052 2003-11-11  Martin Baulig  <martin@ximian.com>
6053
6054         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
6055         "MonoInflatedMethod" and "MonoInflatedCtor".
6056
6057 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
6058
6059         * reflection.c (resolution_scope_from_image): Use the assembly table
6060         from the manifest module, since other modules don't have it.
6061
6062         * debug-helpers.c (mono_type_full_name): New helper function.
6063
6064         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
6065
6066         * image.c (mono_image_load_file_for_image): New public function which
6067         is a replacement for the load_file_for_image in class.c.
6068
6069         * assembly.c (mono_assembly_load_module): A wrapper for the function
6070         above which does assembly association and reference loading too.
6071
6072         * class.c (mono_class_from_name): Call mono_assembly_load_module.
6073
6074 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6075
6076         * appdomain.c: not all of the attributes for the full assembly name
6077         are required and the order doesn't matter. Fixes bug #50787.
6078
6079 2003-11-10  Dick Porter  <dick@ximian.com>
6080
6081         * locales.c: Use platform-endian UTF16
6082
6083 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
6084
6085         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
6086         
6087 2003-11-10  Martin Baulig  <martin@ximian.com>
6088
6089         * metadata.c
6090         (mono_metadata_load_generic_params): Make this actually work.
6091
6092         * reflection.c (mono_reflection_bind_generic_parameters): If our
6093         parent is a generic instance, pass all the `types' to it, no
6094         matter whether it has the same number of type parameters or not.
6095
6096 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
6097
6098         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
6099
6100         * assembly.c (mono_assembly_load_references): Move the image<->assembly
6101         assignment code to this function so it gets called recursively for all
6102         modules.
6103
6104         * image.c (load_modules): Remove the assembly assignment since it is
6105         now done by mono_assembly_load_references.
6106         
6107         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
6108         Add 'module' argument.
6109         (mono_module_get_types): New helper function.
6110         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
6111
6112 2003-11-08  Martin Baulig  <martin@ximian.com>
6113
6114         * class.c (mono_class_inflate_generic_method): Interface method
6115         don't have a header.
6116
6117         * reflection.c (mono_image_get_methodspec_token): Take an
6118         additional `MonoGenericInst *' argument instead of reading it from
6119         the header; this is necessary to support interfaces.
6120         (mono_image_create_token): Pass the `MonoGenericInst *' from the
6121         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
6122         (inflated_method_get_object): Take an additional `MonoGenericInst *'
6123         argument.
6124
6125         * reflection.h (MonoReflectionInflatedMethod): Added
6126         `MonoGenericInst *ginst'.
6127
6128 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
6129
6130         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
6131
6132 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
6133
6134         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
6135
6136 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
6137
6138         * reflection.c 
6139         (reflection_methodbuilder_from_method_builder):
6140         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
6141         initialize a ReflectionMethodBuilder structure.
6142         (mono_image_get_methodbuilder_token):
6143         (mono_image_get_ctorbuilder_token): New functions to emit memberref
6144         tokens which point to types in another module inside the same assembly.
6145
6146         * reflection.c: Use the new helper functions.
6147         
6148         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
6149
6150         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
6151         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
6152
6153         * reflection.c (resolution_scope_from_image): Emit a moduleref if
6154         neccesary.
6155
6156         * reflection.c (mono_image_build_metadata): Emit metadata only for the
6157         current module. Emit the manifest only for the main module.
6158
6159         * reflection.c (mono_image_create_token): Add assertion when a 
6160         memberref needs to be created.
6161
6162         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
6163
6164         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
6165         larger buffer for the custom attribute blob. Fixes #50637.
6166         
6167 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6168
6169         * threadpool.c: notify listener on async processing handles after
6170         invoking the async callback. Thanks to Zoltan.
6171
6172 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
6173
6174         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
6175         avoid code duplication.
6176
6177         * reflection.h (MonoDynamicImage): New type which is currently unused,
6178         but will be used through the ref.emit code in place of 
6179         MonoDynamicAssembly.
6180
6181         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
6182         object layout.
6183
6184         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
6185         a MonoDynamicImage instead of just a MonoImage.
6186         
6187         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
6188         icalls to ModuleBuilder but keep their semantics, so they will work
6189         with moduleb->assemblyb. This will change later.
6190         
6191 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
6192
6193         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
6194         object layout.
6195
6196         * reflection.c (mono_image_build_metadata): Avoid creation of a default
6197         main module, since it is now done by the managed code.
6198
6199 2003-11-03  Martin Baulig  <martin@ximian.com>
6200
6201         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
6202         `ginst->klass' here.
6203         (method_encode_methodspec): Don't use the `ginst->generic_method's
6204         klass if it's a generic instance, use `ginst->klass' in this case.
6205
6206 2003-11-03  Martin Baulig  <martin@ximian.com>
6207
6208         * reflection.c (mono_image_get_generic_method_param_info):
6209         Removed, use mono_image_get_generic_param_info() instead.
6210         (mono_image_get_type_info): Write the GenericParam table before
6211         the Method table.  This is neccessary because in the GenericParam
6212         table, type parameters of the class (ie. '!0' etc.) must come
6213         before the ones from its generic methods (ie. '!!0' etc).
6214
6215 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
6216
6217         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
6218
6219 2003-11-02  Martin Baulig  <martin@ximian.com>
6220
6221         * reflection.c (create_generic_typespec): Take a
6222         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
6223         the generic parameters from it.
6224
6225 2003-11-02  Martin Baulig  <martin@ximian.com>
6226
6227         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
6228         instead of a `MonoClassField *' since we just need the type.
6229         (create_generic_typespec): New static function.  Creates a
6230         TypeSpec token for a generic type declaration.
6231         (mono_image_get_generic_field_token): New static function.
6232         (mono_image_create_token): If we're a FieldBuilder in a generic
6233         type declaration, call mono_image_get_generic_field_token() to get
6234         the token.
6235
6236 2003-11-02  Martin Baulig  <martin@ximian.com>
6237
6238         * reflection.h
6239         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
6240         `MonoReflectionGenericInst *declaring_type' and
6241         `MonoReflectionGenericInst *reflected_type' fields.
6242
6243         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
6244         `MonoReflectionGenericInst *declaring_type' and a
6245         `MonoReflectionGenericInst *reflected_type' argument instead of a
6246         single `MonoReflectionGenericInst *type' one.  Set
6247         `res->declaring_type' and `res->reflected_type' from them.
6248         (mono_reflection_inflate_field): Likewise.      
6249
6250 2003-11-02  Martin Baulig  <martin@ximian.com>
6251
6252         * class.c (mono_class_setup_vtable): Don't store generic methods
6253         in the vtable.  
6254
6255 2003-11-02  Martin Baulig  <martin@ximian.com>
6256
6257         * reflection.h (MonoReflectionGenericInst): Added
6258         `MonoReflectionType *declaring_type'.
6259
6260         * reflection.c (mono_reflection_bind_generic_parameters): Use
6261         `if (tb->parent)' instead of `klass->parent'.
6262
6263 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
6264
6265         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
6266         with an empty ASSEMBLY table.
6267
6268         * reflection.c (mono_image_build_metadata): Avoid using the same loop
6269         variable in the inner and outer loops.
6270
6271 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
6272
6273         * metadata.h (mono_metadata_make_token): Put parentheses around macro
6274         argument.
6275
6276         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
6277         
6278         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
6279         icalls. Instead, do everything in managed code. This is needed since
6280         it is hard to restore the original domain etc. in unmanaged code in the
6281         presence of undeniable exceptions.
6282
6283         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
6284         New icalls to push and pop appdomain refs.
6285
6286 2003-10-31  Martin Baulig  <martin@ximian.com>
6287
6288         * class.c (inflate_generic_type): Renamed to
6289         mono_class_inflate_generic_type() and made it public.
6290
6291         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
6292         New interncall.
6293
6294         * loader.c (mono_field_from_memberref): Also set the retklass for
6295         typespecs.
6296
6297         * fielder.c (mono_image_get_inflated_field_token): New static
6298         method; creates a metadata token for an inflated field.
6299         (mono_image_create_token, fixup_method): Added support for
6300         "MonoInflatedField".
6301         (fieldbuilder_to_mono_class_field): New static function.
6302         (mono_reflection_inflate_field): New public function.
6303
6304         * reflection.h
6305         (MonoReflectionGenericInst): Added `MonoArray *fields'.
6306         (MonoReflectionInflatedField): New typedef.     
6307
6308 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
6309
6310         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
6311         for Solaris and other platforms without s6_addr16
6312
6313 2003-10-30  Martin Baulig  <martin@ximian.com>
6314
6315         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
6316         argument instead of two.
6317         (mono_class_inflate_generic_signature): Likewise.
6318         (inflate_generic_header): Likewise.
6319         (mono_class_inflate_generic_method): Likewise.  In addition, if
6320         `ginst->klass' is set, it becomes the new `method->klass'.
6321
6322         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
6323         field.
6324
6325         * reflection.c (encode_generic_method_sig): Write a 0xa as the
6326         first byte. [FIXME]
6327         (method_encode_methodspec): If we have generic parameters, create
6328         a MethodSpec instead of a MethodRef.
6329         (fixup_method): Added support for "MonoInflatedMethod" and
6330         "MonoInflatedCtor".
6331         (mono_image_create_token): Added support for "MonoInflatedMethod"
6332         and "MonoInflatedCtor".
6333         (inflated_method_get_object): New static function; returns a
6334         managed "System.Reflection.MonoInflatedMethod" object.
6335         (mono_reflection_bind_generic_method_parameters): Return a
6336         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
6337         (mono_reflection_inflate_method_or_ctor): Likewise.
6338         (mono_image_get_generic_method_param_info): Initialize unused
6339         fields to zero.
6340         (mono_image_get_generic_param_info): Likewise.
6341
6342         * reflection.h (MonoReflectionInflatedMethod): New public
6343         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
6344         "S.R.MonoInflatedCtor" classes.
6345
6346         * loader.c (method_from_memberref): If we're a TypeSpec and it
6347         resolves to a generic instance, inflate the method.
6348
6349 2003-10-28  Dick Porter  <dick@ximian.com>
6350
6351         * object.c (mono_runtime_run_main): Convert command-line arguments
6352         into utf8, falling back to the user's locale encoding to do so.
6353
6354 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
6355
6356         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
6357         at this time.
6358
6359         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
6360
6361         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
6362         up icalls at method definition time. Partially fixes #33569.
6363
6364 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
6365
6366         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
6367         marshalling of arrays. Fixes #50116.
6368
6369         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
6370
6371         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
6372         points to a vtable in the dying appdomain.
6373
6374         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
6375         listeners into unmanaged code inside the lock.
6376
6377         * object.c (mono_class_vtable): Turn off typed allocation in non-root
6378         domains and add some comments.
6379
6380 2003-10-25  Martin Baulig  <martin@ximian.com>
6381
6382         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
6383
6384         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
6385
6386         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
6387         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
6388         currently parsing.  Create the generic class and store it in
6389         `generic_inst->klass' before parsing the type arguments.  This is
6390         required to support "recursive" definitions; see mcs/tests/gen-23.cs
6391         for an example.
6392         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
6393         to support recursive typespec entries.
6394
6395         * class.c (mono_class_setup_parent): If our parent is a generic
6396         instance, we may get called before it has its name set.
6397         (mono_class_from_generic): Splitted into
6398         mono_class_create_from_generic() and mono_class_initialize_generic().
6399
6400 2003-10-25  Martin Baulig  <martin@ximian.com>
6401
6402         * icall.c (ves_icall_Type_BindGenericParameters): Return a
6403         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
6404         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
6405         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
6406
6407         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
6408         (create_typespec): Likewise.
6409         (mono_reflection_bind_generic_parameters): Return a
6410         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
6411         (mono_reflection_inflate_method_or_ctor): New public function.
6412
6413         * reflection.h (MonoReflectionGenericInst): New typedef.        
6414
6415 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
6416
6417         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
6418         inside the domain lock. Fixes #49993.
6419         
6420         * object.c (mono_class_vtable): When typed allocation is used, 
6421         allocate vtables in the GC heap instead of in the mempool, since the
6422         vtables contain GC descriptors which are used by the collector even
6423         after the domain owning the mempool is unloaded.
6424
6425         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
6426
6427         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
6428         reflect what it does. Also invalidate mempools instead of freeing
6429         them if a define is set.
6430
6431         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
6432         of the appdomain.
6433         
6434         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
6435         hold the finalizable objects in this domain.
6436
6437         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
6438         appdomain.
6439
6440         * appdomain.c (mono_domain_set): New function to set the current
6441         appdomain, but only if it is not being unloaded.
6442
6443         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
6444         appdomain which is being unloaded.
6445         
6446         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
6447         unloading of the root appdomain.
6448
6449         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
6450         icall to execute a method in another appdomain. Intended as a 
6451         replacement for InternalSetDomain, which can confuse the code 
6452         generation in the JIT.
6453
6454         * appdomain.c (mono_domain_is_unloading): New function to determine
6455         whenever an appdomain is unloading.
6456
6457         * appdomain.c (mono_domain_unload): New function to correctly unload
6458         an appdomain.
6459
6460         * assembly.c (mono_assembly_load_references): Check that an assembly
6461         does not references itself.
6462
6463         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
6464         domain manually, it asks the finalizer thread to do it, then waits for
6465         the result. Also added a timeout.
6466
6467         * icall.c: Register the new icalls.
6468
6469         * threads.h threads.c: Export the mono_gc_stop_world and 
6470         mono_gc_start_world functions.
6471         
6472         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
6473         function to fill out the mempool with 0x2a.
6474
6475 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
6476
6477         * reflection.h (MonoReflectionMethodAux): New structure to store
6478         information which is rarely used, thus is not in the MonoMethod
6479         structure.
6480
6481         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
6482         store the aux info.
6483
6484         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
6485         and marshalling info into the aux structure.
6486
6487         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
6488         from the aux structure.
6489
6490         * loader.c (mono_method_get_param_names): Retrieve the param names from
6491         the aux structure.
6492         
6493 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
6494
6495         * exception.h exception.c: Add AppDomainUnloadedException && fix 
6496         warning.
6497
6498 2003-10-21  Dick Porter  <dick@ximian.com>
6499
6500         * socket-io.c
6501         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
6502         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
6503
6504 2003-10-21  Martin Baulig  <martin@ximian.com>
6505
6506         * reflection.c (mono_reflection_bind_generic_parameters):
6507         `klass->parent' is NULL for interfaces.
6508
6509 2003-10-21  Martin Baulig  <martin@ximian.com>
6510
6511         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
6512
6513 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
6514
6515         * exception.c (mono_exception_from_name_msg): New helper function for
6516         creating exceptions and initializing their message field.
6517
6518         * exception.c: Simplify functions using the new helper.
6519
6520         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
6521         New function.
6522
6523         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
6524         mono_raise_exception, since otherwise gcc doesn't generate the function
6525         epilog for raise_exception, confusing the stack unwinding in the JIT.
6526         Fixes #45043.
6527
6528         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
6529         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
6530         Fixes #49499.
6531
6532 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6533
6534         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
6535         utf8.
6536
6537 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
6538
6539         * icall.c: Removed GetUninitializedObject method because
6540           AllocateUninitializedClassInstance does the same.
6541
6542 2003-10-18  Martin Baulig  <martin@ximian.com>
6543
6544         * class.c (inflate_generic_signature): Renamed to
6545         mono_class_inflate_generic_signature() and made it public.
6546         (my_mono_class_from_generic_parameter): New static function; if we
6547         don't already have the generic parameter's MonoClass, create a
6548         very simple one which is just used internally in the runtime and
6549         not passed back to managed code.
6550
6551         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
6552
6553         * metadata.h (MonoMethodSignature): Moved the
6554         `MonoGenericParam *gen_params' to the MonoMethodHeader.
6555         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
6556
6557         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
6558         ves_icall_MonoMethod_GetGenericArguments(); this is now an
6559         interncall on the MonoMethod class, not on MethodInfo.
6560         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
6561         calling mono_reflection_bind_generic_method_parameters() directly.
6562
6563         * loader.c (mono_method_get_signature): If this is a MethodSpec;
6564         return the already computed `method->signature'.
6565         (method_from_methodspec): New static function to load a method
6566         from a MethodSpec entry.
6567         (mono_get_method_from_token): Call the new method_from_methodspec()
6568         for MethodSpec tokens.  
6569         (mono_get_method_from_token): If we're a generic method, load the
6570         type parameters.
6571
6572         * reflection.c (mono_image_get_memberref_token): Allow
6573         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
6574         table.
6575         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
6576         (mono_image_create_token): First check whether it's a generic
6577         method (so we'd need to create a MethodSpec), then do the other
6578         two alternatives.
6579         (mono_reflection_bind_generic_method_parameters): Return a
6580         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
6581         called directly from the interncall.
6582
6583 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
6584
6585         * reflection.c (load_public_key): Move loading of the public key
6586         into managed code.
6587
6588         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
6589
6590         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
6591         fields.
6592
6593         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
6594         culture, hash_alg and public_key. Fixes #49555.
6595
6596 2003-10-17  Martin Baulig  <martin@ximian.com>
6597
6598         * class.h (MonoGenericInst): Moved this declaration here and added
6599         `MonoMethod *generic_method'.
6600
6601         * icall.c
6602         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
6603         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
6604
6605         * metadata.c (mono_metadata_type_equal): Two types of
6606         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
6607         index; ie. don't compare the address of the `MonoGenericParam'
6608         structure.
6609         (mono_metadata_load_generic_params): Removed the `MonoMethod
6610         *method' argument.
6611
6612         * metadata.h (MonoGenericInst): Moved declaration to class.h.
6613         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
6614
6615         * reflection.c (method_encode_signature): Encode the number of
6616         generic parameters.
6617         (encode_generic_method_sig): New static function.
6618         (method_encode_methodspec): New static function; creates an entry
6619         in the MethodSpec table for a generic method.
6620         (mono_image_get_methodspec_token): New static function.
6621         (mono_image_create_token): Call mono_image_get_methodspec_token()
6622         for generic methods.
6623         (mono_reflection_bind_generic_method_parameters): New public
6624         function.  Instantiates a generic method.
6625
6626 2003-10-16  Martin Baulig  <martin@ximian.com>
6627
6628         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
6629         *gen_params' here from MonoMethodHeader.
6630
6631         * metadata.c (mono_metadata_parse_method_signature): If we have
6632         generic parameters, initialize `method->gen_params' and then set
6633         the correct `type->data.generic_param' in all the parameters.
6634
6635 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
6636
6637         * threads.c (mono_threads_get_default_stacksize): New function to 
6638         return the default stacksize.
6639
6640         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
6641         termination of the finalizer thread, since the previous method had
6642         race conditions. Fixes #49628.
6643
6644         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
6645         as for the other managed threads.
6646
6647 2003-10-16  Martin Baulig  <martin@ximian.com>
6648
6649         * class.c (inflate_generic_signature): Copy `generic_param_count'
6650         and `gen_params'.
6651
6652         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
6653         New interncall.
6654
6655         * metadata.c (mono_metadata_parse_method_signature): Actually set
6656         the `method->generic_param_count' here.
6657         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
6658
6659 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
6660
6661         * object.h: Add a new field to TypedRef to simplify the implementation
6662         of the REFANY opcodes in the JIT.
6663
6664         * icall.c: Make use of the new field.
6665
6666         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
6667         dynamically.
6668
6669 2003-10-15  Martin Baulig  <martin@ximian.com>
6670
6671         * class.c (mono_class_from_gen_param): Renamed to
6672         mono_class_from_generic_parameter() and moved most of the
6673         functionality from mono_reflection_define_generic_parameter()
6674         here; ie. we create a "real" class here.
6675         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
6676         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
6677         previously been called.
6678
6679         * class.h (MonoGenericParam): Moved the declaration of this struct
6680         here from metadata.h and added `MonoMethod *method'.
6681
6682         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
6683         interncall.
6684
6685         * loader.c (mono_get_method_from_token): If we have any generic
6686         parameters, call mono_metadata_load_generic_params() to read them
6687         from the MONO_TABLE_GENERICPAR.
6688
6689         * metadata.c (mono_metadata_load_generic_params): Added
6690         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
6691
6692         * metadata.h (MonoMethodSignature): Replaced
6693         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
6694         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
6695
6696         * reflection.c (mono_reflection_define_generic_parameter): Moved
6697         most of the functionality into the new
6698         mono_class_from_generic_parameter(); set the `method' field if
6699         we're a method parameter.       
6700
6701 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
6702
6703         * marshal.c (emit_struct_conv): if native size is 0
6704         emit no code.
6705
6706 2003-10-14  Martin Baulig  <martin@ximian.com>
6707
6708         * icall.c: The generics API has changed in the spec since it was
6709         added to System.Type; these modifications make it match the spec
6710         again.
6711         (ves_icall_Type_GetGenericParameters): Renamed to
6712         `ves_icall_Type_GetGenericArguments'.
6713         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
6714         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
6715         `ves_icall_MonoType_get_HasGenericArguments'.
6716         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
6717         `ves_icall_MonoType_get_IsGenericParameter'.
6718         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
6719         this is no interncall anymore.
6720         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
6721         `ves_icall_TypeBuilder_get_IsGenericParameter'.
6722
6723 2003-10-14  Martin Baulig  <martin@ximian.com>
6724
6725         * reflection.c (mono_reflection_bind_generic_parameters): Also
6726         inflate generic methods if we're reading the class from IL.
6727
6728 2003-10-13  Martin Baulig  <martin@ximian.com>
6729
6730         * reflection.c (mono_reflection_define_generic_parameter): This
6731         method isn't called directly from the icall anymore; take a
6732         `MonoReflectionAssemblyBuilder *' so we can use this for type and
6733         method generic parameters.
6734         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
6735         (method_builder_encode_signature): Encode generic parameters.
6736         (mono_image_get_method_info): Write generic params to the
6737         MONO_TABLE_GENERICPARAM table.
6738
6739         * reflection.h (MonoReflectionMethodBuilder): Added
6740         `MonoArray *generic_params'.
6741
6742         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
6743
6744         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
6745         wrapper for mono_reflection_define_generic_parameter().
6746         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
6747
6748 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
6749
6750         * marshal.h: Add missing function to fix build.
6751
6752         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
6753         the SetLastError pinvoke attribute.
6754
6755         * marshal.c (mono_marshal_set_last_error): New helper function called
6756         by the generated code.
6757         
6758         * marshal.c (mono_mb_emit_branch): New helper function.
6759
6760         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
6761
6762         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
6763         classes as parameters and return values of delegates. Fixes #29256. 
6764
6765 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
6766
6767         * locales.c: use gint32 in non HAVE_ICU case
6768
6769 2003-10-11  Martin Baulig  <martin@ximian.com>
6770
6771         * mono-debug.c (mono_debug_add_method): Added a workaround for
6772         bug #48591.
6773
6774 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
6775
6776         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
6777         delegates passed to native code must use the STDCALL calling 
6778         convention. Fixes #35987.
6779
6780 2003-10-10  Martin Baulig  <martin@ximian.com>
6781
6782         * class.c (inflate_generic_type): If we're inflating for a generic
6783         type instance (and not for a generic method), return
6784         MONO_TYPE_MVAR unchanged.
6785
6786 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6787
6788         * string-icalls.c: Join ignores null strings in the source array.
6789         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
6790         * threads.c: GetAvailableTheads is slightly more accurate.
6791
6792 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
6793
6794         * threads.h threads.c : add mono_threads_set_default_stacksize
6795         and pass default to CreateThread calls.
6796
6797 2003-10-09  Dick Porter  <dick@ximian.com>
6798
6799         * icall.c:
6800         * locales.h:
6801         * locales.c: Internal calls for constructing CultureInfo and
6802         related objects from libicu (if its available.)
6803
6804 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
6805
6806         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
6807
6808 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6809
6810         * threadpool.c: added an argument to async_invoke_thread that is the
6811         item to process, pass the MonoAsyncResult to the thread start function
6812         when creating a new thread. This way we don't need to acquire any lock
6813         when we're creating a new thread. Readded a semaphore for faster
6814         response times (instead of that Sleep i added).
6815
6816 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
6817
6818         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
6819         get daylight change dates better on Windows, fix handling
6820         of platforms without tm_gmtoff.
6821
6822 2003-10-06  Martin Baulig  <martin@ximian.com>
6823
6824         * class.c (inflate_generic_method): Renamed to
6825         mono_class_inflate_generic_method() and made public.
6826         (mono_class_init): Don't inflate the generic methods here.
6827         (mono_class_from_generic): Added `gboolean inflate_methods'
6828         argument.  Inflate the methods here.
6829
6830         * loader.c (mono_method_get_param_names): Ignore instances of
6831         generic types for the moment.
6832
6833         * reflection.c (fixup_method): Added support for inflated methods.
6834         (mono_image_create_token): Use mono_image_get_methodref_token()
6835         for inflated methods.
6836         (mono_custom_attrs_from_param): Ignore instances of generic types
6837         for the moment.
6838         (mono_reflection_bind_generic_parameters): New public function.
6839         Moved all the functionality from
6840         ves_icall_Type_BindGenericParameters() here and added support for
6841         dynamic types.
6842         (mono_reflection_define_generic_parameter): Initialize
6843         `klass->methods' here.
6844
6845         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
6846         functionality into mono_reflection_define_generic_parameter().
6847         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
6848         TypeBuilder, return that TypeBuilder.
6849
6850 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6851
6852         * appdomain.c: removed mono_delegate_semaphore.
6853
6854         * threadpool.c:
6855         (mono_thread_pool_add): moved hash table creation inside and the thread 
6856         creation outside of the critical region.
6857         (mono_thread_pool_finish): removed obsolete code.
6858         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
6859         continue or exit the thread depending on the queue.
6860
6861 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
6862
6863         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
6864         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
6865         handle more bool marshalling options
6866
6867 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
6868
6869         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
6870         arrays of structs. Also add a more descriptive error message when
6871         a structure member is marshalled as LPArray.
6872
6873 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
6874
6875         * marshal.c (mono_marshal_get_native_wrapper): Add support for
6876         marshalling arrays of complex types. Fixes #29098. Also remove an
6877         usused and incomplete function.
6878
6879 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
6880
6881         * gc.c: report heap_size - free_bytes as total memory allocated
6882         (bug#49362).
6883
6884 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
6885
6886         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
6887         fix timezone handling problems on Windows.
6888         
6889         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
6890         asserts when the year is outside the range handled by ms the functions.
6891
6892         * class.c (setup_interface_offsets): If the class is an interface,
6893         fill out its interface_offsets slot.
6894
6895 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6896
6897         * threadpool.c: mark threadpool threads as background.
6898
6899 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
6900
6901         * decimal.c - define DECINLINE to nothing if not using GCC
6902
6903 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
6904
6905         * assembly.c: More refcount fixes.
6906
6907 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6908
6909         * string-icalls.c: if we're not trimming, return the same string.
6910         When not splitting, don't create a new string.
6911
6912 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6913
6914         * image.c:
6915         (mono_image_open): increment the ref_count inside the critical section.
6916
6917 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
6918
6919         * image.c (mono_image_open): Fix reference counting bug.
6920
6921 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
6922
6923         * marshal.c (mono_marshal_type_size) struct alignment changed for 
6924         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
6925         64bits. Avoid leak in mono_marshal_get_native_wrapper when
6926         mono_lookup_pinvoke_call throws.        
6927
6928 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
6929
6930         * reflection.c (mono_reflection_parse_type): Fix #49114.
6931
6932         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
6933         temporary workaround for cygwin header problem.
6934
6935         * object.c (mono_object_isinst): Synchronize this with the code
6936         generated by the JIT for casts.
6937
6938 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
6939
6940         * reflection.c (encode_type): Fix #38332.
6941
6942 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
6943
6944         * marshal.c (mono_marshal_method_from_wrapper): New function to return
6945         the original method from the wrapper method.
6946
6947 2003-09-25  Martin Baulig  <martin@ximian.com>
6948
6949         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
6950         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
6951         (ves_icall_Type_get_IsGenericInstance): New interncall.
6952
6953 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
6954
6955         * object.c: fix cast warning in big endian code.
6956
6957 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
6958
6959         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
6960         
6961 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6962
6963         * assembly.c: don't call check_env from mono_assembly_load. It's
6964         already done once in mono_assemblies_init and may cause headaches when
6965         multiple threads are loading assemblies.
6966
6967 2003-09-19  Martin Baulig  <martin@ximian.com>
6968
6969         * reflection.c (mono_reflection_define_generic_parameter): Don't
6970         allocate `klass->methods', set `klass->flags' to
6971         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
6972
6973 2003-09-18  Martin Baulig  <martin@ximian.com>
6974
6975         * class.c (mono_class_init): Don't create `class->methods' if it's
6976         already initialized.
6977
6978         * metadata.c (mono_metadata_load_generic_params): Make this
6979         actually work.
6980
6981         * reflection.c (mono_reflection_define_generic_parameter): Set
6982         parent class and interfaces from the constraints.
6983
6984         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
6985         to keep this struct in sync with the declaration in TypeBuilder.cs.
6986
6987 2003-09-17  Martin Baulig  <martin@ximian.com>
6988
6989         * metadata.h (MonoType): Replaced the data's `int type_param'
6990         field with `MonoGenericParam *generic_param'.
6991         (MonoGenericParam): Added `MonoClass *klass'.
6992
6993         * class.c (mono_class_from_gen_param): Removed the
6994         `MonoImage *image' and `int type_num' arguments.
6995
6996         * metadata.c (mono_metadata_parse_generic_param): New static
6997         method; creates a MonoGenericParam which just contains the index.
6998         (do_mono_metadata_parse_type): Call
6999         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
7000         MONO_TYPE_MVAR.
7001
7002         * reflection.c (mono_image_typedef_or_ref): Generic type
7003         parameters may be in the same assembly, but never use a typedef
7004         for them.
7005         (mono_reflection_define_generic_parameter): We're now creating a
7006         "real" class for the type parameter; it's now safe to call
7007         mono_class_from_mono_type() on the class'es type, it'll do the
7008         right thing.
7009
7010 2003-09-16  Martin Baulig  <martin@ximian.com>
7011
7012         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
7013         `symfile->range_entry_size' and `symfile->class_entry_size' here;
7014         the `symfile' data structure must be fully initialized before it
7015         gets added to the table.
7016
7017 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
7018
7019         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
7020
7021         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
7022         class init trampolines.
7023
7024 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
7025
7026         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
7027         to the built-in profiler to turn off time and allocation profiling
7028         respectively.
7029
7030 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
7031
7032         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
7033         g_direct_equal.
7034
7035         * debug-helpers.c (mono_method_full_name): Print the wrapper type
7036         in human readable form.
7037
7038 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
7039
7040         * reflection.c icall.c: Fixed warnings.
7041
7042         * image.c (load_class_names): Use a temporary hash table to hold the
7043         namespaces in order to avoid doing many string comparisons.
7044
7045         * image.h: Fix typo.
7046
7047         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
7048         Pass NULL instead of g_direct_equal to the GHashTable constructor 
7049         since the NULL case is short-circuited inside g_hash_table_lookup, 
7050         leading to better performance.  
7051
7052         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
7053         obtain the first custom attribute for a given index. Depends on the
7054         CustomAttribute table being sorted by the parent field.
7055
7056         * reflection.c (mono_custom_attrs_from_index): Use the new function 
7057         for better performance.
7058
7059 2003-09-07  Martin Baulig  <martin@ximian.com>
7060
7061         * class.c (mono_class_init): If we're a generic instance, inflate
7062         all our methods instead of loading them from the image.
7063         (mono_class_from_generic): Set `class->methods = gklass->methods'.
7064
7065 2003-09-07  Martin Baulig  <martin@ximian.com>
7066
7067         * mono-debug-debugger.c: Added support for constructors.
7068
7069 2003-09-06  Martin Baulig  <martin@ximian.com>
7070
7071         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
7072         New interncall.
7073
7074         * reflection.c (mono_reflection_setup_generic_class): Call
7075         ensure_runtime_vtable() to create the vtable.
7076
7077 2003-09-05  Martin Baulig  <martin@ximian.com>
7078
7079         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
7080         MONO_TYPE_MVAR.
7081
7082 2003-09-04  Martin Baulig  <martin@ximian.com>
7083
7084         * reflection.c (mono_reflection_define_generic_parameter): Generic
7085         parameters start with zero.
7086
7087 2003-09-04  Martin Baulig  <martin@ximian.com>
7088
7089         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
7090
7091         * reflection.h (MonoReflectionGenericParam): New typedef.
7092         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
7093         the generic parameters from the managed TypeBuilder.
7094
7095         * reflection.c (mono_reflection_define_generic_parameter): New function.
7096         (mono_reflection_create_runtime_class): Encode generic parameters.
7097         (mono_reflection_setup_generic_class): New function; this is
7098         called after adding adding all generic params to the TypeBuilder.
7099         (encode_type): Added MONO_TYPE_VAR.
7100
7101 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
7102
7103         * class.h class.c (mono_class_needs_cctor_run): Moved this method
7104         here from the JIT.
7105
7106         * assembly.h assembly.c: Moved the AOT loading code into an assembly
7107         load hook.
7108
7109 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
7110
7111         * reflection.h reflection.c class.h class.c: Delete duplicate 
7112         definition of mono_type_get_name () from reflection.c and export the
7113         one in class.c.
7114
7115         * class.c: Class loading fixes from Bernie Solomon 
7116         (bernard@ugsolutions.com).
7117
7118         * reflection.c: Endianness fixes from Bernie Solomon 
7119         (bernard@ugsolutions.com).
7120         
7121 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
7122
7123         * assembly.h assembly.c: Define a file format version for AOT
7124         libraries.
7125         
7126         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
7127
7128         * appdomain.h (MonoJitInfo): New field to determine whenever the
7129         code is domain neutral.
7130         
7131 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
7132
7133         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
7134
7135 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
7136
7137         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
7138         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
7139         Avoid caching the result since strings must be domain specific. Fixes
7140         #48050.
7141
7142 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
7143
7144         * marshal.c (mono_marshal_init): Make this callable multiple times
7145         since it is hard to find a correct place to call it.
7146
7147         * object.c (mono_runtime_class_init): Execute static constructors in
7148         the correct appdomain.
7149
7150         * image.c (build_guid_table): Handle the case when multiple images have
7151         the same GUID.
7152
7153 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7154
7155         * icall.c: added a couple of icalls for System.Web.
7156
7157 2003-08-28  Martin Baulig  <martin@ximian.com>
7158
7159         * icall.c (ves_icall_Type_BindGenericParameters): Use
7160         `klass->generic_inst' instead of `&klass->byval_arg' in the
7161         mono_type_get_object() call.  The returned type must be
7162         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
7163
7164 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
7165
7166         * NOTES: New file.
7167
7168         * object.c (mono_class_proxy_vtable): Make it thread safe.
7169
7170         * pedump.c: Fix warning.
7171
7172         * object.c appdomain.h: Get rid of metadata_section. 
7173         It is no longer needed and it was causing deadlocks with domain->lock.
7174
7175         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
7176
7177 2003-08-26  Martin Baulig  <martin@ximian.com>
7178
7179         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
7180
7181 2003-08-26  Martin Baulig  <martin@ximian.com>
7182
7183         * pedump.c (main): Call mono_metadata_init(),
7184         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
7185         and mono_loader_init().
7186
7187 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
7188
7189         * loader.h: Add missing include to fix build.
7190
7191         * image.h: mono_image_load_references is no more.
7192
7193         * assembly.c: Reworked assembly loading to make it really thread safe.
7194         After these changes, the assembly returned by mono_assembly_open is
7195         fully initialized, i.e. all its references assemblies are loaded.
7196
7197         * assembly.c (mono_image_load_references): Renamed to 
7198         mono_assembly_load_references, and made private, since clients no
7199         longer need to call it.
7200
7201         * class.c: Removed calls to mono_assembly_load_references, since it was
7202         a source of deadlocks.
7203
7204         * loader.h loader.c class.h class.c: Protect data structures using a 
7205         new lock, the loader lock.
7206
7207         * class.c (mono_class_setup_vtable): Create temporary hash tables and
7208         GPtrArrays only when needed.
7209
7210         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
7211         into empty structures by mcs. Fixes pinvoke7.cs.
7212         
7213         * domain.c (mono_init): Call a new initialization function.
7214
7215         * appdomain.c (mono_runtime_init): Call the new initializer function
7216         of the marshal module.
7217
7218         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
7219         inserted into empty structures by mcs. Fixes pinvoke7.cs.
7220
7221         * marshal.h marshal.c: Added locks around the wrapper caches to make
7222         this module thread safe.
7223
7224         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
7225         this argument. Fixes pinvoke1.exe.
7226
7227 2003-08-25  Lluis Sanchez <lluis@ximian.com>
7228
7229         * object.h: Added call_type field to MonoMethodMessage and the corresponding
7230         enumeration of values. Removed fields to store remote call output values in
7231         MonoAsyncResult. Not needed any more.
7232         * object.c: Initialize call_type and async_result fields in mono_message_init.
7233         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
7234         dispatching the message.
7235         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
7236         async call to finish. To do it use a message with EndInvoke call type.
7237
7238 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
7239
7240         * loader.h loader.c (mono_method_hash_marhal_info): New function which
7241         determines whenever a method has marshalling info.
7242
7243 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7244
7245         * assembly.c: fix the build on windows.
7246
7247 2003-08-22 Lluis Sanchez <lluis@ximian.com>
7248
7249         * object.cs: Fixed bug #47785.
7250
7251 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
7252
7253         * string-icalls.c (StringReplace): If their are no occurances of
7254         the old string found return a reference to the supplied
7255         string. This saves some memory and matches MS behavoir.
7256         
7257 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7258
7259         * socket-io.c: fixed compilation for systems that define AF_INET6
7260         and don't define SOL_IP/SOL_IPV6.
7261
7262 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
7263
7264         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
7265         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
7266
7267         * rawbuffer.c rawbuffer.h: Make this module thread safe.
7268
7269         * domain.c: Make this module thread safe.
7270
7271         * domain.c (mono_init): Call new initialization function.
7272
7273         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
7274         reference types too. Fixes #38812.
7275
7276         * image.c (mono_image_init): Fixed warnings.
7277
7278         * class.c (mono_class_from_typeref): Handle assembly load failure
7279         correctly.
7280
7281         * appdomain.c (add_assemblies_to_domain): Handle the case when
7282         the references of an assembly are not yet loaded.
7283
7284         * metadata.c image.c assembly.c: Moved initialization of global
7285         variables to a separate function called at startup since lazy 
7286         initialization of these variables is not thread safe.
7287         
7288         * image.c assembly.c: Made this module thread safe by adding locks in 
7289         the appropriate places.
7290
7291         * domain.c (mono_init): Call the new initialization functions of the
7292         three modules.
7293
7294 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
7295
7296         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
7297           make a direct call. It is proxy's work to make the call asynchronous.
7298           mono_delegate_end_invoke(): If the targe is a proxy, just collect
7299           the return values.
7300         * object.cs: mono_method_call_message_new(): read AsyncResult and
7301           state object from parameters list, if this info is requested.
7302         * object.h: Added fields to store remote call output values in
7303           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
7304
7305 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
7306
7307         * object.h: add needed fields to MonoThread.
7308         * threads.c, threads.h: allow registering a function to cleanup data
7309         allocated per thread by the JIT.
7310
7311 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
7312
7313         * loader.h: portability fix by Bernie Solomon
7314         * <bernard@ugsolutions.com>.
7315
7316 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
7317
7318         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
7319         return a MonoArray. This simplifies the code and also ensures that
7320         the cache allways contains an object reference as a value.
7321
7322         * icall.c (ves_icall_get_parameter_info): Simplified using the new
7323         function.
7324
7325 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7326
7327         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
7328         fixes a problem with byte ordering when getting the address family for
7329         a socket.
7330
7331 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
7332
7333         * .cvsignore: Added monosn.
7334
7335         * reflection.h reflection.c loader.c: Added support for parameter
7336         marshalling to dynamically created types. Fixes #47295.
7337
7338 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
7339
7340         * rand.c: remove useless warnings.
7341
7342 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
7343
7344         * class.c: implemented ldtoken for methods and fieldrefs.
7345
7346 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7347
7348         * threadpool.c: when mono_async_invoke was called, no one took care of
7349         monitoring the queue. So if the method invoked took some time and we
7350         got new async invoke requests after 500 ms (the thread created waited
7351         that long in WaitForSingleObject), the new async invoke was not called
7352         until the previous one finished.
7353
7354         This is fixed now. Thanks to Totte for helping with it.
7355
7356 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7357
7358         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
7359
7360 2003-08-11  Martin Baulig  <martin@ximian.com>
7361
7362         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
7363
7364 2003-08-06  Martin Baulig  <martin@ximian.com>
7365
7366         * mono-debug-debugger.c: Added support for static fields,
7367         properties and methods.
7368
7369 2003-08-06  Martin Baulig  <martin@ximian.com>
7370
7371         * mono-debug-debugger.c: Don't store the MonoString's vtable to
7372         make this work for applications with multiple application domains.
7373
7374 2003-08-04  Martin Baulig  <martin@ximian.com>
7375
7376         * mono-debug-debugger.c: Completely reworked the type support; the
7377         most important thing is that we're now just using one single
7378         `MonoType' instance per type.
7379
7380 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
7381
7382         * mono-endian.h, mono-endian.c, icall.c: Added icall
7383         ves_icall_System_Double_AssertEndianity to assert double word endianity
7384         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
7385
7386 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
7387
7388         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
7389         support, icalls and fixes.
7390
7391 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
7392
7393         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
7394         classes that are a punctuation character in .NET is not the same a
7395         g_unichar_ispunct.
7396
7397 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
7398
7399         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
7400
7401 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
7402
7403         * icall.c: Add new MemCopy internalcall.
7404         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
7405         Simplified code; It is not necessary to handle all the cases here,
7406         as the C# code takes care of it.  Only handle the case of the name
7407         resource embedded into the assembly.
7408
7409         Changed signature to return the data pointer and the size of the
7410         data. 
7411
7412 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
7413
7414         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
7415         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
7416
7417 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
7418
7419         * socket-io.c: ignore EINTR error in select.
7420
7421 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
7422
7423         * class.h, class.c: removed unused subclasses field in MonoClass.
7424
7425 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
7426
7427         * icall.c: improve fix of get_base_definition(). If the parent class
7428           doesn't have the mehod, look at the parent of the parent.
7429         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
7430           to check if a parameter is an in or out parameter
7431           (PARAM_ATTRIBUTE_IN is not set by default).
7432           mono_method_return_message_restore(): Use mono_class_value_size to
7433           get the size of a value type. mono_type_stack_size (parameterType)
7434           does not return the correct value if parameterType is byRef.
7435           mono_load_remote_field(), mono_load_remote_field_new(),
7436           mono_store_remote_field(), mono_store_remote_field_new():
7437           raise exception if the remote call returns an exception.
7438
7439 2003-07-28  Martin Baulig  <martin@ximian.com>
7440
7441         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
7442         method.  This is a wrapper around mono_runtime_invoke() which
7443         boxes the instance object if neccessary.
7444
7445 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
7446
7447         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
7448         metadata.h, row-indexes.h, verify.c: first cut of generics support.
7449
7450 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
7451
7452         * icall.c: disable mcs bug workaround.
7453
7454 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
7455
7456         * object.c (mono_runtime_class_init): Take the metadata_section
7457         mutex before obtaining the domain mutex.
7458
7459         * appdomain.h: Added definition of metadata_section mutex here. 
7460
7461         * object.c: define metadata_mutex here.
7462
7463 2003-07-24  Ravi Pratap  <ravi@ximian.com>
7464
7465         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
7466         fixed.
7467
7468 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
7469
7470         * reflection.c: Fix bug #46669
7471
7472 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7473
7474         * exception.c:
7475         * exception.h:
7476         * icall.c:
7477         * object.h: fill in the type name for TypeLoadException.
7478
7479 2003-07-23  Ravi Pratap  <ravi@ximian.com>
7480
7481         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
7482         relationship between TypeBuilders while compiling corlib) and bug
7483         45993 (Array types returned from the runtime while compiling
7484         corlib were from the loaded corlib).
7485
7486 2003-07-22  Martin Baulig  <martin@ximian.com>
7487
7488         * mono-debug-debugger.c: Reworked the type support a bit more;
7489         distinguish between types and classes.
7490
7491 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
7492
7493         * icall.c: add IsArrayImpl icall.
7494
7495 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
7496
7497         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
7498         initializing real_size only once. Also fix bug #46602.
7499
7500 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
7501
7502         * object.c: Renamed mono_metadata_section to metadata_section.
7503
7504 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
7505
7506         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
7507           empty array if the type is an array. Fixed.
7508           ves_icall_MonoMethod_get_base_definition: if the base method
7509           is abstract, get the MethodInfo from the list of methods of
7510           the class.
7511         * reflection.c: ParameterInfo.PositionImpl should be zero-based
7512           and it was 1-based. Fixed in mono_param_get_objects.
7513
7514 2003-07-20  Martin Baulig  <martin@ximian.com>
7515
7516         * mono-debug.h: Set version number to 31.
7517         (mono_debug_init): Added `MonoDomain *' argument.
7518
7519         * mono-debug-debugger.c: Reworked the type support; explicitly
7520         tell the debugger about builtin types; pass the `klass' address to
7521         the debugger.
7522
7523 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
7524
7525         * image.c: Allow new metadata tables to be loaded without a
7526         warning. Also update the warning message to give the new constant value.
7527                 
7528 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
7529
7530         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
7531         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
7532         array type representation changes.
7533
7534 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
7535
7536         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
7537         on Environment.Exit () call.
7538
7539 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
7540
7541         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
7542         requires a matching corlib.
7543
7544 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
7545
7546         * Changelog: My editor decided to add a CR to each line. Sorry about that.
7547           Committed again without the CRs.
7548         
7549 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
7550
7551         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
7552           getting it from the "this" socket instance. Did not work
7553           if the socket is a subclass of Socket.
7554           Also fixed bug #35371.
7555
7556 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
7557
7558         * metadata.c: fixed size for TypedByRef.
7559         * loader.c: when searching for a method, consider the vararg amrker.
7560         * unicode.c, decimal.c: constify some arrays.
7561
7562 2003-07-15  Dick Porter  <dick@ximian.com>
7563
7564         * socket-io.c: Fixed compilation for gcc < 3.2.
7565
7566         Fixed compilation for machines that don't have AF_INET6 (thanks to
7567         Bernie Solomon <bernard@ugsolutions.com> for that part.)
7568
7569         Fixed compile warnings.
7570         
7571         Fixed formatting and line endings.
7572
7573 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
7574
7575         * socket-io.h:
7576         * socket-io.c: Added IPv6 support.
7577
7578 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
7579
7580         * class.c (mono_class_is_assignable_from): New function to implement
7581         the is_assignable_from logic. Used by mono_object_isinst, 
7582         Type::IsAssignableFrom () and the interpreter.
7583
7584         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
7585         Object, even interfaces.
7586         
7587         * object.c (mono_object_isinst): Implement in terms of 
7588         is_assignable_from.
7589
7590         * icall.c (ves_icall_type_is_assignable_from): New icall.
7591
7592 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
7593
7594         * domain.c (foreach_domain): fix compiler warning.
7595
7596 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
7597
7598         * image.c (load_metadata_ptrs): use g_strndup because strndup is
7599         not available on all plattforms
7600
7601 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
7602
7603         * image.h image.c: Store the metadata version string in MonoImage.
7604         * icall.c: New icall to retrieve the image version.
7605         * reflection.c (create_dynamic_image): Fill in the image version field
7606         * reflection.c (build_compressed_metadata): Use the image version
7607         from the image structure.
7608
7609 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7610
7611         * appdomain.c: modified comment.
7612         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
7613         That will be its last iteration when mono_gc_cleanup is called from
7614         mono_runtime_cleanup and before the domain is unloaded.
7615
7616         Fixes bug #45962.
7617
7618 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
7619
7620         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
7621         attributes.
7622
7623 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
7624
7625         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
7626         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
7627         Bernie Solomon <bernard@ugsolutions.com>.
7628
7629 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
7630
7631         * object.c, object.h: provide mono_object_new_fast() for faster
7632         allocation in some special cases.
7633
7634 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
7635
7636         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
7637         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
7638
7639 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
7640
7641         * threadpool.c: fix leaks.
7642
7643 2003-07-01  Dick Porter  <dick@ximian.com>
7644
7645         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
7646         using MonoGHashTables.  Fixes threadpool bug posted to list.
7647
7648 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
7649
7650         * image.h, image.c: added support to load an assembly from a byte array.
7651         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
7652         assembly bundle support.
7653
7654 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
7655
7656         * threadpool.c (mono_thread_pool_add): keep a reference to the
7657         AsyncResult to prevent GC
7658
7659 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
7660
7661         * class.c: leak fix.
7662
7663 2003-06-25  Dick Porter  <dick@ximian.com>
7664
7665         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
7666         for the async object, the WaitHandle object will close the handle.
7667         Fixes bug 45321.
7668
7669 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
7670
7671         * class.c: in mono_array_class_get (), lookup from the hash with the
7672         same type we insert: this works around a bug in
7673         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
7674         lluis. The real fix will have to wait for after the release.
7675
7676 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
7677
7678         * icall.c: fix memory leak when getting type members.
7679
7680 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
7681
7682         * reflection.c: added more pubtoken special cases.
7683
7684 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
7685
7686         * class.c: handle field offset correctly when class size
7687         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
7688
7689 2003-06-20  Martin Baulig  <martin@ximian.com>
7690
7691         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
7692         *image' field.
7693
7694 2003-06-20  Martin Baulig  <martin@ximian.com>
7695
7696         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
7697
7698 2003-06-20  Martin Baulig  <martin@ximian.com>
7699
7700         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
7701         just distinguish between variables in registers and variables at
7702         an offset relative to a register.
7703
7704 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7705
7706         * icall.c: #ifdef out latest changes until mcs is fixed.
7707
7708 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
7709
7710         * icall.c: return members in metadata order.
7711
7712 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
7713
7714         * icall.c: avoid infinite loop in GetTimeZoneData.
7715
7716 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
7717
7718         * icall.c: added Marshal.Prelink/All icalls.
7719
7720 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
7721
7722         * object.c, object.h: fix warnings and do some overflow checking
7723         when creating arrays.
7724
7725 2003-06-17  Dick Porter  <dick@ximian.com>
7726
7727         * file-io.h:
7728         * file-io.c: File attributes need to be tweaked slightly when
7729         passed from the managed to the w32 world.
7730
7731 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
7732         * profiler.h profiler-private.h profiler.c: Rework last patch
7733         based on suggestion by Paolo.
7734         
7735 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
7736
7737         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
7738         instruction level coverage data collection.
7739         * profiler.h profiler.c (: Added new callback function which can be
7740         used by the profiler to limit which functions should have coverage
7741         instrumentation.
7742         * profiler.c (mono_profiler_load): Call g_module_build_path to
7743         generate the file name of the profiler library.
7744
7745 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
7746
7747         * profiler.c, profiler.h, profiler-private.h: added basic block 
7748         coverage profiling API.
7749
7750 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
7751
7752         * reflection.c (mono_reflection_create_runtime_class): Add support
7753         for events in dynamically generated code.
7754
7755         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
7756         not allocated.
7757
7758 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
7759
7760         * icall.c: when getting timezone info, return reasonable values if we
7761         can't get the actual data.
7762
7763 2003-06-14  Dick Porter  <dick@ximian.com>
7764
7765         * threads.c (start_wrapper): Remove the reference to the thread
7766         object in the TLS data, so the thread object can be finalized.
7767         This won't be reached if the thread threw an uncaught exception,
7768         so those thread handles will stay referenced :-( (This is due to
7769         missing support for scanning thread-specific data in the Boehm GC
7770         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
7771
7772 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
7773
7774         * reflection.c: ensure streams and tables are first allocated with
7775         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
7776
7777 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
7778
7779         * icall.c: fixed GetElementType for byrefs (bug# 44792).
7780
7781 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
7782
7783         * reflection.c (mono_reflection_create_runtime_class): Add support for
7784         properties to dynamically created classes.
7785         * reflection.c: Fix a few places where non-MonoObjects were inserted
7786         into the tokens hashtable.
7787
7788 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
7789
7790         * object.c: some support to handle out of memory exceptions.
7791
7792 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
7793
7794         * marshal.c (mono_marshal_get_native_wrapper): support reference
7795         return types
7796
7797 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
7798
7799         * object.h, object.c: more portability stuff from Bernie Solomon.
7800         Unexport mono_object_allocate(). Added mono_object_unbox ().
7801         Set exitcode when an unhandled exception is thrown.
7802
7803 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
7804
7805         * marshal.c (mono_marshal_get_native_wrapper): use custom
7806         marshaler for return types.
7807
7808 2003-06-10  Dick Porter  <dick@ximian.com>
7809
7810         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
7811         ip_mreq is available
7812
7813 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
7814
7815         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
7816         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
7817         by Bernie Solomon <bernard@ugsolutions.com>.
7818
7819 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
7820
7821         * gc.c (mono_gc_init): Avoid error message on shutdown when
7822         GC_DONT_GC=1 is used.
7823
7824         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
7825         New icall to return the GUID of a module.
7826
7827 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
7828
7829         * class.c: ensure instance size always includes the parent's size
7830         even whem class size is set explicitly (fixes bug#44294).
7831
7832 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
7833
7834         * profiler.h, profiler.c: made the simple profiler thread-safe,
7835         get more accurate timing info. Allow the loading of an
7836         externally-developed profiler module.
7837
7838 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
7839
7840         * marshal.c (mono_marshal_get_native_wrapper): improved
7841         class/byref arguments.
7842         (mono_marshal_get_native_wrapper): better string marshaling support.
7843
7844 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
7845
7846         * class.c: ensure .pack and .size are handled correctly and
7847         simplified layout of static fields.
7848
7849 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
7850
7851         * appdomain.c
7852         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
7853
7854         * loader.c (mono_lookup_pinvoke_call): look for modules in the
7855         current directory (fix bug 44008)
7856
7857 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
7858
7859         * marshal.c (mono_marshal_get_native_wrapper): started support for
7860         custom marshalers.
7861         (mono_delegate_to_ftnptr): consider marshalling specifications
7862
7863 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
7864
7865         * reflection.c, reflection.h: emit custom marshal info.
7866
7867 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7868
7869         * object.c: free the GError.
7870         * icall.c: added CloseEvent_internal.
7871         * threads.[ch]:
7872         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
7873         call.
7874
7875 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
7876
7877         * loader.c (mono_method_get_signature): Add support for dynamic
7878         assemblies.
7879
7880 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
7881
7882         * reflection.c: fixed bug #43905.
7883
7884 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
7885
7886         * class.c, domain.c, icall.c, metadata.h, object.h: support for
7887         handling TypedReference and ArgIterator.
7888         * loader.c, loader.h: added function to get signature at call site.
7889
7890 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
7891
7892         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
7893         data readonly. Buglets and warning fixes. Some MethodSpec support.
7894
7895 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
7896
7897         * class.h, class.c, object.c: remove relative numbering support.
7898
7899 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
7900
7901         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
7902         free the string, until we get a chance to fix Gtk#
7903
7904 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7905
7906         * marshal.c: revert last patch.
7907
7908 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
7909
7910         * icall.c: updates for new mono_class_vtable() not calling
7911         the type constructor anymore.
7912
7913 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
7914
7915         * object.h, object.c: separate vtable creation from type
7916         initialization. Make running the .cctor thread safe.
7917
7918 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
7919
7920         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
7921
7922 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
7923
7924         * loader.c (mono_get_method): consider calling convention
7925
7926 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
7927
7928         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
7929         to return the invisible global type for a module.
7930
7931         * reflection.c (mono_image_build_metadata): Emit global fields too.
7932
7933 2003-05-20  Peter Williams  <peterw@ximian.com>
7934
7935         * loader.c (mono_lookup_internal_call): Add a few newlines.
7936
7937 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
7938
7939         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
7940         literal strings.
7941
7942         * appdomain.c (set_domain_search_path): Recalculate search path when
7943         AppDomainSetup.PrivateBinPath changes.
7944
7945         * object.c (mono_class_compute_gc_descriptor): It turns out some
7946         parts of the class libs (like System.Thread) holds pointers to
7947         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
7948         to treat native int a pointer type here.
7949         
7950 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
7951
7952         * appdomain.h, domain.c: add hashtable for jump target resolution.
7953
7954 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
7955
7956         * reflection.h reflection.c icall.c: Added new icalls 
7957         GetManifestResourceInfoInternal, GetModulesInternal and support
7958         infrastructure.
7959
7960 2003-05-16  Dick Porter  <dick@ximian.com>
7961
7962         * icall.c:
7963         * file-io.h:
7964         * file-io.c: Implement System.IO.MonoIO::GetTempPath
7965
7966 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
7967
7968         * object.c: mono_store_remote_field: little fix to previous patch.
7969
7970 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
7971
7972         * class.c: add constructors to array classes.
7973         * icall.c: special case array construction for InternalInvoke (),
7974
7975 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
7976
7977         * class.h class.c reflection.c object.c: Added support for field
7978         defaults in dynamically generated classes.
7979
7980 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
7981
7982         * reflection.c: properly encode charset for ddlimport.
7983
7984 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
7985
7986         * threads.c: allow compiling without GC.
7987
7988 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
7989
7990         * appdomain.h, object.c, object.h, threads.c, threads.h: added
7991         handling of thread static data.
7992
7993 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
7994
7995         * reflection.h, reflection.c: added mono_custom_attrs_free ().
7996
7997 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
7998
7999         * class.c (mono_array_class_get): always set the serializable flags
8000         (mono_array_class_get): always set the SEALED attribute for array types
8001
8002 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
8003
8004         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
8005         attributes (fix for bug 42021).
8006
8007 2003-05-12  Dick Porter  <dick@ximian.com>
8008
8009         * gc.c: Don't run finalizers when the finalizer thread is
8010         finishing up, because the default domain has already been
8011         destroyed.
8012
8013 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
8014
8015         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
8016         value is null, we should throw an exception.   This is slightly
8017         different than the other conventions used for the constructor.
8018
8019 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8020
8021         * socket-io.c: fixed windows build.
8022
8023 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8024
8025         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
8026
8027 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
8028
8029         * object.c (mono_string_new_wrapper): Compatibility fix for MS
8030         compilers.
8031
8032 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
8033
8034         * class.c (mono_class_layout_fields): Add experimental GC aware
8035         auto layout facility. Requires class library changes to work correctly.
8036
8037         (mono_class_setup_vtable): Avoid overriding explicit interface
8038         method implementations. Fixes iface3.exe test.
8039
8040         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
8041         object reference.
8042         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
8043         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
8044
8045         * metadata.h: Add new type classification macro which determines
8046         whenever the type holds an object reference.
8047
8048 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
8049
8050         * marshal.c (mono_marshal_get_native_wrapper): cleanups
8051
8052 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
8053
8054         * gc.c (finalizer_thread): Work around a GC bug.
8055
8056 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
8057
8058         * marshal.c (emit_struct_conv): allow unions
8059
8060         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
8061
8062 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
8063
8064         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
8065
8066 2003-05-06  Martin Baulig  <martin@ximian.com>
8067
8068         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
8069
8070 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8071
8072         * socket-io.c:
8073         (Select_internal): allow NULLs, don't create arrays if not needed.
8074         Coupled with Socket.cs changes.
8075
8076         * threadpool.c:
8077         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
8078         register a finalizer for it that will close the semaphore handle. This
8079         fixes the leak and make Lupus' test run with > 4080 loops.
8080
8081 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
8082
8083         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
8084         Jerome Laban (bug #42287)
8085
8086 2003-05-02  Martin Baulig  <martin@ximian.com>
8087
8088         * debug-mono-symfile.h
8089         (MonoSymbolFile): Moved declaration into mono-debug.h.
8090         (MonoDebugMethodJitInfo): Likewise.
8091         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
8092         argument.
8093         (_mono_debug_address_from_il_offset): Take a
8094         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
8095
8096         * mono-debug.h
8097         (MonoDebugDomainData): New struct.
8098         (mono_debug_get_domain_data): New function.
8099         (mono_debug_add_method): Take an additional `MonoDomain *'
8100         argument.
8101         (mono_debug_source_location_from_address): Likewise.
8102         (mono_debug_il_offset_from_address): Likewise.
8103         (mono_debug_address_from_il_offset): Likewise.
8104
8105 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
8106
8107         * reflection.c: one more check for null type in custom attrs.
8108
8109 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8110
8111         * reflection.c: avoid warning (comparison is always false due to limited
8112         range of data type).
8113
8114 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8115
8116         * icall.c: throw an exception in Type.GetField if the argument 'name'
8117         is NULL.
8118
8119 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
8120
8121         * reflection.c: fixed handling of enums in named arguments to custom
8122         attributes (bug #42123).
8123
8124 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
8125
8126         * reflection.c: use the right array element type and handle
8127         a null for a Type argument, too.
8128
8129 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
8130
8131         * reflection.c: handle arrays as arguments to custom attributes.
8132
8133 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
8134
8135         * reflection.c: handle a string value in a custom attr
8136         ctor that takes an object.
8137
8138 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
8139
8140         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
8141         (fix bug #42063)
8142
8143 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
8144
8145         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
8146
8147 2003-04-27  Martin Baulig  <martin@ximian.com>
8148
8149         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
8150         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
8151         MONO_DEBUGGER_EVENT_BREAKPOINT.
8152         (mono_breakpoint_trampoline_code): Removed.
8153         (mono_debugger_event_handler): The last argument is now a
8154         `guint32'.
8155         (mono_debugger_insert_breakpoint_full): Removed the
8156         `use_trampoline' argument.
8157         (mono_debugger_method_has_breakpoint): Likewise.
8158         (mono_debugger_trampoline_breakpoint_callback): Renamed to
8159         mono_debugger_breakpoint_callback(); take the method and
8160         breakpoint number as arguments.
8161
8162 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
8163
8164         * metadata.c: fix off by one when loading parameters attributes.
8165
8166 2003-04-24  Martin Baulig  <martin@ximian.com>
8167
8168         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
8169
8170 2003-04-24  Martin Baulig  <martin@ximian.com>
8171
8172         * mono-debug-debugger.c: Moved all code which interacts with the
8173         Mono Debugger here.
8174
8175         * debug-mono-symfile.c: This code now just deals with the symbol
8176         file itself, the debugger code is now in mono-debug-debugger.c.
8177
8178 2003-04-23  Martin Baulig  <martin@ximian.com>
8179
8180         * mono-debug.c (mono_debug_source_location_from_il_offset):
8181         New method; like mono_debug_source_location_from_address(), but
8182         takes an IL offset instead of a machine address.
8183
8184 2003-04-23  Martin Baulig  <martin@ximian.com>
8185
8186         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
8187         `line' field; this is now computed by the debugger.
8188
8189 2003-04-23  Martin Baulig  <martin@ximian.com>
8190
8191         * mono-debug.[ch]: New files.  This is the new debugging interface.
8192
8193         * mono-debug-debugger.[ch]: New files.  Moved all code which
8194         interacts with the Mono Debugger here.
8195
8196 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
8197
8198         * domain.c (mono_init): initialize mono_defaults.monitor_class
8199
8200 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
8201
8202         * reflection.c (method_encode_code): Add a spicy exception to help
8203         future compiler authors.
8204
8205 2003-04-21  Martin Baulig  <martin@ximian.com>
8206
8207         * icall.c
8208         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
8209         Make this work with relative pathnames; g_filename_to_uri() needs
8210         an absolute filename.
8211
8212 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
8213
8214         * icall.c: Track name changes in Object and ValueType.
8215
8216 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
8217
8218         * metadata.c (mono_type_stack_size): size should be a multiple of
8219         sizeof (gpointer)
8220
8221 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8222
8223         * gc.c:
8224         (internal_domain_finalize): moved into mono_domain_finalize. No need
8225         to create another thread because the finalizers will be run in the
8226         finalizer thread.
8227         
8228         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
8229         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
8230         to be run (MS does this too).
8231
8232 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
8233
8234         * object.c (mono_class_compute_gc_descriptor): Update comment.
8235
8236         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
8237
8238         * image.h: Add synchronized wrapper cache.
8239
8240         * image.c (do_mono_image_open): Initialize cache.
8241
8242         * reflection.c (create_dynamic_mono_image): Initialize cache.
8243
8244 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8245
8246         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
8247         ves_icall_System_Buffer_ByteLengthInternal.
8248
8249 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
8250
8251         * reflection.c: setup klass->nested_in earlier. Allow
8252         a dash in the assembly name.
8253
8254 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
8255
8256         * metadata.c (mono_type_to_unmanaged): dont access
8257         type->data.klass for MONO_TYPE_OBJECT
8258         (mono_type_to_unmanaged): consider System.Delegate class
8259
8260 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
8261
8262         * class.c: just setup supertypes in the proper place instead of
8263         initializing the full element class for arrays.
8264
8265 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
8266
8267         * class.c: ensure the element class of arrays is initialized.
8268         Setup the supertype info for array classes, too.
8269
8270 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
8271
8272         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
8273
8274 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8275
8276         * Makefile.am: re-added -m option when running cygpath. This way,
8277         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
8278         separator.
8279         * mono-config.c: same codepath for locating mono config file for WIN32
8280         and the rest.
8281         * assembly.c: if mono_assembly_setrootdir is called, don't override
8282         the value set.
8283
8284 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8285
8286         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
8287         MONO_ASSEMBLIES variable.
8288
8289 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
8290
8291         * icall.c: added Assembly::GetNamespaces() icall.
8292
8293 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8294
8295         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
8296
8297 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
8298
8299         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
8300         * object.c: fixed bug in the construction of vtable for proxies
8301
8302 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
8303
8304         * object.c (mono_array_new): Mark mono_array_new as an icall.
8305
8306 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8307
8308         * class.c: fixed test for public method when overriding interfaces.
8309         Closes bug #40970.
8310
8311 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
8312
8313         * appdomain.h, domain.c: added mono_domain_foreach() to
8314         be able to access the currently loaded appdomains.
8315         * object.c: make string interning work across sppdomains.
8316         Mark some functions for use as icalls.
8317
8318 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
8319
8320         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
8321
8322         * reflection.h reflection.c: Allocate long living data using 
8323         GC_MALLOC_ATOMIC so the collector does not need to scan it.
8324
8325         * reflection.c: Double the allocation size in streams instead of
8326         increasing it, to prevent unneccesary copying on large assemblies.
8327         
8328         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
8329         creation if the assembly does not have the Run flag set.
8330
8331 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
8332
8333         * class.h: avoid the C++ keywords in header files (Jerome Laban
8334         spotted and fixed this).
8335
8336 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8337
8338         * object.c:
8339         (mono_unhandled_exception): fill in the arguments for the
8340         UnhandledException event. Only trigger that event for the default
8341         domain (as MS does).
8342
8343 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
8344
8345         * object.c: Improve typed allocation stuff based on suggestions from
8346         Paolo. Also turn it on if the GC library supports it.
8347
8348 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
8349
8350         * object.c object.h class.h: Added experimental typed allocation
8351         facility using the interfaces in gc_gcj.h.
8352
8353         * os/gc_wrapper.h: Added new include files.
8354         
8355 2003-04-03  Martin Baulig  <martin@ximian.com>
8356
8357         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
8358         which is not yet enabled by default.
8359
8360         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
8361         functions.
8362         (mono_gc_lock, mono_gc_unlock): New static functions.
8363
8364         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
8365         functions; stop/start the world for the garbage collector.  This
8366         is using the windows API; we need to complete the SuspendThread()/
8367         ResumeThread() implementation in the io-layer to make this work on Unix.
8368         (mono_gc_push_all_stacks): New public function; tells the garbage
8369         collector about the stack pointers from all managed threads.
8370
8371 2003-04-03  Martin Baulig  <martin@ximian.com>
8372
8373         * object.h (MonoThread): Added `gpointer stack_ptr'.
8374
8375         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
8376
8377 2003-04-03  Martin Baulig  <martin@ximian.com>
8378
8379         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
8380
8381 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
8382
8383         * reflection.c (typebuilder_setup_fields): Initialize field.first and
8384         field.last.
8385
8386 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
8387
8388         * loader.c (mono_lookup_internal_call): Report the corlib that is
8389         out of sync.
8390
8391 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
8392
8393         * icall.c (ves_icall_type_GetTypeCode): fixed check for
8394         System.DBNull (it's class not valuetype).
8395
8396 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
8397
8398         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
8399         if the array method was already assigned a token (fixes bug#40646).
8400
8401 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
8402
8403         * reflection.c (mono_reflection_get_type): Attempt type resolve even
8404         if no assembly is given.
8405
8406 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
8407
8408         * metadata.h: Added the new tables.
8409
8410         * row-indexes.h: Added definitions for new tables.
8411
8412         * metadata.c: Add schemas for new tables, and add support for
8413         computing the sizes of them.
8414
8415         * class.c: Update for handling the new type cases.
8416
8417 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
8418
8419         * metadata.h (MONO_TYPE_IS_VOID): new macro
8420
8421 2003-03-31  Martin Baulig  <martin@ximian.com>
8422
8423         * threads.h (MonoThreadCallbacks): Added `thread_created'.
8424
8425         * threads.c (mono_thread_new_init): Call `thread_created' in the
8426         mono_thread_callbacks.
8427
8428 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
8429
8430         * loader.h: added marshalbyrefobject_class to mono_defaults
8431         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
8432         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
8433           generation of output parameters.
8434           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
8435         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
8436           contextbound and the target object belongs to the context of the caller.
8437         * object.h: added context and unwrapped_server variables in MonoRealProxy.
8438         * object.c: Implemented support for interfaces and abstract classes
8439           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
8440           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
8441
8442 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
8443
8444         * class.h class.c (mono_class_is_subclass_of): New function.
8445         
8446         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
8447         routines for most common case (calls from ArrayList::ToArray).
8448
8449         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
8450         routine so programs which call Environment::Exit() can be profiled.
8451
8452         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
8453         Added MONO_ARCH_SAVE_REGS.
8454
8455         * icall.c (ves_icall_type_is_subtype_of): Use new function.
8456
8457 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
8458
8459         * blob.h: Add a couple of new MonoType types definitions.
8460
8461         * tabledefs.h: Add a couple of new call convs.
8462
8463 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
8464
8465         * reflection.h (MonoReflectionDynamicAssembly): track changes in
8466         the layout of the class.
8467
8468         * reflection.c (alloc_table): double the size on overflow to avoid
8469         unnecessary copying.
8470
8471         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
8472         avoid filling out metadata tables and blobs. Also set mb->ilgen to
8473         null so it can be garbage collected.
8474         
8475 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
8476
8477         * reflection.c (mono_reflection_get_type): Return the resolved type
8478         only if it is in the assembly we searched.
8479
8480         * reflection.c (ensure_runtime_vtable): Initialize method slots.
8481
8482         * class.c (mono_class_setup_vtable): Set the slot of the overriding
8483         method.
8484
8485 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8486
8487         * appdomain.c:
8488         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
8489         the right one is 'file:///blah', but MS allows it.
8490         * assembly.c:
8491         (mono_assembly_open): allow 'file://blah'
8492
8493         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
8494
8495 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
8496
8497         * socket-io.c: fixes bug #40310.
8498
8499 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
8500
8501         * reflection.c (mono_reflection_parse_type): handle deeply nested
8502         types correctly.
8503
8504         * reflection.c (mono_image_create_token): Use unique token values
8505         since they will be put into a hash table.
8506
8507         * class.c (mono_class_setup_vtable): If a method occurs in more than
8508         one place in the vtable, and it gets overriden, then change the
8509         other occurances too.
8510
8511         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
8512         object as return type.
8513
8514 2003-03-22  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
8515
8516         * icall.c: Deleted "ToString" implementation for double and float
8517         because they are full implemented in managed code.
8518
8519 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
8520
8521         * reflection.c, reflection.h: implemented and exported functions
8522         to retrieve info about custom attributes.
8523
8524 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8525
8526         * appdomain.c: moved Uri handling to assembly.c
8527         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
8528         work when using a file Uri in *nix and windows.
8529
8530         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
8531         GetReferencedAssemblies.
8532
8533 2003-03-18  Dick Porter  <dick@ximian.com>
8534
8535         * icall.c: Rename a couple of internal calls
8536
8537         * threads.c: Set the thread state to Stopped when a thread exits.
8538         Fixes bug 39377.
8539
8540 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
8541
8542         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
8543         New icall.
8544
8545         * object.c (mono_class_vtable): fix warning.
8546
8547 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
8548
8549         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
8550
8551         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
8552         memory.
8553         (method_encode_clauses): Create exception info structures in the right
8554         order.
8555         (mono_reflection_setup_internal_class): Initialize supertypes field.
8556
8557         * class.c object.c: Handle interfaces which implement other interfaces 
8558         correctly.
8559
8560         * class.h class.c: Move the supertypes array initialization code into 
8561         a separate function so it can be used for dynamic types too. Also call
8562         it earlier, in mono_class_init(), since it can be used before the
8563         type is initialized.
8564
8565 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8566
8567         * Makefile.am:
8568         * assembly.c:
8569         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
8570
8571         * appdomain.c:
8572         * appdomain.h:
8573         * marshal.c:
8574         * object.c: remove warnings.
8575
8576 2003-03-13  Martin Baulig  <martin@ximian.com>
8577
8578         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
8579         (MonoDebugLexicalBlockEntry): New types.
8580
8581         * debug-mono-symfile.c
8582         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
8583
8584 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8585
8586         * process.c: ret can be any non-zero value accroding to MS doc.
8587
8588 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
8589
8590         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
8591         fixing a warning for a miss-used prototype, would have cause
8592         random memory corruption.
8593
8594 2003-03-07  Martin Baulig  <martin@ximian.com>
8595
8596         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
8597         getting really annoying ....
8598
8599 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
8600
8601         * reflection.c (fixup_method): added support for array methods.
8602
8603 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
8604
8605         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
8606         (pointed out by Michael Adams).
8607
8608 2003-03-04  Dick Porter  <dick@ximian.com>
8609
8610         * icall.c: Temporarily reverted the Double and Single ToString()
8611         change, because it broke nunit.
8612
8613 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
8614
8615         * object.h, threads.h: make include files compatible with C++
8616         (patch by Jerome Laban <jlaban@wanadoo.fr>).
8617
8618 2003-03-04  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
8619
8620         * icall.c: Erased ToString helper functions for Double and Single.
8621         Now, that implementations ar all in managed code (Double and Single
8622         Formatters).
8623
8624 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
8625
8626         * appdomain.c: Added method for initializing the default context of
8627         a domain. Added internal call for getting the default context.
8628         * appdomain.h: Added context variable in MonoDomain struct.
8629         * domain.c: mono_domain_set also sets the default context of the domain
8630         * icall.c: Mapped internal method InternalGetDefaultContext.
8631         * object.c: mono_object_get_virtual_method returns always a remoting
8632         wrapper if the object is a transparent proxy.
8633         mono_runtime_invoke_array: when creating an object by calling the
8634         constructor, if the created object is a proxy, then the constructor should
8635         be called using the a remoting wrapper.
8636
8637 2003-03-03  Dick Porter  <dick@ximian.com>
8638
8639         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
8640         variable so it compiles on solaris.  Problem spotted by
8641         Christopher Taylor <ct@cs.clemson.edu>
8642
8643 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8644
8645         * appdomain.c:
8646         (get_info_from_assembly_name): don't leak value.
8647
8648         * icall.c:
8649         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
8650         result.
8651
8652 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
8653
8654         * assembly.c: export mono_image_load_references ().
8655         * class.c: handle function pointers. mono_class_from_name() now
8656         supports nested type names directly.
8657
8658 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
8659
8660         * reflection.h reflection.c: Encode already created dynamic methods 
8661         and fields correctly as a DEF instead of a REF.
8662
8663         * reflection.c: Get rid of the force_ref argument to 
8664         mono_image_typedef_or_ref since it was wrong in the first place.
8665
8666         * string-icalls.c: add error checking to string constructors according
8667         to the MSDN docs.
8668
8669         * reflection.c: Emit types in the order their TypeBuilders were 
8670         created. Previously, a new table index was assigned to each type before
8671         the tables were emitted. This was wrong because the signature blob
8672         might already refer to a type by its original table index.
8673
8674 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
8675
8676         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
8677         change.
8678         
8679 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8680
8681         * Makefile.am: make assemblies dir have \ instead of / on windows.
8682
8683 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
8684
8685         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
8686         iterate over the NESTEDCLASS table using a linear search since the
8687         table is not guaranteed to be sorted by the secondary key.
8688
8689         * class.c (mono_class_create_from_typedef): fixed up call to
8690         mono_metadata_nesting_typedef.
8691         
8692 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
8693
8694         * marshal.c (mono_string_to_byvalstr): clear the memory as
8695         suggested by Jerome Laban <jlaban@wanadoo.fr>
8696
8697 2003-02-26  Dick Porter  <dick@ximian.com>
8698
8699         * process.c: Cope with padding in .rsrc blocks
8700
8701 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
8702
8703         * metadata.h: reverted the filter_len change, it breaks reflection
8704         
8705 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
8706
8707         * metadata.h: added a new field to store the filter_len
8708         
8709
8710 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
8711
8712         * reflection.c: handle custom attributes for types and members
8713         created with Reflection.Emit (bug#38422).
8714
8715 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
8716
8717         * reflection.c: define RTSpecialName automatically for constructors for
8718         compatibility with MS.NET.
8719
8720         * reflection.c (mono_reflection_create_runtime_class): initialize
8721         nested_in field of dynamically created classes.
8722
8723 2003-02-22  Martin Baulig  <martin@ximian.com>
8724
8725         * debug-mono-symfile.h: Incremented version number.
8726
8727 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
8728
8729         * object.h icall.c process.c: fix warnings.
8730
8731 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
8732
8733         * appdomain.h appdomain.c:
8734         (mono_domain_try_type_resolve): split the 
8735         name_or_tb argument into a name and a tb argument.
8736         (mono_domain_has_type_resolve): new function to check whenever the
8737         application has registered a TypeResolve event handler.
8738         
8739         * icall.c reflection.h reflection.c: move the type resolve logic into
8740         mono_reflection_get_type () so it will be invoked when 
8741         Assembly::GetType () is called.
8742
8743         * reflection.c:
8744         (mono_reflection_get_type): renamed to get_type_internal.
8745         (mono_reflection_get_type): fixed type name generation so it works 
8746         for nested types too.
8747         (mono_reflection_get_type): call has_type_resolve () to avoid the 
8748         costly type name generation if there is no resolve event handler.
8749
8750 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
8751
8752         * class.c, image.c: load exported types from file references.
8753
8754 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
8755
8756         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
8757           used to cache the managed methods used to create proxies and make 
8758           remote invocation of methods.
8759         * class.h: Added in MonoVTable a flag to indicate that a class needs 
8760           to be remotely created.
8761         * object.c: Modified the method mono_class_vtable(). It now initializes 
8762           the remote flag of the vtable. Modified mono_object_new_specific(), 
8763           so now it checks the remote flag.
8764         * icall.c: Added a couple of internal methods, one for enabling instance 
8765           creation interception for a type, and one for creating objects bypassing
8766           the remote check.
8767
8768 2003-02-18  Martin Baulig  <martin@ximian.com>
8769
8770         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
8771         New interncall to get a method's metadata token.
8772
8773         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
8774         New interncall for the debugger.
8775
8776 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
8777
8778         * class.c (mono_class_setup_vtable): allocate supertype array
8779
8780 2003-02-18  Martin Baulig  <martin@ximian.com>
8781
8782         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
8783
8784 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8785
8786         * reflection.c:
8787         (assembly_name_to_aname): jump over unknown properties (i've found
8788         something like: 'type, assembly, version=xxx, custom=null, public...',
8789         so now will ignore custom=null and still get the rest of the values).
8790
8791 2003-02-17  Dick Porter  <dick@ximian.com>
8792
8793         * threads.c: Have Thread.Start() wait for a semaphore to signal
8794         that the thread has set up all its local data.  This fixes bug
8795         34323, where Abort() raced the new thread's TLS data.
8796
8797         Also removes the handle_store() call from start_wrapper, because
8798         threads are now always created suspended and there is no longer a
8799         race between the parent and child threads to store the info.
8800
8801 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
8802
8803         * image.c: explain the #- heap issue in a message, hopefully
8804         avoiding FAQs on mono-list.
8805
8806 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8807
8808         * icall.c:
8809         (GetEntryAssembly): if the domain has not invoked
8810         AppDomain.ExecuteAssembly yet, return the assembly of the default
8811         AppDomain.
8812
8813 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
8814
8815         * class.c (mono_ldtoken): make it work in dynamic assemblies.
8816
8817 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
8818
8819         * metadata.c, reflection.c: simple speedup to type hash
8820         and equals code.
8821
8822 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
8823
8824         * image.c, image.h, class.c, assembly.c: move module loading
8825         to MonoImage. When loading metadata, consider alignemnet from
8826         the start of metadata, not from the metadata address in memory.
8827
8828 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
8829
8830         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
8831         AssemblyBuilder objects. Factored out custom attribute creation into
8832         a separate function.
8833         (create_custom_attr): new function to create custom attributes.
8834
8835 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
8836
8837         * Makefile.am: Got tired of typing the full pathname to pedump.
8838         Until there is another option, am installing this.
8839
8840 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
8841
8842         * class.c (class_compute_field_layout): always set field->parent 
8843         (mono_ldtoken): use mono_defaults.fieldhandle_class;
8844
8845 2003-02-11  Dick Porter  <dick@ximian.com>
8846
8847         * threads-types.h:
8848         * monitor.c: Rewrote Monitor, making lock much faster and
8849         Pulse/Wait work as specified.  Also uses much fewer handles, and only
8850         creates them as needed.
8851
8852         * exception.c: Added SynchronizationLockException
8853
8854         * threads.c: Deleted old Monitor implementation.  The new one is
8855         in a new file.
8856
8857 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
8858
8859         * class.c: handled TypedReference type code. Set the correct size for
8860         class data. Setup interface_offsets for interface classes, too.
8861
8862 2003-02-09  Martin Baulig  <martin@ximian.com>
8863
8864         * debug-mono-symfile.h: Reflect latest symbol writer changes.
8865
8866 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
8867
8868         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
8869         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
8870         * object.c: fixed mono_object_get_virtual_method () for interfaces.
8871         * verify.c: check for code that runs after the end of the method.
8872
8873 2003-02-08  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
8874
8875         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
8876         "System.Math::Round2".
8877         * sysmath.h: Added Floor, Round and Round2 definitions.
8878         * sysmath.c: Modified certain functions that were not 100% compliant
8879         with MS.NET (math precision) and added the implementation of Floor,
8880         Round and Round2.
8881
8882 2003-02-07  Martin Baulig  <martin@ximian.com>
8883
8884         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
8885
8886 2003-02-07  Martin Baulig  <martin@ximian.com>
8887
8888         * debug-mono-symfile.c: Reflected latest symwriter changes.
8889         (mono_debug_create_mono_symbol_file): Removed.
8890         (mono_debug_open_mono_symbol_file): Take an argument which
8891         specifies whether to create a dynamic symbol file.
8892
8893 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
8894
8895         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
8896
8897 2003-02-05  Martin Baulig  <martin@ximian.com>
8898
8899         * reflection.c (mono_image_build_metadata): Make this public,
8900         protect it against being called multiple times, don't create
8901         resources and don't build the compressed metadata here.
8902         (mono_image_create_pefile): Do this here.
8903
8904         * icall.c
8905         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
8906
8907 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8908
8909         * socket-io.c: fixed bug #36322.
8910
8911 2003-02-06  Piers Haken <piersh@friskit.com>
8912
8913         * appdomain.[ch]:
8914         * class.h:
8915         * debug-mono-symfile.c:
8916         * icall.c:
8917         * loader.c:
8918         * mono-config.c:
8919         * monosn.c:
8920         * reflection.c:
8921         * socket-io.c: warning cleanups
8922
8923 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
8924
8925         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
8926         function. works like remoting invoke, but does a check for the Proxy first.
8927
8928 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
8929
8930         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
8931
8932 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
8933
8934         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
8935         array of pointers.
8936         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
8937         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
8938
8939         * object.c (mono_store_remote_field_new): used by the new jit
8940         instead of mono_store_remote_field
8941         (mono_load_remote_field_new): used by the new jit
8942         instead of mono_load_remote_field
8943
8944 2003-02-05  Patrik Torstensson
8945
8946         * appdomain.c: changed unload to take the domain id instead
8947         of domain
8948         
8949         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
8950
8951
8952 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8953
8954         * appdomain.c: don't look for assemblies in ApplicationBase if
8955         PrivateBinPathProbe is set.
8956
8957 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8958
8959         * object.c: make the first argument in main_args contain the absolute
8960         path to the assembly. Fixes bug #37511.
8961
8962 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8963
8964         * icall.c: get correct UTC offset for countries not using daylight
8965         time saving. Fixes bug #30030.
8966
8967 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8968
8969         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
8970         and 1 are the family).
8971
8972 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
8973
8974         * icall.c (ves_icall_InternalExecute): removed wrong assertion
8975
8976         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
8977
8978 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
8979
8980         * reflection.c: added support for SignatureHelper tokens, which is
8981         needed by the Calli opcode.
8982
8983         * reflection.h: track changes to SignatureHelper class.
8984
8985         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
8986
8987 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8988
8989         * appdomain.c: fixed loading assemblies from PrivateBinPath.
8990
8991 2003-02-03  Patrik Torstensson
8992         * appdomain.[c|h], domain.c : 
8993          - Added support for getting a domain via domain id
8994          - Support for setting and getting domain from System.AppDomain 
8995            (used in cross appdomain channel)
8996          - Added support for get/set for a MonoAppContext on a thread 
8997            (Context class in System.Runtime.Remoting.Contexts),
8998          - Removed hack in Get/SetData and ExecuteAssembly.
8999         
9000         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
9001         the managed world to get control when a proxy is created.
9002
9003         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
9004         
9005 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
9006
9007         * icall.c
9008         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
9009         Populate the codebase field as well.
9010
9011 2003-02-02  Martin Baulig  <martin@ximian.com>
9012
9013         * debug-mono-symfile.c
9014         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
9015         (mono_debug_symfile_add_method): Allow interncalls.
9016
9017 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9018
9019         * icall.c: throw parse exception if strtod fails or the string is empty.
9020
9021 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
9022
9023         * marshal.c: handle object type separately from defined
9024         class types.
9025
9026 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
9027
9028         * marshal.c: handle NATIVE_LPSTR for strings when it's
9029         explicitly specified.
9030
9031 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
9032
9033         * reflection.c, reflection.h, icall.c: setup the reflection
9034         handle cache for ModuleBuilders and AssemblyBuilders.
9035
9036 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
9037
9038         * reflection.c (reflection_methodbuilder_to_mono_method): set
9039         pinvoke flag
9040
9041 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9042
9043         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
9044
9045 2003-01-29  Dick Porter  <dick@ximian.com>
9046
9047         * threads.c: No need for the fake_thread kludge now that Thread
9048         doesn't run a class constructor
9049         
9050 2003-01-29  Dick Porter  <dick@ximian.com>
9051
9052         * threads.c: Use g_direct_hash instead of the rather bogus
9053         g_int_hash
9054
9055 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
9056
9057         * marshal.c (mono_marshal_get_native_wrapper): add check for null
9058         (fix pinvoke12.exe)
9059         (mono_marshal_get_struct_to_ptr): generate valid IL code
9060         (mono_marshal_get_ptr_to_struct): generate valid IL code
9061         (*): correctly set sig->pinvoke, we need to memdup the signature
9062         to do that
9063
9064 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
9065
9066         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
9067         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
9068
9069 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
9070
9071         * profiler.c: provide more callers information.
9072
9073 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
9074
9075         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
9076
9077         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
9078
9079         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
9080
9081 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9082
9083         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
9084         exception instead of going into an infinite loop on dates which it 
9085         can't yet handle.
9086
9087         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
9088         out-of-range exception if needed.
9089
9090         * class.c (mono_class_setup_vtable): allow a virtual method to provide
9091         an implementation for an interface method and to override an inherited
9092         method at the same time. 
9093         Imagine a scenario when a virtual method is used to override a
9094         virtual abstract method in a parent class, and this same method 
9095         provides an implementation for an method inherited from an interface. 
9096         In this case, the interface resolution code will set im->slot, which 
9097         means that the virtual method override pass will skip this method 
9098         which means a pointer to the abstract method inherited from the parent
9099         will remain in the vtable of this non-abstract class.
9100
9101         * class.c: (mono_class_setup_vtable): continue search for a real 
9102         method if only an abstract method is found.     
9103
9104 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
9105
9106         * reflection.c: add size to encoding for ByValStr and ByValArray
9107         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
9108
9109 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9110
9111         * class.c (mono_class_setup_vtable): pass the override info as an
9112         argument.
9113
9114         * class.c (mono_class_setup_vtable): set the slot of overriding methods
9115         correctly.
9116         
9117         * reflection.c (ensure_runtime_vtable); add support for method 
9118         overrides.
9119         
9120 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9121
9122         * reflection.c (resolution_scope_from_image): Hack to work to work with
9123         dynamic assemblies.
9124
9125         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
9126         added a 'force_ref' argument to force this function to allways return 
9127         a TypeRef. This is needed by mono_image_get_memberref_token ().
9128         
9129 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9130
9131         * reflection.c (mono_image_get_type_info): interfaces really don't have
9132         a parent.
9133
9134         * reflection.c (mono_image_basic_init): fill out missing fields of
9135         image structure.
9136
9137         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
9138         dynamic assemblies. This is required so dynamic assemblies show up in
9139         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
9140         Type::GetType() etc. This is consistent with MS behaviour.
9141
9142         * image.c image.h reflection.c: add newly created classes to the name 
9143         cache so mono_class_get () will find them.      
9144
9145 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9146
9147         First part of changes to get IKVM.NET running under mono.
9148         
9149         * appdomain.h, appdomain.c: added new function 
9150         mono_domain_try_type_resolve() which will emit TypeResolve events. 
9151         This function will call AppDomain::DoTypeResolve to do the actual work.
9152
9153         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
9154         moved existing code dealing with dynamic tokens to a new function 
9155         called mono_reflection_lookup_dynamic_token (). This function will 
9156         raise TypeResolve events when appropriate. Since reflection.c is not 
9157         part of libmetadata, a new hook function called 
9158         mono_lookup_dynamic_token() is added to class.c which will call this.
9159
9160         * assembly.h assembly.c: make the invoke_load_hook function public,
9161         so it can be called for dynamic assemblies.
9162
9163         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
9164
9165         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
9166         type isn't found.
9167
9168         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
9169         MonoGHashTable, since it contains pointers to objects which the GC 
9170         needs to track.
9171
9172         * assembly.c (search_loaded): remove unused variable.
9173         
9174 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
9175
9176         * object.c: fixed issue exposed by gcc-generated IL programs
9177         that use RVA data for pointers.
9178
9179 2003-01-25  Martin Baulig  <martin@ximian.com>
9180
9181         * threads.c (start_wrapper): Moved the initialization of
9182         `start_func' above the mono_new_thread_init() call to which we
9183         pass it as argument.
9184
9185 2003-01-24  Martin Baulig  <martin@ximian.com>
9186
9187         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
9188         the MonoThread pointer.
9189
9190 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
9191
9192         * icall.c: Rename `PowImpl' to Pow.
9193
9194 2003-01-23  Dick Porter  <dick@ximian.com>
9195
9196         * threads.c (start_wrapper): Create a Thread object if needed, so
9197         the Main() thread can do the class initialisation in a subthread
9198         that has been set up to allow managed code execution.
9199
9200         Pass the thread ID instead of the MonoThread pointer to the thread
9201         start and attach callbacks.  This change is required, because the
9202         jit thread start callback must be called _before_ the Thread
9203         object can be created.
9204         
9205         (mono_thread_init): Removed much object creation code that is no
9206         longer needed.  No managed code is called from here now.
9207
9208         * object.c (mono_runtime_exec_managed_code): Create a subthread
9209         for Main, and call back to the runtime to use it.
9210         Set the exit code when Main exits.
9211
9212         * gc.c: Make sure domain finalisation happens in a subthread.
9213         Re-enable threaded GC, fixing bug 31333 (again).
9214
9215         * environment.c: System.Environment internall calls (so far just
9216         ExitCode is here, the others are still in icall.c)
9217
9218         * appdomain.c (mono_runtime_cleanup): All threads running managed
9219         code should have finished before mono_runtime_cleanup() is
9220         reached, so no need to clean up threads.
9221
9222 2003-01-22  Martin Baulig  <martin@ximian.com>
9223
9224         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
9225         `gpointer func' arguments.      
9226         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
9227         but added `MonoThread *thread' argument.
9228         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
9229
9230         * threads.c (mono_new_thread_init): Added `gpointer func' argument
9231         and pass it to the mono_thread_start_cb callback.
9232         (mono_install_thread_callbacks): New public function to install a
9233         set of callbacks which are set by the debugger.
9234         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
9235
9236 2003-01-22  Martin Baulig  <martin@ximian.com>
9237
9238         * Makefile.am: Install debug-mono-symfile.h.
9239
9240 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
9241
9242         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
9243
9244 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
9245
9246         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
9247         * class.c (mono_ptr_class_get): correctly set access levels of pointers
9248         (mono_array_class_get): correctly set access levels of arrays
9249
9250 2003-01-20      Patrik Torstensson
9251         * image.h (MonoAssemblyName): changed major, minor, build, revision
9252         from signed to unsigned.
9253
9254 2003-01-20  sean kasun <skasun@azstarnet.com>
9255
9256         * reflection.c (load_cattr_value): Now this handles
9257         MONO_TYPE_SZARRAY.  Fixes bug #35629
9258
9259 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
9260
9261         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
9262         integer value
9263
9264 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9265
9266         * decimal.c: fixed bug #26056.
9267
9268 2003-01-17  Martin Baulig  <martin@ximian.com>
9269
9270         * gc.c: Raise an ExecutionEngineException instead of using g_error().
9271
9272 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9273
9274         * exception.[ch]:
9275         (mono_get_exception_type_initialization): new function.
9276
9277         * object.c: throw a TypeInitializationException when an exception is
9278         thrown invoking the class constructor.
9279
9280 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9281
9282         * reflection.c: fixed attribute reading.
9283
9284 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9285
9286         * icall.c:
9287         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
9288         provided, look for the type in the calling assembly and then in
9289         mscorlib; if the assembly name is provided, only try that one.
9290
9291 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
9292
9293         * object.c: register the vtable before there is a chance it's
9294         queried again recursively.
9295
9296 2003-01-13  Duncan Mak  <duncan@ximian.com>
9297
9298         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
9299         gc-internal.h. 
9300         
9301 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
9302
9303         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
9304
9305 2003-01-11  Martin Baulig  <martin@ximian.com>
9306
9307         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
9308         this to 20 for the release.
9309
9310 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
9311
9312         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
9313
9314         * loader.c (mono_method_get_marshal_info): bug fix
9315
9316         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
9317         structures with explicit layout
9318
9319 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
9320
9321         * profiler.c: made the output more readable (and sorted). 
9322         Added caller information for the allocation profiler.
9323
9324 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
9325
9326         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
9327
9328 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9329
9330         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
9331         to get value types.
9332         
9333 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
9334
9335         * object.c, profiler.h, profiler.c, profiler-private.h:
9336         Added object allocation profiler.
9337
9338 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
9339
9340         * reflection.h, reflection.c: handle global methods.
9341         Compress blob entries.
9342
9343 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
9344
9345         * marshal.c: fix compilation.
9346
9347 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
9348
9349         * loader.c (mono_method_get_marshal_info): impl.
9350
9351         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
9352
9353 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9354
9355         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
9356         for reference types.
9357
9358 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
9359
9360         * loader.c: fixed off by one error in loaded parameter names.
9361
9362 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
9363
9364         * marshal.c (mono_marshal_get_icall_wrapper): like
9365         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
9366         instead of a MonoMethod.
9367
9368 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9369
9370         * decimal.c: fixed bug #36537.
9371
9372 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
9373
9374         * marshal.c: throw a missing method exception if a
9375         P/Invoke method is not found.
9376
9377 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
9378
9379         * icall.c: allow a null this for constructors.
9380
9381 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
9382
9383         * icall.c: raise the proper exceptions if the arguments to the
9384         internal Invoke are incorrect.
9385
9386 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
9387
9388         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
9389
9390 2003-01-03  Martin Baulig  <martin@ximian.com>
9391
9392         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
9393
9394 2002-12-31  Martin Baulig  <martin@ximian.com>
9395
9396         * debug-mono-symfile.c: Completely rewrote the type section.
9397         Instead of using individual malloc()ed fields, we use one big
9398         continuous memory area and offsets into this area.
9399         See the comments in the source code for details.
9400
9401 2002-12-30  Martin Baulig  <martin@ximian.com>
9402
9403         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
9404
9405 2002-12-30  Martin Baulig  <martin@ximian.com>
9406
9407         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
9408         line number table in this data blob instead of using an external
9409         pointer.
9410
9411 2002-12-28  Martin Baulig  <martin@ximian.com>
9412
9413         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
9414
9415 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
9416
9417         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
9418         as a boxed return type.
9419
9420 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
9421
9422         * appdomain.c
9423         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
9424         g_build_filename to properly get separators on the filename created.
9425
9426         * object.h: Small change, introduce MonoMarshalByRefObject to
9427         track the layout of that structure in the C# universe as we make
9428         changes there.
9429
9430 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
9431
9432         * object.c: removed assert to allow static fields on interfaces.
9433         * loader.c: a TypeSpec may be used for any type, not just arrays.
9434
9435 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
9436
9437         * class.c, class.h: added mono_class_array_element_size ().
9438         Ignore static methods in interfaces.
9439
9440 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9441
9442         * threads.c: fixed the build under cygwin.
9443
9444 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
9445
9446         * reflection.c: handle nullref constants. Allocate keys for
9447         reflection handles with the GC.
9448
9449 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
9450
9451         * threads.c, threads.h: added mono_thread_get_abort_signal()
9452         to get a suitable signal for thread abort.
9453
9454 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
9455
9456         * metadata.c: fix handling of ExportedType table.
9457
9458 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9459
9460         * icall.c: added WriteWindowsDebugString internal call.
9461
9462 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9463
9464         * reflection.h: added fields to match C# implementation.
9465
9466 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9467
9468         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
9469
9470 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
9471
9472         * gc.h, gc-internal.h: Rename header for GC internal calls to
9473         gc-internal.h from gc.h as to not clash with Boehm GC having its
9474         header installed as <gc.h> in outside include paths.
9475         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
9476         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
9477
9478 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9479
9480         * icall.c: assign minor, build and revision in FillName.
9481
9482 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
9483
9484         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
9485         Added support for running code generated by Reflection.Emit.
9486
9487 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9488
9489         * appdomain.c: check for NULL argument in LoadFrom.
9490
9491 2002-12-10  Dick Porter  <dick@ximian.com>
9492
9493         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
9494
9495 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9496
9497         * appdomain.c: fix buglet when building exe file name.  Handle full
9498         assembly name (needed after latest changes to AssemblyName).
9499         * image.c:
9500         (mono_image_close): free some hashtables.
9501
9502 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
9503
9504         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
9505         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
9506         on some systems (redhat 7.3) 
9507
9508 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
9509
9510         * threads.c: delete the critical section of a sync block,
9511         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
9512
9513 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
9514
9515         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
9516
9517 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9518
9519         * appdomain.[ch]: handle the assembly preload event to try loading the
9520         assemblies using the paths we have in the current domain.
9521
9522         * assembly.[ch]: created an assembly preload hook that is called to try
9523         loading the assembly by other means that the ones provided here.
9524
9525         * domain.c: initialize the domain search path.
9526
9527         From now on, assemblies (TODO: except corlib and System) are loaded
9528         according to these rules when using mono_assembly_load ():
9529
9530                 1. It tries to load the assembly from the ApplicationBase
9531                 of the current domain appending .dll and .exe (TODO: have to
9532                 try loading from name/name.dll and name/name.exe).
9533
9534                 2. It tries the search path specified in PrivateBinPath for the
9535                 current domain (if any).
9536
9537                 3. Previous behavior.
9538
9539 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
9540
9541         * icall.c: implemented GetInterfaceMap() related icall.
9542         * domain.c, loader.h: load MethodInfo in mono_defaults.
9543
9544 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
9545
9546         * gc.c: disable the finalizer thread for now, untill all the issues
9547         with it are resolved.
9548
9549 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
9550
9551         * string-icalls.c: handle embedded nulls in string ctor when the
9552         length is specified.
9553
9554 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
9555
9556         * class.c: look for explicit interface implementation in parent
9557         classes, too.
9558
9559 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
9560
9561         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
9562
9563 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
9564
9565         * gc.c: protect handles with a critical section.
9566
9567 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9568
9569         * icall.c:
9570         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
9571         parameters. If no assembly specified, try getting the type from all
9572         the assemblies in the current domain, else, load the assembly and get
9573         the type from it.
9574
9575 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9576
9577         * marshal.c: applied patch from Aleksey Demakov that fixes
9578         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
9579
9580 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9581
9582         * icall.c: fixed get_location.
9583
9584 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
9585
9586         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
9587         declarations to make it work with older gcc. 
9588
9589         * loader.c (mono_get_method): set signature->pinvoke for native calls
9590
9591 2002-11-20  Dick Porter  <dick@ximian.com>
9592
9593         * threads.c (mono_thread_init): Set the main thread's handle
9594
9595 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
9596
9597         * gc.c: allow compilation without GC support. Changed to match the
9598         mono coding style.
9599
9600 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
9601
9602         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
9603
9604 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
9605
9606         * reflection.c: set a public key token on the core assemblies.
9607
9608 2002-11-18  Dick Porter  <dick@ximian.com>
9609
9610         * threads.c: Split out some thread initialisation so that other
9611         files can set the start callback function.
9612
9613         * gc.c: Run finalisers in a separate thread, to avoid stack
9614         overflow.  Fixes bug 31333.
9615
9616         * appdomain.c: Set up GC finalisation thread.
9617
9618         * reflection.c: 
9619         * object.c: 
9620         * domain.c: Use gc.h macros for GC_malloc
9621         
9622 2002-11-15  Dick Porter  <dick@ximian.com>
9623
9624         * threadpool.c: 
9625         * threads.c:
9626         * appdomain.c: Removed mono_runtime_init_with_attach(),
9627         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
9628         merging the extra parameter with the existing function.  Removed
9629         unneeded code in mono_thread_attach().
9630
9631 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
9632
9633         * image.c (mono_image_loaded_by_guid): a method to get loaded
9634         images by guid. 
9635         (load_metadata_ptrs): we store the guid as string.
9636
9637 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
9638
9639         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
9640
9641         * metadata.c (mono_guid_to_string): imported method form Zoltan
9642         Varga (slightly modified)
9643
9644         * assembly.c (mono_assembly_open): load precompiled code
9645
9646         * loader.h (MonoMethod): we store the method token for use in the
9647         aot compiler. 
9648
9649 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9650
9651         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
9652         the hook function called when an assembly is loaded.
9653         
9654         * domain.c: Modified file.
9655         (mono_domain_assembly_load): removed hash table insertion of assemblies.
9656
9657         Fixes bug #33196.
9658
9659 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
9660
9661         * reflection.c: Map PEFileKind to the value expected by the WinNT
9662         image loader. 
9663
9664 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9665
9666         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
9667         Read until the buffer is filled completely.
9668
9669 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9670
9671         * icall.c: implemented MonoType.InternalGetEvent ().
9672
9673 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9674
9675         * appdomain.c: implemented InitAppDomainSetup. Delayed
9676         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
9677         the entry_assembly.
9678
9679         * assembly.c: base_dir is now an absolute path ending with
9680         G_DIR_SEPARATOR.
9681
9682         * icall.c: modified get_location according to the above changes.
9683
9684         * object.c: init AppDomain.SetupInformation for the default domain after
9685         we have the entry assembly.
9686
9687         * domain.c: when unloading a domain, setup = NULL.
9688
9689 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
9690
9691         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
9692
9693 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
9694
9695         * object.h, object.c: introduced mono_object_get_virtual_method ()
9696         to lookup the method invoked on an object when a callvirt is done on
9697         a method.
9698         * icall.c: make MethodInfo::Invoke() always do a virtual call.
9699
9700 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9701
9702         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
9703         current domain when loaded an assembly and failed to load it.
9704
9705         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
9706
9707 2002-10-31  Dick Porter  <dick@ximian.com>
9708
9709         * icall.c: 
9710         * file-io.h: 
9711         * file-io.c: Return the error status in a parameter, as the
9712         GetLastError() value has long since been blown away if we try and
9713         look it up in a subsequent internal call invocation.  Delete the
9714         GetLastError() internal call, because it's useless.
9715
9716 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
9717
9718         * class.[ch]: added cast_class to fix bug 29517
9719
9720 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
9721
9722         * marshal.c: create valid IL code in the filter clause:
9723         the new JIT is less forgiving:-)
9724
9725 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9726
9727         * icall.c: removed get_property internal call.
9728
9729 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
9730
9731         * appdomain.h domain.c: Added an ID to appdomains.
9732         
9733         * threads.c threads.h icall.c: Implement icall
9734         Thread:GetDomainID(), and remove unused icall 
9735         CurrentThreadDomain_internal.
9736
9737 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9738
9739         * icall.c: Don't recurse through the base types in GetConstructor.
9740         Fixes bug #32063. 
9741
9742 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
9743
9744         * mempool.h, mempool.c: added mono_mempool_empty() and
9745         mono_mempool_stats().
9746
9747 2002-10-23  Dick Porter  <dick@ximian.com>
9748
9749         * file-io.c: 
9750         * file-io.h: 
9751         * icall.c: Added MonoIO.GetFileType internal call
9752
9753 2002-10-17  Dick Porter  <dick@ximian.com>
9754
9755         * appdomain.c (mono_runtime_cleanup): Don't signal the async
9756         delegate semaphore before waiting for all threads to finish,
9757         because new threads can also call async delegates.  Fixes bug
9758         32004.
9759
9760         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
9761         of 3 seconds, in case another async job is queued.  (This part is
9762         needed because the bug fix reintroduced the 3s exit lag.)  This
9763         makes the mono_runtime_shutdown flag superfluous.
9764
9765 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
9766
9767         * reflection.c: include ehader size in method section headers.
9768         Really check for suplicated modules entries.
9769
9770 2002-10-17  Martin Baulig  <martin@gnome.org>
9771
9772         * debug-mono-symfile.c: Added back support for locals.
9773
9774 2002-10-14  Martin Baulig  <martin@gnome.org>
9775
9776         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
9777         MONO_TYPE_VOID.
9778
9779 2002-10-14  Martin Baulig  <martin@gnome.org>
9780
9781         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
9782         mono_class_get() instead of looking in the class cache. 
9783
9784 2002-10-13  Martin Baulig  <martin@gnome.org>
9785
9786         * debug-mono-symfile.c: Set version number to 28, include the
9787         signature in method names.
9788
9789 2002-10-13  Martin Baulig  <martin@gnome.org>
9790
9791         * debug-mono-symfile.h: Set version number to 27.
9792
9793 2002-10-11  Martin Baulig  <martin@gnome.org>
9794
9795         * gc.c: Don't register/unregister NULL pointers as disappearing links.
9796
9797 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
9798
9799         * metadata.c, metadata.h: added helper function to allocate signatures.
9800
9801 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9802
9803         * icall.c: added internal call to get the location of machine.config.
9804
9805 2002-10-08  Martin Baulig  <martin@gnome.org>
9806
9807         * debug-mono-symfile.c: Ignore classes with a pending init for the
9808         moment.
9809
9810 2002-10-03  Dick Porter  <dick@ximian.com>
9811
9812         * threads.c: Freebsd pthread_t is a pointer
9813
9814 2002-10-03  Dick Porter  <dick@ximian.com>
9815
9816         * socket-io.c: Implemented GetHostName_internal
9817
9818 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9819
9820         * mono-config.c:
9821         (mono_config_parse_file): don't leak the text.
9822
9823 2002-10-02  Martin Baulig  <martin@gnome.org>
9824
9825         * debug-mono-symfile.c: Added support for methods.
9826
9827 2002-10-01  Martin Baulig  <martin@gnome.org>
9828
9829         * debug-mono-symfile.c: Don't emit methods and line numbers for
9830         the dynamic symbol file, just write the type table.  We can easily
9831         have an external helper program which creates a symbol file for an
9832         IL file.        
9833
9834 2002-10-01  Dick Porter  <dick@ximian.com>
9835
9836         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
9837         Only add the handle to the cleanup array when we're about to
9838         launch the thread.  Bug 31425 deadlocked when the test was run on
9839         mono under w32.
9840
9841 2002-10-01  Martin Baulig  <martin@gnome.org>
9842
9843         * debug-mono-symfile.c: Added support for properties.
9844
9845 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
9846
9847         * reflection.c: unaligned store fix from Mark Crichton
9848         <crichton@gimp.org>.
9849
9850 2002-09-27  Martin Baulig  <martin@gnome.org>
9851
9852         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
9853         New interncall.
9854
9855 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
9856
9857         * assembly.h, assembly.c: use a sane API to hook into the assembly
9858         loading process instead of a useless special-purpouse hack
9859         (ngen needs a hook, too, for example).
9860
9861 2002-09-27  Dick Porter  <dick@ximian.com>
9862
9863         * threads.c (mono_thread_init): Call GetCurrentProcess() so
9864         io-layer can set up some process handle info.  Not needed on w32,
9865         but doesn't hurt either.
9866
9867         * process.c: Pass the program name in the second parameter to
9868         CreateProcess, so the path is searched.  Include the working
9869         directory. Implemented process name, process enumeration, and some
9870         process detail internal calls.
9871         
9872         * icall.c: Added internal calls for process lookup, and some
9873         process details
9874
9875 2002-09-26  Martin Baulig  <martin@gnome.org>
9876
9877         * assembly.c (mono_install_open_assembly_hook): New global
9878         function to install a function to be invoked each time a new
9879         assembly is loaded.
9880         (mono_assembly_open): Run this callback function if set.
9881
9882         * debug-mono-symfile.c: Put back line numbers for the dynamic
9883         symbol file and also record the .il file as source file.  This
9884         allows us to install the temporary symbol file as `file.dbg' just
9885         like a compiler-generated one.
9886
9887 2002-09-26  Nick Zigarovich <nick@chemlab.org>
9888
9889         * Corrected typo in gc.c (BOHEM vs BOEHM).
9890
9891 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9892
9893         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
9894         GetProperties. Also avoid calling g_slist_length in GetProperties and
9895         GetMethods.
9896
9897 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
9898
9899         * reflection.c: avoid unaligned stores (bug spotted by
9900         Mark Crichton  <crichton@gimp.org>).
9901
9902 2002-09-25  Martin Baulig  <martin@gnome.org>
9903
9904         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
9905         instead of guint64 for addresses and added prologue/epilogue info.
9906
9907 2002-09-25  Martin Baulig  <martin@gnome.org>
9908
9909         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
9910         store line number info.  For the dynamic symbol file, we only need
9911         to provide the JIT generated dynamic line number info for the dynamic
9912         symbol file.
9913
9914 2002-09-25  Martin Baulig  <martin@gnome.org>
9915
9916         * debug-mono-symfile.h: Incremented version number.
9917
9918 2002-09-24  Martin Baulig  <martin@gnome.org>
9919
9920         * class.c (mono_debugger_class_init_func): New global function
9921         pointer variable.
9922         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
9923         call it.
9924
9925         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
9926         function.  This is called via the mono_debugger_class_init_func
9927         hook to add all types to the dynamic type table.
9928         (ves_icall_MonoDebugger_GetType): New interncall to get a class
9929         from its metadata token.
9930
9931         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
9932         New interncall for the debugger.
9933
9934 2002-09-24  Nick Drochak <ndrochak@gol.com>
9935
9936         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
9937         before using it in case it is null.
9938         
9939 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9940
9941         * metadata.c: allow custom modifiers in local var signatures
9942         (bug spotted by Zoltan Varga).
9943
9944 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
9945
9946         * class.c: deal with the <Module> class that may have a NULL vtable.
9947         Eliminate warnings.
9948
9949 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
9950
9951         * image.c, image.h: more strong name helpers.
9952         * monosn.c: more work: convert pem keys to cryptoapi format.
9953
9954 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
9955
9956         * string-icalls.c: speedup IndexOf.
9957
9958 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
9959
9960         * icall.c: updates from Zoltan.2.Varga@nokia.com.
9961
9962 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
9963
9964         * icall.c: cleanup: use mono_object_domain ().
9965
9966 2002-09-23  Martin Baulig  <martin@gnome.org>
9967
9968         * debug-mono-symfile.c: Improved type support.
9969
9970 2002-09-22  Martin Baulig  <martin@gnome.org>
9971
9972         * debug-mono-symfile.c: Added support for reference types and strings.
9973
9974 2002-09-22  Martin Baulig  <martin@gnome.org>
9975
9976         * debug-mono-symfile.c: Started to work on the type table.
9977
9978 2002-09-21  Martin Baulig  <martin@gnome.org>
9979
9980         * debug-mono-symfile.c: Largely reworked the symbol table format.
9981         The symbol table is now incrementally updated each time a new
9982         method is added.  We're now also using our own magic and version
9983         so that you don't need to recompile all your classes if the
9984         dynamic table changes.
9985         (mono_debug_update_mono_symbol_file): Removed.
9986         (mono_debug_symfile_add_method): New function to add a method.
9987
9988 2002-09-21  Martin Baulig  <martin@gnome.org>
9989
9990         * icall.c
9991         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
9992         New interncall.
9993
9994         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
9995         New interncall to get a method from its metadata token.
9996
9997 2002-09-21  Martin Baulig  <martin@gnome.org>
9998
9999         * debug-mono-symfile.c: Create type table.
10000
10001 2002-09-20  Martin Baulig  <martin@gnome.org>
10002
10003         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
10004
10005 2002-09-20  Martin Baulig  <martin@gnome.org>
10006
10007         * debug-mono-symfile.c: Provide information about params and locals.
10008
10009 2002-09-20  Martin Baulig  <martin@gnome.org>
10010
10011         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
10012         New interncall.
10013
10014         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
10015         interncall to get a method from its metadata token.
10016
10017 2002-09-20  Martin Baulig  <martin@gnome.org>
10018
10019         * debug-mono-symfile.c: Added a few checks for method->header
10020         being non-NULL.  This should never happen, but for the moment
10021         let's use a g_warning() rather than a g_assert().
10022
10023 2002-09-19  Mark Crichton  <crichton@gimp.org>
10024
10025         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
10026         even if support for it isn't present.  Added an #ifdef to fix this.
10027
10028         * socket-io.c: Added checks back for Solaris support.
10029
10030 2002-09-19  Martin Baulig  <martin@gnome.org>
10031
10032         * debug-mono-symfile.c (read_string, write_string): Reflect latest
10033         changes in the symbol file format.
10034
10035 2002-09-18  Martin Baulig  <martin@gnome.org>
10036
10037         * debug-mono-symfile.c: Set version number to 21.
10038
10039 2002-09-18  Dick Porter  <dick@ximian.com>
10040
10041         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
10042         on netbsd.  Fixes bug 30051.
10043
10044 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10045
10046         * reflection.c:
10047         (set_version_from_string): little fix.
10048
10049 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
10050
10051         * monosn.c, Makefile.am: added strong name utility.
10052         * reflection.h, reflection.c: implemented delayed signing,
10053         locale, version and hash id assembly attributes.
10054
10055 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
10056
10057         * loader.c, metadata.c: load param attributes in signatures.
10058
10059 2002-09-16  Martin Baulig  <martin@gnome.org>
10060
10061         * debug-mono-symfile.c: Added string table with all method names.
10062
10063 2002-09-14  Martin Baulig  <martin@gnome.org>
10064
10065         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
10066         fast method lookup.
10067
10068 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
10069
10070         * reflection.c: record the public key token of referenced assemblies.
10071
10072 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
10073
10074         * image.c, image.h: added functions to get the strong name and the
10075         public key of an assembly.
10076         * pedump.c: use them.
10077
10078 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
10079
10080         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
10081
10082 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
10083
10084         * marshal.c (mono_marshal_get_managed_wrapper): Added
10085         MONO_TYPE_BOOLEAN 
10086
10087 2002-09-11  Martin Baulig  <martin@gnome.org>
10088
10089         * gc.c: Call GC_unregister_disappearing_link() on all links when
10090         finalizing them, this is necessary to aviod a crash in boehm's
10091         finalize handler.
10092
10093 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10094
10095         * gc.c: handle GetTarget for finalized objects spotted and fixed by
10096         nick@chemlab.org.
10097
10098 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
10099
10100         * icall.c: implemented MonoType::Module.
10101         * reflection.c, reflection.h: mono_module_get_object () from
10102         Tomi Pakarinen <tomi.pakarinen@welho.com>.
10103
10104 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
10105
10106         * icall.c: ignore overridden methods in GetMethods ().
10107         Fix for FieldInfo::SetValue().
10108         * object.c: handle float/double in runtime invoke.
10109
10110 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
10111
10112         * object.c: allow a constructor to be called again on an object.
10113
10114 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
10115
10116         * class.h, class.c: move field layout code to it's own function and
10117         export it. Get an interface id earlier. Move fields in MonoClass
10118         so they are more cache friendly and align the bitfields.
10119         * loader.c: temporary handle get_param_names() for a runtime method.
10120         * reflection.c, reflection.h: more code to handle runtime creation of
10121         types.
10122
10123 2002-09-09  Martin Baulig  <martin@gnome.org>
10124
10125         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
10126         signature with the pinvoke field being set for the actual call.
10127
10128 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10129
10130         * icall.c: removed some unused icalls. Start of map of glib charsets
10131         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
10132
10133 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
10134
10135         * debug-helpers.c: break infinite loop (found and fixed by
10136         Holger Arnold <harnold@gmx.de>).
10137
10138 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
10139
10140         * icall.c: target may be null in create_delegate.
10141
10142 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
10143
10144         * marshal.c: handle a boolean return type.
10145
10146 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
10147
10148         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
10149
10150 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
10151
10152         * gc.c: fix weakreferences.
10153
10154 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
10155
10156         * icall.c: added icall to get default codepage.
10157
10158 2002-09-03  Dick Porter  <dick@ximian.com>
10159
10160         * threads.h: 
10161         * threads.c: Use MonoThread instead of MonoObject where
10162         apropriate.
10163
10164         Store running thread objects in a hash table, so that we have all
10165         the info to hand when waiting for them to finish
10166         (means we don't need OpenThread() any more, so mingw builds should
10167         be fully functional again.)
10168
10169         * verify.c:
10170         * object.h: Added thread ID to MonoThread
10171
10172 2002-09-03  Martin Baulig  <martin@gnome.org>
10173
10174         * icall.c (System.Reflection.Assembly::get_location): New interncall.
10175
10176 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10177
10178         * icall.c: fixed leak in get_temp_path. Thanks lupus.
10179
10180 2002-09-03  Martin Baulig  <martin@gnome.org>
10181
10182         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
10183         argument to store the end address of the disassembled instruction.
10184
10185         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
10186         here from debug-symfile.h.
10187         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
10188         JIT into this struct.
10189         (MonoSymbolFile): Added `char *image_file' field.
10190         (MonoDebugGetMethodFunc): Removed.
10191         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
10192         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
10193         (mono_debug_find_method): New method.
10194
10195         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
10196         create a full symbol file.
10197         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
10198         and static symbol files.
10199         (mono_debug_find_method): The symbol file keeps an internal method hash,
10200         call this to get a MonoDebugMethodInfo from a MonoMethod.
10201
10202         * debug-symfile.[ch]: Removed.
10203
10204 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
10205
10206         * image.c (do_mono_image_open): Remove linker version check.
10207
10208 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
10209
10210         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
10211         wrappers for instance methods.
10212         
10213 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10214
10215         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
10216
10217 2002-08-28  Dick Porter  <dick@ximian.com>
10218
10219         * Makefile.am: Export HOST_CC for w32 builds
10220
10221 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
10222
10223         * file-io.c process.c: MonoString are null terminated, no
10224         need for mono_string_to_utf16() anymore.
10225
10226 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10227
10228         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
10229
10230 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
10231
10232         * icall.c, reflection.h: speedup System.MonoType.
10233
10234 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
10235
10236         * reflection.c: allow null as the value of a string argument in
10237         custom attributes constructors.
10238
10239 2002-08-27  Martin Baulig  <martin@gnome.org>
10240
10241         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
10242         `trampoline_address' field.
10243
10244 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
10245
10246         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
10247         check (fixes bug #29486) 
10248
10249 2002-08-27  Martin Baulig  <martin@gnome.org>
10250
10251         * debug-mono-symfile.c: Changed the file format in a way that allows us
10252         open it read-only and to use a specially malloced area for all the
10253         dynamic data.  We can now also generate a symbol file on-the-fly if we're
10254         debugging IL code and there is no MCS generated symbol file for it.
10255
10256 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
10257
10258         * object.c: added a define for a good string and array
10259         creation speedup (not enabled by default because we need to deal with
10260         the synch stuff).
10261
10262 2002-08-26  Martin Baulig  <martin@gnome.org>
10263
10264         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
10265         function to create a dynamic symbol file.  This is used by the
10266         debugger to create a symbol file for IL code on-the-fly.
10267
10268 2002-08-26  Martin Baulig  <martin@gnome.org>
10269
10270         * loader.c (mono_lookup_pinvoke_call): Include the error message
10271         from g_module_error() in the error message.
10272
10273 2002-08-24  Martin Baulig  <martin@gnome.org>
10274
10275         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
10276         function to update the symbol file.  The symbol file is mmap()ed
10277         writable, but private.  This allows us to install the symbol file
10278         together with the assembly.
10279
10280 2002-08-24  Martin Baulig  <martin@gnome.org>
10281
10282         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
10283         but they can read the new symbol file format which mcs is now creating.
10284
10285         * debug-symfile.c (mono_debug_find_source_location): Moved to
10286         debug-mono-symfile.c; this is now operating on the new symbol file.
10287
10288 2002-08-23  Martin Baulig  <martin@gnome.org>
10289
10290         * debug-helpers.c (mono_method_desc_from_method): New function to get
10291         a MonoMethodDesc from a MonoMethod.
10292
10293 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
10294
10295         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
10296         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
10297
10298 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
10299
10300         * string-icalls.[ch]: make helper methods static.
10301
10302 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10303
10304         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
10305         types to it and to SetValueInternal.
10306
10307         * object.c: Moved handle_enum label to its proper place. This was the
10308         f... bug! ;-)
10309
10310         This time i compiled mcs and gtk-sharp and they both work.
10311
10312 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10313
10314         * icall.c: reverted partially my previous patch until 
10315         object.c:set_value handles enums correcly.
10316
10317 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10318
10319         * icall.c:
10320         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
10321         (ves_icall_System_Environment_get_MachineName): removed warning when
10322         compiling under cygwin.
10323
10324 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
10325
10326         * object.c: fixed field_get_value() for reference types.
10327
10328 2002-08-22  Dick Porter  <dick@ximian.com>
10329
10330         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
10331         Don't free a buffer while it's still needed.  Patch from Jonathan
10332         Liger <Jonathan.liger@wanadoo.fr>
10333
10334 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
10335
10336         * icall.c (ves_icall_System_Environment_get_Platform): Add new
10337         internal call.
10338
10339 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
10340
10341         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
10342         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
10343
10344         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
10345         we call unmanaged code which throws exceptions.
10346
10347 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10348
10349         * appdomain.h: added per-domain entry_assembly.
10350         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
10351         arguments.
10352         * icall.c: Assembly::GetEntryAssembly icall.
10353         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
10354         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
10355
10356 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10357
10358         * appdomain.h, gc.c: added mono_domain_finalize ().
10359
10360 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10361
10362         * object.c:
10363         (mono_print_unhandled_exception): changed g_warning by g_printerr
10364         because g_log has a 1024 characters limit (yeah, i got a big stack
10365         trace). Don't print exception name, that should be in ToString 
10366         returned string.
10367
10368 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10369
10370         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
10371         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
10372
10373 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10374
10375         * object.c:
10376         (mono_print_unhandled_exception): after previous commit, i realized
10377         that MS calls ToString on the exception. I changed this function to
10378         do that. This way we get stack_trace for free.
10379
10380 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10381
10382         * object.c:
10383         (mono_print_unhandled_exception): invoke Message property instead of
10384         getting 'message' field from Exception. Don't allocate memory for
10385         'trace' and 'message' if not needed.
10386
10387 2002-08-18  Dick Porter  <dick@ximian.com>
10388
10389         * unicode.c: Fix asserts to match Encoder.cs checks
10390
10391 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10392
10393         * marshal.c: fix unaligned store issue and a few wrong
10394         opcode argument types.
10395
10396 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10397
10398         * icall.c: added GetUninitializedObjectInternal internal call.
10399
10400 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
10401
10402         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
10403         to the right domain.
10404
10405 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
10406
10407         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
10408
10409         * class.c (class_compute_field_layout): set blittable to false for Strings
10410
10411         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
10412
10413 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10414
10415         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
10416         first chunk of code to create types at runtime. Code to
10417         handle ReflectedType/DeclaringType. Make reflection handles
10418         domain specific.
10419
10420 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
10421
10422         * class.c: set correct name in arrays.
10423
10424 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
10425
10426         * appdomain.c (mono_domain_transfer_object): make it work with
10427         valuetypes. bug fixes.
10428
10429 2002-08-12  Dick Porter  <dick@ximian.com>
10430
10431         * object.h: Rename some parameters to avoid c++ keywords (Patch
10432         from Joseph Wenninger <kde@jowenn.at>)
10433
10434 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
10435
10436         * icall.c: added icall to implement Assembly.GetFile*.
10437
10438 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
10439
10440         * reflection.h, reflection.c: code to embed managed resources.
10441
10442 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
10443
10444         * class.c: move all the type size stuff into
10445         class_compute_field_layout().
10446
10447 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10448
10449         * class.c: ensure enums have always the correct instance size.
10450         * unicode.c: remove wrong assert.
10451
10452 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
10453
10454         * assembly.c: fix mem corruption issue.
10455         * image.h, image.c: added mono_image_get_resource () to access
10456         managed resources.
10457         * icall.c: implemented Assembly.EntryPoint property and some
10458         Managed Resources related internalcalls.
10459
10460
10461 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
10462
10463         * image.c, image.h: impemented mono_image_get_entry_point ().
10464         * appdomain.c: use mono_image_get_entry_point.
10465
10466 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10467
10468         * reflection.c: support the object type argument when loading
10469         custom attributes.
10470
10471 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
10472
10473         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
10474         String as return type.
10475
10476 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
10477
10478         * reflection.c: fix encoding of named args for custom attrs to match
10479         the ms implementation. Read them back when instantiating custom
10480         attributes.
10481
10482 2002-08-02  Radek Doulik  <rodo@ximian.com>
10483
10484         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
10485         by Dietmar as quick fix
10486         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
10487         16 as stack size, used on more places as quick fix before Dietmar
10488         will fix it properly
10489
10490 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
10491
10492         * object.h, object.c: added accessors for fields and properties.
10493
10494 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10495
10496         * class.c, class.h: made mono_class_get_field_from_name ()
10497         loop on parent types.
10498         Added mono_class_get_property_from_name ().
10499
10500 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
10501
10502         * class.c, class.h: move the code to setup the type vtable in its own
10503         function so that it can be reused also for types created at runtime.
10504         Eliminate the "class" identifier from the header file.
10505         * reflection.c: setup the vtable for enums so that we can create
10506         objects for use in SetConstant ().
10507
10508 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
10509
10510         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
10511         instead of the delegate itself as this pointer (bug #28383)
10512
10513 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
10514
10515         * marshal.c (mono_marshal_get_managed_wrapper): added return type
10516         conversions.
10517
10518 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10519
10520         * loader.c: don't set the pinvoke bit on icalls.
10521
10522 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
10523
10524         * debug-helpers.c (mono_method_full_name): only print a number to
10525         indicate wrapper type (so that the output is more readable in traces).
10526
10527 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
10528
10529         * class.c (mono_class_init): include method override patch from Paolo
10530
10531 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
10532
10533         * icall.c: fixed GetTypeCode().
10534
10535 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
10536
10537         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
10538         use real delegate invoke function to make it work with multicast
10539         delegates (fix bug# 28291).
10540
10541 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
10542
10543         * object.c: load constant strings.
10544
10545 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10546
10547         * reflection.c: no magic numbers.
10548         * tabledefs.h: security action enum.
10549
10550 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
10551
10552         * assembly.c: fix possible memory corruption.
10553
10554 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
10555
10556         * reflection.h, reflection.c: added support for linking resources.
10557         * verify.c: check we have an updated corlib.
10558
10559 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
10560
10561         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
10562         string arrays.
10563         (mono_marshal_string_array): null terminate unmanaged string arrays.
10564         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
10565
10566 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
10567
10568         * icall.c: Type.GetType () can now return also types from the
10569         calling assembly.
10570
10571 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
10572
10573         * loader.h, loader.c: stack walking support.
10574         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
10575         GetCallingAssembly.
10576
10577 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
10578
10579         * marshal.c: added optimisations for blittable types 
10580
10581         * class.c (mono_array_class_get): do not set blittable attribute on arrays
10582         (mono_class_setup_mono_type): set blittable attribute for single
10583         and double.
10584
10585         * marshal.c (mono_string_utf8_to_builder): impl.
10586         (mono_string_builder_to_utf8): impl.
10587         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
10588
10589 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
10590
10591         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
10592         (mono_marshal_get_managed_wrapper): impl. byref types
10593
10594 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10595
10596         * icall.c:
10597         (search_method): don't display debug message. 
10598
10599 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
10600
10601         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
10602
10603 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
10604
10605         * appdomain.c: set the missing filename when throwing exception.
10606
10607 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
10608
10609         * metadata.c (mono_type_size): code cleanup
10610         (mono_type_stack_size): removed some test code
10611
10612 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
10613
10614         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
10615         mono_get_exception_file_not_found now.
10616
10617         * exception.c (mono_exception_from_name_two_strings): New version
10618         that will call a constructor with two string arguments. 
10619         (mono_get_exception_file_not_found): New helper routine, used to
10620         report file-not-found errors.
10621
10622 2002-07-20  Dick Porter  <dick@ximian.com>
10623
10624         * process.h:
10625         * process.c: Pass file handles to CreateProcess
10626         
10627         * icall.c:
10628         * file-io.h:
10629         * file-io.c: Implemented CreatePipe
10630
10631 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
10632
10633         * metadata.c (mono_get_param_info): set alignment for value types
10634
10635 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10636
10637         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
10638         Constify mono_domain_assembly_open().
10639         * loader.c: handle null namespace in icalls.
10640
10641 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
10642
10643         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
10644         (emit_str_to_ptr_conv): marshal object as structs
10645
10646         * metadata.c (mono_type_to_unmanaged): marshal object as structs
10647
10648         * marshal.c (mono_marshal_get_runtime_invoke): support value types
10649
10650 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
10651
10652         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
10653         (mono_marshal_get_native_wrapper): we an now return value types
10654
10655 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10656
10657         * verify.c: more checks implemented.
10658
10659 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
10660
10661         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
10662         (fix bug #27695)
10663         (mono_marshal_get_native_wrapper): allow byref arguments
10664         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
10665         impl. PtrToStringXXX methods
10666         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
10667         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
10668         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
10669         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
10670         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
10671
10672 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10673
10674         * reflection.c: fix buglet in parsing an assembly name.
10675
10676 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
10677
10678         * marshal.c (emit_ptr_to_str_conv): first impl.
10679
10680 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
10681
10682         * object.c, class.h: cache the vtable in the class as suggested by
10683         vargaz@freemail.hu (Zoltan Varga).
10684
10685 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10686
10687         * class.h, loader.c: added mono_field_from_token().
10688         * verify.c: first cut of type checking code.
10689
10690 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
10691
10692         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
10693
10694 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
10695
10696         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
10697         (fix bug #27782)
10698         (mono_marshal_get_remoting_invoke): impl.
10699         (mono_delegate_begin_invoke): impl.
10700         (mono_mb_emit_save_args): impl.
10701         (mono_delegate_end_invoke): impl.
10702         (mono_marshal_get_delegate_begin_invoke):
10703         (mono_marshal_get_delegate_end_invoke):
10704         (mono_marshal_get_delegate_invoke): generate a special name for
10705         those methods (including the signature) and associate them whith
10706         the delegate class. 
10707
10708 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
10709
10710         * reflection.[ch]: 
10711         (mono_reflection_type_from_name): now it has a MonoImage parameter
10712         which is used as the default image to search the type in. If the image
10713         is NULL or getting the type from it fails, it defaults to corlib.
10714
10715         * icall.c: changed 1 call to mono_reflection_type_from_name to match
10716         new parameter.
10717
10718 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10719
10720         * reflection.c: update the parameter table index.
10721
10722 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
10723
10724         * domain.c: don't include the mark byte in the string hash.
10725
10726 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
10727
10728         * icall.cs: icall for Type.GetTypeCode ().
10729         * verify: a couple of fixes and disabled local initialization checks.
10730
10731 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
10732
10733         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
10734
10735         * debug-helpers.c (mono_method_full_name): print the type of the
10736         runtime wrapper
10737
10738         * metadata.c (mono_signature_hash): a hash function for signatures
10739         (mono_signature_hash): better hash algorithm
10740
10741         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
10742
10743         * debug-helpers.c (mono_method_full_name): this can now generate
10744         method names with signatures
10745
10746         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
10747         method dont have this pointers.
10748
10749 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
10750
10751         * reflection.c: fixup typebuilder tokens.
10752         * image.c: fix buglet.
10753         * marshal.h: remove whitespace.
10754         * metadata.h, metadata.c: reinstate code that was removed.
10755         * verify.c: handle catch directives and fix another couple of bugs.
10756
10757 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
10758
10759         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
10760         (mono_marshal_get_native_wrapper): make it comp. with the old code
10761         (mono_marshal_get_native_wrapper): support boolean
10762         (mono_marshal_get_managed_wrapper): support more types
10763
10764 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
10765
10766         * class.c (class_compute_field_layout): compute class->blittable attribute.
10767
10768 2002-07-09  Dick Porter  <dick@ximian.com>
10769
10770         * threads.c: Make the thread cleaning up cope with threads that
10771         call ExitThread()
10772
10773 2002-07-08  Radek Doulik  <rodo@ximian.com>
10774
10775         * reflection.c (method_encode_code): use non-translated values to
10776         compute finally_start, this fixes exception handling on ppc, yay!
10777
10778         * decimal.h (struct signscale): fix endianess
10779
10780 2002-07-07  Radek Doulik  <rodo@ximian.com>
10781
10782         * reflection.c: swap box_val and not val
10783
10784 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
10785
10786         * reflection.c, reflection.h: handle full assembly info in type name.
10787         Handle Type arguments when loading custom attributes.
10788         * icall.c: updated to use new mono_reflection_type_from_name () method.
10789
10790 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10791
10792         * loader.c:
10793         (method_from_memberref): also print assembly name when method not found.
10794
10795 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10796
10797         * icall.c:
10798         (ves_icall_TypeGetProperties): fixed bug #27473. 
10799
10800 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10801
10802         * reflection.c: display image name and token when cannot find the
10803         .ctor for an attribute.
10804
10805 2002-07-05  Martin Baulig  <martin@gnome.org>
10806
10807         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
10808
10809 2002-07-04  Dick Porter  <dick@ximian.com>
10810
10811         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
10812         compile on mingw.  This will cause mingw builds to not wait for
10813         subthreads to terminate after the main thread does.  I've lodged a
10814         bug with the mingw developers for them to wrap OpenThread().
10815
10816 2002-07-03  Dick Porter  <dick@ximian.com>
10817
10818         * threads.c: Store thread IDs instead of handles, because
10819         GetCurrentThread() returns a pseudohandle and therefore stores
10820         useless values.  mono_thread_cleanup() continues checking the
10821         array of threads until it is empty, to cope with subthreads
10822         spawning new threads after the main thread has finished.
10823
10824         * profiler.h:
10825         * profiler.c:
10826         * profiler-private.h: Pass the thread ID to thread profiler
10827         functions, instead of a handle
10828
10829 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
10830
10831         * verify.c: fixes to make it more usable.
10832         * pedump.c: added --verify code to verify IL code in an assembly.
10833
10834 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10835
10836         * reflection.c: turn errors into warnings to allow compiling corlib.
10837
10838 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
10839
10840         * reflection.c: add special cases to compile corlib.
10841
10842 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
10843
10844         * reflection.c: handle properties with only a set method.
10845
10846 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
10847
10848         * opcodes.h: add enum with opcodes in opval order.
10849
10850 2002-07-01  Dick Porter  <dick@ximian.com>
10851         
10852         * object.h:
10853         * object.c (mono_runtime_run_main): Removed unneeded argument
10854
10855 2002-06-28  Martin Baulig  <martin@gnome.org>
10856
10857         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
10858
10859 2002-06-27  Dick Porter  <dick@ximian.com>
10860
10861         * threads.c: Store the handle in both the parent thread and in the
10862         subthread, to minimise the time between starting a new thread and
10863         storing its ID.
10864
10865 2002-06-26  Dick Porter  <dick@ximian.com>
10866
10867         * appdomain.c (mono_runtime_cleanup): Close the socket library
10868         after all the threads have finished, not before
10869
10870 2002-06-26  Martin Baulig  <martin@gnome.org>
10871
10872         * debug-symfile.c (mono_debug_find_source_location): Added
10873         `guint32 *line_number' argument.  If it's not NULL, store the line number
10874         there and return the file name without the line number.
10875
10876 2002-06-25  Dick Porter  <dick@ximian.com>
10877
10878         * icall.c:
10879         * process.h:
10880         * process.c: Process forking and other support functions
10881
10882 2002-06-25  Dick Porter  <dick@ximian.com>
10883
10884         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
10885         things dont happen when the image is closed.
10886         (mono_image_lookup_resource): Walk the resource section looking
10887         for a particular entry
10888
10889         * cil-coff.h: PE resource section decoding
10890
10891 2002-06-25  Dick Porter  <dick@ximian.com>
10892         
10893         * assembly.h:
10894         * assembly.c: 
10895         (mono_assembly_foreach): Accessor functions to walk the list of
10896         loaded assemblies
10897         (mono_assembly_set_main):
10898         (mono_assembly_get_main): Process methods need to know which
10899         assembly is the "main" one
10900
10901         * object.c (mono_runtime_run_main): Record the main assembly
10902
10903         * debug-helpers.c: Fix typo
10904
10905 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
10906
10907         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
10908         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
10909
10910 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
10911
10912         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
10913
10914 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
10915
10916         * image.c (do_mono_image_open): Initialize reference count,
10917         otherwise we leak the MonoImage.
10918
10919 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
10920
10921         * reflection.c: small tweak to handle self-hosting.
10922
10923 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
10924
10925         * reflection.c: fix type name parse code.
10926
10927 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
10928
10929         * reflection.c: break out of the loop.
10930         * image.c: special case corlib.
10931
10932 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10933
10934         * reflection.c: add all the custom attrs at the end to ensure the
10935         ctors have been properly initialized when the attributes are defined
10936         in the current assembly.
10937
10938 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
10939
10940         * reflection.c: handle correctly multiple-nested types.
10941
10942 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
10943
10944         * row-indexes.h: fix typos.
10945         * reflection.c: adjust for typos and fix method_def_or_ref
10946         encoding in MethodImpl table.
10947
10948 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
10949
10950         * reflection.c: fix entry point patching (thanks Serge!).
10951
10952 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
10953
10954         * verify.c: add check for System.Exception
10955
10956 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
10957
10958         * image.c, class.c: minifix for code just c&p'ed.
10959         * reflection.c: warning fix.
10960         * object.h, loader.h, domain.c: load also StringBuilder.
10961
10962 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
10963
10964         * marshal.h, marshal.c: some support code to handle complex marshaling.
10965
10966 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10967
10968         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
10969         Better signatures with vtable error dump.
10970
10971 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
10972
10973         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
10974
10975 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
10976
10977         * icall.c (ves_icall_Type_GetField): impl.
10978
10979 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10980
10981         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
10982         to retrieve a marshal description blob for a field or param.
10983
10984 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
10985
10986         * reflection.h, reflection.c: change order of nested type emission
10987         to avoid table corruption. The NestedTypes table is sorted.
10988         * icall.c: change order of GetConstructor results to workaround mcs bug.
10989
10990 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
10991
10992         * reflection.h, reflection.c: handle field and param marshal
10993         information.
10994
10995 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10996
10997         * icall.c, marshal.c marshal.h: more Marshal class implementation.
10998
10999 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
11000
11001         * reflection.c: fix call convention.
11002
11003 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
11004
11005         * reflection.h, reflection.c: mono_image_get_memberref_token()
11006         takes a type instead of a class, now. Added
11007         mono_image_get_array_token() to create tokens for the special
11008         multi-dim array methods.
11009
11010 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
11011
11012         * assembly.c: handle modules (no assembly table). Split
11013         loading references in its own function.
11014         * class.c: handle moduleref resolution scope.
11015         * image.c, image.h: cache module name in image.
11016
11017 2002-06-07  Martin Baulig  <martin@gnome.org>
11018
11019         * reflection.c (mono_image_get_type_info): Only add a class layout entry
11020         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
11021
11022 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
11023
11024         * icall.c: more signature fixes that used uint instead of int.
11025
11026 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11027
11028         * reflection.c: fixed signature of field refs.
11029
11030 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11031
11032         * class.c, reflection.c: handle typerefs of nested types
11033         (both on read and when writing files).
11034
11035 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
11036
11037         * icall.c: fix method signatures that tried to workaround the previous
11038         typo, d'oh!
11039
11040 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
11041
11042         * debug-helpers.c: fix typo.
11043
11044 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
11045
11046         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
11047         rewrote the PE/COFF writing code (our programs are understood by the
11048         ms runtime, now).
11049
11050 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
11051
11052         * gc.c, gc.h, icall.c: weakreference support.
11053
11054 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
11055
11056         * Makefile.am, mono-config.c: use $(sysconfdir).
11057
11058 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
11059
11060         * icall.c: changed default precision of Double.ToString() to 15.
11061         Fixed memory leak. Unified with Single.ToString.
11062
11063 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
11064
11065         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
11066
11067 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
11068
11069         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
11070         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
11071         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
11072         and myself.
11073
11074 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11075
11076         * debug-symfile.c, sysmath.c: yet more compilation fixes.
11077
11078 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11079
11080         * reflection.c, socket-io.c: more compilation fixes.
11081
11082 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
11083
11084         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
11085         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
11086         unicode.c: warning and compiler compatibility fixes.
11087
11088 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
11089
11090         * class.h, metadata.c: fixed warnings/compilation errors.
11091
11092 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
11093
11094         * Makefile.am, mono-config.c, mono-config.h: configuration file
11095         support routines.
11096         * loader.c, loader.h: make Dll mapping configurable at runtime in the
11097         config file. Export methods to insert and lookup mappings.
11098
11099 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
11100
11101         * reflection.c: handle types and boxed objects in custom attr
11102         constructors.
11103
11104 2002-05-30  Martin Baulig  <martin@gnome.org>
11105
11106         * debug-symfile.c
11107         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
11108
11109 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
11110
11111         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
11112         to lookup the implmap row for a P/Invoke method.
11113         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
11114         P/Invoke method from the runtime on an as needed basis.
11115
11116 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
11117
11118         * metadata.c (mono_metadata_parse_signature): impl.
11119
11120 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11121
11122         * class.c: handle .pack directive.
11123
11124 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
11125
11126         * object.c: initialize static fields with RVA data.
11127
11128 2002-05-25  Martin Baulig  <martin@gnome.org>
11129
11130         * debug-symfile.c
11131         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
11132
11133 2002-05-24  Martin Baulig  <martin@gnome.org>
11134
11135         * debug-symfile.c
11136         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
11137         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
11138         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
11139
11140 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
11141
11142         * object.c: special case string ctros in invoke.
11143         * gc.c: silly whitespace changes.
11144
11145 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
11146
11147         * threadpool.[ch]: impl. a threadpool that can
11148         be used by mint and mono.
11149
11150 2002-05-22  Martin Baulig  <martin@gnome.org>
11151
11152         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
11153         The first argument is now a `MonoReflectionModuleBuilder *', the return
11154         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
11155         `methods' field to get the method builder.  The `token' argument is the
11156         unfixed token.
11157
11158         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
11159         invalid characters instead of g_assert_not_reached()ing.  This seems
11160         to be the behaviour of mscorlib.
11161
11162 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
11163
11164         * object.c (mono_runtime_invoke_array): applied patch from Rachel
11165         Hestilow to fix bug #25104
11166
11167 2002-05-21  Martin Baulig  <martin@gnome.org>
11168
11169         * debug-symfile.c (mono_debug_find_source_location): New function.
11170         Looks up an IL offset in the line number table and returns the source
11171         location as a string.
11172
11173 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11174
11175         * icall.c:
11176         (mono_double_ToStringImpl): changed %f by %g until we have something
11177         better.
11178
11179 2002-05-21  Nick Drochak  <ndrochak@gol.com>
11180
11181         * icall.c : Use different name for Math.Pow's icall.  Needed to check
11182         parameters first in C#.
11183
11184 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11185
11186         * icall.c, reflection.h: added icall to get info about an event.
11187
11188 2002-05-20  Radek Doulik  <rodo@ximian.com>
11189
11190         * object.c (mono_value_box): don't use memcpy for boxing on BIG
11191         endian
11192         (mono_value_box): don't use memcpy for small sizes on
11193         architectures with unaligned access
11194
11195 2002-05-20  Martin Baulig  <martin@gnome.org>
11196
11197         * reflection.c (mono_reflection_setup_internal_class): Don't crash
11198         if `tb->parent == NULL'.
11199         (mono_reflection_create_internal_class): New function.  This is
11200         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
11201         for enum types.
11202
11203         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
11204         New interncall.
11205
11206 2002-05-19  Martin Baulig  <martin@gnome.org>
11207
11208         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
11209         argument to get the length, don't default to the array length.
11210
11211 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
11212
11213         * assembly.c (mono_assembly_setrootdir): New function used to
11214         override the MONO_ASSEMBLIES directory.
11215
11216 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
11217
11218         * icall.c: ValueType_GetHashCode() initialize local var.
11219
11220 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
11221
11222         * reflection.c: sort custom attributes table.
11223
11224 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
11225
11226         * reflection.c: support named args in custom attributes (write support).
11227
11228 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
11229
11230         * reflection.c: fix finally position calculation.
11231
11232 2002-05-15  Radek Doulik  <rodo@ximian.com>
11233
11234         * reflection.c: fixed endianess at many places
11235
11236         * icall.c (ves_icall_InitializeArray): comment out debug msg
11237
11238 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
11239
11240         * object.c (mono_unhandled_exception): new function to handle
11241         unhandled exceptions.
11242         (mono_unhandled_exception): call the UnhandledException event.
11243         (mono_runtime_delegate_invoke): impl.
11244
11245 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
11246
11247         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
11248         returns the RVA, not the direct pointer to the data. Handle the case
11249         when the class size is fixed.
11250
11251 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
11252
11253         * reflection.c: fix some endianess issues.
11254
11255 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
11256
11257         * object.c (mono_runtime_invoke): is now able to catch exceptions.
11258
11259         * threads.c (mono_thread_init): added a callback which is invoked
11260         at thread start.
11261
11262 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
11263         
11264         * icall.c: make GetHashCode return non-negative values.
11265
11266 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
11267
11268         * object.c, icall.c, gc.c: revert to address-based hashcode.
11269
11270 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
11271
11272         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
11273
11274 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
11275
11276         * icall.c, class.c: special case <Module>.
11277
11278 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
11279
11280         * icall.c: fix bug in GetNow().
11281
11282 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
11283
11284         * object.c (mono_runtime_class_init): make sure that we call all
11285         static class constructors.
11286
11287 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
11288
11289         * reflection.c: sort methodsemantics table.
11290
11291 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
11292
11293         * reflection.h, reflection.c: honour init locals setting.
11294
11295 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
11296
11297         * icall.c: copied Double ToStringImpl for Single ToStringImpl
11298
11299 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
11300
11301         * reflection.c: support ContructorBuilders in attribute blob creation.
11302
11303 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11304
11305         * reflection.c: some changes to build a binary that can be run
11306         directly in windows.
11307
11308 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
11309
11310         * loader.c: print a big message when an icall can't be found.
11311
11312 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11313
11314         * string-icalls.c: fix bug 24248.
11315
11316 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
11317
11318         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
11319         icall.c, reflection.h: separate assembly loading by pathname and by
11320         assembly name. Use the MONO_PATH env var to search for assemblies.
11321
11322 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
11323
11324         * assembly.c, image.h: add some support for assemblies
11325         with multiple modules.
11326         * class.c, class.h: export mono_class_from_typeref().
11327         * loader.c: remove duplicated code and use mono_class_from_typeref(),
11328         instead.
11329
11330 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
11331
11332         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
11333         documentation says (the ECMA one is correct).
11334
11335 2002-05-02  Dick Porter  <dick@ximian.com>
11336
11337         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
11338         Don't name the synchronisation mutex.
11339
11340 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
11341
11342         * rand.c
11343         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
11344         Make the prototypes match.
11345         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
11346         Same.
11347
11348         * icall.c
11349         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
11350         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
11351         all systems have tm.tm_zone, so use strftime() with %Z to print
11352         the timezone abreviation into a temp string.
11353
11354         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
11355         rather than mono_array_addr() on a MonoString on Big Endian
11356         machines.
11357
11358 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
11359
11360         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
11361         fix bug 24041
11362
11363 2002-04-30  Dick Porter  <dick@ximian.com>
11364
11365         * socket-io.c: Cope with SOCKET being an integer rather than a
11366         pointer now.
11367
11368         * threads.c: Added Thread_free_internal, to deal with thread
11369         handle cleanup.  Moved calls to handle_store() and handle_remove()
11370         to start_wrapper(), so each can only be called once.  Allocate
11371         synchronisation blocks with GC_malloc(), and use GC finalisation
11372         to close the handles.
11373
11374         * icall.c: added System.Threading.Thread::Thread_free_internal
11375
11376 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
11377
11378         * icall.c: support Environment.Exit, CommandLineArgs().
11379
11380 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
11381
11382         * object.c, object.h: added mono_runtime_run_main () and
11383         mono_runtime_get_main_args () for use in System.Environment.
11384
11385 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
11386
11387         * gc.c: fix thinko, enable actual finalization since the jit is now
11388         fixed.
11389
11390 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11391
11392         * gc.c, object.c: take into account that an object may be offset wrt the address
11393         returned by GC_malloc().
11394
11395 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
11396
11397         * image.c: handle files without entries in the assembly table (modules).
11398
11399 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
11400
11401         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
11402         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
11403         allowed to be null when it's System.Object class setup.
11404
11405 2002-04-27  Martin Baulig  <martin@gnome.org>
11406
11407         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
11408         if `tb->parent == NULL' rather than crashing.
11409
11410 2002-04-28  Nick Drochak  <ndrochak@gol.com>
11411
11412         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
11413         calling acos() where asin() should have been called.
11414
11415 2002-04-26  Martin Baulig  <martin@gnome.org>
11416
11417         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
11418         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
11419         there's a subdirectory called `System', but we don't want to read that
11420         subdirectory as an assembly.
11421
11422 2002-04-25  Martin Baulig  <martin@gnome.org>
11423
11424         * debug-symfile.c: Reflect latest MonoString changes.
11425
11426 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
11427
11428         * rand.c, rand.h: instance method icalls need to have an explicit
11429         this pointer as first argument in the C implementation.
11430
11431 2002-04-25  Nick Drochak <ndrochak@gol.com>
11432
11433         * icall.c: Fix typo in map for GetNonZeroBytes
11434
11435 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11436
11437         * string-icalls.c : String does now passes unit tests without any 
11438         errors, the following changes has been made:
11439         
11440         Implemented replace methods.
11441         Renaming of methods to (try) follow the standard.
11442         Fixed compare ordinal
11443         Made all memory allocated directly to function instead of via icall function.
11444         Small performance fix in is_in_array function
11445                         
11446  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
11447
11448         c (mono_string_Internal_ctor_charp_int_int):
11449         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
11450         sindex < 0, throw ArgumentOutOfRangeException instead of
11451         ArgumentNullException.
11452
11453         Added new check for length == 0, however
11454         I need to make it return String.Empty from the C code.
11455         
11456         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
11457         that calculate the length for us here.
11458         
11459         (mono_string_Internal_ctor_sbytep_int_int): Replaced
11460         mono_string_new_utf16 with mono_string_new, since value is utf8.
11461
11462 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11463
11464         * object.c: register the object for finalization if needed.
11465         Allocate one more char in the string for the terminating 0 char.
11466
11467 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
11468
11469         * class.c, class.h, image.c: check if a type implemenst a destructor.
11470         Use the proper key for array class lookups.
11471         * icall.c: register the icalls in the System.GC class.
11472         * gc.c, gc.h: GC-related functions and icalls.
11473
11474 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11475
11476         * icall.c:
11477         * socket-io.c:
11478         * unicode.c: free some strings gotten from mono_string_to_utf8 and
11479         changed a couple of free () by g_free ().
11480
11481         * decimal.c: one-liner in the comments for decimal2string ().
11482
11483 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11484
11485         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
11486
11487 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11488
11489         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
11490         * object.c (mono_runtime_invoke_array) : handle null in params
11491
11492 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11493
11494         * string-icalls.c: fixed bug in split (one off bug)
11495
11496 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11497
11498         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
11499         * icalls.c: added String::Equals as internal method
11500
11501 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11502
11503         * threads.c: fixed bug in the double interlocked functions
11504
11505 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
11506
11507         * threads.c: implemented all of the new interlocked icalls.
11508         * string-icalls.c: fix a bug in insert.
11509         * icalls.c: added the icalls for interlocked, removed old string functions.
11510         
11511 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
11512
11513         * loader.c: fix off-by-one error when reading argument names.
11514
11515 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11516
11517         * profiler.c: win32 counter implementation (untested).
11518         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
11519         (the latter needs testing and more complete impl. from win32 folks).
11520
11521 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
11522
11523         * object.c: mono_array_new_full workaround mono_array_class_get
11524         problem.
11525
11526 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11527
11528         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
11529         * object.h (mono_string_chars): Changed casting type.
11530
11531 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11532
11533         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
11534                            method signatures to use gunichar2 instead of gint16.
11535
11536 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
11537
11538         * object.h, object.c: domain-specific versions of mono_object_new and
11539         mono_array_new.
11540
11541 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
11542
11543         * object.c: changed String layout
11544
11545         * string-icalls.c (mono_string_Internal_ctor_chara): added
11546         internal string constructors.
11547
11548 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
11549
11550         * threads.c: pass 'this' to the thread start routine.
11551
11552 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11553
11554         * string-icalls.c: fix IndexOf and LastIndexOf. Now
11555         InternalCompareStr don't call twice mono_string_cmp_char for the last
11556         character. Improved performance in mono_string_cmp_char.
11557
11558 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
11559
11560         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
11561         code into its own library: libmonoruntime.
11562
11563 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
11564
11565         * object.h, object.c: changed array format so that szarrays do not
11566         require a bounds structure.
11567         * icall.c, appdomain.c: support for new szarray format.
11568
11569 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
11570
11571         * metadata.c: compare also the retuns type when comparing signatures:
11572         we didn't do this as an optimization since really overloaded methods
11573         must differ also in the arguments, but this doesn't work with
11574         low-level IL code (or when using explicit conversion operators: see
11575         bug#23498 for an example).
11576
11577 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
11578
11579         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
11580
11581 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
11582
11583         * icall.c: make MonoType::GetElementType its own icall.
11584
11585 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
11586
11587         * icall.c: remove MonoMethod_get_Name().
11588         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
11589         object.
11590
11591 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11592
11593         * string-icalls.c: optimized a few methods.
11594
11595 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11596
11597         * icall.c: added all new string internal calls
11598         * string-icalls.c: added, new string internal call implementation.
11599         * object.c: added mono_string_new_size for allocating a string a size
11600
11601 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
11602
11603         * object.c (mono_object_isinst): use the same code as in the
11604         optimized x86 version.
11605
11606 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11607
11608         * profiler.c: TSC-based timer code (faster and more accurate).
11609         Not hooked up in configure, yet (set USE_X86TSC to 1).
11610
11611 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
11612
11613         * profiler.c, profiler.h: track time spent compiling methods.
11614         * threads.c: track thread creation/destruction.
11615
11616 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
11617
11618         * profiler.c, profiler.h, profiler-private.h: profiling interface
11619         and sample implementation. Moved here so that it can be used also by
11620         the jit.
11621
11622 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
11623
11624         * reflection.c, reflection.h: keep types and other handles separate in
11625         the hash tables for referred tokens. Add guid for modules.
11626
11627 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
11628
11629         * assembly.c: fix bugs found with valgrind.
11630         * metadata.h, metadata.c: added mono_metadata_guid_heap().
11631
11632 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
11633
11634         * threads: added icall support for getting current domain for
11635                    the thread.
11636  
11637 2002-04-13  Martin Baulig  <martin@gnome.org>
11638
11639         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
11640         (MonoDebugVarInfo): Added `index' field for register based addresses.
11641         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
11642         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
11643         `MonoDebugVarInfo *params' and `guint32 this_offset' with
11644         `MonoDebugVarInfo *this_var'.
11645
11646         * debug-symfile.c (relocate_variable): New static function to write
11647         a location description for a local variable or method parameter.
11648
11649 2002-04-12  Martin Baulig  <martin@gnome.org>
11650
11651         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
11652         stack offset and begin/end scope address of a local variable.
11653         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
11654         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
11655         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
11656
11657         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
11658         Added new relocation types for start/end scope of a local variable.
11659
11660 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11661
11662         * object.h: add mono_object_domain() macro.
11663         * reflection.c: handle typespecs.
11664         * icall.c: MonoMethod::get_Name() implementation.
11665
11666 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11667
11668         * icall.c: String::GetHashCode() icall implementation.
11669
11670 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11671
11672         * icall.c: String::IndexOfAny icall.
11673         * object.c, object.h: make array->max_length more useful.
11674         Intrduced mono_object_class() and mono_string_length() macros.
11675
11676 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11677
11678         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
11679         instead of g_unichar_isdigit.
11680
11681 2002-04-11  Nick Drochak  <ndrochak@gol.com>
11682
11683         * icall.c: Implement a simple Double.ToString().
11684
11685 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
11686
11687         * appdomain.h: only io-layer.h is supposed to be included.
11688         * icall.c: explicitly import environ. Fix warning.
11689
11690 2002-04-10  Nick Drochak  <ndrochak@gol.com>
11691
11692         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
11693                 return true even if it's not Daylight Savings time.
11694                 Only return false for the case where the function isn't
11695                 implemented for a plaform (read Windows).
11696
11697 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11698
11699         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
11700         data with a mutex.
11701
11702 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
11703
11704         * mempool.c (mono_mempool_alloc): only use g_malloc when
11705         absolutely necessary.
11706
11707 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
11708
11709         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
11710
11711         * class.c (mono_class_vtable): use domain mempool to allocate vtable
11712         (mono_class_proxy_vtable): use domain mempool
11713
11714 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
11715
11716         * appdomain.h, appdomain.c: split initialization that requires the
11717         execution engine support into mono_runtime_init().
11718
11719 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
11720
11721         * class.c (mono_class_init): don't include vtable inside MonoClass
11722         to save some memory, gather some statistics.
11723         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
11724
11725 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
11726
11727         * icall.c: internalcall implementation for ValueType.Equals().
11728
11729 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
11730
11731         * object.c (mono_message_init): moved 
11732         (mono_runtime_exec_main): new arch. independent impl.
11733         (mono_runtime_invoke_array): new method - like
11734         mono_runtime_invoke, but you can pass an array of objects.
11735         (mono_remoting_invoke): new arch. independent impl.
11736         (mono_message_invoke): new arch. independent impl.
11737         (mono_runtime_class_init): new arch. independent impl.
11738         (mono_runtime_object_init): new arch. independent impl.
11739
11740 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11741
11742         * metadata.c, object.c, reflection.c: documented the exported
11743         functions.
11744
11745 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
11746
11747         * icall.c: simpler code to pass the assembly builder data to corlib.
11748         Implement GetNestedTypes() internalcall.
11749
11750 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
11751
11752         * class.c: warn if a type can't be loaded.
11753
11754 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
11755
11756         * image.h: typedef MonoImageOpenStatus
11757         * types.h: removed unused file
11758         
11759 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
11760
11761         * icall.c: Enum_ToObject accepts enum value arguments.
11762
11763 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
11764
11765         * class.c: move initialization of properties, events and nested
11766         classes, so that they happen for interfaces, too.
11767
11768 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
11769
11770         * icall.c: cleanup some ugly casts in Array_SetValue*.
11771
11772 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
11773
11774         * icall.c: the values array fro enums is of the correct type, now.
11775         Implement (correctly) getFullName instead of assQualifiedName for
11776         MonoType.
11777         * reflection.h, reflection.c: added mono_type_get_name ().
11778
11779 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
11780
11781         * assembly.c, image.h: for each MonoImage, record from wich assembly
11782         it was loaded.
11783         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
11784         Make Type.Assembly work.
11785
11786 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
11787
11788         * debug-symfile.h: use char* instead of gpointer to avoid
11789         unnecessary casts.
11790
11791         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
11792
11793         * icall.c (ves_icall_InternalExecute): impl. FielSetter
11794         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
11795
11796 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
11797
11798         * icall.c (mono_message_init): impl. (code cleanup)
11799         (ves_icall_InternalExecute): impl. FieldGetter
11800
11801         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
11802         defined we call all (non-static)methods through the vtable. 
11803
11804 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
11805
11806         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
11807         finalizer even though the memory is still referenced (and the chunk of
11808         memory is not freed).
11809
11810 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
11811
11812         * assembly.c: fix brokeness.
11813
11814 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
11815
11816         * class.c: kill some warnings. Check explicit interface method
11817         implementation also without considering the namespace.
11818         Load also literal strings in static class data.
11819
11820 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
11821
11822         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
11823         (default_assembly_name_resolver): Make the resolver take the
11824         "base" directory where the assembly was originally defined, so we
11825         can load DLLs that are in the same directory as the assembly that
11826         is being referenced.
11827
11828 2002-03-28  Dick Porter  <dick@ximian.com>
11829
11830         * file-io.h: 
11831         * file-io.c:
11832         * socket-io.c: 
11833         * unicode.h: 
11834         * unicode.c: Warning cleanups
11835
11836 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
11837
11838         * object.h, reflection.h: use the correct type instead of MonoObject.
11839
11840 2002-03-28  Martin Baulig  <martin@gnome.org>
11841
11842         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
11843         (mono_debug_update_symbol_file): Initialize classes if necessary.
11844
11845 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
11846
11847         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
11848         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
11849
11850 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
11851
11852         * assembly.h: fix function prototype.
11853         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
11854         * mono-endian.h: use const cast.
11855
11856 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
11857
11858         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
11859
11860 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
11861
11862         * loader.c: don't assert when a typeref can't be loaded, give
11863         a chance to the runtime to trow an exception instead.
11864         * loader.h: fix warning.
11865
11866 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
11867
11868         * class.c (mono_class_proxy_vtable): added proxy support
11869
11870 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
11871
11872         * icall.c: removed last of PAL calls, added System.Environment
11873         * file-io.h, file-io.c: MonoIO implementation
11874         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
11875
11876 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
11877
11878         * appdomain.c: do not use the byte marker in ldstr table lookup.
11879         * debug-helpers.c: allow two ':' to separate class and method name.
11880         * object.c: allocate arrays bounds with the GC, too.
11881         * verify: add a few more checks.
11882
11883 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
11884
11885         * reflection.c: output also literal strings. Allocate parameter data
11886         with GC_malloc() (thanks, Martin, for catching this!).
11887
11888 2002-03-26  Martin Baulig  <martin@gnome.org>
11889
11890         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
11891         include the `this' offset in the `param_offsets'.
11892
11893 2002-03-25  Martin Baulig  <martin@gnome.org>
11894
11895         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
11896         mono_debug_get_class() function to get the classes. Added new
11897         relocation types for arrays and strings.
11898         (mono_debug_get_class): New static function to search in all
11899         referenced assemblies for a metadata token.
11900
11901         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
11902
11903 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
11904
11905         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
11906         hold gc-allocated objects. Make the string heap a stream like the
11907         others. Removed duplicated code when writing stream info.
11908         Added asserts to catch possible buffer overflows. Set the sorted map
11909         for tables that need sorting. Added some documentation.
11910
11911 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
11912
11913         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
11914         for interned strings and vtables.
11915
11916 2002-03-24  Martin Baulig  <martin@gnome.org>
11917
11918         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
11919         it in the array since it was created with g_slist_prepend().
11920
11921 2002-03-24  Martin Baulig  <martin@gnome.org>
11922
11923         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
11924         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
11925         (mono_debug_method_from_token): Renamed to
11926         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
11927         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
11928
11929         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
11930         relocation types.
11931
11932         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
11933
11934 2002-03-24  Martin Baulig  <martin@gnome.org>
11935
11936         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
11937         (mono_debug_method_from_token): New func.
11938
11939         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
11940         New interncall, calls mono_debug_local_type_from_signature().
11941         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
11942         calls mono_debug_method_from_token().
11943
11944 2002-03-23  Martin Baulig  <martin@gnome.org>
11945
11946         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
11947         specifies the number of bytes to be converted, not the array size.
11948         Return the number of chars, not the number of bytes.
11949         (ves_icall_iconv_get_chars): The `byteCount' argument
11950         specifies the number of bytes to be converted, not the array size.
11951
11952 2002-03-23  Martin Baulig  <martin@gnome.org>
11953
11954         * reflection.h (MonoReflectionSigHelper): New type.
11955
11956         * reflection.c (mono_reflection_sighelper_get_signature_local),
11957         (mono_reflection_sighelper_get_signature_local): New functions.
11958
11959         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
11960         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
11961         interncalls.
11962
11963 2002-03-23  Martin Baulig  <martin@gnome.org>
11964
11965         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
11966         is_writeable is set.
11967         (mono_raw_buffer_update): New function to write the modified map
11968         back to disk.
11969
11970         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
11971
11972         * debug-symfile.c (mono_debug_update_symbol_file): Call
11973         mono_raw_buffer_update() when done writing.
11974
11975 2002-03-23  Martin Baulig  <martin@gnome.org>
11976
11977         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
11978
11979         * debug-symfile.c: Added support for arguments and local variables.
11980
11981 2002-03-23  Dick Porter  <dick@ximian.com>
11982
11983         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
11984         protected by ifdefs, hence breaking the w32 build.
11985
11986 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
11987
11988         * object.c: implement is_interned() the right way.
11989
11990 2002-03-21  Martin Baulig  <martin@gnome.org>
11991
11992         * debug-symfile.[ch]: New files to handle debugging information
11993         files. There's also support to dynamically update these symbol
11994         files to include machine dependent information.
11995
11996 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
11997
11998         * threads.c (mono_thread_create): new function to create thread
11999         from C
12000
12001 2002-03-20  Martin Baulig  <martin@gnome.org>
12002
12003         * icall.c (ves_icall_InternalInvoke): Create a new object if the
12004         method is a constructor.
12005         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
12006         points to ves_icall_InternalInvoke().
12007
12008 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
12009
12010         * file-io.c: Flush shouldn't throw exceptions.
12011
12012 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
12013
12014         * file-io.c: FileStream flush support; FileSetLength now
12015         restores file pointer.
12016
12017 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
12018
12019         * class.c: set image for pointer classes.
12020
12021 2002/03/19  Nick Drochak <ndrochak@gol.com>
12022
12023         * sysmath.c: Forgot one.
12024
12025 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
12026
12027         * sysmath.c: Avoid redefining existing names.
12028
12029 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
12030
12031         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
12032         handled by runtime as icall rather than dllimport from libm.so
12033         * file-io.c, file-io.h: fixed handle argument type.
12034
12035 2002-03-18  Dick Porter  <dick@ximian.com>
12036
12037         * reflection.c (mono_image_get_type_info): rename interface to
12038         iface, because of "#define interface struct" on windows.
12039
12040 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
12041
12042         * class.c, class.h: rename and export mono_ptr_class_get().
12043         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
12044         * reflection.c, reflection.h, icall.c: better/saner type name
12045         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
12046         method signatures.
12047
12048 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
12049
12050         * class.c (mono_class_init): removed hardcoded GHC_SLOT
12051
12052         * icall.c (ves_icall_InternalInvoke): impl.
12053
12054 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
12055
12056         * reflection.c: output the interface map table, too.
12057
12058 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
12059
12060         * class.c (class_compute_field_layout): separate computation of 
12061         static field layout
12062
12063 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
12064
12065         * icall.c: added System.Buffer support.
12066         * file-io.c: moved file icalls from PAL to FileStream.
12067
12068 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
12069
12070         * icall.c (ves_icall_System_Object_GetHashCode): impl.
12071
12072 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
12073
12074         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
12075
12076 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
12077
12078         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
12079
12080 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
12081
12082         * debug-helpers.{c,h}: moved here from monograph some useful functions
12083         to locate a method by name/signature in a class or image. Included
12084         also a small and flexible IL disassembler.
12085
12086 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
12087
12088         * reflection.c: fixup tokens in methods with small header size, too.
12089
12090 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
12091
12092         * object.c (mono_string_to_utf8): remove assert(!error), instead
12093         print a warning. 
12094
12095 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
12096
12097         * icall.c: update to the new mono_Array_class_get interface.
12098
12099 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
12100
12101         * appdomain.c, object.c: Boehm-GC enable.
12102         * icall.c: make get_data_chunk() support split data requests.
12103         Ensure a class is initialized in more cases. Return only the first
12104         property found in GetProperties() or the compiler gets confused. 
12105         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
12106         * reflection.h, reflection.c: add fixup mechanism for field and method
12107         tokens. Initialize assembly->typeref in a single place. Output
12108         properties after events. Support custom attributes for events, too.
12109         Typo fix for paramter custom attrs.
12110
12111 2002-03-07  Martin Baulig  <martin@gnome.org>
12112
12113         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
12114
12115 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
12116
12117         * class.c (mono_array_class_get): fix. for multi. dim. arrays
12118
12119 2002-03-06  Martin Baulig  <martin@gnome.org>
12120
12121         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
12122         non-zero lower bounds. See testcases #F10-#F13.
12123
12124 2002-03-05  Martin Baulig  <martin@gnome.org>
12125
12126         * exception.c (mono_get_exception_argument_out_of_range): New exception.
12127
12128         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
12129         ves_icall_System_Array_GetValue(), only calculate the absolute array position
12130         here.
12131         (ves_icall_System_Array_SetValue): Likewise.
12132         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
12133         as argument and does the actual work. This function is used when copying a
12134         multi-dimensional array.
12135         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
12136         now do all the widening conversions of value types.
12137         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
12138
12139 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12140
12141         * class.c: remove some magic numbers and use the smbolic names,
12142         instead. Added init_events() to load event info at class init time.
12143         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
12144         and mono_metadata_methods_from_event().
12145         * reflection.h, reflection.c: added support for writing out the evnets
12146         related information.
12147
12148 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
12149
12150         * reflection.h, icall.c: use a different method (GetInterfaces)
12151         to gather interface info and add isbyref, isprimitive and
12152         ispointer to the ves_icall_get_type_info() return value.
12153
12154 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
12155
12156         * class.h: stared adding support for events.
12157         * icall.c: split find_members implementation. Added debug icall to get
12158         the address of an object.
12159         * reflection.c: handle TypeBuilders in mono_type_get_object().
12160
12161 2002-03-01  Martin Baulig  <martin@gnome.org>
12162
12163         * icall.c (ves_icall_System_Array_GetLength): This must throw an
12164         ArgumentOutOfRangeException(), not an ArgumentException().
12165         (ves_icall_System_Array_GetLowerBound): Likewise.
12166         (ves_icall_System_Array_GetValue): Improved argument checking.
12167         (ves_icall_System_Array_SetValue): Improved argument checking.
12168
12169 2002-03-01  Martin Baulig  <martin@gnome.org>
12170
12171         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
12172         called with invalid arguments rather than just dying with g_assert().
12173         (ves_icall_System_Array_SetValue): Likewise.
12174         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
12175         raise a NotImplementedException instead.
12176         (ves_icall_System_Array_GetLength): Added argument checking.
12177         (ves_icall_System_Array_GetLowerBound): Added argument checking.
12178
12179 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
12180
12181         * object.h (mono_assert): new macros mono_assert and
12182         mono_assert_not_reached
12183
12184 2002-02-28  Martin Baulig  <martin@gnome.org>
12185
12186         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
12187         and "System::String::IsInterned" to "System::String::_IsInterned".
12188
12189 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
12190
12191         * icall.c: remove hacks for typebuilder. Added icall to create a
12192         modified type from a tybebuilder.
12193         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
12194         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
12195         to create a backing MonoClass for a TypeBuilder.
12196
12197 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12198
12199         * class.c, class.h: more refactoring of class init.
12200         Export mono_class_setup_mono_type() and mono_class_setup_parent().
12201
12202 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
12203
12204         * marshal.c, marshal.h: start of marshaling interface.
12205
12206 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
12207
12208         * icall.c: fix order in assembly qualified name icall.
12209
12210 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
12211
12212         * class.c: do not free str, since we store it in the hash table.
12213         * reflection.h: add label field to MonoILExceptionInfo.
12214         * reflection.c: handle references to more than one assembly. Handle
12215         case when there isn't a module created in the assembly.
12216
12217 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
12218
12219         * class.c: Fix typo. Start refactoring of class init code.
12220
12221 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
12222
12223         * appdomain.c: exit with 1 on error.
12224         * class.c: we already have the name in MonoClassField.
12225         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
12226         MonoStreamHeader instead of an offset of image->raw_metadata.
12227
12228 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
12229
12230         * appdomain.c (mono_init): Be even more descriptive about the error.
12231
12232 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
12233
12234         * appdomain.c: give the user an informative message when corlib can't
12235         be loaded.
12236
12237 2002-02-26  Martin Baulig  <martin@gnome.org>
12238
12239         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
12240         New icall to get the time zone data.
12241
12242 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12243
12244         * reflection.c: set virtual and raw size of section correctly.
12245         * threads.c: transfer domain information to newly created threads.
12246
12247 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
12248
12249         * class.c: when instancing a class in a domain, load the default
12250         vaules for static fields from the constant table. Fix System.Enum to
12251         not be an enum.
12252         * icall.c: implement Object::GetType() internalcall. Implemented
12253         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
12254         Fixed checking of binding flags in find_members().
12255         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
12256         * reflection.c: handle enumerations when writing to the constant
12257         table. Use a different object cache for types.
12258
12259
12260 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
12261
12262         * object.c (mono_object_isinst): fix for arrays
12263
12264         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
12265
12266 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
12267
12268         * object.c: don't use mprotect ()  and fix intern pool hash table
12269         lookup for big endian systems.
12270
12271 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
12272
12273         * icall.c: change type_is_subtype_of () signature.
12274
12275 2002-02-21  Mark Crichton  <crichton@gimp.org>
12276
12277         * rand.c, rand.h: Added random number generator for
12278         System.Security.Cryptography classes.
12279
12280         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
12281
12282         * icall.c: Added System.Security.Cryptography calls.
12283
12284 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
12285
12286         * class.c, icall.c, metadata.c: better support for pointer types.
12287         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
12288         * reflection.c: Add support for getting custom attrs for properties
12289         and simplify some code.
12290
12291 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
12292
12293         * icall.c: change getToken () and add custom attribute GetBlob()helper
12294         method.
12295         * reflection.h: add custom attrs array to the reflection builder structures.
12296         * reflection.c: encode and emit custom attributes for all the relevant
12297         reflection objects. Cache fieldref and methodref tokens. Change
12298         mono_image_create_token() interface to take a MonoDynamicAssembly.
12299         More complete custom attributes decoder. Load custom attributes for
12300         Assembly, Field, Method and Constructor objects, too. Make the
12301         returned array an Attribute[] one, not object[]. Added
12302         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
12303         custom attribute constructor.
12304
12305 2002-02-20  Dick Porter  <dick@ximian.com>
12306
12307         * icall.c:
12308         * rawbuffer.c:
12309         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
12310         problem code out for now).
12311
12312 2002-02-19  Radek Doulik  <rodo@ximian.com>
12313
12314         * object.c (mono_ldstr): use hash table to avoid multiple swapping
12315
12316 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
12317
12318         * icall.c: register the GetCustomAttributes method.
12319         * object.c, object.h: add mono_string_new_len ().
12320         * reflection.h, reflection.c: added mono_runtime_invoke(),
12321         mono_install_runtime_invoke(). Added
12322         mono_reflection_get_custom_attrs () to load custom attributes and
12323         create the attribute objects.
12324
12325 2002-02-19  Dick Porter  <dick@ximian.com>
12326         * threads-dummy-types.c:
12327         * threads-dummy-types.h:
12328         * threads-dummy.c:
12329         * threads-dummy.h:
12330         * threads-pthread-types.c:
12331         * threads-pthread-types.h:
12332         * threads-pthread.c:
12333         * threads-pthread.h:  Deleted obsolete files
12334
12335 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
12336
12337         * class.c (mono_class_vtable): runtime init the class when we
12338         allocate static class data.
12339
12340         * icall.c (ves_icall_System_Array_SetValue): check for null values.
12341
12342         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
12343         and String - but we will need generic marshalling support in the
12344         future. 
12345         (mono_init): set the domain name in a ms compatible way
12346
12347         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
12348         String[].
12349
12350 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
12351
12352         * object.c (mono_array_clone): use alloca() instead of g_malloc  
12353         for sizes
12354
12355         * appdomain.c (mono_domain_unload): impl.
12356
12357 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
12358
12359         * appdomain.c, object.c: fix intern pool implementation.
12360         * class.c: fix alignment code.
12361
12362 2002-02-16  Radek Doulik  <rodo@ximian.com>
12363
12364         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
12365         and s2 > s1, just copy lower bytes to be compatible with little
12366         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
12367         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
12368
12369         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
12370         force big_endian to be 1 for big endian machines 
12371         (ves_icall_iconv_new_decoder): ditto
12372
12373 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
12374
12375         * socket-io.c (convert_sockopt_level_and_name): If the system
12376         doesn't define SOL_IP or SOL_TCP, get them by hand using
12377         getprotobyname() and caching the values (because this could be a
12378         slow operation).
12379         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
12380         Use the appropriate struct when the system does support it. Ie,
12381         not all systems have struct ip_mreqn so use struct ip_mreq when
12382         appropriate.
12383
12384 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
12385
12386         * reflection.c: handle finally clauses.
12387
12388 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
12389
12390         * socket-io.c: use g_snprintf() instead of snprintf.
12391
12392 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
12393
12394         * reflection.c (mono_param_get_objects): Cast second argument to
12395         mono_method_get_param_names to a const char** to silence the
12396         compiler warning.
12397
12398         * appdomain.c (mono_domain_assembly_open): Put parens around the
12399         truth statement in the for-loop.
12400
12401         * unicode.c (iconv_convert): Got rid of a compiler warning about
12402         int i being unused when the system has a new iconv.
12403         (iconv_get_length): Same.
12404
12405         * image.c (load_class_names): Cast the second argument to
12406         g_hash_table_insert() to char* to hush compiler warnings about the
12407         arg being a const.
12408         (mono_image_open): Same here.
12409
12410         * socket-io.c: Don't conditionally include sys/filio.h or
12411         sys/sockio.h here anymore since we now get them from
12412         io-layer/io-layer.h
12413         (inet_pton): If the system doesn't support inet_aton, implement
12414         using inet_addr and also #define INADDR_NONE if it isn't defined
12415         by the system.
12416
12417 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
12418
12419         * metadata.c, metadata.h: added function to get packing and size info
12420         of a typedef.
12421         * reflection.h, reflection.c: handle field RVA data. Save info about
12422         the table layout if needed. Assign typedef indexes to all the types
12423         before dumping the info about them to avoid forward reference problems.
12424
12425 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
12426
12427         * socket-io.c (convert_sockopt_level_and_name): ifdef
12428         SO_ACCEPTCONN because it is not defined on my system (old debian)
12429
12430 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
12431
12432         * opcode.c: use stddef.h to get NULL.
12433
12434 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
12435
12436         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
12437         for FIONBIO, FIONREAD and SIOCATMARK.
12438         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
12439         define INADDR_NONE and besides, inet_addr() is deprecated and
12440         should not be used. Use inet_pton() instead - it also has the
12441         added bonus that it can easily handle IPv6 addresses as well.
12442         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
12443
12444 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
12445
12446         * decimal.c: remove _MSC_VER conditional.
12447
12448 2002-02-13  Dick Porter  <dick@ximian.com>
12449
12450         * socket-io.c: 
12451         * icall.c: Internal calls for Blocking, Select, Shutdown,
12452         GetSocketOption and SetSocketOption
12453
12454 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12455
12456         * assembly.cs: better resolver: use it instead of some kludgy
12457         code.
12458
12459 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
12460
12461         * reflection.c: the best way to speed-up the compiler is to avoid
12462         infinite loops.
12463
12464 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
12465
12466         * class.c (mono_class_vtable): changed the object layout
12467         (obj->vtable->class). 
12468         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
12469
12470 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12471
12472         * assembly.c: look for assemblies in the assembly dir, too.
12473
12474 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
12475
12476         * class.c: fix thinko in mono_class_from_type().
12477
12478 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12479
12480         * exception.h, exception.c: added TypeLoadException.
12481         * object.h, object.c: added mono_array_clone ().
12482         * icall.c: handle throwOnError in AssemblyGetType().
12483         Added Array.Clone().
12484         * opcode.h, opcode.c: use a single value for the opcode val.
12485         Compile fix for non-gcc compilers.
12486
12487 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
12488
12489         * opcodes.c, opcodes.h: export interesting info about opcodes.
12490
12491 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
12492
12493         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
12494         icalls. 
12495
12496         * class.c (class_compute_field_layout): set element_class for enums
12497         (mono_class_create_from_typedef): set element_class for normal classes
12498
12499         * icall.c (ves_icall_System_Enum_get_value): impl.
12500
12501         * class.c (mono_class_create_from_typedef): do not set valuetype
12502         flag for System.ValueType and System.Enum
12503
12504 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
12505
12506         * unicode.c (iconv_convert): fix big endian problem.
12507
12508 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
12509
12510         * class.c: add asserts if we are ever going to scribble over memory.
12511         * socket-io.c: not all systems have AF_IRDA defined.
12512
12513 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
12514
12515         * class.c (class_compute_field_layout): do not consider static
12516         fields to compute alignment
12517
12518 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
12519
12520         * appdomain.c (mono_appdomain_get): impl.
12521         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
12522
12523 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
12524
12525         * icall.c: ignore "file://" prefix when loading an assembly.
12526
12527 2002-01-23  Dick Porter  <dick@ximian.com>
12528
12529         * socket-io.c:
12530         * icall.c:
12531         * Makefile.am: Added socket support
12532
12533 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
12534
12535         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
12536         code back.  This should return the assemblies that are loaded by
12537         the runtime on behalf of an application domain. 
12538
12539         The current implementation is still broken, it just returns every
12540         assembly loaded, but until we get real applications domain this
12541         will do.
12542
12543 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
12544
12545         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
12546         AppDomain object.
12547
12548 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
12549
12550         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
12551         the mono_class_from_name lookup.
12552         (ves_icall_get_parameter_info): ditto.
12553         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
12554         method.
12555         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
12556
12557 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
12558
12559         * class.c: load also nested classes on class init.
12560         System.ValueType instance methods gets passed boxed
12561         values, unless methods in derived classed that get a pointer to the
12562         data.
12563         * icall.c: use better name parsing code in GetType().
12564         * image.c, image.h: add mono_image_loaded ().
12565         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
12566         * reflection.c, reflection.h: added mono_reflection_parse_type().
12567
12568 2002-01-22  Veronica De Santis <veron78@interfree.it>
12569
12570         * icall.c : Added mapping of internal calls for Manual and Auto reset events
12571         * threads.c : Added the implementation of internal calls for events
12572         * threads.h : Added prototypes of internal calls for events
12573         
12574 2002-01-21  Radek Doulik  <rodo@ximian.com>
12575
12576         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
12577
12578 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
12579
12580         * class.c (mono_class_init): set min_align to 1 (instead of 0)
12581         (mono_class_value_size): use min_align
12582
12583 2002-01-20  Dick Porter  <dick@ximian.com>
12584
12585         * threads.h:
12586         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
12587         so it compiles on w32.
12588
12589 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
12590
12591         * metadata.c (mono_type_stack_size): impl.
12592
12593         * class.c (mono_class_get_field): impl. memberref token
12594
12595 2002-01-16 Veronica De Santis <veron78@@interfree.it>
12596
12597         * icall.h : Added the internal calls mapping for CreateMutex_internal
12598                     and ReleaseMutex_internal.
12599         * threads.h : Added the prototype of mutexes internal calls.
12600         * threads.c : Added the implementations of mutexes internal calls.
12601
12602 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
12603
12604         * metaparse.h: removed unused file.
12605         * reflection.c, reflection.h: added stream_data_align () function 
12606         to align data in streams and keep stream aligned. Add support for
12607         exception support in method headers.
12608
12609 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
12610
12611         * unicode.c: make iconv_convert () return the number of bytess written
12612         in the output buffer.
12613
12614 2002-01-15  Dick Porter  <dick@ximian.com>
12615         * threads.c: Make the runtime's idea of infinite timeouts coincide
12616         with the class library's
12617
12618         Fix a particularly egregious bug in mono_thread_cleanup(). That
12619         code was so utterly bogus it must have been written on a Monday.
12620
12621 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
12622
12623         * reflection.h: add subtypes field to TypeBuilder.
12624         * reflection.c: encode constants for literal fields.
12625         Handle subtypes. Fix user string token (and add a zero byte)
12626         at the end.
12627         
12628 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
12629
12630         * class.c (mono_class_init): bug fix: assign slot numbers for
12631         abstract methods.
12632
12633 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
12634
12635         * reflection.c: don't try to output a code RVA for abstract methods.
12636         Small fixes for method header format. Output parameter info to the
12637         ParamDef table. Save method overriding info to MethodImpl table.
12638         Fix property support. Allow typedef.extends to be a type in the
12639         building assembly.
12640         * verify.c: fix off-by-one error.
12641
12642 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
12643
12644         * class.c: fix mono_class_from_mono_type () for szarray types.
12645         Remove unused cache check in mono_class_from_type_spec().
12646         * icall.c: *type_from_name () functions handle simple arrays and byref.
12647         * reflection.c: handle byref and szarray types. Handle methods without
12648         body (gets P/Invoke compilation working). Handle types and fields in
12649         get_token ().
12650         * reflection.h: add rank to MonoTypeInfo.
12651
12652 2002-01-10  Dick Porter  <dick@ximian.com>
12653
12654         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
12655         internal calls
12656
12657 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
12658
12659         * icall.c: initialize class in type_from_handle ().
12660         Loop also in parent classes for get_method ().
12661         * reflection.c: properly encode class and valuetype types.
12662         Start on encoding TypeBuilder types. Handle fieldrefs.
12663         Use correct length when registering a user string.
12664         Handle ConstructorBuilder and MonoMethod in get_token ().
12665         Make mono_type_get_object () aware of cached types.
12666         * object.c: back out change to mono_string_new ().
12667
12668 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
12669         * object.c: mono_string_new should return a NULL when the string 
12670         passed in is NULL -- not try to deference it.
12671         
12672 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
12673
12674         * icall.c: hack to make IsSubType work for TypeBuilders.
12675         * reflection.c: emit constructors before methods.
12676         Retrieve param names in mono_param_get_objects().
12677
12678 2002/01/05  Nick Drochak  <ndrochak@gol.com>
12679
12680         * Makefile.am: fix list of headers and sources so automake 1.5
12681         doesn't complain. Removed \# at end of list.
12682
12683 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
12684
12685         * reflection.c: get token for a method ref. Set return type of
12686         constructor to void.
12687         * loader.c: debug message.
12688         * class.c: typo fix.
12689
12690 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
12691
12692         * icall.c: fix array init with rank > 1. FindMembers
12693         loops in parent class as well.
12694         * image.c: do not insert nested types in name cache.
12695         * reflection.c: warning fix.
12696         * reflection.h: add override method (for interface impl).
12697
12698 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
12699
12700         * metadata.c: fix customattr decoding.
12701
12702 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
12703
12704         * rawbuffer.cs: Added native Win32 implementation, avoids using
12705         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
12706
12707 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
12708
12709         * class.c: make the low-level routines handle the cache.
12710
12711 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
12712
12713         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
12714
12715 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
12716
12717         * class.c: fix mono_array_element_size() for objects.
12718         * class.h, class.c: add properties to MonoClass and load them
12719         at init time.
12720         * icall.c: check with isinst() when assigning a value to an array
12721         instead of requiring the classes to match exactly.
12722         Implemented icall for System.Type::GetType().
12723         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
12724         enums. Handle bindingflags when looking for methods and fields.
12725         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
12726         and mono_metadata_methods_from_property().
12727         * reflection.h, reflection.c: added structures for propreties,
12728         parameters and enums. Implemented mono_property_get_object() and
12729         mono_param_get_objects().
12730
12731 2001-12-18  Dick Porter  <dick@ximian.com>
12732
12733         * file-io.c: Use mono_string_to_utf16() instead of
12734         mono_string_chars()
12735
12736         * object.c: Added mono_string_to_utf16(), which copies the non
12737         NULL-terminated MonoString into a new double-null-terminated
12738         buffer.
12739
12740 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
12741
12742         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
12743
12744 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
12745
12746         * file-io.c: raise exceptions if handle is invalid.
12747
12748 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
12749
12750         * assembly.c: yet another check for mscorlib.
12751         * class.c, class.h: load nesting info for classes.
12752         * icall.c: many new functions to support the Reflection classes.
12753         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
12754         * reflection.h, reflection.c: mono_image_create_token(),
12755         mono_assembly_get_object(), mono_type_get_object(),
12756         mono_method_get_object(), mono_field_get_object(): methods to return
12757         objects that parallel the C representation of assemblies, types,
12758         methods, fields.
12759
12760 2001-12-11  Dick Porter  <dick@ximian.com>
12761
12762         * icall.c:
12763         * file-io.c: Internal calls for file IO.
12764
12765 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
12766
12767         * tabledefs.h: missing FileAttributes.
12768         * verify.h, verify.c: use is_valid_string () to simplify and check for
12769         valid strings more correctly. Fix warnings and speeling.
12770         Check more tables: Filed, File, ModuleRef, StandAloneSig.
12771         Check code: branches, maxstack, method calls.
12772
12773 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
12774
12775         * object.c (mono_object_allocate): removed static, so that the jit
12776         can allocate value types.
12777
12778         * icall.c (ves_icall_System_DateTime_GetNow): impl.
12779
12780 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
12781
12782         * class.c: init enum types right away and register the
12783         token->MonoClass map in mono_class_create_from_typedef ().
12784         * verify.h, verify.c: first cut of the verifier.
12785         * pedump.c: add --verify switch to verify metadata tables.
12786         * tabledefs.h: add some missing enums.
12787
12788 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
12789
12790         * class.c (mono_install_runtime_class_init): impl.
12791         (mono_class_init): renamed mono_class_metadata_init to
12792         mono_class_init, also removed the metadata_inited flag
12793
12794         * object.c (mono_object_isinst): use faster algorithm
12795
12796 2001-11-30  Radek Doulik  <rodo@ximian.com>
12797
12798         * mono-endian.h: reverted last change
12799         added function prototypes
12800
12801         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
12802         add mono-endian.c back
12803
12804         * mono-endian.c: returned back, as Paolo pointed out, it's needed
12805         for unaligned access, I've mistaked it with endianess. I am
12806         sorry.
12807         (mono_read16): fix reverted endianess
12808         (mono_read64): ditto
12809         (mono_read32): ditto
12810
12811 2001-11-30  Dick Porter  <dick@ximian.com>
12812
12813         * exception.c: Implement mono_exception_from_name()
12814
12815 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
12816
12817         * metadata.h, metadata.c: remove params_size and locals_size and their
12818         calculation from the metadata code: they are only usefult to the
12819         interp.
12820
12821 2001-11-29  Radek Doulik  <rodo@ximian.com>
12822
12823         * object.c (mono_ldstr): swap bytes here, it's probably not the
12824         best place, but works for me now, I'll redo it once I know mono
12825         better, also note that I add PROT_WRITE and don't reset back, also
12826         note that it's only affects big endians, so x86 should be OK
12827
12828         * mono-endian.h (read16): use just glib macros for both endians
12829
12830         * mono-endian.c: removed as glib macros are used in in
12831         mono-endian.h so we don't need to care about endianess for read
12832         macros as glib does that for us already
12833
12834 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
12835
12836         * class.h, class.h: take minimum alignment into consideration so
12837         that the fields of a class remain aligned also when in an array.
12838
12839 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
12840
12841         * loader.h, loader.c: add mono_method_get_param_names().
12842         * class.c: 0-init class fields.
12843
12844 2001-11-26  Dick Porter  <dick@ximian.com>
12845
12846         * icall.c:
12847         * threads-types.h:
12848         * threads.c: New file that handles System.Threading on all platforms
12849
12850         * object.c: 
12851         * object.h: Remove the synchronisation struct from MonoObject,
12852         replace it with a pointer that gets initialised on demand
12853
12854         * Makefile.am: Replace all the system-specific threading code with
12855         a single file that uses the new wrapper library
12856
12857 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
12858
12859         * class.c, class.h: add mono_install_trampoline() so that the runtime
12860         can register a function to create a trampoline: removes the ugly
12861         requirement that a runtime needed to export arch_create_jit_trampoline.
12862         * object.h, object.c: added mono_install_handler() so that the runtime
12863         can install an handler for exceptions generated in C code (with
12864         mono_raise_exception()). Added C struct for System.Delegate.
12865         * pedump.c: removed arch_create_jit_trampoline.
12866         * reflection.c: some cleanups to allow registering user strings and
12867         later getting a token for methodrefs and fieldrefs before the assembly
12868         is built.
12869         * row-indexes.h: updates and fixes from the new ECMA specs.
12870
12871 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
12872
12873         * class.h, class.c: add enum_basetype field to MonoClass.
12874         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
12875         to get index in the constant table reated to a field, param or
12876         property.
12877         * reflection.h, reflection.c: handle constructors. Set public-key and
12878         version number of the built assembly to 0.
12879         * row-indexes.h: update from new ECMA spec.
12880
12881 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
12882
12883         * class.h, class.c: add a max_interface_id to MonoClass.
12884         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
12885         since it's used to do that. Added mono_type_type_from_obj().
12886         Make GetType() return NULL instead of segfaulting if the type was not
12887         found. Handle simple arrays in assQualifiedName.
12888         * object.h: add a struct to represent an Exception.
12889         * reflection.c: output call convention in method signature.
12890         Add code to support P/Invoke methods and fixed offsets for fields.
12891
12892 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
12893
12894         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
12895         the value.
12896         * icall.c: use mono_array_addr instead of array->vector: fixes the
12897         reflection image writing.
12898         * reflection.c: init call convention byte to 0 in method signature.
12899         Encode the property signature. Don't output property-related methods
12900         twice. Really process the properties for a type (don't cast a field to
12901         a property, my mom always told me that).
12902         Fix 64 bit issues in pointer alignment in a different and more
12903         readable way.
12904
12905 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
12906
12907         * loader.h: Removed type class from MonoDefaults, added monotype
12908
12909         * loader.c: Loaded MonoType, removed loading of Type
12910
12911         * icall.c (my_mono_new_object): Now returns a System.MonoType,
12912         and fills in System.Type._impl with a RuntimeTypeHandle rather
12913         than the actual MonoClass *
12914
12915         (ves_icall_type_from_handle): change from type_class to
12916         monotype_class
12917
12918         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
12919         implemented
12920
12921         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
12922         implemented
12923
12924         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
12925
12926         (ves_icall_System_Reflection_Assembly_GetType): implemented
12927
12928         (ves_icall_System_MonoType_assQualifiedName): implemented
12929
12930         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
12931
12932 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
12933
12934         * assembly.c (mono_assembly_open): Implement a cache for the
12935         assemblies. 
12936
12937         (mono_assembly_close): only destroy the assembly when the last
12938         reference is gone.
12939         
12940 2001-11-09  Dick Porter  <dick@ximian.com>
12941
12942         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
12943
12944 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
12945
12946         * class.c (mono_class_metadata_init): bug fix: compute the right slot
12947
12948 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
12949
12950         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
12951         from Martin Weindel.
12952         * object.h: add mono_string_chars ().
12953
12954 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
12955
12956         * reflection.c (build_compressed_metadata): Eliminates warnings
12957         and uses 64-bit clean code.
12958
12959         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
12960         (mono_type_equal): Change signature to eliminate warnings.
12961
12962 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
12963
12964         * icall.c, loader.c: remove the internalcall array constructors.
12965         Changes to match the new MonoArray structure.
12966         * object.h, object.c: an array object doesn't allocate an extra
12967         vector. Add mono_array_new_full () to create jagged arrays easily.
12968
12969 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
12970
12971         * metadata.h, metadata.c: add mono_metadata_field_info () to
12972         retreive all the info about a field from vairous tables.
12973         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
12974         * class.h, class.c: augment MonoClassField with more info.
12975         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
12976         policy and load a field's RVA if needed.
12977
12978 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
12979
12980         * class.c (mono_class_metadata_init): create a trampoline for all
12981         virtual functions instead of actually compiling them.
12982
12983 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
12984
12985         * class.h, class.c: include name in MonoClassField.
12986         * class.c: fix fundamental type of System.Object and System.String.
12987         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
12988         tokens in ldtoken.
12989         * icall.c: remove internalcalls for the Reflection stuff that is now
12990         done in C# code.
12991         * loader.c: mono_field_from_memberref () implementation.
12992         * mono-endian.c: thinko (s/struct/union/g).
12993         * object.c, object.h: make the mono_string_* prototypes actually use
12994         MonoString instead of MonoObject.
12995         * reflection.c, reflection.h: updates for changes in the reflection
12996         code in corlib: we use C structures that map to the actual C# classes.
12997         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
12998         fat method header if needed and use the info from the ILGenerator for
12999         methods. Handle fields in types. Misc fixes.
13000
13001 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
13002
13003         * class.c (mono_class_metadata_init): bug fix: always allocate
13004         space for static class data
13005
13006 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
13007
13008         * class.c (mono_compute_relative_numbering): use relative
13009         numbering to support fast runtime type checks.
13010
13011 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
13012
13013         * class.c (mono_class_create_from_typeref): added debugging output
13014         to print class name when MonoDummy is returned instead of real class
13015
13016 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
13017
13018         * class.c (mono_class_metadata_init): interface offset table now
13019         contains pointers into the vtable - this is more efficient for the jit
13020
13021 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
13022
13023         * class.c (mono_class_metadata_init): use a temporary vtable (the
13024         old algorithm only worked for the interpreter, but not for the jit)
13025
13026 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
13027
13028         * loader.c (method_from_memberref): use mono_class_get to get the
13029         class of an array instead of using System.Array directly.
13030         (mono_get_method): also add MEMBERREF methods to the method cache
13031         which usefull for arrays.
13032
13033 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
13034
13035         * pedump.c (arch_compile_method): added to compute vtable entry
13036
13037         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
13038         number of interfaces.
13039         
13040         * class.h: merged MonoArrayClass into MonoClass
13041
13042         * class.c (mono_class_create_from_typedef): compute the vtable size and
13043         allocate space to include the vtable inside MonoClass
13044         (mono_class_metadata_init): initialize the vtable
13045
13046 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
13047
13048         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
13049         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
13050         * image.c: endian fixes by Laurent Rioux.
13051         * object.h, object.c: rename MonoStringObject to MonoString and
13052         MonoArrayObject to MonoArray. Change some function names to conform to
13053         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
13054         guint16* as first argument, so don't use char*.
13055         Provide macros to do the interesting things on arrays in a portable way.
13056         * threads-pthread.c: updates for the API changes and #include <sched.h>
13057         (required for sched_yield()).
13058         * icall.c: updates for the API changes above.
13059         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
13060         platforms that need them.
13061
13062 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
13063
13064         * class.c: set the correct type for all the fundamental
13065         type when loading the class.
13066
13067 2001-10-05  Dick Porter  <dick@ximian.com>
13068
13069         * threads-pthread.c (pthread_mutex_timedlock): Simple
13070         compatibility version for C libraries that lack this call.
13071
13072 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
13073
13074         * class.c: MonoTypes stored in MonoClass are stored as
13075         fundamental MonoTypes when the class represents a
13076         fundamental type (System.Int32, ...).
13077         The TypeHandle return by ldtoken is a MonoType*.
13078         * icall.c: ves_icall_get_data_chunk () write out all the
13079         PE/COFF stuff. Implement ves_icall_define_method (),
13080         ves_icall_set_method_body (), ves_icall_type_from_handle ().
13081         * image.c: properly skip unknown streams.
13082         * loader.h, loader.c: add type_class to mono_defaults.
13083         * metadata.c, metadata.h: export compute_size () as
13084         mono_metadata_compute_size () with a better interface.
13085         Typo and C&P fixes.
13086         * pedump.c: don't try to print the entry point RVA if there is no entry point.
13087         * reflection.c, reflection.h: many cleanups, fixes, output method
13088         signatures and headers, typedef and typeref info, compress the metadata
13089         tables, output all the heap streams, cli header etc.
13090         * row-indexes.h: typo fixes.
13091
13092 2001-10-04  Dick Porter  <dick@ximian.com>
13093
13094         * object.h: Add a synchronisation mutex struct to MonoObject
13095
13096         * object.c (mono_new_object): Initialise the object
13097         synchronisation mutexes
13098
13099         * icall.c: System.Threading.Monitor internal calls
13100         
13101         * threads-pthread.h:
13102         * threads-pthread.c: System.Threading.Monitor internal calls
13103
13104         * threads-types.h: New file, includes the system-specific thread
13105         structures
13106         
13107         * threads-pthread-types.h:
13108         * threads-pthread-types.c: New files, handle pthread-specific
13109         synchronisation types
13110
13111         * threads-dummy-types.h: 
13112         * threads-dummy-types.c: New files of dummy support for
13113         thread-specific types
13114
13115         * metadata.c:
13116         * image.c:
13117         * pedump.c: include mono-endian.h not endian.h
13118         
13119         * Makefile.am: More threads files.
13120         Name mono-endian.h not endian.h
13121
13122 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
13123
13124         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
13125         stuff and implement a few more bits.
13126         * icall.c: a field needs to be dereferenced twice. Do not use the same
13127         name for two variables in the same scope.
13128         * image.c, image.h: cleanups.
13129
13130 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
13131
13132         * class.c (mono_class_metadata_init): bug fix: compute the right size
13133
13134 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
13135
13136         * icall.c: implemented some of the Reflection internalcalls.
13137         * image.c, image.h: start writing out the PE/COFF image.
13138         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
13139         that does the reverse than decode_blob_size ().
13140         * object.c: use mono_metadata_encode_value (). Move here
13141         temporary implementation of mono_string_to_utf8 ().
13142         * rawbuffer.c: make malloc_map static.
13143
13144 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
13145
13146         * metadata.c: fix type comparison for arrays.
13147         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
13148         Added a couple of new classes to monodefaults.
13149         * icall.c: added a couple of Reflection-related internalcalls.
13150         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
13151         Added a byval_arg MonoType to MonoClass.
13152
13153 2001-09-28  Dick Porter  <dick@ximian.com>
13154
13155         * icall.c:
13156         * threads-pthread.h: 
13157         * threads-pthread.c: Implemented internal calls for
13158         LocalDataStoreSlot operations.  Applied mutexes around all shared
13159         data.  Reworked the thread creation and Start() operations to
13160         avoid a race condition.
13161         
13162         * threads-dummy.h:
13163         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
13164
13165 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
13166
13167         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
13168
13169 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
13170
13171         * class.c, loader.c: warn and return NULL instead of erroring out.
13172         * icall.c: added System.AppDomain::getCurDomain().
13173         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
13174
13175 2001-09-25  Dick Porter  <dick@ximian.com>
13176
13177         * threads-pthread.h:
13178         * threads-pthread.c: Implemented timed thread joining and added
13179         System.Threading.Thread::Join_internal internal call
13180
13181         * icall.c: Added System.Threading.Thread::Join_internal internal call
13182
13183         * threads-dummy.h:
13184         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
13185
13186 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
13187
13188         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
13189         mono_string_intern () to implement the semantics of the ldstr opcode
13190         and the interning of System.Strings.
13191         * icall.c: provide hooks to make String::IsIntern and String::Intern
13192         internalcalls.
13193
13194 2001-09-23  Dick Porter  <dick@ximian.com>
13195
13196         * threads-dummy.c: 
13197         * threads-dummy.h: New files of dummy threading routines
13198
13199         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
13200         support code based on system specifics
13201
13202         Rename PTHREAD_LIBS to THREAD_LIBS
13203         
13204 2001-09-23  Dick Porter  <dick@ximian.com>
13205
13206         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
13207         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
13208         internal calls.
13209         (mono_thread_init): Set up a Thread object instance to return when
13210         the main thread calls Thread.CurrentThread
13211         (mono_thread_cleanup): Wait for all subthreads to exit
13212
13213         * icall.c: New internal calls for System.Threading.Thread::Sleep
13214         (including Schedule) and CurrentThread
13215
13216         * threads.h: New file, to insulate thread-specific stuff from the
13217         rest of the code
13218
13219 2001-09-21  Dick Porter  <dick@ximian.com>
13220
13221         * threads-pthread.h: 
13222         * threads-pthread.c: New file, for handling pthreads-style
13223         threading support.  Start() now starts a new thread and executes
13224         the ThreadStart delegate instance.
13225
13226         * icall.c: Added the internalcall for
13227         System.Threading.Thread::Start_internal
13228
13229         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
13230
13231 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
13232
13233         * loader.c: work around the different signatures for delegates
13234         constructors csc generates in compiled code vs the ones compiled in mscorlib.
13235
13236 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
13237
13238         * class.h, class.c: add mono_class_get_field_from_name ().
13239         * *: Fix C comments and other ANSI C issues.
13240
13241 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
13242
13243         * endian.h, assembly.c: fix some endianness issues.
13244
13245 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
13246
13247         * loader.h, load.c: add delegate_class to mono_defaults.
13248         Handle runtime provided methods in mono_get_method ().
13249
13250 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
13251
13252         * loader.c (mono_get_method): use pinvoke for internal call
13253
13254         * icall.c: use pinvoke for internal call
13255
13256         * loader.c (method_from_memberref): set the method name
13257
13258 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
13259
13260         * metadata.c: help the compiler generate better code for
13261         mono_class_from_mono_type ().
13262
13263 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
13264
13265         * class.c (mono_class_metadata_init): delayed computing of the
13266         class size to mono_class_metadata_init ()
13267
13268 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
13269
13270         * class.c, class.h: add an interfaces member to MonoClass.
13271         * image.c, image.h: add assembly_name field to MonoImage
13272         from the assembly table.
13273         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
13274
13275 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
13276
13277         * class.c: Handle Array in mono_class_from_mono_type ().
13278         * metadata.c, pedump.c: some endian fixes.
13279
13280 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
13281
13282         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
13283         * metadata.c: fix small problem introduced with the latest commit.
13284
13285 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
13286
13287         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
13288         We don't need a MonoMetadata pointer anymore to compare signatures in
13289         mono_metadata_signature_equal (), update callers.
13290         Reduced memory usage an number of allocations for MonoMethodHeader and
13291         MonoMethodSignature.
13292
13293 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
13294
13295         * metadata.c: added compare for szarray.
13296
13297 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
13298
13299         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
13300         and add a couple more types to it and mono_defaults. Give an hint on
13301         classes that need implementing in our corlib and are referenced
13302         in mscorlib.
13303
13304 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
13305
13306         * class.h, class.c: keep track if a class is also an Enum.
13307         * loader.c: Implement a couple more types for use in libffi
13308         marshalling. Gives better diagnostics when failing to dlopen
13309         a library. Set method->klass for P/Invoke methods, too.
13310
13311 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
13312
13313         * class.c, class.h: add a MonoType this_arg to MonoClass that
13314         represents a pointer to an object of the class' type that
13315         can be used by the interpreter and later the type cache.
13316         Add best guess alignment info for valuetype objects.
13317
13318 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
13319
13320         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
13321         into MonoType: one less level of indirection and allocation and
13322         simplifies quite a bit of code. Added cache for MonoTypes that are
13323         used frequently, so that we don't need to allocate them all the time.
13324
13325 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
13326
13327         * class.c (mono_class_create_from_typedef): System.Enum is also a
13328         value type, although it does not derive from System.ValueType
13329         (maybe a bug in the ms compiler?)
13330
13331         * metadata.c (mono_type_size): return the right size for value types
13332
13333         * loader.c (mono_get_method): only initialize method header if not abstract
13334
13335         * class.c (mono_class_from_mono_type): use mono_default values. 
13336
13337 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
13338
13339         * *: use MonoClass pointers instead of <type_tokens>
13340         
13341         * class.h: new flag: metadata_inited.
13342
13343         * class.c (mono_class_metadata_init): impl.
13344         (mono_class_instance_size): impl.
13345         (mono_class_data_size): impl.
13346
13347 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
13348
13349         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
13350         MonoClass now has the name and name_space fields. 
13351         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
13352         mono_get_method () takes and optional MonoClass as argument.
13353         Removed mono_typedef_from_name() and added mono_class_token_from_name()
13354         instead that takes advantage of a map from class names to typedef
13355         tokens in MonoImage.
13356
13357 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
13358
13359         * metadata.c: zero is not a valid alignment boundary.
13360         Merge MONO_TYPE_VOID in default decoding code.
13361
13362 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
13363
13364         * image.h: merged MonoMetadata into MonoImage
13365
13366         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
13367         identify the type of elements.
13368
13369 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
13370
13371         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
13372         * cil-coff.h: split MonoMSDOSHeader and add size info.
13373         * image.c: add some consistency checks.
13374         * metadata.c: fix row size computation: one programmer
13375         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
13376         add explanation for the locator routine.
13377         Fix decoding of size in method header.
13378         
13379 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
13380
13381         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
13382         (g_concat_dir_and_file): Bring g_concat_dir_and_file
13383         function from gnome-libs.  This uses the right path separator
13384         based on the OS, and also works around a bug in some systems where
13385         a double slash is not allowed. 
13386         (default_assembly_name_resolver): Use g_concat_dir_and_file
13387         (mono_assembly_open): ditto.
13388
13389 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
13390
13391         * metadata.c (mono_metadata_signature_equal): impl.
13392
13393         * *: void is now a realy MonoType (instead of using NULL)
13394         
13395         * metadata.c (do_mono_metadata_parse_type): use
13396         mono_metadata_parse_type to parse void value.
13397
13398 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
13399
13400         * metadata.c, metadata.h: in the signature and method header store
13401         only the space required for holding the loca vars and incoming arguments.
13402
13403 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
13404
13405         * metadata.c (do_mono_metadata_parse_type): treat void like any
13406         other type (instead of assigning NULL);
13407
13408 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
13409
13410         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
13411
13412 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
13413
13414         * image.c (do_mono_image_open): added a cache for arrays.
13415
13416 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
13417
13418         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
13419         decode a single column from a row in a metadata table and changes
13420         to take advantage of it in the typedef locator (gives a nice speed up).
13421         Store offset info for function params.
13422
13423 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
13424
13425         * image.h (MONO_IMAGE_IS_CORLIB): removed 
13426
13427 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
13428
13429         * assembly.c: how could mono_assembly_close () had ever worked?
13430         * metadata.c, metadata.h: provide offset info for local vars.
13431         Implement mono_type_size () to take care of alignment as well
13432         as size (it was mono_field_type_size in cli/class.c before).
13433
13434 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
13435
13436         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
13437
13438         * assembly.h (CORLIB_NAME): set to corlib.dll
13439
13440         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
13441
13442 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
13443
13444         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
13445         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
13446         tokentype.h: massive namespace cleanup.
13447
13448 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
13449
13450         * metadata.h, metadata.c: decode exception clauses when parsing method header.
13451
13452 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
13453
13454         * metadata.c (mono_metadata_free_type): added check for type !=
13455         NULL (void) before calling mono_metadata_free_type()
13456
13457 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
13458
13459         * metadata.h, row_indexes.h: added header with enumerations to use
13460         to index in the columns from tables in metadata and to decode coded
13461         tokens: we should start using this instead of embedding magic numbers
13462         all over the code.
13463
13464 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
13465
13466         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
13467         Move metadata_t info from cli_image_info_t to MonoImage, where
13468         it's easily accessible. Changed all the uses accordingly.
13469         Added the method and class caches to MonoImage.
13470         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
13471         and mono_metadata_decode_value () signature to be more consistent
13472         with the other parse functions (and simplify code). Taken advantage
13473         of zero-length array allocation with GCC. Removed reduntant (and
13474         wrong) MonoFieldType struct and use MonoParam instead. Changed
13475         mono_metadata_parse_field_type () to use common code for parsing.
13476         Added mono_metadata_typedef_from_field () and
13477         mono_metadata_typedef_from_method () to lookup a typedef index from a
13478         field or method token.
13479         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
13480
13481 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
13482
13483         * metadata.c (mono_metadata_parse_field_type): Implement. 
13484         (do_mono_metadata_parse_type): Split engine from
13485         mono_metadata_parse_type, so that we can create smaller structures
13486         for things that just have one pointer to the MonoType (look at
13487         the MonoFieldType)
13488
13489 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
13490
13491         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
13492         as Jan Gray found out, it is incorrect. 
13493
13494 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
13495
13496         * assembly.c: Implement asssembly loading.  This loads an image
13497         and loads all the referenced assemblies.  Come to think of it, we
13498         could always do lazy loading of the assemblies. 
13499
13500         * image.c (mono_image_open): Keep loaded images in a hashtable.
13501
13502         * image.h (MonoImage): Add reference count.
13503
13504 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
13505
13506         * assembly.c (mono_assembly_open): Keep track of the file name in
13507         case the assembly has no ASSEMBLY table.
13508
13509         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
13510         from get.c here.
13511
13512 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
13513
13514         * metadata.c, metadata.h: decode local vars in method header
13515         parse function. Change callers accordingly.
13516
13517 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
13518
13519         * metadata.h, cil-coff.h: protect against multiple inclusion.
13520         Added some new structures to hold information decoded from metadata:
13521         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
13522         and relevant decoding/free functions.
13523         * metadata.c: implement decoding functions. Add warning for out of bounds
13524         index in mono_metadata_locate(). Implement mono_get_method () to retreive
13525         all the info about a method signature and invocation. Remove check on
13526         uninitialized local var in parse_mh() and fix memory leak.
13527
13528 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
13529
13530         * metadata.h: More macros.
13531
13532         * tokentype.h: New file.
13533
13534 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
13535
13536         * assembly.c: added a consistency check and initialize
13537         some structures with g_new0().
13538         * metadata.c: fixed a couple more bugs in table size computation
13539         and add other checks for out-of bound access to metadata.
13540
13541 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
13542
13543         * metatada.c: fix bugs computing table sizes. Spew a
13544         warning when index in string heap is out of bounds.
13545
13546 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
13547
13548         * metadata.h: Add a couple of macros to manipulate tokens. 
13549
13550 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
13551
13552         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
13553         cli_section_tables).
13554
13555 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
13556
13557         * metadata.c (mono_metadata_user_string): New function, provides
13558         access to the UserString heap. 
13559
13560 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
13561
13562         * metadata.c: Add inline documentation.
13563
13564 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
13565
13566         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
13567         files. 
13568
13569 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
13570
13571         * typeattr.h: New file, TypeAttribute flags. 
13572
13573 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
13574
13575         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
13576         mono_assembly_ensure_section): Section loading code.
13577         (load_section_tables): Load the sections.
13578
13579         * mono/metadata/metadata.c (mono_metadata_locate_token,
13580         mono_metadata_locate): Functions to locate the information
13581         definition given a token or a table and an index.
13582         (mono_metadata_compute_table_bases): New.
13583         (compute_size): New function to compute the sizes of the various
13584         tables.
13585
13586         * mono/metadata/metadata.h: Finish listing the different index
13587         types. 
13588
13589         * mono/metadata/pedump.c: Improve to dump new information.
13590
13591 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
13592
13593         * mono/metadata/metadata.c: Entered all the tables matching
13594         Beta2. 
13595
13596         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
13597