2005-01-22 Ben Maurer <bmaurer@ximian.com>
[mono.git] / mono / metadata / ChangeLog
1 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
2
3         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
4         mmap rather than allocating a huge buffer.
5         (mono_debug_close_mono_symbol_file): Free the buffer allocated
6         above.
7
8 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
9
10         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
11         and CheckExecutionRights.
12         * reflection.c|h: Keep the index of the declarative security to be 
13         used, instead of the pointer, when AOT compiler is used. Also add 
14         class initialization when requesting demands.
15         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
16         CheckExecutionRights. Both properties are now FALSE by default, and
17         unmodifiable, unless the --security option is used.
18
19 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
20
21         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
22         reflection.c: properly refcount images and assemblies, many leaks fixed.
23
24 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25
26         * threadpool.c: increase the timeout for threads in the thread pool to
27         10s.  Fixes bug #67159.
28
29 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
30
31         * class-internals.h: Sun's compiler insists on explicit
32         signed on bit fields to handle then correctly.
33
34 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
35
36         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
37         Make the size of the array fit only the number of invalid path
38         chars that we have.
39
40         * class.c (_mono_class_get): Improve the error reporting when a
41         class referenced is not found, to assist debugging. 
42
43 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
44
45         * threads.c: fix off-by-one error.
46         * domain.c: free data allocated in the domain.
47
48 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
49
50         * reflection.c (mono_method_body_get_object): Fill out exception info
51         as well.
52
53         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
54         structure.
55         
56 2005-01-19  Martin Baulig  <martin@ximian.com>
57
58         * loader.c (mono_get_method_constrained): Make this work again.
59
60 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
61
62         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
63         guint16 to match the managed side.
64
65         * reflection.c (mono_reflection_body_get_object): Fill out local
66         variables array.
67
68         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
69         as well.
70
71         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
72         'local_var_sig_token'.
73
74 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
75
76         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
77         System.Drawing.
78
79         * reflection.c (mono_method_body_get_object): Handle abstract and
80         runtime methods.
81
82 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
83
84         * marshal.c, loader.c, class-internals.h, reflection.c:
85         store the emthod data for a wrapper in an array instead of a list.
86
87 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
88
89         * marshal.c: change the code to allocate memory more
90         conservatively for method wrappers.
91
92 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
93
94         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
95         fields from MonoClass to the marshal info structure where they belong.
96
97 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
98
99         * class.c, object.c, class-internals.h, marshal.c: rearrange
100         some fields and tweak some types to lower memory usage.
101
102 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
103
104         * threads.c (signal_thread_state_change): Handle the case when the
105         target thread is the current thread.
106
107         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
108
109         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
110         emit_ptr_to_object_conv. 
111
112         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
113         marshalling. Fixes #71352.
114
115 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
116
117         * metadata.h, blob.h: move table enum to blob.h so it can be included
118         in any header.
119         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
120         cut the size of MonoImage/MonoDynamicImage.
121
122 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
123
124         * profiler.c (mono_profiler_install_simple): Fix default arguments.
125
126 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
127
128         * reflection.c, reflection.h, icall.c: add a function to check
129         if an attribute type is defined for a metadata object.
130
131 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
132
133         * object-internals.h: Added some needed fields from StringBuilder class.
134         * marshal.c: Set the maxCapacity when creating a StringBuilder.
135
136 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
137
138         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
139         threads before shutting down the runtime.
140
141         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
142
143 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
144
145         * object-internal.h, threads.c: implement stacksize and 
146         parameterized thread start functionality (requires
147         matching corlib). Marked broken code for later removal.
148
149 2005-01-12  Martin Baulig  <martin@ximian.com>
150
151         * class-internals.h (MonoGenericClass): Moved the `initialized'
152         flag to MonoDynamicGenericClass, removed `init_pending'.
153         (MonoGenericInst): Added `is_reference' flag.
154
155 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
156
157         * reflection.c (mono_image_create_pefile): Only set the pe_offset
158         inside the MSDOS header. Fixes #71201.
159
160         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
161         gc thread.
162         (mono_domain_finalize): Ditto.
163
164 2005-01-12  Martin Baulig  <martin@ximian.com>
165
166         * class.c (mono_get_shared_generic_class): Use the cache for
167         non-dynamic generic classes.
168
169         * class-internals.h (mono_class_create_generic_2): Removed
170         function prototype, this function is now static inside class.c.
171
172         * class.c (mono_class_create_generic_2): Made this static, only
173         call it from mono_class_init() and mono_class_setup_parent().
174         (collect_implemented_interfaces_aux): Call mono_class_init() on
175         the interfaces we collect.
176         (mono_class_setup_vtable): Call mono_class_init (class->parent).
177
178 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
179
180         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
181         it a real thread handle.
182
183         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
184         MonoJitExceptionInfo, since each catch clause needs its own variable.
185         
186 2005-01-11  Dick Porter  <dick@ximian.com>
187
188         * image.c (mono_pe_file_open): New variant on mono_image_open()
189         that does not set up the CLI metadata; used for FileVersionInfo so
190         it can get the data for windows binaries too.
191         
192         * process.c (process_read_string_block): Don't read off the end of
193         the StringTable block.
194
195         These both fix bug 70766.
196
197 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
198
199         * gc.c: set some fields to NULL at GC cleanup time.
200         * threads.c: if we quit the main thread, call exit ().
201
202 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
203
204         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
205
206 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
207
208         * threads.h, threads.c, object.c: added accessor and settor for
209         main_thread. Handle it specially when exiting from it: wait
210         for other foreground threads to exit.
211
212 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
213
214         * process.c, verify.c: remove some bloat.
215
216 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
217
218         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
219         the calling convention to cdecl under win32.
220
221 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
222
223         * object.c (mono_object_get_size): New function to get the size of
224         an object instance.
225
226         * profiler.c (simple_allocation): Use above.
227
228 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
229
230         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
231         ves_icall_System_AppDomain_getRootDomain (as it's not required to
232         get an appdomain by it's id and we can't assume the root's id is 0).
233         * domain-internals.h: Change the function prototype to match.
234         * icall.c: Change the icall table for AppDomain.
235
236 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
237
238         * locales.c (string_invariant_compare_char): Only compute
239         GUnicodeTypes in the case where we need them.  Test for ordinality
240         first and return if so.
241
242         From the commit:
243
244                 /*
245                  * FIXME: here we must use the information from c1type and c2type
246                  * to find out the proper collation, even on the InvariantCulture, the
247                  * sorting is not done by computing the unicode values, but their
248                  * actual sort order.
249                  */
250
251 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
252
253         * loader.c: for P/Invoke methods, allow the "Internal" shared
254         library name to refer to the calling process symbol namespace.
255
256 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
257
258         * Makefile.am: Add the security manager to the build.
259         * security-manager.c|h: New. Initialization of the security manager.
260
261 2005-01-07  Dick Porter  <dick@ximian.com>
262
263         * threads.c: 
264         * monitor.c: Update thread state during Monitor and WaitHandle
265         waits.  Fixes bug 71031.
266
267 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
268
269         * reflection.c (property_encode_signature): Correctly handle when the
270         property has no methods.
271
272 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
273
274         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
275         
276         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
277         fields from mb, not rmb. Fixes #71017.
278
279         * marshal.c (emit_ptr_to_str_conv): Add support for 
280         ByValTStr -> string conversion. Fixes #71015.
281
282         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
283
284         * mempool.c (mono_mempool_contains_addr): New helper function.
285
286 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
287
288         * metadata.c (mono_metadata_compute_size): Fix size calculation of
289         HasSematics encoded fields.
290         
291         * metadata.c (mono_type_to_unmanaged): Improve error message for 
292         invalid string marshalling.
293
294         * metadata.c: Fix warnings.
295         
296 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
297
298         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
299         profiler support.
300
301 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
302
303         * domain.c object.c domain-internals.h: Revert part of r38077 since the
304         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
305         tests.
306
307 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
308
309         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
310         so methods containing these can be AOTed.
311
312 2005-01-03  Martin Baulig  <martin@ximian.com>
313
314         * loader.c (find_method): Removed the hack for generic instances.
315         (method_from_memberref): If our parent is a generic instance, pass
316         its generic type definition to find_method() and then inflate the
317         method.
318         (mono_get_method_constrained): Pass the generic type definition to
319         find_method() and inflate the method later.
320
321         * class-internals.h (MonoStats): Added `generic_class_count'.
322
323         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
324         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
325
326         * reflection.c (mono_custom_attrs_from_params): Don't ignore
327         generic type definitions.
328
329 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
330
331         * loader.c icall.c: Fix warnings.
332
333 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
334
335         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
336         blittable types. Fixes #70864.
337
338 2004-12-29  Martin Baulig  <martin@ximian.com>
339
340         * icall.c
341         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
342
343         * reflection.c (mono_method_get_object): Create a
344         "System.Reflection.MonoGenericMethod" for inflated methods; don't
345         call mono_get_inflated_method().
346
347         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
348
349 2004-12-27  Martin Baulig  <martin@ximian.com>
350
351         * class-internals.h (MonoMethod): Added `is_inflated' flag.
352         (MonoMethodInflated): Added `inflated' field.
353
354         * class.c (mono_class_inflate_generic_method): Don't really
355         inflate the method here; just set the `is_inflated' flag in the
356         MonoMethod.
357         (mono_class_get_inflated_method): Actually inflate the method here
358         if it's not already inflated; we use the MonoMethodInflated's new
359         `inflated' field as a cache.
360
361 2004-12-26  Martin Baulig  <martin@ximian.com>
362
363         * class.c
364         (inflate_generic_class): Moved some code out of inflate_generic_type().
365         (mono_class_inflate_generic_method): If we're already inflated,
366         inflate the context and use the declaring method; ie. make sure
367         the declaring method of an inflated method is always the generic
368         method definition.
369         (mono_class_create_from_typedef): Create
370         `class->generic_container->context->gclass'.
371
372 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
373
374         * metadata-internals.h, marshal.c, reflection.c: More
375         MonoGHashTable->GHashTable.
376
377         * domain-internals.h, class.c: Change MonoGHashTable's into
378         GHashTables for some cases where no gc stuff is used
379
380         All users: update apis
381
382 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
383
384         * metadata.c (builtin_types): Make this `const'. Makes this get
385         put into the shareable section.
386         (mono_metadata_init): Casts to make gcc happy.
387
388 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
389
390         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
391
392 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
393
394         * icall.c: Added an internal call to retrieve the position and length
395         of assembly-level declarative security attributes (RequestMinimum, 
396         RequestOptional and RequestRefuse). This is used by the Assembly class
397         to re-create the corresponding permission sets.
398
399 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
400
401         * marshal.c: fix the stelemref wrapper to be type correct
402         (and faster).
403
404 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
405
406         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
407         to do key & 0x7fffffff. Hashtable already does this. It just
408         results in longer code.
409
410 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
411
412         * appdomain.c: Bump corlib version.
413         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
414         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
415         * reflection.c|h: Add functions to get declarative security infos
416         (blob position and length) for assemblies, classes and methods.
417
418 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
419
420         * reflection.c: sort the constant table (bug #70693).
421
422 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
423
424         * object-internals.h, threads.c, domain.c: add accessors for
425         the MonoThread and MonoDomain tls keys.
426
427 2004-12-18  Martin Baulig  <martin@ximian.com>
428
429         * class.c (inflate_generic_type): If we're inflating a generic
430         instance, set `ngclass->context->container = context->container';
431         ie. the container we inflated into.
432
433         * metadata.c (mono_metadata_parse_generic_param): Reflect above
434         inflate_generic_type() changes.
435
436 2004-12-17  Martin Baulig  <martin@ximian.com>
437
438         * class-internals.h
439         (MonoGenericClass): Replaced `MonoType *generic_type' with
440         `MonoClass *generic_class'.  Removed `dynamic_info'; if
441         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
442         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
443
444 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
445
446         * exception.c (mono_exception_from_token): New helper function.
447
448 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
449
450         * assembly.c (mono_assembly_load_with_partial_name): Call 
451         mono_assembly_loaded before invoking the preload hooks. Fixes
452         #70564.
453
454         * object-internals.h (MonoThread): Change culture_info and 
455         ui_culture_info into an array.
456
457         * threads.c: Cache culture info objects from more than one appdomain.
458
459         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
460         current UI culture.
461
462 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
463
464         * threads.h threads.c appdomain.c: Clear the culture_info field of
465         all threads during unloading if they point to an object in the dying
466         appdomain.
467
468 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
469
470         * culture-info.h (TextInfoEntry): New struct
471         * object-internals.h: sync with managed
472         * locales.c: fill the `text_info_data' field
473         * culture-info-tables.h: update
474
475 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
476
477         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
478         collector.
479
480 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
481
482         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
483         (ves_icall_ModuleBuilder_getMethodToken): Ditto
484
485 2004-12-12  Martin Baulig  <martin@ximian.com>
486
487         * mono-debug-debugger.c (write_type): If we're an enum and the
488         builtin types have already been initialized, call mono_class_init().
489
490 2004-12-11  Martin Baulig  <martin@ximian.com>
491
492         * metadata.c (mono_metadata_load_generic_params): Added
493         `MonoGenericContainer *parent_container' argument; automatically
494         compute `container->is_method'; pass the correct owner to
495         get_constraints().      
496
497         * reflection.c (compare_genericparam): Sort the GenericParam table
498         according to increasing owners. 
499
500 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
501
502         * profiler.c: allow disabling the default profiler.
503
504 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
505
506         * decimal.c, icall.c: allow disabling System.Decimal support.
507
508 2004-12-09  Marek Safar <marek.safar@seznam.cz>
509
510         * reflection.c: Add support for null attribute arguments.
511
512 2004-12-09  Martin Baulig  <martin@ximian.com>
513
514         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
515         names to get rid of compiler warnings.
516
517 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
518
519         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
520         mono_marshal_load_type_info (). Fixes #69625.
521         (mono_marshal_get_ptr_to_struct): Likewise.
522
523 2004-12-08  Martin Baulig  <martin@ximian.com>
524
525         * mono-debug.h: Bumped version number to 47.
526
527         * mono-debug-debugger.c
528         (mono_debugger_event_handler, mono_debugger_event): Take two
529         guint64 arguments insteed of a gpointer and a guint32.  
530
531 2004-12-08  Martin Baulig  <martin@ximian.com>
532
533         * debug-mono-symfile.h
534         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
535         `address' to `native_offset'.
536
537 2004-12-08  Martin Baulig  <martin@ximian.com>
538
539         * class.c (mono_class_create_from_typespec): Only inflate if we
540         either have `context->gclass' or `context->gmethod'.
541
542 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
543
544         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
545
546         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
547
548         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
549
550         * reflection.c (mono_assembly_get_object): Remove the workaround put
551         in for the release.
552         
553         * appdomain.c: Use the corlib_internal field from MonoAssembly.
554
555         * appdomain.c: Bump corlib version.
556
557         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
558         be visible in other appdomains.
559
560 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
561
562         * threads.c: Interlocked inc and dec for longs were messed up,
563         use a KISS based impl for this. Fixes 70234
564
565 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
566
567         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
568
569 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
570
571         * icall.c: fix to follow policy not to allow struct
572         arguments in icalls.
573
574 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
575
576         * process.c: make the patch that handles spaces in file paths work
577         on mono/windows too.
578
579 2004-12-06  Martin Baulig  <martin@ximian.com>
580
581         * class.c (mono_class_create_generic): Call
582         mono_class_setup_supertypes() if we're dynamic.
583         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
584
585 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
586
587         * object-internals.h: Add new fields to MonoThread.
588
589         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
590
591         * icall.c threads-types.h threads.c: Add new icalls.
592
593         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
594
595         * object-internals.h (MonoReflectionAssembly): Sync object layout with
596         managed side.
597
598         * appdomain.c: Bump corlib version.
599
600         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
601         internal assemblies. Fixes #69181.
602
603 2004-12-05  Martin Baulig  <martin@ximian.com>
604
605         * class.c (mono_class_inflate_generic_signature): Make this a
606         no-op if `context' is NULL or we don't have any type parameters;
607         also copy `sentinelpos'.        
608
609 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
610
611         * image.c: Add unbox_wrapper_cache.
612
613         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
614
615         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
616         function generator.
617         
618         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
619         Fixes #70173.
620
621         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
622         
623 2004-12-04  Martin Baulig  <martin@ximian.com>
624
625         * loader.c (mono_method_get_signature_full): New public function;
626         like mono_method_get_signature(), but with an additional
627         `MonoGenericContext *' argument.
628
629         * class.c (mono_class_inflate_generic_signature): Formerly known
630         as inflate_generic_signature(); make this public.
631
632 2004-12-04  Martin Baulig  <martin@ximian.com>
633
634         * metadata.c
635         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
636         instead of a `MonoGenericContainer *'.  
637         (mono_metadata_parse_array_full): Likewise.
638         (mono_metadata_parse_signature_full): Likewise.
639         (mono_metadata_parse_method_signature_full): Likewise.
640         (mono_metadata_parse_generic_inst): Likewise.
641         (mono_metadata_parse_generic_param): Likewise.
642         (mono_metadata_parse_mh_full): Likewise.
643         (mono_type_create_from_typespec_full): Likewise.
644
645 2004-12-03  Martin Baulig  <martin@ximian.com>
646
647         * class-internals.h (MonoGenericContainer): Replaced the
648         `MonoGenericContext * pointer with a `MonoGenericContext'
649         structure and made it the first element.
650
651 2004-12-03  Martin Baulig  <martin@ximian.com>
652
653         * class.c
654         (inflate_generic_type): Set the `context->container' when creating
655         a new MonoGenericContext.
656         (mono_class_inflate_generic_method): Likewise.
657         (mono_class_create_from_typespec): Just use `context->container'
658         to get the container.
659
660         * loader.c (method_from_methodspec): Set `context->parent' from
661         `context->container' - and if that's a method container, use its
662         parent.  Also set the `context->container' when creating a new
663         MonoGenericContext.
664         (mono_get_method_from_token): Use just `context->container' to get
665         the container.
666
667         * metadata.c (do_mono_metadata_parse_generic_class): Also set
668         `gclass->context->container'.
669
670         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
671         the `context->container' when creating a new MonoGenericContext.
672
673 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
674
675         * reflection.c (compare_genericparam): Sort params with identical
676         owner by their number. Fixes gen-111 on sparc.
677
678 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
679
680         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
681         around the domain changes.
682
683         * appdomain.c (mono_domain_unload): Handle the case when the thread
684         calling Unload is itself being aborted during unloading. Fixes #70022.
685
686         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
687
688         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
689         checkpoint_func as an icall so it gets a wrapper.
690         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
691         in the cross-appdomain wrappers too.
692
693         * threads.c (mono_thread_has_appdomain_ref): Make this public.
694
695         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
696
697         * reflection.c: Fix some memory leaks.
698         
699 2004-12-02  Martin Baulig  <martin@ximian.com>
700
701         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
702
703         * metadata.c (generic_class_cache): New static hashtable.
704         (mono_metadata_lookup_generic_class): New public method.
705
706 2004-12-02  Martin Baulig  <martin@ximian.com>
707
708         * class.c (mono_class_create_from_typedef): Call
709         mono_class_setup_parent() and mono_class_create_mono_type() before
710         parsing the interfaces.
711
712 2004-12-02  Martin Baulig  <martin@ximian.com>
713
714         * metadata.c (generic_inst_cache): New static hashtable.
715         (mono_metadata_lookup_generic_inst): New public function.
716         (mono_metadata_inflate_generic_inst): New public function.
717         (mono_metadata_parse_generic_inst): New public function.
718         (do_mono_metadata_parse_generic_class): Use the new
719         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
720         since this'll also use the cache.
721
722         * reflection.c (mono_reflection_bind_generic_method_parameters):
723         Use mono_metadata_lookup_generic_inst() to use the new cache.
724
725         * class.c (inflate_mono_type): Use
726         mono_metadata_inflate_generic_inst() to inflate a generic
727         instance; this'll also use the new cache.
728
729         * loader.c (method_from_methodspec): Use
730         mono_metadata_parse_generic_inst() and
731         mono_metadata_inflate_generic_inst() rather than parsing it
732         manually, so we can use the new cache.
733
734 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
735
736         * threads.c (wait_for_tids): Do not incorrectly free threads when 
737         the wait times out.
738
739 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
740
741         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
742         iter->args based on whether parameters are passed in registers (i.e.
743         MONO_ARCH_REGPARMS is defined)
744
745 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
746
747         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
748         the exception message. Fixes #70070.
749         (method_from_methodspec): Fix warnings.
750
751 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
752
753         * process.c: (complete_path) return the path quoted
754
755 2004-12-01  Martin Baulig  <martin@ximian.com>
756
757         * class-internals.h (MonoGenericInst): New structure.
758         (MonoGenericClass): Replaced `type_argc', `type_argv' and
759         `is_open' with `MonoGenericInst *inst'.
760         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
761         `is_open' with `MonoGenericInst *inst'.
762
763 2004-11-30  Martin Baulig  <martin@ximian.com>
764
765         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
766
767         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
768         to `generic_class_cache'.
769
770         * metadata.c
771         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
772         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
773         (mono_generic_inst_is_valuetype): Renamed to
774         mono_generic_class_is_valuetype().
775
776         * class-internals.h
777         (MonoGenericInst): Renamed to MonoGenericClass.
778         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
779         (MonoClass): Renamed `generic_inst' to `generic_class'.
780         (MonoGenericContext): Renamed `ginst' to `gclass'.
781
782         * object-internals.h
783         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
784
785         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
786         mono_reflection_generic_class_initialize().
787
788         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
789         now known as "System.Reflection.MonoGenericClass".
790         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
791
792 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
793
794         * class-internals.h: Added a flag field to MonoClass to cache the
795         declarative security attributes actions associated with the class.
796         * domain-internals.h: Added booleans to MonoJitInfo to cache the
797         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
798         applicable to the JITted method.
799         * reflection.c|h: Added functions to extract (as flags) which security
800         actions are available (declaratively) for a method, class or assembly.
801         * metadata.c|h: Added functions to search the declarative security
802         table in the metadata.
803         
804 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
805
806         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
807         EXPORTEDTYPES are already in the class name cache, so there is no
808         need to add extra code here to look at them. Just removes a bit of
809         cruft.
810
811         (ves_icall_System_Environment_get_TickCount): No need for #if
812         WINDOWS. We already have the code in io-layer.
813
814 2004-11-28  Martin Baulig  <martin@ximian.com>
815
816         * loader.c
817         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
818         Fixes gen-112.cs.
819
820 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
821
822         * assembly.c (do_mono_assembly_open): Instead of having a
823         conditional WITH_BUNDLE, incorporate support for bundles here, by
824         having a global `bundles' variable holding a pointer to the actual
825         bundles. 
826
827         (mono_register_bundled_assemblies): New API call used by the
828         bundle code. 
829
830         See mkbundle.1 for details.
831         
832 2004-11-27  Martin Baulig  <martin@ximian.com>
833
834         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
835         the vtable for generic methods.
836
837 2004-11-26  Martin Baulig  <martin@ximian.com>
838
839         * metadata.c
840         (mono_metadata_generic_method_hash): New public function.
841         (mono_metadata_generic_method_equal): Likewise.
842
843         * class-internals.h
844         (MonoGenericContainer): Added `GHashTable *method_hash'.
845
846         * reflection.c (ReflectionMethodBuilder): Added
847         `MonoGenericContainer *generic_container'.
848         (reflection_methodbuilder_to_mono_method): Don't create a new
849         MonoGenericContainer each time we're called.
850         (mono_reflection_bind_generic_method_parameters): Use
851         `container->method_hash' to cache the results so we don't create a
852         different method if we're called several times with the same
853         arguments.
854
855         * loader.c (method_from_methodspec): Use the new
856         `container->method_hash' here, too.
857
858 2004-11-26  Martin Baulig  <martin@ximian.com>
859
860         * class.c (inflate_generic_signature): Correctly compute
861         `res->has_type_parameters'.
862         (mono_class_vtable): Use the `has_type_parameters' flag to
863         determine whether we're a generic method.
864
865         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
866
867 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
868
869         * object.c (mono_runtime_run_main): Fix a small memory leak.
870
871 2004-11-25  Martin Baulig  <martin@ximian.com>
872
873         * class.c (set_generic_param_owner): Fixed the loop.
874
875 2004-11-25  Martin Baulig  <martin@ximian.com>
876
877         * object.c (mono_class_vtable): Don't create any JIT wrappers for
878         generic methods.
879
880 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
881
882         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
883         names. Fixes #69787.
884
885 2004-11-24  Martin Baulig  <martin@ximian.com>
886
887         * class.c (mono_class_create_generic_2): If we don't have a
888         `ginst->parent', inflate `gklass->parent' to get our parent.
889
890 2004-11-24  Martin Baulig  <martin@ximian.com>
891
892         * reflection.c (compare_genericparam): Correctly sort the
893         GenericParam table; fixes #69779.
894
895 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
896
897         * reflection.c: When writing a PE file, don't create a huge
898         buffer in memory. Just write the arrays we have to the file.
899         This reduces memory usage.
900
901         * metadata-internals.h: MonoDynamicStream pefile is no longer used
902         globally.
903
904 2004-11-17  Martin Baulig  <martin@ximian.com>
905
906         * class.c (mono_class_init): Don't setup `class->parent' for
907         dynamic instances; moved this to mono_class_generic_2().
908         (mono_class_create_generic): Also set `klass->inited' for dynamic
909         generic instances.
910         (mono_class_create_generic_2): Don't do anything for dynamic
911         generic instances.  Set `klass->parent' here and also call
912         mono_class_setup_parent() here. 
913
914         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
915         `MonoType *parent' argument; set `ginst->parent' before calling
916         mono_class_create_generic_2(), so we set the correct parent.
917
918 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
919
920         * reflection.c: allow getting attributes from ModuleBuilder
921         (used by ikvm).
922
923 2004-11-17  Martin Baulig  <martin@ximian.com>
924
925         * class.c (mono_class_create_from_typedef): If a type parameter is
926         inherited from an outer class, set its owner to that class.
927
928 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
929
930         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
931           for (int*) written size. This fixes bug #69592.
932
933 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
934
935         * icall.c: Added IsAuthenticodePresnet internal call.
936         * image.c|h: New function that check a MonoImage for an Authenticode
937         signature in the certificate PE data directory.
938         * security.c|h: New internal call to ask the runtime if an 
939         Authenticode signature seems referenced in the PE header.
940
941 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
942
943         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
944
945         * reflection.c (mono_image_create_pefile): Free the assembly streams
946         after writing out the assembly file.
947
948         * object.c (mono_runtime_run_main): Fix small memory leak.
949
950         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
951         property access modifiers. Fixes #69389.
952
953 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
954
955         * domain.c, object.c, object-internals.h, domain-internals.h,
956         object.h, marshal.c: keep dynamic code info per domain.
957
958 2004-11-15  Martin Baulig  <martin@ximian.com>
959
960         * class.c (mono_type_get_name_recurse): Put type arguments in
961         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
962         see bug #68387.
963
964 2004-11-15  Martin Baulig  <martin@ximian.com>
965
966         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
967         (mono_class_setup_vtable): When computing `the_cname' for a
968         generic instance, don't include the namespace since we'd otherwise
969         add it twice.
970
971 2004-11-15  Martin Baulig  <martin@ximian.com>
972
973         * class.c (mono_class_create_generic): Changed return type to void.
974         (mono_class_create_generic_2): New public function; setup
975         `class->method', `class->field' and `class->interfaces' here
976         instead of in mono_class_init().
977
978         * class.h (mono_class_create_generic): Moved to class-internals.h.
979
980 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
981
982         * reflection.c (mono_image_create_pefile): take a file HANDLE.
983         rather than writing to memory, write to this file. Right now,
984         we are just writting into a buffer, and copying that. However
985         we can avoid the buffer later.
986
987         (mono_dynamic_stream_reset): new function
988
989         * icall.c, object-internals.h: update for the above.
990
991 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
992
993         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
994         have been using gc'd memory. First it is slower, unlikely
995         the comment in the source code said, secondly, it increases
996         our footprint to do it in the gc.
997
998         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
999         the method so that it does not have to copy to managed code.
1000
1001 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
1002
1003         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
1004
1005 2004-11-12  Martin Baulig  <martin@localhost>
1006
1007         * reflection.c (mono_image_create_token): Allow generic method
1008         definitions here, since they may appear in an `.override'; see
1009         gen-98/gen-99 for an example.
1010
1011 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
1012
1013         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
1014         #69365.
1015
1016         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
1017         descriptive.
1018
1019 2004-11-11  Martin Baulig  <martin@ximian.com>
1020
1021         * class.c (mono_class_setup_vtable): In an explicit interface
1022         implementation, the method name now includes the arity.
1023
1024 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
1025
1026         * object.c (mono_array_full_copy): Fix warning.
1027
1028 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
1029
1030         * appdomain.c: Removed look_for_method_by_name(). Use the new method
1031         mono_class_get_method_from_name() instead.
1032         
1033         * class-internals.h: Added two new types of wrappers. 
1034         Added MonoRemotingTarget enum. Added new trampoline function type, which
1035         takes an additional MonoRemotingTarget value as parameter, so it is
1036         possible to request a trampoline for a specific target.
1037         
1038         * class.c: Added new mono_class_get_method_from_name() method.
1039         
1040         * class.h: In MonoRemoteClass, we can have now to vtables, one for
1041         general remoting sinks and one specific for cross domain calls.
1042         
1043         * debug-helpers.c: Added new wrapper names.
1044         
1045         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
1046         of a remote class.
1047         
1048         * image.c: Porperly delete value objects form the remoting invoke hashtable.
1049         
1050         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
1051         with several other methods (mono_marshal_get_xappdomain_dispatch,
1052         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
1053         and others) can generate a fast remoting wrapper for cross domain calls.
1054         More information can be found in docs/remoting.
1055         Other changes: Removed mono_find_method_by_name, and used
1056         mono_class_get_method_from_name instead.
1057         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
1058         is stored in the remoting invoke hashtable.
1059         
1060         * marshal.h: published the new method for getting the xdomain wrapper,
1061         and also added a method for getting the adequate wrapper for a given
1062         method and target.
1063         
1064         * object-internals.h, object.c: Added a couple of methods for capying and
1065         cloning arrays.
1066         Modified mono_install_remoting_trampoline, which takes the new remoting
1067         trampoline that has a remoting target as parameter.
1068         mono_class_proxy_vtable now also takes a remoting target as parameter, and
1069         will return the most suitable vtable for the target.
1070         Added mono_remote_class_vtable, which returns the vtable of a remote class
1071         (which can be the normal remoting vtable or the xdomain vtable).
1072         
1073         * threads.c: the xdomain invoke and dispatch wrappers must also be
1074         protected against interruptions.
1075
1076 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1077
1078         * icall.c: use memmove in BlockCopyInternal when the source and
1079         destination arrays are the same.
1080
1081 2004-11-09  Martin Baulig  <martin@ximian.com>
1082
1083         * class-internals.h (MonoGenericContainer): Removed `method' and
1084         `signature', replaced them with `is_method' and `is_signature'
1085         flags.  Added `context'.
1086
1087         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
1088         instead of a `MonoGenericContainer *'.
1089
1090         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
1091         for dynamic type parameters.
1092         (mono_metadata_load_generic_params): Setup `container->context'.
1093
1094         * reflection.c (mono_reflection_setup_generic_class): Setup
1095         `tb->generic_container->context'.
1096         (do_mono_reflection_bind_generic_parameters): Use
1097         mono_class_inflate_generic_type() to correctly inflate types,
1098         rather than using our own hack just for MONO_TYPE_VAR.
1099
1100 2004-11-09  Martin Baulig  <martin@ximian.com>
1101
1102         * class.c (mono_class_inflate_generic_method): Small fix; don't
1103         crash here.
1104
1105         * icall.c
1106         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
1107         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
1108         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
1109         (ves_icall_Type_BindGenericParameters): Likewise.
1110         (ves_icall_Type_get_IsGenericInstance): Likewise.
1111         (ves_icall_Type_GetGenericParameterPosition): Likewise.
1112         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
1113         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
1114         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
1115
1116 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
1117
1118         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
1119         assembly versions and public key tokens. Fixes #69113.
1120
1121 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
1122
1123         * metadata.c: fix bug introduced with the type cache changes
1124         on 2004-11-06.
1125
1126 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
1127
1128         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
1129         the MonoClass pointer instead of the token in exception clauses.
1130         * reflection.c: updates for the above and make the code not depend
1131         on the structure of MonoExceptionClause.
1132
1133 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
1134
1135         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
1136         Add support for dynamic assemblies. Fixes #69114.
1137
1138         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
1139
1140 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
1141
1142         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
1143         since most only those methods use it. the code member of
1144         MonoMethodPInvoke was dead, so that can be removed too. Also,
1145         remove inline_count (again, not used), and move slot so that it
1146         can share bits with some other flags. This saves 8 bytes in the
1147         structure and gives us about 50 kb back for mcs helloworld.cs
1148
1149         * *.[ch]: Do naming changes for the above.
1150
1151         * loader.c (mono_method_get_header): Lazily init the header
1152         on first access.
1153         (mono_get_method_from_token): don't init the header here
1154         (mono_free_method): the header may never be allocated
1155
1156         Overall, this saves 150 kb of unmanaged allocations
1157         for mcs helloworld.cs. That accounts for 10% of the unmanaged
1158         memory at runtime.
1159         
1160         * loader.c, loader.h (mono_method_get_header): new accessor.
1161
1162         * *.[ch]: use the above method. Prepares us to lazily load
1163         the header.
1164
1165         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
1166         three warnings, which are actual bugs (see 69206).
1167
1168         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
1169         unused. Saves a cool 4 bytes / method.
1170
1171 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
1172
1173         * metadata.c (builtin_types): Add types for System.Object here.
1174         (mono_metadata_parse_type_full): Cache MonoType*'s that are
1175         for a class or valuetype from klass->this_arg or klass->byval_arg.
1176
1177         On mcs for a hello world, this gets us down from 21836 MonoType's
1178         to 14560.
1179
1180         (mono_metadata_free_type): Account for the above change.
1181
1182 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
1183
1184         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
1185         exception instead of asserting if name is null.
1186         (ves_icall_System_AppDomain_GetData): Ditto.
1187
1188 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
1189
1190         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
1191         EnumBuilder.
1192
1193         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
1194         Return NULL when the domain does not have entry_assembly set.
1195
1196         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
1197         Add a 'resource_modules' argument.
1198         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
1199
1200         * reflection.c (mono_reflection_create_runtime_class): Move setting
1201         of wastypebuilder here, so mono_get_type_object () returns a MonoType
1202         for enums too.
1203
1204         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
1205         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
1206         Throw an ArgumentNullException if 'ptr' is null.
1207
1208         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
1209         assemblies here. Fixes #69020.
1210
1211 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
1212
1213         * reflection.c (build_compressed_metadata): Fix the previous patch for
1214         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
1215         the stack.
1216
1217 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
1218
1219         * assembly.c (mono_assembly_names_equal): Allow a match if one of
1220         the cultures is false. Fixes #69090.
1221
1222         * reflection.c (build_compressed_metadata): Fix invalid memory read 
1223         detected by valgrind.
1224         
1225         * reflection.c (mono_reflection_get_type): Avoid triggering a 
1226         TypeResolve multiple times for the same type. Fixes #65577.
1227
1228 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
1229
1230         * marshal.c: Avoid using ldftn to call managed functions. It is
1231         much slower than just a call.
1232
1233         * reflection.c (mono_module_get_object): free the basename we
1234         allocate here from glib.
1235         
1236         * reflection.c (ensure_runtime_vtable): make sure to free
1237         overrides.  Also, we were allocating an array of MonoMethod not an
1238         array of MonoMethod*.
1239
1240         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
1241
1242         * image.c (mono_image_close): free image->guid here.
1243
1244 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
1245
1246         * reflection.c: Fix some spec conformance issues with the PE file
1247         structures so mcs compiled apps run on the Net 2.0 beta.
1248
1249 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
1250
1251         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
1252         Implement this. Fixes #67264.
1253
1254         * debug-helpers.h debug-helpers.c marshal.c: Move 
1255         mono_find_method_by_name to debug-helpers.c.
1256
1257 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
1258
1259         * object.c (mono_release_type_locks): type_initialization_hash is
1260         a GHashTable.
1261
1262         * reflection.c object.c object-internals.h: Fix warnings.
1263
1264         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
1265         without accessors. Fixes #61561.
1266
1267         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
1268         application base from the root domain if not set. Fixes #65641.
1269         (mono_runtime_init): Fix warning.
1270
1271 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1272
1273         * appdomain.c: call mono_thread_pool_init.
1274         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
1275         of worker threads based on the number of CPUs and the environment
1276         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
1277         for non-windows (windows) systems.
1278
1279 2004-10-27  Chris Toshok  <toshok@ximian.com>
1280
1281         * mono-debug-debugger.c (write_class): don't call mono_class_init
1282         here, as even with the check for (!klass->init_pending), we get
1283         into a situation where we're hitting cycles in class
1284         initialization.  Fixes #68816.
1285
1286 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
1287
1288         * image.c: Avoid overwriting values in the loaded_images_hash when an
1289         assembly is loaded multiple times. Fixes #61152.
1290
1291         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
1292         so multiple satellite assemblies for the same name can be loaded.
1293         Fixes #68259.
1294
1295         * mono_domain_assembly_preload: Actually return the loaded assembly, 
1296         not NULL.
1297
1298         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
1299         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
1300
1301         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
1302         pending finalizers are not invoked after the appdomain has been 
1303         unloaded. Fixes #67862.
1304
1305 2004-10-22  Martin Baulig  <martin@ximian.com>
1306
1307         * mono-debug-debugger.c
1308         (mono_debugger_runtime_invoke): Don't box valuetypes.
1309
1310 2004-10-22  Chris Toshok  <toshok@ximian.com>
1311
1312         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
1313         don't hide private methods.
1314
1315 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
1316
1317         * icall.c: Allows the runtime to "share" (when known) the public key
1318         token of an assembly. This avoid the need to recalculate the token 
1319         (from the public key) in managed code.
1320
1321 2004-10-21  Chris Toshok  <toshok@ximian.com>
1322
1323         * debug-helpers.c (append_class_name): argh, revert last patch.
1324         
1325 2004-10-21  Chris Toshok  <toshok@ximian.com>
1326
1327         * debug-helpers.c (append_class_name): use '+' as the delimiter,
1328         not '/', so that it matches what the debugger uses to look up
1329         methods.
1330
1331 2004-10-21  Martin Baulig  <martin@ximian.com>
1332
1333         * mono-debug-debugger.c (mono_debugger_throw_exception): New
1334         public method; this is called each time an exception is thrown and
1335         allows the debugger to use exception catch points.
1336
1337 2004-10-21  Martin Baulig  <martin@ximian.com>
1338
1339         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
1340         the stack pointer and the exception object in some struct and pass
1341         that to the debugger.
1342
1343 2004-10-21  Chris Toshok  <toshok@ximian.com>
1344
1345         * mono-debug-debugger.c (do_write_class): add instance/static
1346         event support.  We don't expose "raise" or "other" yet.
1347         (event_is_static): new method.
1348
1349 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
1350
1351         * mono-debug-debugger.c
1352         (mono_debugger_handle_exception): Remove
1353         bogus return value for fussy compilers.
1354
1355 2004-10-20  Martin Baulig  <martin@ximian.com>
1356
1357         * mono-debug-debugger.c
1358         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
1359         (mono_debugger_handled_exception): Likewise.
1360
1361 2004-10-20  Martin Baulig  <martin@ximian.com>
1362
1363         * mono-debug-debugger.h (MonoDebuggerEvent): Added
1364         MONO_DEBUGGER_EVENT_EXCEPTION.
1365
1366         * mono-debug-debugger.c (mono_debugger_handle_exception): New
1367         public function to send the debugger a notification for an
1368         exception and inform it about a catch/finally clause.
1369
1370 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
1371
1372         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
1373         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
1374         fix 2.95 build. 
1375
1376         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
1377
1378 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
1379
1380         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
1381         marshalled as [In,Out]. Fixes #58325.
1382
1383 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
1384
1385         * reflection.c (mono_method_body_get_object): Implement some fields.
1386
1387 2004-10-12  Martin Baulig  <martin@ximian.com>
1388
1389         * reflection.c (mono_reflection_bind_generic_parameters): Small
1390         fix, correctly retrieve our parent from a generic instance.
1391
1392 2004-10-12  Martin Baulig  <martin@ximian.com>
1393
1394         * metadata.c (mono_metadata_generic_param_equal): We always have
1395         an owner.
1396
1397         * class.c
1398         (mono_class_from_generic_parameter): We need to have an owner.
1399         (my_mono_class_from_generic_parameter): Likewise.
1400
1401         * reflection.c (mono_reflection_setup_generic_class): Renamed to
1402         mono_reflection_create_generic_class() and added a new
1403         mono_reflection_setup_generic_class().  
1404         (mono_reflection_initialize_generic_param): If we're a nested
1405         generic type and inherited from the containing class, set our
1406         owner to the outer class.
1407
1408 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
1409
1410         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
1411
1412         * reflection.c (mono_method_body_get_object): New function to create
1413         a MethodBody object.
1414
1415         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
1416
1417 2004-10-11  Martin Baulig  <martin@ximian.com>
1418
1419         * metadata.c (_mono_metadata_type_equal): Renamed to
1420         do_mono_metadata_type_equal() and made static.
1421
1422 2004-10-11  Martin Baulig  <martin@ximian.com>
1423
1424         * appdomain.c: Bump corlib version number to 28.
1425
1426 2004-10-10  Martin Baulig  <martin@ximian.com>
1427
1428         * class-internals.h
1429         (MonoGenericInst): Added `MonoGenericContainer *container'.
1430         (MonoGenericMethod): Likewise.
1431         (MonoGenericContext): Likewise.
1432         (MonoGenericParam): Added `MonoGenericContainer *owner'.
1433
1434         * metadata.c
1435         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
1436         (do_mono_metadata_parse_generic_inst): Likewise.
1437         (mono_metadata_parse_type_full): New public method.  This is the actual
1438         mono_metadata_parse_type() implementation - with an additional
1439         `MonoGenericContainer *' argument.
1440         (mono_metadata_parse_array_full): Likewise.
1441         (mono_metadata_parse_signature_full): Likewise.
1442         (mono_metadata_parse_method_signature_full): Likewise.
1443         (mono_metadata_parse_mh_full): Likewise.
1444         (mono_type_create_from_typespec): Likewise.
1445         (mono_metadata_interfaces_from_typedef_full): New public method;
1446         this is similar to the other _full() methods, but we take a
1447         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
1448         (mono_metadata_parse_generic_param): Take an additional
1449         `MonoGenericContainer *' argument and lookup the MonoGenericParam
1450         from that container.
1451         (mono_metadata_generic_param_equal): New static method to compare
1452         two type parameters.
1453         (_mono_metadata_type_equal): New static method; takes an
1454         additional `gboolean signature_only' argument - if true, we don't
1455         compare the owners of generic parameters.
1456         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
1457         with a TRUE argument - do a signature-only comparision.
1458
1459         * loader.c: Use the new _full() methods and pass the
1460         MonoGenericContainer to them.
1461
1462         * object-internals.h (MonoReflectionTypeBuilder): Added
1463         `MonoGenericContainer *generic_container' field.
1464         (MonoReflectionMethodBuilder): Likewise.
1465
1466 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
1467
1468         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
1469         case initial images of dynamic assemblies.
1470
1471         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
1472
1473         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
1474
1475         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
1476         length of event->other array.
1477         (typebuilder_setup_events): Ditto.
1478
1479         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
1480         'assembly_by_name' and add an 'assemblies' list.
1481
1482         * assembly.h assembly.c: Add a new search hook for determining whenever
1483         an assembly is already loaded. Use this instead of searching in the
1484         loaded_assemblies list.
1485
1486         * domain.c appdomain.c: Implement the new search hook so loaded 
1487         assemblies are now scoped by appdomain. Fixes #67727.
1488
1489 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
1490
1491         * threads.c (mono_thread_attach): Initialize synch_lock field so
1492         mono_thread_detach works again.
1493
1494         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
1495         'lib' too. Fixes #63130.
1496
1497 2004-10-06  Jackson Harper  <jackson@ximian.com>
1498
1499         * culture-info-tables.h: regenerated.
1500
1501 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
1502
1503         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
1504         implemented by other interfaces in the result. Fixes #65764.
1505         
1506         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
1507         Handle unloadable modules without crashing.
1508
1509         * image.c (load_modules): Revert the previous patch since modules must
1510         have a fixed index inside the array.
1511         
1512         * image.c (load_modules): Don't include native modules in the modules
1513         array.
1514
1515 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
1516
1517         * reflection.h: Add param_defaults field.
1518
1519         * reflection.c: Add support for parameter defaults in dynamic methods.
1520         Fixes #64595.
1521
1522         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
1523         an empty string when a type has no namespace. Fixes #64230.
1524
1525 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
1526
1527         * tabledefs.h: Added "internal" security actions to support non-CAS
1528         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
1529         Note: they do not seems to be used anymore in 2.0 (new metadata format)
1530
1531 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
1532
1533         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
1534         constructor of abstract class. Fixes #61689.
1535
1536 2004-10-04  Martin Baulig  <martin@ximian.com>
1537
1538         * class-internals.h (MonoGenericContainer): New type.
1539         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
1540         `MonoGenericContainer *generic_container'.
1541         (MonoClass): Replaced `gen_params' and `num_gen_params' with
1542         `MonoGenericContainer *generic_container'.
1543
1544         * metadata.c (mono_metadata_load_generic_params): Return a
1545         `MonoGenericContainer *' instead of a `MonoGenericParam *';
1546         removed the `num' argument.
1547
1548 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
1549
1550         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
1551         for dynamic images.
1552
1553         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
1554         machine fields.
1555
1556         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
1557
1558         * reflection.c: Save pe_kind and machine values into the generated
1559         image file.
1560
1561         * appdomain.c: Bump corlib version number.
1562
1563         * object-internals.h: Reorganize layout of LocalBuilder.
1564
1565         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
1566         New helper function.
1567
1568         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
1569         created MonoType for dynamic types. Fixes #66180.
1570
1571 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
1572
1573         * threadpool.c: the ares hashtable needs a critical section around it.
1574         this prevents some nasty segfaults
1575
1576 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
1577
1578         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
1579         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
1580         bug 67324).
1581         
1582 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
1583
1584         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
1585         
1586 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
1587
1588         * image.c: Always canonicalize image file names, to avoid loading
1589         the same assembly twice when referenced using a relative path.
1590
1591 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
1592
1593         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
1594
1595         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
1596
1597         * marshal.c: Fix warnings.
1598
1599 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
1600
1601         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
1602         attempting to marshal the delegate_trampoline as the method_addr.
1603         This patch has a static hashtable of marshalled delegates so that 
1604         we can map delegate_trampoline addresses back to delegates.  This
1605         allows a delegate passed to managed code to be passed back into native
1606         code.  Fixes #67039
1607
1608 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
1609
1610         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
1611
1612         * reflection.c (method_encode_code): Align method headers properly.
1613         Fixes #66025.
1614
1615 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
1616
1617         * marshal.c: In the runtime invoke wrapper, reset the abort
1618         exception if it is cached. This avoids the automatic rethrowal of 
1619         the exception after the catch of the wrapper. Also check for pending
1620         interruptions before calling the managed method. This is done using
1621         the new method emit_thread_force_interrupt_checkpoint, since the
1622         normal checkpoint method is ignored when running the invoke wrapper.
1623         * object.c: If the abort exception is rethrown, set the abort_exc
1624         field of the thread, so it will be rethrown aftere every catch.
1625         * threadpool.c: Only run an interruption checkpoint if what has been
1626         requested is a stop of the thread (aborts will be ignored).
1627         * threads.c: By default, a thread will now never be interrumped while
1628         running the runtime invoke wrapper (this ensures that runtime_invoke
1629         will always return to the caller if an exception pointer is provided).
1630         There is a new special method mono_thread_force_interruption_checkpoint()
1631         to force an interruption checkpoint even if running a protected
1632         wrapper, which is used by the same runtime invoke wrapper to do a check
1633         at a safe point.
1634
1635 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
1636
1637         * object.c, object-internals.h: Implemented mono_release_type_locks,
1638         which releases the cctor locks held by a thread.
1639         * threads.c, threads.h: In thread_cleanup, release cctor locks held
1640         by a thread. Added mono_thread_exit() method to be used to safely stop
1641         a thread.
1642
1643 2004-09-28  Raja R Harinath  <rharinath@novell.com>
1644
1645         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
1646         Move null check before dereference.  Avoid indexing beyond the end
1647         of the 'modules' array.
1648
1649 2004-09-28  Raja R Harinath  <rharinath@novell.com>
1650
1651         * metadata-internals.h (MonoImage): Add module_count field.
1652         * image.c (load_modules): Set image->module_count.
1653         (mono_image_load_file_for_image): Use image->module_count.
1654         * reflection.c (mono_image_load_module): Append to image->modules array 
1655         of dynamic assembly.
1656         (mono_module_get_object): Fix loop to actually increment index.
1657         Use image->module_count.
1658         * assembly.c (mono_assembly_load_references): Use image->module_count.
1659         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
1660         Likewise.
1661
1662 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
1663
1664         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
1665         Avoid assert on generic types.
1666
1667 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
1668
1669         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
1670
1671         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
1672
1673         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
1674         function to convert a MarshalSpec structure to its managed counterpart.
1675
1676         * reflection.c: Fix warnings.
1677         
1678         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
1679         field.
1680
1681         * icall.c (mono_create_icall_signature): Fix build.
1682
1683 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
1684
1685         * icall.c: Add MakePointType icall.
1686
1687         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
1688         warnings.
1689
1690 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1691
1692         * threadpool.c: reuse allocated slots in the queue.
1693
1694 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
1695
1696         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
1697
1698         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
1699
1700         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
1701         previous change.
1702
1703         * tabledefs.h: Add constants for pinvoke attributes BestFit and
1704         ThrowOnUnmappableChar.
1705
1706         * icall.c (ves_icall_Type_GetPacking): New icall.
1707
1708 2004-09-24  Martin Baulig  <martin@ximian.com>
1709
1710         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
1711
1712 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1713
1714         * appdomain.c:
1715         (mono_domain_set): allow setting a domain that is being unloaded.
1716         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
1717         being unloaded.
1718
1719 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
1720
1721         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
1722         the GetCustomAttributes icall.
1723
1724 2004-09-23  Martin Baulig  <martin@ximian.com>
1725
1726         * object-internals.h (MonoReflectionGenericParam): Replaced
1727         'has_ctor_constraint', `has_reference_type' and `has_value_type'
1728         with `guint32 attrs'.
1729
1730 2004-09-23  Martin Baulig  <martin@ximian.com>
1731
1732         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
1733
1734 2004-09-23  Martin Baulig  <martin@ximian.com>
1735
1736         * object-internals.h (GenericParameterAttributes): New enum.
1737
1738 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
1739
1740         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
1741         
1742         * class.c (init_events): Fill out event->other field.
1743
1744         * class.c: Fix warnings.
1745
1746         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
1747
1748 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
1749
1750         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
1751         walk which doesn't supply the IL offset.
1752
1753 2004-09-22  Martin Baulig  <martin@ximian.com>
1754
1755         * reflection.c (mono_reflection_setup_internal_class): If we're
1756         System.ValueType, System.Object or System.Enum, set
1757         `klass->instance_size' and create the vtable.
1758         (mono_reflection_create_internal_class): If we're an enum type,
1759         get the base class from our current corlib.
1760
1761 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
1762
1763         * reflection.h (MonoResolveTokenError): New type.
1764
1765         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
1766         icall.
1767
1768         * icall.c: Add an 'error' argument to the ResolveToken icalls.
1769
1770 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
1771
1772         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
1773         Support also calling constructors, but only for already allocated objects.
1774
1775 2004-09-17  Geoff Norton <gnorton@customerdna.com>
1776
1777         * reflection.c (type_get_qualified_name): If the klass is null
1778         return the typename to avoid a NullRefEx.
1779         (encode_cattr_value): Get the qualified name of the boxed type,
1780         not the underlying enumtype.  Fixes #62984.
1781
1782 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
1783
1784         * marshal.c: Fix problems with previous checkin.
1785
1786 2004-09-21    <vargaz@freemail.hu>
1787
1788         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
1789         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
1790
1791         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
1792
1793 2004-09-21  Geoff Norton <gnorton@customerdna.com>
1794
1795         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
1796         should only return a type for pointers, arrays, and passbyref types.
1797         Fixes bug #63841.
1798
1799 2004-09-21  Martin Baulig  <martin@ximian.com>
1800
1801         * domain.c (mono_debugger_check_runtime_version): New public
1802         function.
1803
1804         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
1805
1806 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
1807
1808         * reflection.c: Added missing sort to the declarative security 
1809         attributes table. MS implementation stops seeing the attributes if the
1810         token number regress in the table (as shown by ildasm and permview).
1811
1812 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
1813
1814         * object-internals.h (MonoReflectionModule): Add 'token' field.
1815         
1816         * reflection.c (mono_reflection_get_token): Add support for Module
1817         and Assembly.
1818         (mono_module_get_object): Set 'token' field.
1819         (mono_module_file_get_object): Set 'token' field.
1820
1821         * icall.c: Add new Assembly and Module icalls.
1822
1823         * appdomain.c: Bump corlib version.
1824
1825 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
1826
1827         * loader.h loader.c class.h class.c: Add helper functions for obtaining
1828         tokens of metadata objects.
1829
1830         * reflection.h reflection.c (mono_reflection_get_token): New function
1831         to obtain the token of a metadata object.
1832
1833         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
1834
1835 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
1836
1837         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
1838         
1839         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
1840
1841 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
1842
1843         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
1844         * object-internals.h: Added 3 MonoArray* members to MonoReflection
1845         AssemblyBuilder to access the permissions set in the class lib.
1846         * reflection.c: Added security attributes encoding step in 
1847         mono_image_build_metadata.
1848         * tabledefs.h: Added new security actions defined in 2.0:
1849         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
1850
1851 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
1852
1853         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
1854         macro parameter.
1855
1856 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
1857  
1858         * locales.c: nullify the ICU_collator member of CompareInfo when it is
1859           finalized. There where random SIGSEVs at program termination, when
1860           an object being finalized was trying to do a string comparison and
1861           the current culture was already finalized.
1862  
1863 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1864
1865         * threads.c: call thread_cleanup before finishing the thread if we get
1866         there.
1867
1868 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
1869
1870         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
1871         assemblies from the parent. Fixes #65665.
1872
1873 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
1874
1875         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
1876         modifiers.
1877
1878 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
1879
1880         * reflection.h: add prototype for mono_get_dbnull_object
1881         * reflection.c: add prototypes for get_default_param_value_blobs 
1882         and mono_get_object_from_blob for fussier compilers
1883
1884 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
1885  
1886         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
1887         false deadlock checks in class initialization.
1888  
1889 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
1890
1891         * image.c (mono_image_addref): Fix comment.
1892
1893         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
1894         possible.
1895
1896 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
1897
1898         * reflection.c (mono_param_get_objects): Modified to return
1899         ParameterInfo.DefaultValue object.
1900
1901         (get_default_param_value_blobs):
1902         (mono_get_object_from_blob):
1903         (mono_get_dbnull_object): New helper routines. 
1904
1905         * object.c (mono_get_constant_value_from_blob): New helper routine
1906         carved out from get_default_field_value ()
1907
1908         * object-internals.h (mono_get_constant_value_from_blob): Added
1909         function declaration.
1910
1911 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
1912
1913         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
1914         referenced assemblies. Fixes #62135.
1915
1916         * exception.h exception.c (mono_get_exception_file_not_found2): New
1917         helper function.
1918
1919 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
1920
1921         * class.h class.c: Add mono_type_get_underlying_type ().
1922
1923 2004-09-09  Geoff Norton <gnorton@customerndna.com>
1924
1925         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
1926         Fix GetTypes() to support dynamically created assemblies.
1927
1928 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
1929
1930         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
1931         
1932         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
1933         previous patch.
1934
1935         * reflection.h reflection.c loader.c: Allow dynamic construction of
1936         pinvoke methods. Fixes #65571.
1937         
1938         * reflection.c (mono_reflection_get_type): Revert previous change since
1939         it causes regressions.
1940
1941 2004-09-08  Martin Baulig  <martin@ximian.com>
1942
1943         * class.c (class_compute_field_layout): Don't call
1944         mono_class_layout_fields() for open generic instances.
1945
1946 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
1947         * threads.c appdomain.c: fix typo in GC macro
1948
1949 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1950
1951         * threads.c: don't call mono_thread_detach() in start_wrapper(),
1952         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
1953
1954 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
1955
1956         * image.c (mono_image_close): Applied patch from 
1957         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
1958         assembly is loaded multiple times from data.
1959         
1960         * image.c (mono_image_open): Fix warning.
1961
1962 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
1963
1964         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
1965         once. Fixes #58334.
1966         
1967         * reflection.c (mono_reflection_create_runtime_class): Initialize
1968         klass->nested_classes. Fixes #61224.
1969
1970 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
1971
1972         * threads.c: sched_yield() on exit, to allow threads to quit.
1973
1974 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
1975
1976         * object.c (mono_unhandled_exception): Remove leftover debug code.
1977
1978 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
1979
1980         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
1981
1982 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
1983
1984         * marshal.c (emit_marshal_array): Really null terminate string arrays.
1985         
1986         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
1987
1988 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
1989
1990         * marshal.c (emit_marshal_array): Null terminate string arrays.
1991         
1992         * marshal.c (raise_auto_layout_exception): Fix warning.
1993
1994         * reflection.c (mono_param_get_objects): Initialize the default value
1995         with DBNull.Value, not null. Fixes #62123.
1996
1997 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
1998
1999         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
2000         throw an exception with a cute explanation.
2001
2002 2004-09-06  Dick Porter  <dick@ximian.com>
2003
2004         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
2005         Close the new process's thread handle, as we don't use it.  The
2006         handle stays around forever otherwise.
2007
2008 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
2009
2010         * object.c (arith_overflow): Fix warning.
2011
2012         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
2013         calling conventions in method refs. Fixes #65352.
2014
2015         * reflection.c: Fix warnings.
2016
2017 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
2018
2019         * icall.c: Add a new icall for Array.Clear
2020
2021 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
2022
2023         * object.c: When allocating an array, we have to throw
2024         an overflow exception if any of the lengths are < 0.
2025
2026 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
2027
2028         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
2029         properly. Also move implementation of string array marshalling to 
2030         managed code. Fixes #42316.
2031
2032 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2033
2034         * assembly.c: provide more information when loading an assembly fails.
2035
2036 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2037
2038         * filewatcher.c: don't expect the development fam package to be
2039         installed.
2040
2041 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
2042
2043         * marshal.c: Make a copy of the signature cookie since it will be
2044         freed by the caller.
2045         
2046         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
2047
2048         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
2049
2050         * metadata.c (mono_metadata_free_marshal_spec): New function to free
2051         marshal specs.
2052
2053         * marshal.c: More refactoring.
2054         
2055         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
2056         smaller functions.
2057
2058 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
2059
2060         * object.c: In mono_message_invoke, fill the output parameter array after
2061           calling the managed method (it was done before the call). This fixes
2062           bug #59299.
2063
2064 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
2065
2066         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
2067         as well.
2068
2069 2004-09-02  Martin Baulig  <martin@ximian.com>
2070
2071         * class.c (mono_class_instance_size): Don't allow generic type
2072         definitions or open generic instances.
2073         (mono_class_array_element_size): If we're a value type, call
2074         mono_class_instance_size() on the original class.
2075
2076         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
2077         handle generic instances.
2078
2079         * mono-debug-debugger.c (write_type): Handle generic instances
2080         like classes.
2081
2082 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
2083
2084         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
2085         the allocation request fails. Fixes #65089.
2086
2087         * object.c (mono_runtime_free_method): Do not call mono_free_method.
2088         
2089         * object.c (mono_runtime_free_method): New function to free a dynamic
2090         method.
2091
2092         * marshal.c (mono_delegate_free_ftnptr): New function to free the
2093         delegate trampoline.
2094
2095         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
2096         with hasthis as dynamic,
2097
2098         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
2099
2100         * domain.c (mono_jit_info_table_remove): New function to remove an
2101         entry from the jit info table.
2102
2103         * class-internals.h (MonoMethod): Add 'dynamic' field.
2104
2105         * loader.c: Fix warnings.
2106
2107 2004-09-01  Martin Baulig  <martin@ximian.com>
2108
2109         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
2110         instead of mono_debugger_lock() because the latter one is a no-op
2111         unless running in the debugger.
2112
2113 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
2114
2115         * class.c (class_compute_field_layout): Classes with auto-layout or
2116         reference fields are not blittable.
2117         
2118 2004-09-01  Dick Porter  <dick@ximian.com>
2119
2120         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
2121         mono_image_get_filename() to get the assembly location.
2122
2123         * icall.c:
2124         * metadata.h: Fix compile warnings
2125
2126 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
2127
2128         * class.c (class_compute_field_layout): System.Object is blittable.
2129
2130         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
2131         as in/out. Fixes #59909.
2132
2133 2004-09-01  Martin Baulig  <martin@ximian.com>
2134
2135         * metadata.h (MONO_TYPE_ISREFERENCE): Call
2136         mono_metadata_generic_inst_is_valuetype() if we're a generic
2137         instance to check whether our underlying type is a reference type.
2138
2139 2004-09-01  Martin Baulig  <martin@ximian.com>
2140
2141         * metadata.c (mono_type_size): If we're a generic instance, call
2142         mono_class_value_size() for value types.
2143
2144 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
2145
2146         * marshal.c: Implement more custom marshalling functionality. Fixes
2147         #64915.
2148
2149 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
2150
2151         * mono-debug.c, debug-mono-symfile.c: add some locking love.
2152
2153 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
2154
2155         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
2156
2157         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
2158
2159         * icall.c: Fix some warnings.
2160
2161         * threads.c (abort_appdomain_thread): Fix unref errors.
2162         (mono_thread_current): Fix THREAD_DEBUG define.
2163
2164 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
2165
2166         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
2167
2168         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
2169
2170 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
2171
2172         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
2173         string arrays.
2174
2175 2004-08-28  Martin Baulig  <martin@ximian.com>
2176
2177         * metadata.c
2178         (mono_metadata_generic_inst_is_valuetype): New public function.
2179
2180         * metadata.h (MONO_TYPE_ISSTRUCT): Call
2181         mono_metadata_generic_inst_is_valuetype() if we're a generic
2182         instance to check whether our underlying type is a valuetype.
2183
2184 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
2185
2186         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
2187         #63768.
2188
2189 2004-08-25  Martin Baulig  <martin@ximian.com>
2190
2191         * loader.c (mono_get_method_from_token): Abstract methods can also
2192         be generic and thus have type parameters.
2193
2194         * metadata-internals.h
2195         (MonoDynamicImage): Added `GPtrArray *gen_params'.
2196
2197         * reflection.c (mono_image_get_generic_param_info): Don't create a
2198         metadata row, just add an entry to the `gen_params' array.
2199         (build_compressed_metadata): Sort the `gen_params' array and then
2200         actually create the metadata.
2201
2202 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2203
2204         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
2205
2206 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
2207
2208         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
2209
2210 2004-08-24  Martin Baulig  <martin@ximian.com>
2211
2212         * class.cs (mono_class_is_subclass_of): Like an interface, a
2213         generic instance also derives from System.Object.
2214
2215 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
2216
2217         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
2218         custom modifiers to be in any order. Fixes #61990.
2219
2220 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
2221
2222         * object.c: Register mono_object_new_fast icall.
2223         
2224         * object.c (mono_class_get_allocation_ftn): Return to calling
2225         mono_object_new_fast, since it seems faster to compute the object 
2226         size in unmanaged code than passing it as a parameter.
2227
2228         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
2229
2230         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
2231         this function with Boehm as the oom handler, so we don't have to check
2232         the result of GC_malloc.
2233
2234         * object.c: Remove checks for oom.
2235
2236         * object.h object.c (mono_class_get_allocation_ftn): New function to
2237         return the icall which can be used to allocate an instance of a given
2238         class. 
2239
2240         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
2241
2242         * class-internals.h: Add 'enabled' field.
2243
2244 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
2245
2246         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
2247
2248 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
2249         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
2250         value 0x0010.
2251
2252 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
2253
2254         * appdomain.c: use the Tls function for appdomain too,
2255         at Zoltan's request. Actually return in mono_context_get
2256
2257         * appdomain.c, profiler.c, threads.c: use __thread
2258
2259 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
2260
2261         * appdomain.c threads.c: Call GC_CreateThread on windows.
2262
2263         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
2264         multiple libraries since this don't work on windows.
2265
2266 2004-08-18  Martin Baulig  <martin@ximian.com>
2267
2268         * class-internals.h
2269         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
2270         MonoMethodHeader.
2271
2272         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
2273         MonoMethodNormal since we also need it for abstract and interface
2274         methods.
2275
2276         * reflection.c
2277         (build_compressed_metadata): Sort the GenericParam table.
2278         (mono_image_create_token): Added `gboolean create_methodspec'
2279         argument; this is false when generating a MethodImpl token.
2280         (reflection_methodbuilder_to_mono_method): Abstract and interface
2281         methods may also have generic parameters.
2282
2283 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
2284
2285         * appdomain.c: thread local alloc
2286
2287 2004-08-17  Martin Baulig  <martin@ximian.com>
2288
2289         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
2290
2291         * icall.c
2292         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
2293         argument.
2294
2295         * class.c (mono_type_get_full_name): New public function.
2296         (mono_type_get_name): Don't include the type arguments.
2297
2298 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
2299
2300         * Makefile.am: Build static versions of libmetadata and libmonoruntime
2301         for inclusion into the mono executable.
2302
2303 2004-08-16  Martin Baulig  <martin@ximian.com>
2304
2305         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
2306         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
2307
2308 2004-08-14  Martin Baulig  <martin@ximian.com>
2309
2310         * class.c (dup_type): Also copy the `byref' field.
2311
2312 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
2313
2314         * reflection.c (create_dynamic_mono_image): Revert the last change 
2315         since it breaks bootstrap.
2316
2317 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
2318
2319         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
2320
2321         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
2322         not free them with g_free.
2323
2324 2004-08-11  Martin Baulig  <martin@ximian.com>
2325
2326         * reflection.c (mono_reflection_setup_internal_class): Also call
2327         mono_class_setup_mono_type() if we already have a `tb->type.type'.
2328
2329 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
2330
2331         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
2332         called during default (first) AppDomain creation. Keep track of
2333         Evidence when loading assemblies.
2334
2335 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
2336
2337         * opcodes.c, opcodes.h: reduce runtime relocations.
2338
2339 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
2340
2341         * culture-info.h, locales.c: fixes and chages to sue the new
2342         optimized format of the locale data.
2343         * culture-info-tables.h: regenerated.
2344
2345 2004-08-06  Geoff Norton <gnorton@customerdna.com>
2346         
2347         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
2348
2349 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
2350
2351         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
2352         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
2353         * domain-internals.h: icall declaration.
2354         * icall.c: icall registration.
2355         * object-internals.h: New fields in MonoAssembly for CAS.
2356
2357 2004-08-05  Duncan Mak  <duncan@ximian.com>
2358
2359         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
2360         CEE_LDELEM_ANY.
2361
2362 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
2363
2364         * reflection.c: fix to deal with object[] arrays in custom ctors
2365         (bug #62550).
2366
2367 2004-08-05  Martin Baulig  <martin@ximian.com>
2368
2369         * class.c (mono_class_array_element_size): Added support for
2370         generic instances and correctly handle "recursive" types.
2371
2372 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
2373
2374         * assembly.c: Fix warnings.
2375
2376 2004-08-04  Martin Baulig  <martin@ximian.com>
2377
2378         * class.c
2379         (mono_type_get_name_recurse): Added `gboolean include_arity'
2380         argument specifying whether or not we should include the generic
2381         arity in the type name.
2382         (_mono_type_get_name): New static function.
2383         (mono_class_setup_vtable): If we're a generic instance, don't
2384         include the generic arity in the names of explicit method
2385         implementations.        
2386
2387 2004-08-03  Martin Baulig  <martin@ximian.com>
2388
2389         * class.c (mono_type_get_name_recurse): Enclose the generic type
2390         arguments in `<', '>'.
2391
2392 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
2393
2394         * gc.c: make GC warning messages use the trace API, they are just
2395         noise to most of the users.
2396
2397 2004-08-03  Martin Baulig  <martin@ximian.com>
2398
2399         * debug-mono-symfile.c (read_string): Correctly read the string.
2400
2401 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
2402
2403         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
2404         
2405         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
2406         icalls.
2407         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
2408
2409 2004-07-30  Martin Baulig  <martin@ximian.com>
2410
2411         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
2412         Reflect latest symbol writer changes.   
2413
2414 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
2415
2416         * object.c: always create an object if null is passed
2417         to Invoke() where a valuetype is expected.
2418
2419 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
2420
2421         * marshal.c (mono_marshal_init): make managed
2422         signatures match native ones better for 64bits.
2423
2424 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2425
2426         * appdomain.c: hack to build correctly the private bin path on windows.
2427         Fixes bug #61991.
2428
2429 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
2430
2431         * assembly.c: Load mscorlib from the correct framework directory
2432           (mono/<version>/mscorlib.dll).
2433         * appdomain.h: Added prototypes for new functions.
2434         * internals.h: Added some prototypes.
2435         * domain.c: When initializing the runtime, get from the executable and
2436           the configuration files the runtime version that the app supports.
2437           Added support methods for reading app.exe.config. Added list of versions
2438           supported by the JIT. Added two new methods: mono_init_from_assembly,
2439           which initializes the runtime and determines the required version from
2440           the provided exe file, and mono_init_version, which initializes
2441           the runtime using the provided version.
2442         * icall.c: Get machine.config from version-specific directory.
2443         * reflection.c: When generating an image, embed the version number
2444           of the current runtime.
2445
2446 2004-07-28  Dick Porter  <dick@ximian.com>
2447
2448         * socket-io.c
2449         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
2450         returned sockaddr size before creating the remote address object.
2451         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
2452         61608.
2453
2454 2004-07-28  Dick Porter  <dick@ximian.com>
2455
2456         * locales.c (string_invariant_compare_char): Fix invariant char
2457         compares between upper and lower cases.  Fixes bug 61458.
2458
2459 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
2460         
2461         * marshal.c: actually cache stelem.ref wrappers.
2462         
2463 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
2464
2465         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
2466         sections and remove the mono_cli_rva_map () function.
2467
2468 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
2469
2470         * debug-mono-symfile.c: fix one more endianess issue, from a patch
2471         by Geoff Norton (<gnorton@customerdna.com>).
2472
2473 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
2474
2475         * class.c: fix class loads for pointer types (typeof(int) !=
2476         typeof(int*)).
2477
2478 2004-07-27  Martin Baulig  <martin@ximian.com>
2479
2480         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
2481         reading the debugging information from an external ".mdb" file.
2482
2483 2004-07-24  Martin Baulig  <martin@ximian.com>
2484
2485         * reflection.c (mono_image_get_type_info): Only write a class
2486         layout entry if we actually have a size or a packing size.
2487
2488 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
2489
2490         * reflection.c (type_get_fully_qualified_name): 
2491         insert cast to get type checking of ?: with non-gcc compilers
2492
2493 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
2494
2495         * rand.c: use g_getenv for both lookups of
2496         MONO_EGD_SOCKET
2497
2498 2004-07-17  Martin Baulig  <martin@ximian.com>
2499
2500         * reflection.c (mono_reflection_bind_generic_method_parameters):
2501         Set `gmethod->reflection_info'.
2502
2503 2004-07-17  Martin Baulig  <martin@ximian.com>
2504
2505         * class.c (mono_class_create_from_typedef): Insert the newly
2506         created class into the hash table before computing the interfaces
2507         since we could be called recursively.
2508
2509 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
2510
2511         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
2512         function to implement stelem.ref in managed code
2513         * class-internals.h, debug-helpers.c: a new wrapper type
2514         for the above.
2515
2516 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
2517
2518         * gc.c: allow GC handles to work even when no GC is compiled in.
2519         Fix part of bug #61134 (GetAddrOfPinnedObject).
2520
2521 2004-07-13  Peter Williams  <peter@newton.cx>
2522  
2523         * process.c (complete_path): Make sure we don't attempt to execute
2524         directories.
2525  
2526 2004-07-12  Geoff Norton <gnorton@customerdna.com>
2527
2528         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
2529           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
2530           and will add/subtract the hour if needed
2531
2532 2004-07-12  Martin Baulig  <martin@ximian.com>
2533
2534         * reflection.c (mono_field_get_object): If we have
2535         `field->generic_info', take the attributes from
2536         `field->generic_info->generic_type'.    
2537
2538 2004-07-12  Martin Baulig  <martin@ximian.com>
2539
2540         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
2541         This function must be called before initializing the runtime.
2542         (mono_debug_init_1): New function; call this after initializing
2543         the runtime, but before loading the assembly.  It tells the
2544         debugger to load corlib and the builtin types.
2545
2546         * mono-debug-debugger.c: Did some larger changes in the debugging
2547         code; support recursive class declarations, make sure we actually
2548         add all classes.
2549
2550 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2551
2552         * debug-helpers.c: undo my previous patch and fixed the real issue in
2553         ../mini/exceptions-x86.c
2554
2555 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2556
2557         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
2558         when no HOME env. variable was set and a NullRef was thrown in a .cctor
2559         called from other .cctors.
2560
2561 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
2562
2563         * loader.c: Removed the mono_loader_wine_init hack now that we are
2564         doing a managed version of Windows.Forms.
2565
2566 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
2567
2568         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
2569         threadpool.c, threads.c: remove static data from rootset.
2570
2571 2004-07-09  Dick Porter  <dick@ximian.com>
2572
2573         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
2574         Don't do any more processing if the matched length was 0.  It was
2575         increasing the size of the string before.  Fixes bug 61167.
2576
2577 2004-07-09  Dick Porter  <dick@ximian.com>
2578
2579         * socket-io.h:
2580         * socket-io.c
2581         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
2582         Add support for SO_PEERCRED if its available.
2583
2584 2004-07-09  Peter Bartok <pbartok@novell.com>
2585         * loader.c: winelib.exe.so error message is now only displayed if
2586         MONO_DEBUG is set. To help us avoid questions when people are trying
2587         out the new Managed.Windows.Forms.
2588
2589 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
2590
2591         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
2592         for isinst and castclass wrappers.
2593
2594         * class-internals.h icall.c: Move registration and lookup of JIT icalls
2595         to libmetadata from the JIT, so they could be used by the marshalling
2596         code and the interpreter.
2597
2598         * marshal.c: Register marshalling related JIT icalls here instead of
2599         in mini.c. Use CEE_MONO_ICALL instead of the family of 
2600         CEE_MONO_PROC<x> opcodes to call marshalling functions.
2601
2602         * metadata.h: Remove unneeded marshalling conversions.
2603
2604         * opcodes.c: Update for new opcodes.
2605         
2606 2004-07-08  Martin Baulig  <martin@ximian.com>
2607
2608         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
2609         (mono_debug_get_domain_data): Make this function static.
2610
2611 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
2612
2613         * gc.c, object.h: add nice GC handle API for embedders.
2614
2615 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
2616
2617         * reflection.c: more changes for the new api
2618
2619         * object.c: When we reflect on a field w/ a constant value, it
2620         will not have a memory location, so we must access metadata. Also,
2621         allow easier reading of strings so that we can read them from
2622         the constant data.
2623
2624         * class.c (mono_class_layout_fields): no need for literal fields here.
2625
2626         * class-internals.h: api changes for const fields
2627
2628         * icall.c (ves_icall_get_enum_info): use new apis for const fields
2629
2630 2004-07-06  Martin Baulig  <martin@ximian.com>
2631
2632         * mono-debug.h: Increment version number to 44.
2633
2634         * mono-debug.c (mono_debug_add_wrapper): The second argument is
2635         now a gpointer, rewrote this whole method.
2636
2637         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
2638         function.  Add information about the wrapper in a new "misc table".
2639
2640         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
2641         for the new misc table.
2642
2643 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
2644
2645         * metadata-internals.h image.c: Add a cache for helper signatures.
2646
2647         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
2648
2649 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
2650
2651         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
2652         delegates from a delegate. Fixes #61033.
2653         
2654         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
2655         marshalling of stringbuilder arrays. Fixes #59900.
2656
2657 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
2658
2659         * icall.c: Add EnumBuilder:setup_enum_type icall.
2660
2661 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
2662
2663         * icall.c: Added a new icall for the property version of
2664         OffsetOfStringData.
2665
2666 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
2667
2668         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
2669         it has a constant size across platforms.
2670
2671         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
2672         stack trace.
2673
2674 2004-06-29  Martin Baulig  <martin@ximian.com>
2675
2676         * mono-debug.c (mono_debug_add_method): Protect the whole function
2677         in mono_debugger_lock(), not just parts of it.
2678
2679 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
2680
2681         * reflection.c: make sure padding bytes in heaps are zeroed.
2682
2683 2004-06-24  David Waite  <mass@akuma.org>
2684
2685         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
2686         image.c, loader.c, locales.c, marshal.c, metadata.c,
2687         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
2688         string-icalls.c, threads.c: change to C90-style comments from C99 /
2689         C++ -style
2690
2691 2004-06-24  Dick Porter  <dick@ximian.com>
2692
2693         * threads.c
2694         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
2695         return createdNew.  Fixes bug 60412.
2696
2697         * threads-types.h: 
2698         * icall.c: Add createdNew parameter to CreateMutex icall
2699
2700 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
2701
2702         * reflection.c, object-internals.h: save default value in params.
2703
2704 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2705
2706         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
2707         no need to build a new path combining that with the application base.
2708         Fixes bug #60442.
2709
2710 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
2711
2712         * reflection.c: fixed minor standard compliance issues.
2713
2714 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
2715
2716         * reflection.c: fixed issue with encoding some custom attributes
2717         (arrays in properties and fields, bug #60411).
2718
2719 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2720
2721         * reflection.c: fix start address when copying the public key token.
2722
2723 2004-06-23  Martin Baulig  <martin@ximian.com>
2724
2725         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
2726         the `exc' object in a static object to put it into the GC's root set.
2727
2728 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
2729
2730         * reflection.c: make mono_reflection_setup_internal_class ()
2731         callable a second time to setup a new parent class.
2732
2733 2004-06-23  Dick Porter  <dick@ximian.com>
2734
2735         * threads.c: Check for WAIT_IO_COMPLETION return values.
2736
2737 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
2738
2739         * appdomain.c: Removed the g_free on the public key token. Now copy 
2740         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
2741         * assembly.c: Added public key token string value when loading 
2742         assemblies. Fix bug #60439.
2743         * icall.c: Added missing informations (like public key) in 
2744         GetReferencedAssemblies. Fix #60519.
2745         * image.h: Changed definition for public key token from const char*
2746         public_tok_value to guchar public_key_token [17];
2747         * reflection.c: Updated for changes to public key token.
2748
2749 2004-06-22  Lluis Sanchez Gual
2750
2751         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
2752         for the field in base classes.
2753
2754 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
2755
2756         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
2757         mark headers as not supported, they are installed only for use by the
2758         debugger.
2759
2760 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
2761
2762         * *.c, *.h: avoid namespace pollution in public headers.
2763
2764 2004-06-21  Martin Baulig  <martin@ximian.com>
2765
2766         * exception.c (mono_get_exception_security): It's in
2767         "System.Security", not in "System".
2768
2769         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
2770         the exception classes.
2771
2772 2004-06-21  Martin Baulig  <martin@ximian.com>
2773
2774         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
2775         Protect the exception object from being finalized.
2776
2777 2004-06-21  Martin Baulig  <martin@ximian.com>
2778
2779         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
2780         public function.
2781
2782 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
2783
2784         * reflection.c: Load the assembly in mono_reflection_type_from_name,
2785         if it was not loaded before. Fix parts of #60439.
2786
2787 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
2788
2789         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
2790         code that was broken since Ben's change: wrappers are now
2791         dependent on the method signature only again.
2792
2793 2004-06-21  Martin Baulig  <martin@ximian.com>
2794
2795         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
2796         added interface support.
2797
2798 2004-06-21  Martin Baulig  <martin@ximian.com>
2799
2800         * class.c (mono_vtable_get_static_field_data): New public method.
2801
2802 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
2803
2804         * filewatcher.c : Windows build fix to be compliant with API changes.
2805
2806 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
2807
2808         * class.h, class.c: more accessors.
2809         * metadata.h, metadata.c: prepare for hiding MonoType and
2810         MonoMethodSignature: people should use the accessors from now on
2811         outside of the tree.
2812
2813 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
2814
2815         * *.c, *.h: more API cleanups.
2816
2817 2004-06-18  Jackson Harper  <jackson@ximian.com>
2818
2819         * assembly.c: Trace loading assemblies.
2820         * loader.c: Trace loading native libraries.
2821         * mono-config.c: Trace loading config files.
2822         
2823 2004-06-18  Dick Porter  <dick@ximian.com>
2824
2825         * locales.c: Tell ICU the lengths of strings, it can cope with
2826         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
2827
2828 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
2829
2830         * image.c: swapped name/filename;
2831
2832 2004-06-18  Martin Baulig  <martin@ximian.com>
2833
2834         * mono-debug-debugger.c (write_class): Write the parent class at
2835         the end of the header.
2836
2837 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
2838
2839         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
2840
2841 2004-06-17  Raja R Harinath  <rharinath@novell.com>
2842
2843         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
2844         (bundle_obj): New conditional define.
2845         (BUILT_SOURCES): Remove.
2846         ($(bundle_srcs)): Make parallel-make safe.
2847         (libmonoruntime_la_LIBADD): Make unconditional.
2848         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
2849         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
2850
2851 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
2852
2853         * culture-info-tables.h: It was inconsistent with the latest
2854           supp info files.
2855
2856 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
2857
2858         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
2859         be loaded.
2860
2861         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
2862         with gcc 2.95.
2863
2864 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
2865
2866         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
2867         cleaned up public header threads.h.
2868
2869 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
2870
2871         * Makefile.am, *.c, *.h: more API cleanups.
2872
2873 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
2874
2875         * Makefile.am: removed monosn from compilation.
2876         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
2877         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
2878         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
2879         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
2880         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
2881         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
2882
2883 2004-06-15  Jackson Harper  <jackson@ximian.com>
2884
2885         * assembly.c: Make locales lower case when searching the GAC for
2886         assemblies. gacutil will always make locales lowercase when
2887         installing so this effectively makes them case insensitive.
2888         
2889 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
2890
2891         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
2892         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
2893           parameter which allows to choose whether the wait can be interrupted or 
2894           not. Also added the method mono_monitor_enter(), which locks the monitor
2895           using an infinite wait and without allowing interruption.
2896           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
2897           interrupted.
2898         * object.h: Added new fields in MonoThread. suspend_event holds the event
2899           used to susped/resume the thread. synch_lock is the lock object to use for
2900           modifying the thread state.
2901         * threads.c: Use the new synch_lock object for locking, instead of "this",
2902           which can generate deadlocks.
2903           Moved thread state change in Thread.Sleep and Thread.Join from managed
2904           to unmanaged code. This avoids a deadlock when the thread was suspended
2905           just after acquiring the thread lock.
2906           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
2907           Implemented Thread.Suspend using an event instead of ThreadSuspend,
2908           which is not fully implemented in the io-layer.
2909         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
2910
2911 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
2912
2913         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
2914         threads-types.h: more API cleanups.
2915
2916 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
2917
2918         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
2919         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
2920         threadpool.c, threads.c: first pass at the exported API cleanup.
2921
2922 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
2923
2924         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
2925
2926 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2927
2928         * icall.c: added internalGetHome.
2929
2930 2004-06-14  Dick Porter  <dick@ximian.com>
2931
2932         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
2933         possible to return successfully when '.' or '..' were the only
2934         entries in a directory, but were skipped.  The MonoIOStat was not
2935         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
2936         Fixes bug 59574.
2937
2938 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
2939
2940         * reflection.c: make binaries run on .Net 1.1 by default.
2941
2942 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
2943
2944         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
2945
2946 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
2947
2948         * marshal.c: keep track of struct size with explicit layout
2949         (bug #59979).
2950
2951 2004-06-12  Martin Baulig  <martin@ximian.com>
2952
2953         * mono-debug-debugger.c: Comment out a debugging g_message().
2954
2955 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
2956
2957         * reflection.c, reflection.h: do not free custom attrs that are cached.
2958         * icall.c: use braces to make code clearer.
2959
2960 2004-06-11  Martin Baulig  <martin@ximian.com>
2961
2962         * class.h (MonoInflatedField): New type.
2963         (MonoClassField): Replaced `MonoType *generic_type' with
2964         `MonoInflatedField *generic_info'.
2965
2966         * icall.c
2967         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
2968
2969 2004-06-11  Martin Baulig  <martin@ximian.com>
2970
2971         * reflection.c (mono_image_create_method_token): Correctly encode
2972         varargs methods.
2973
2974 2004-06-11  Martin Baulig  <martin@ximian.com>
2975
2976         * metadata.c (mono_metadata_parse_method_signature): When parsing
2977         a MethodDef which has VarArgs, also set sentinelpos if we don't
2978         have any parameters.
2979
2980 2004-06-11  Martin Baulig  <martin@ximian.com>
2981
2982         * verify.c (mono_method_verify): In CEE_CALL, use
2983         mono_method_get_signature() to get the method's signature, unless
2984         we're a PInvoke method.
2985
2986 2004-06-10  Jackson Harper  <jackson@ximian.com>
2987
2988         * assembly.c: Use <path>/lib/mono/gac for the extra paths
2989         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
2990         logical name as the supplied path is just a prefix to the gac not
2991         the direct path to it.
2992         
2993 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
2994
2995         * reflection.c: make the token for a created method match
2996         the token of the MethodBuilder it was created from
2997         (IKVM requires this behaviour now).
2998
2999 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
3000
3001         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
3002         reflection.c, socket-io.c: leak fixes.
3003
3004 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
3005
3006         * icall.c: handle sentinel pos in vararg methods in position different
3007         from 0.
3008
3009 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3010
3011         * culture-info-tables.h: freshly generated.
3012
3013 2004-06-09  Martin Baulig  <martin@ximian.com>
3014
3015         * loader.c (mono_get_method_constrained): Call `mono_class_init
3016         (constrained_class)'.   
3017
3018 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
3019
3020         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
3021         any methods. Fixes #59629.
3022
3023 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
3024
3025         * culture-info-tables.h: reflecting locale-builder updates.
3026
3027 2004-06-08  Dick Porter  <dick@ximian.com>
3028
3029         * object.h:
3030         * locales.c: Fixed compile warnings, including a real bug in
3031         CompareInfo_internal_compare.
3032         
3033 2004-06-08  Dick Porter  <dick@ximian.com>
3034
3035         * locales.c
3036         (ves_icall_System_Globalization_CompareInfo_internal_index):
3037         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
3038         Double-check the resuls of usearches, because ICU currently
3039         ignores most of the collator settings here.  Fixes bug 59720.
3040         
3041 2004-06-08  Dick Porter  <dick@ximian.com>
3042
3043         * locales.c
3044         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
3045         Fix memory leak and segfault-causing typo.  No idea how this one
3046         lasted so long without being noticed.
3047
3048 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
3049
3050         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
3051         any methods. Fixes #59629.
3052
3053 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3054
3055         * assembly.c:
3056         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
3057         own the critical section before). Removed dead code (that's done
3058         in the preload hook).
3059
3060         (mono_assembly_load_with_partial_name): call the preload hook.
3061
3062 2004-06-08  Martin Baulig  <martin@ximian.com>
3063
3064         * metadata.c (mono_metadata_signature_alloc): Default
3065         `sentinelpos' to -1.
3066
3067         * reflection.c (mono_image_get_array_token): Likewise.
3068
3069 2004-06-08  Martin Baulig  <martin@ximian.com>
3070
3071         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
3072
3073         * metadata.c (mono_metadata_parse_method_signature): When parsing
3074         a MethodDef which has VarArgs, set sentinelpos.
3075
3076         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
3077         `gint16' since we're using -1 for non-varargs methods.
3078
3079         * reflection.c
3080         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
3081         (method_encode_signature): Added varargs support.
3082         (method_builder_encode_signature): Likewise.
3083         (mono_image_get_varargs_method_token): New static method.
3084         (mono_image_create_method_token): New public method; this is
3085         called via an icall instead of mono_image_create_token() when
3086         calling a varargs method.       
3087
3088 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
3089
3090         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
3091
3092 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
3093
3094         * culture-info-tables.h : Reflecting the latest locale-builder that
3095           fixed empty array representation ({} to {0}).
3096
3097 2004-06-07  Jackson Harper  <jackson@ximian.com>
3098
3099         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
3100         looking up extra gac paths. This allows MONO_GAC_PATH to act
3101         exactly like a prefix.
3102         
3103 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
3104
3105         * reflection.c (mono_reflection_type_from_name): Make a copy of the
3106         type name before modifying it. Fixes #59405.
3107
3108 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
3109
3110         * culture-info.h: added fields for "all datetime patterns".
3111         * locales.c: (  ves_icall_System_Globalization_CultureInfo
3112           _construct_datetime_format ()): fill xxx_patterns fields.
3113         * object.h: added fields for "all datetime patterns" to
3114           MonoDateTimeFormatInfo.
3115         * culture-info-tables.h: reflecting locale-builder updates.
3116
3117 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
3118
3119         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
3120         the event has no add and remove methods. Fixes #59629.
3121
3122 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
3123
3124         * object.c: Fixed possible integer overflow when allocating large
3125         strings.
3126
3127 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
3128
3129         * culture-info-tables.h: reflecting locale-builder updates.
3130
3131 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
3132
3133         * culture-info-tables.h: reflecting locale-builder updates.
3134
3135 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
3136
3137         * culture-info-tables.h: reflecting locale-builder updates.
3138
3139 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
3140
3141         * threads.c: Made Thread.Sleep abortable.
3142
3143 2004-06-02  Martin Baulig  <martin@ximian.com>
3144
3145         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
3146
3147         * debug-mono-symfile.h: Bumped symbol file version number to 37.
3148
3149 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
3150
3151         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
3152
3153 2004-05-30  Jackson Harper  <jackson@ximian.com>
3154
3155         * reflection.c: Do not hardcode assembly versions or public key
3156         tokens anymore. All of this except the corlib section was dead
3157         code anyways.
3158         
3159 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
3160
3161         * object.c (mono_runtime_invoke_array): Automatically create boxed
3162         objects for byref valuetypes if needed. Fixes #59300.
3163         
3164         * object.c (mono_method_return_message_restore): Handle 
3165         MONO_TYPE_OBJECT as well.
3166
3167 2004-05-28  Jackson Harper  <jackson@ximian.com>
3168
3169         * reflection.c: The modified type encoding was causing build
3170         problems. Reverted for now.
3171         
3172 2004-05-28  Jackson Harper  <jackson@ximian.com>
3173
3174         * reflection.c/h: Take an assembly ref so that we dont create
3175         fully qualified names when encoding types in the same assembly as
3176         the custom attribute being emitted.
3177         * appdomain.c: Increment version number.
3178         
3179 2004-05-26  Duncan Mak  <duncan@ximian.com>
3180
3181         * icall.c
3182         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
3183         Set the full version number (major, minor, build, revision).
3184
3185 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
3186
3187         * marshal.c (emit_struct_conv): increment src/dst after blit
3188         (mono_marshal_get_managed_wrapper,
3189         mono_marshal_get_native_wrapper): make sure we have marshalling
3190         info before marshalling params (info computation affects
3191         blittable)
3192
3193         * class.c (class_compute_field_layout): correctly deal with
3194         blittable
3195         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
3196         value types (as per what windows dows by default)
3197         (mono_class_setup_mono_type): System.ValueType is blittable
3198         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
3199         blittable
3200
3201         * marshal.c (mono_marshal_load_type_info): flag types  as
3202         non-blittable if the native layout doesn't match the managed
3203         layout
3204
3205 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3206
3207         * appdomain.c: don't add stuff in the private search path that is
3208         above the application base. If application base is not set, there's
3209         no private search path.
3210
3211 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
3212
3213         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
3214         byref struct arguments in native->managed marshalling.
3215
3216 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
3217
3218         * marshal.c (mono_marshal_get_runtime_invoke): correctly
3219         cache methods using signature (special case for methods
3220         that are value type or string class)
3221         
3222         * image.c (mono_image_close): clean up allocated GSList's
3223         in runtime_invoke_cache.
3224
3225 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3226
3227         * mono-config.c: set the correct path for mono_cfg_dir on windows when
3228         there's no MONO_CFG_DIR environment variable defined.
3229
3230 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3231
3232         * threads.c: windows version must be >= 0x0500 to include OpenThread.
3233
3234 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
3235
3236         * threadpool.c: Really wait for 500ms after the async call, even if the wait
3237           is interrumped.
3238         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
3239           before waiting for it, and call CloseHandle after the wait to unref it.
3240           This will make sure that handles are not disposed too early.
3241
3242 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3243
3244         * appdomain.c:
3245         * appdomain.h:
3246         * icall.c: removed
3247         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
3248         needed now.
3249
3250         * object.c: se the application_base only for the domain that runs
3251         Main. Fixes bug #59216,
3252
3253 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3254
3255         * appdomain.c:
3256         * object.c: only the domain in which Main is run have
3257         SetupInformation.ConfigurationFile set, so moved a few lines from
3258         appdomain.c to object.c.
3259
3260 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3261
3262         * appdomain.c: we tried to load [name].(dll|exe), but according
3263         to bug #57710, we must also try [culture]/[name].(dll|exe) and
3264         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
3265         There's a test case attached to bug #58922.
3266
3267 2004-05-27  Dick Porter  <dick@ximian.com>
3268
3269         * icall.c:
3270         * file-io.c: Implemented icalls for locking and unlocking regions
3271         in a file.
3272         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
3273         FALSE on error (fixes both compiler warning and real bug.)
3274
3275 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
3276
3277         * culture-info-tables.h: reflecting locale-builder updates.
3278
3279           (Added missing ChangeLog entry for 05/26)
3280
3281 2004-05-27  Jackson Harper  <jackson@ximian.com>
3282
3283         * locales.c: Fix some cut and paste errors.
3284         
3285 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3286
3287         * mono-config.c: set the correct path for config. directory on windows.
3288
3289 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
3290
3291         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
3292           on win32.
3293
3294 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
3295
3296         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
3297         from pinvoke functions.
3298         
3299         * marshal.c (mono_ftnptr_to_delegate): Implement this.
3300
3301 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
3302
3303         * culture-info-tables.h: reflecting locale-builder updates.
3304
3305 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
3306
3307         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
3308         #59086.
3309
3310 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
3311
3312         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
3313         * icall.c: Modified icalls for RNG.
3314         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
3315         Windows (CryptoAPI).
3316
3317 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
3318
3319         * locales.c: Fix build.
3320
3321 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
3322
3323         * culture-info-tables.h: reflecting locale-builder updates.
3324
3325 2004-05-25  Jackson Harper  <jackson@ximian.com>
3326
3327         * locales.c: When creating the current culture use the $LANGs
3328         specific culture. So DateTimeFormat and NumberFormat entries are created.
3329         
3330 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
3331
3332         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
3333         a char array as parameter.
3334
3335 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
3336
3337         * image.c: In mono_image_open(), always use an absolute path name to
3338           look for already loaded images.
3339
3340 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
3341
3342         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
3343         missing in the windows build (like older cygwin include files).
3344
3345 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
3346
3347         * icall.c: Fixed check for possible integer overflow in Buffer_
3348         BlockCopy icall. Replaced comments style // by /* */.
3349
3350 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
3351
3352         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
3353         
3354         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
3355         check after MONO_VTADDR. Fixes pinvoke2.exe.
3356
3357         * marshal.h marshal.c metadata.h: Add beginnings of support for
3358         ftnptr -> delegate marshalling.
3359
3360 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
3361
3362         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
3363         * threads.c: Fix warnings.
3364
3365 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
3366
3367         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
3368         * icall.c: Registered icalls for Suspend and Resume.
3369         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
3370           Thread.Abort.
3371         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
3372         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
3373         * process.c: Use WaitForSingleObjectEx.
3374         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
3375           checkpoints.
3376         * threads.c, threads.h: Make use of new Ex wait methods. Improved
3377           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
3378           for Suspend and Resume. Added new mono_thread_stop, used for stoping
3379           background threads. Added basic support for Abort in Windows.
3380           Start new threads using a managed delegate invoke wrapper. This wrapper
3381           has an interruption checkpoint that is needed since an interruption
3382           can be requested before the thread leaves the unmanaged code that starts 
3383           the thread.
3384         * marshal.c: Added interruption checkpoint after every native call, and
3385           also before managed calls for wrappers called from unmanaged code to
3386           go into managed code.
3387         * object.h: Added new field in MonoThread to keep track of interruption
3388           requests.
3389
3390 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
3391
3392         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
3393         calls.
3394
3395 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3396
3397         * appdomain.c:
3398         * assembly.c:
3399         * gc.c:
3400         * locales.c:
3401         * mono-config.c:
3402         * rand.c: getenv -> g_getenv (windows!)
3403
3404         * process.c: complete_path is also used on non-windows platforms.
3405
3406 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3407
3408         * icall.c: new signature for Process_Start.
3409
3410         * process.[ch]: new signature for Process_Start. If we're on windows
3411         and UseShellExecute is false, we have to search for the program by
3412         ourselves if we don't get a full path.
3413
3414 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
3415
3416         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
3417         marshalling and call CleanUpNativeData if needed. Fixes #58646.
3418
3419 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3420
3421         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
3422         Fixes bug #58373.
3423
3424 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3425
3426         * process.c: use double quotes to quote program name and arguments on
3427         windows. Fixes bug #58575.
3428
3429 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3430
3431         * file-io.c: don't return "." and ".." when using windows Find*File.
3432
3433 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
3434
3435         * marshal.c: Don't pass wrappers to message init because method 
3436         addressed used to lookup metadata. part of remoting[2|3] fix.
3437
3438 2004-05-15  Jackson Harper  <jackson@ximian.com>
3439
3440         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
3441         path is essentially the same as MONO_PATH except that it points to
3442         GACs instead of lib directories.
3443         * loader.h: The user gac is gone so we dont need function to
3444         enable/disable it.
3445         * mono-config.c: user gac option is now gone.
3446         
3447 2004-05-15  Jackson Harper  <jackson@ximian.com>
3448
3449         * culture-info.h: Make defines more consistent, add calendar data
3450         to the culture info table.
3451         * culture-info-tables.h: Add basic calendar data. Basically
3452         everyone gets default gregorian until all the data is
3453         updated.
3454         * locales.c: Use the new consistent defines. Set calendar data for
3455         culture info objects.
3456         * object.h: add a field for calendar data to CultureInfo
3457         
3458 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
3459
3460         * image.c: image->runtime_invoke_cache is keyed on signatures now.
3461         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
3462         a signature.
3463         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
3464         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
3465         an extra param that is the pointer of the method to invoke. The IL for
3466         the invoke method is no longer specific to the method, but to the
3467         signature of the method. Thus, we can share the same code for multiple
3468         methods. This reduces the number of methods that have to be compiled.
3469
3470 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
3471
3472         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
3473
3474         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3475
3476         * icall.c: Optimize Buffer.BlockCopy.
3477
3478 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3479
3480         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
3481         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
3482         quote). Changed them to "MMMM yyyy".
3483
3484 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
3485
3486         * rand.c
3487         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
3488
3489 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
3490
3491         * reflection.h: Updated after changes to managed structures.
3492
3493         * appdomain.c: Bump corlib version.
3494
3495 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3496
3497         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
3498         windows.
3499
3500 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3501
3502         * Makefile.am: link to ../os/libmonoos.la on windows.
3503
3504         * assembly.c:
3505                 -If MONO_DEBUG, warn about non-existing directories in
3506                 MONO_PATH.
3507                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
3508                 compile time variable.
3509                 -Removed init_default_path and call mono_set_rootdir from
3510                 libmonoos.a instead (windows only).
3511
3512         * assembly.h: declare mono_assembly_getrootdir().
3513
3514         * domain.c:
3515         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
3516
3517         * loader.c: s/getenv/g_getenv/
3518
3519 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
3520
3521         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
3522
3523         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
3524
3525         * metadata.h: Add new marshalling conversions.
3526
3527         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
3528         function.
3529
3530         * reflection.c (mono_reflection_get_type): Lookup the type in all
3531         modules of a multi-module assembly. Fixes #58291.
3532
3533 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
3534
3535         * threads.c: Before aborting a background, set the StopRequested
3536         state.  This avoids throwing the Abort exception.
3537         In mono_thread_manage, don't continue with the shutdown until all
3538         aborted threads have actually stopped.
3539
3540 2004-05-10  Jackson Harper  <jackson@ximian.com>
3541
3542         * locales.c: Remove the modifier from culture names.
3543         
3544 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3545
3546         * Makefile.am: monosn is not installed any more. It has been deprecated
3547         in favor of sn.
3548
3549 2004-05-07  Jackson Harper  <jackson@ximian.com>
3550
3551         * locales.c
3552         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
3553         Fix array construction, add bailout if the length is 0.
3554
3555 2004-05-07  Dick Porter  <dick@ximian.com>
3556
3557         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
3558         machine doesn't have a DNS entry.  Patch by Urs Muff
3559         (umuff@quark.com), fixes bug 57928.
3560
3561 2004-05-06  Jackson Harper  <jackson@ximian.com>
3562
3563         * reflection.c: Handle null PublicTokens properly. alloc mem for
3564         assembly names culture so we dont crash when freeing it.
3565         
3566 2004-05-06  Jackson Harper  <jackson@ximian.com>
3567
3568         * assembly.c: Check the usergac when loading with partial names.
3569         
3570 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
3571
3572         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
3573         does nothing for now (not required for Linux/Windows) but the class
3574         library can call it (and a newer or modified runtime could need it).
3575         * icall.c: Registred icall.
3576
3577 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3578
3579         * loader.c: prints a message on module loading error we set MONO_DEBUG
3580         environment variable.
3581
3582 2004-05-05  Jackson Harper  <jackson@ximian.com>
3583
3584         * appdomain.c: Handle PublicKeyToken=null properly.
3585         
3586 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
3587
3588         * environment.c|h: Added icall ves_icall_System_Environment_
3589         GetOSVersionString to get the current OS version as a string.
3590         * icall.c: Registred icall.
3591
3592 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
3593
3594         * object.c: in mono_object_get_virtual_method(), take into account that
3595         non-virtual methods don't have a slot in the vtable. Check needed when
3596         the object is a proxy.
3597
3598 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
3599
3600         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
3601         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
3602
3603         * object.c (mono_class_compute_gc_descriptor): Fix warning.
3604
3605         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
3606         passed when a valuetype is expected.
3607
3608         * object.c (mono_unhandled_exception): Only set the exit code if the
3609         exception happens in the main thread. Fixes thread5.exe.
3610
3611         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
3612         invalid names. Fixes #58047.
3613
3614 2004-05-03  Jackson Harper  <jackson@ximian.com>
3615
3616         * assembly.c: This line was committed accidently and is unneeded.
3617         
3618 2004-05-03  Jackson Harper  <jackson@ximian.com>
3619
3620         * icall.c: Add new icall for Assembly::LoadWithPartialName
3621         * assembly.c/.h: new function that probes the GAC to load partial
3622         assembly names by Paolo Molaro.
3623         
3624 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3625
3626         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
3627         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
3628         (type_get_fully_qualified_name): Added PublicKeyToken when building a
3629         full type name.
3630
3631 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3632
3633         * appdomain.c: fixed check for 'neutral' culture and removed warning.
3634         * reflection.c: fix bug when parsing a full type name and Version is not
3635         the last thing in the string.
3636
3637 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
3638
3639         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
3640         crashes when it is freed.
3641
3642 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3643
3644         * assembly.c: print the compat warning to stderr.
3645
3646 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
3647
3648         * assembly.c (mono_assembly_load_references): Add a compatibility
3649         hack to run old applications that might be still referencing the
3650         3300-based assemblies, only do this for System.xxx.
3651
3652 2004-05-01  Jackson Harper  <jackson@ximian.com>
3653
3654         * appdomain.c: If the culture is neutral we set it to "".
3655         
3656 2004-04-29  Jackson Harper  <jackson@ximian.com>
3657
3658         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
3659
3660 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3661  
3662         * string-icalls.c: added low overhead function for copying chars
3663         * icall.c: added needed icall for the above function
3664  
3665 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3666
3667         * icall.c: fix return value of get_global_assembly_cache.  Implemented
3668         Environment.GetLogicalDrives.
3669
3670 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
3671
3672         * rand.c: try and talk to egd or prngd
3673         for random bytes if opening devices fail.
3674
3675 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
3676
3677         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
3678         alignment for the type using the native alignment of its members 
3679         instead of using klass->min_align.
3680
3681         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
3682
3683 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3684
3685         * file-io.c:
3686         * socket-io.c: added check for sys/aio.h.
3687
3688 2004-04-28  Dick Porter  <dick@ximian.com>
3689
3690         * threads.c: Don't abort a thread thats already aborting, when
3691         terminating everything.
3692
3693 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3694
3695         * icall.c: added 2 new async calls for Socket.
3696
3697         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
3698         IO on *nix systems.
3699
3700         * threadpool.c: removed unused variable.
3701
3702 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
3703
3704         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
3705
3706 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
3707
3708         * locales.c: put back string_invariant_tolower () and
3709         string_invariant_toupper ().
3710
3711 2004-04-26 David Waite <mass@akuma.org>
3712
3713         * file-io.h:
3714         * socket-io.h:
3715         * threads.h:
3716         * unicode.h: remove comma from end of enumeration declarations
3717
3718 2004-04-26 David Waite <mass@akuma.org>
3719
3720         * debug-mono-symfile.h:
3721         * decimal.c:
3722         * mono_debug.h:
3723         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
3724
3725
3726 2004-04-26  Jackson Harper  <jackson@ximian.com>
3727
3728         * appdomain.c: Increment version number.
3729         
3730 2004-04-26  Jackson Harper  <jackson@ximian.com>
3731
3732         * appdomain.c: Set assembly references public token value when
3733         PublicKeyToken is specified, not the hash_value. Free public token
3734         values when free assembly name data. Previously the public key
3735         token was hex decoded, however we are using hex encoded public key
3736         tokens, so this is not neccasary.
3737         * assembly.c: Lookup assemblies in the gac if their public token
3738         value is set. Add function to allow enabling user gac
3739         lookups. Specify whether or not the assembly was loaded from the
3740         GAC. Compare full assembly names when checking the cache for
3741         assemblies (Temporarily disabled see comment in code). Remove
3742         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
3743         specifies trace-loader they get extra info to stdout on the
3744         loading of assemblies.
3745         * image.h: Add a field for an assembly references public token
3746         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
3747         whether an assembly has been loaded from the GAC.
3748         * image.c: Remove a corlib -> mscorlib name mapping.
3749         * loader.h: Add function to enable/disable the user gac.
3750         * mono-config.c: Check if the usergac is enabled in the config
3751         file.
3752         * icall.c: New icall to determine whether or not an assembly has
3753         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
3754         * tabldefs.h: Add constant for assemblyref flag that specifies a
3755         full public key is used instead of a public token.
3756         * reflection.c: Remove mscorlib -> corlib mappings. Set
3757         PublicTokenValue instead of hash value. This value is a hex
3758         string so it does not need to be expanded.
3759
3760 2004-04-26  Martin Baulig  <martin@ximian.com>
3761
3762         * mono-debug-debugger.c (mono_debugger_initialize): Set
3763         `mono_debugger_initialized' before calling mono_debug_lock().
3764
3765 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
3766
3767         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
3768           InternalToUpper/InternalToLower.
3769         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
3770           removed invariant culture shortcut.  This is now done in managed code.
3771         * locales.c: (string_invariant_toupper/tolower) removed.
3772
3773 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3774
3775         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
3776         Added Poll internal call.
3777
3778         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
3779         call for Poll. Select was too heavy for polling a single socket.
3780
3781         * threadpool.[ch]: added mono_threadpool_cleanup.
3782         * threads.c: use it. Don't use Thread_Abort on windows.
3783
3784 2004-04-23  Martin Baulig  <martin@ximian.com>
3785
3786         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
3787
3788 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
3789
3790         * icall.c: Registred new icalls for key pair protection and added an
3791         icall for Environment.GetFolderPath on Windows.
3792         * security.c|h: Added new icalls for key pair protection.
3793
3794 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3795
3796         * socket-io.c: don't display the non-supported family warning for known
3797         families. Now this is not displayed on windows when checking support
3798         for IPv4/IPv6.
3799
3800 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3801
3802         * class.c: don't display the layout warning for static fields.
3803
3804 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
3805
3806         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
3807         * locales.c, locales.h: Added new icalls for culture-specific
3808         Char.ToLower and Char.ToUpper.
3809
3810 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3811
3812         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
3813         by David Waite.
3814
3815 2004-04-20  Martin Baulig  <martin@ximian.com>
3816
3817         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
3818         of the type name before passing it to mono_reflection_type_from_name().
3819
3820 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
3821
3822         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
3823         encodings here. Fixes #56965.
3824
3825 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
3826
3827         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
3828         fix test on strstr result not that I can see anything that
3829         relies on the result.
3830
3831 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
3832
3833         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
3834         Fixes #57081.
3835
3836         * marshal.c (mono_marshal_get_string_encoding): New helper function.
3837
3838         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
3839         function to determine which marshalling to use for strings. Fixes
3840         #56965.
3841
3842         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
3843
3844         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
3845
3846 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
3847
3848         * icall.c: #include mono-config.h
3849
3850 2004-04-15  Jackson Harper  <jackson@ximian.com>
3851
3852         * culture-info-tables.h: Fix date formats for en-US culture.
3853         
3854 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
3855
3856         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
3857         ThreadPool.SetMinThreads.
3858         * threadpool.c: Implemented ThreadPool.GetMinThreads and
3859         ThreadPool.SetMinThreads.
3860
3861 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
3862
3863         * mono-config.c: also load the .config file in the directory
3864         where the assembly was found.
3865
3866 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
3867
3868         * assembly.c: load per-assembly config files.
3869         * icall.c: decrapified code to get the config dir and moved to
3870         mono-config.c.
3871         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
3872         per-assembly config files. When doing a dll map lookup give precedence
3873         to the per-assembly data.
3874
3875 2004-04-14  Martin Baulig  <martin@ximian.com>
3876
3877         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
3878         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
3879         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
3880
3881         * mono-debugger-debugger.c: While the debugger is locked, remember
3882         whether the symbol tables have changes and send one single
3883         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
3884
3885 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
3886
3887         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
3888
3889         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
3890         function.
3891
3892         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
3893         account when marshalling string arrays. Fixes #56965.
3894
3895 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
3896
3897         * icall.c: Add new icalls mapping for security.
3898         * security.c|h: Add internal calls for WindowsIdentity,
3899         WindowsImpersonationContext and WindowsPrincipal.
3900
3901 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
3902
3903         * class.c: Added comment to ensure the System.MonoDummy class
3904         is removed when no longer necessary
3905
3906 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
3907
3908         * appdomain.c: Pass arguments to the bootstraping exceptions to
3909         minimize JITed methods at boot
3910
3911         * metadata.c (mono_exception_from_name_two_strings): Allow for the
3912         second string to be null.
3913
3914         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
3915         Change the protocol to minimize the JIT methods at startup.  Now
3916         it Returns the internal codepage, if the value of "int_code_page"
3917         is 1 at entry, and we can not compute a suitable code page
3918         number, returns the code page as a string.
3919
3920 2004-04-13  Jackson Harper  <jackson@ximian.com>
3921
3922         * culture-info-tables.h: Fix number of decimal digits for all
3923         english locales.
3924
3925 2004-04-13  Jackson Harper  <jackson@ximian.com>
3926
3927         * icall.c: Clairfy out of sync error message. It is not always
3928         your corlib that is out of sync.
3929
3930 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
3931
3932         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
3933         properties when only the set accessor is overriden. Fixes #55874.
3934
3935 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
3936
3937         * assembly.c (mono_assembly_load_references): Make this thread safe.
3938         Fixes #56327.
3939
3940 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
3941
3942         * monosn.c: Add missing initialization calls.
3943
3944 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
3945
3946         * locales.c:
3947         ves_icall_System_Globalization_CultureInfo_construct_number_format
3948         Fix g_assert so it compiles on fussier compilers re int/ptr
3949         mismatch
3950
3951 2004-04-08  Dick Porter  <dick@ximian.com>
3952
3953         * socket-io.h:
3954         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
3955         53992.  Also rearrange the code so that the internal calls return
3956         an error value and exceptions are thrown from managed code.
3957
3958         * icall.c: Add type info to the socket icalls.
3959
3960 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3961
3962         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
3963         owes me a beer.
3964
3965 2004-04-07  Martin Baulig  <martin@ximian.com>
3966
3967         * class.c (mono_class_from_generic_parameter): Don't default
3968         `klass->parent' to `mono_defaults.object_type'.
3969
3970 2004-04-07  Martin Baulig  <martin@ximian.com>
3971
3972         * reflection.c (mono_reflection_initialize_generic_parameter): Set
3973         `param->pklass->reflection_info'.       
3974
3975 2004-04-07  Jackson Harper  <jackson@ximian.com>
3976
3977         * culture-info-tables.h: Fix date separator symbol.
3978         
3979 2004-04-07  Martin Baulig  <martin@ximian.com>
3980
3981         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
3982         from System.Type to System.MonoType.
3983
3984 2004-04-07  Martin Baulig  <martin@ximian.com>
3985
3986         * reflection.h
3987         (MonoReflectionGenericParam): Added `has_reference_type' and
3988         `has_value_type' fields.
3989
3990         * reflection.c (mono_image_get_generic_param_info): Encode the
3991         correct flags if we have the `class' or `struct' constraint.
3992
3993 2004-04-07  Martin Baulig  <martin@ximian.com>
3994
3995         * reflection.h
3996         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
3997
3998 2004-04-07  Jackson Harper  <jackson@ximian.com>
3999
4000         * appdomain.c: Revert extra patches, just wanted to bump the
4001         version number.
4002         
4003 2004-04-07  Jackson Harper  <jackson@ximian.com>
4004
4005         * Makefile.am: Add culture-info private headers.
4006         * icall.c: Add new icalls for contructing locales.
4007         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
4008         * locales.h: Declare new culture info construction methods.
4009         * object.h: Add new fields used to avoid the CultureMap to
4010         MonoCultureInfo.
4011         * culture-info.h: Definition of structs used in the culture info
4012         tables.
4013         * culture-info-tables.h: Autogenerated tables that contain culture
4014         info data. This file was generated with the locale-builder tool.
4015         * appdomain.c: Incement corlib version number.
4016         
4017 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
4018
4019         * appdomain.c: (mono_runtime_init) move mono_thread_init
4020         to before mono_object_new calls so critical sections
4021         are initialized before use.
4022
4023 2004-04-07  Martin Baulig  <martin@ximian.com>
4024
4025         * icall.c
4026         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
4027         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
4028         (ves_icall_MonoGenericParam_initialize): Removed.
4029         (monogenericparam_icalls): Removed.
4030         (generictypeparambuilder_icalls): Added new table for
4031         System.Reflection.Emit.GenericTypeParameterBuilder.
4032
4033         * reflection.c
4034         (mono_reflection_define_generic_parameter): Removed.
4035         (mono_reflection_initialize_generic_parameter): This is now called
4036         from GenericTypeParameterBuilder's .ctor.
4037
4038 2004-04-06  Martin Baulig  <martin@ximian.com>
4039
4040         * class.c (mono_class_init): Don't inflate nested classes in a
4041         generic instance.
4042         (mono_type_get_name_recurse): Include the generic arguments for
4043         generic instances and generic type declarations.
4044         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
4045         (_mono_class_get_instantiation_name): Removed.
4046         (mono_class_create_generic): Always use `gklass->name' as our name.
4047
4048         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
4049
4050         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
4051         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
4052         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
4053         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
4054         closed generic methods here.
4055
4056         * reflection.c
4057         (mono_reflection_generic_inst_get_nested_types): Removed.
4058         (inflate_mono_method): Copy the generic parameters from the
4059         MonoMethodHeader into out MonoGenericMethod.
4060
4061 2004-04-06  Martin Baulig  <martin@ximian.com>
4062
4063         * row-indexes.h
4064         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
4065
4066         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
4067
4068         * reflection.c (build_compressed_metadata): If we have any entries
4069         in the GenericParam, MethodSpec or GenericParamConstraint tables,
4070         set the header version to 1.1.
4071
4072 2004-04-06  Martin Baulig  <martin@ximian.com>
4073
4074         * class.c (mono_class_init): If we're a generic instance,
4075         initialize our nested classes, too.
4076         (_mono_class_get_instantiation_name): Deal with the new `!%d'
4077         suffix. 
4078
4079 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4080
4081         * process.c: quote the argument passed to the shell on windows.
4082
4083 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
4084
4085         * threads.c (mono_alloc_special_static_data): Allow this to be
4086         called during startup.
4087
4088 2004-04-02  Martin Baulig  <martin@ximian.com>
4089
4090         * icall.c
4091         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
4092
4093 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
4094
4095         * icall.c: Fix build.
4096
4097 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
4098
4099         * Makefile.am: Added security.c|h.
4100         * icall.c: Added icall for get_UserName;
4101         * security.c: New file for security related icalls. Added function
4102         get_UserName for System.Environment (fix #56144).
4103         * security.h: New. Header file for security.c
4104
4105 2004-04-02  Dick Porter  <dick@ximian.com>
4106
4107         * icall.c: Deleted the icalls that were obsoleted some time ago
4108         by the ICU string code, and which were mixed into the icall
4109         rearranging.  Fixes bug 55969.
4110
4111         * string-icalls.h: 
4112         * string-icalls.c: Deleted the code that those icalls reference.
4113
4114 2004-04-01  Martin Baulig  <martin@ximian.com>
4115
4116         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
4117
4118         * class.c (mono_class_from_generic_parameter): Don't set 
4119         TYPE_ATTRIBUTE_INTERFACE.
4120         (my_mono_class_from_generic_parameter): Likewise.
4121
4122 2004-04-01  Martin Baulig  <martin@ximian.com>
4123
4124         * loader.c (find_method): Added an optional `MonoClass *ic'
4125         argument to search in a specific interface.
4126         (mono_get_method_constrained): New public function.
4127
4128 2004-04-01  Martin Baulig  <martin@ximian.com>
4129
4130         * reflection.c (mono_image_get_generic_field_token): Use the
4131         `handleref' cache here.
4132
4133 2004-04-01  Martin Baulig  <martin@ximian.com>
4134
4135         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
4136
4137         * reflection.c (create_generic_typespec): Use the `typespec' hash
4138         here, not the `typeref' one.    
4139
4140 2004-04-01  Martin Baulig  <martin@ximian.com>
4141
4142         * class.c (mono_class_inflate_generic_type): Moved the
4143         functionality into a new static inflate_generic_type() which
4144         returns NULL if it didn't do anything.  Only increment the
4145         `mono_stats.inflated_type_count' if we actually inflated
4146         something.
4147         (mono_class_get_full): Check the classes type to see whether we
4148         need to inflate it; also inflate MONO_TYPE_(M)VAR.
4149
4150 2004-04-01  Jackson Harper  <jackson@ximian.com>
4151
4152         * reflection.c: Set culture for assembly references.
4153         
4154 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
4155
4156         * reflection.[ch], icall.[ch], Fix support for pinning variables.
4157
4158 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4159
4160         * assembly.c:
4161         (do_mono_assembly_open): the critical section also covers
4162         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
4163
4164 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4165
4166         * threads.c:
4167         (mono_manage_threads): abort the background threads when finishing.
4168         Fixes bug #47232.
4169
4170 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4171
4172         * gc.c: only close the done_event handle if there was no timeout.
4173         C-ified comments.
4174
4175 2004-03-30  Martin Baulig  <martin@ximian.com>
4176
4177         * icall.c (icall_entries): It's called "System.Activator", not
4178         "System.Activation".    
4179
4180 2004-03-30  Martin Baulig  <martin@ximian.com>
4181
4182         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
4183         (mono_class_create_from_typespec): Likewise.
4184
4185 2004-03-30  Martin Baulig  <martin@ximian.com>
4186
4187         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
4188         `has_ctor_constraint' and `initialized'.
4189
4190 2004-03-30  Martin Baulig  <martin@ximian.com>
4191
4192         * reflection.c (encode_new_constraint): New static function to add
4193         the constructor constraint attribute to a type parameter.
4194         (encode_constraints): Call encode_new_constraint() if necessary.
4195
4196         * reflection.h
4197         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
4198
4199         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
4200         
4201 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
4202
4203         * reflection.c, icall.c: add support for pinning variables. 
4204
4205 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
4206
4207         * marshal.c (mono_marshal_get_managed_wrapper):
4208         init bool local with zero rather than null.
4209
4210 2004-03-29  Martin Baulig  <martin@ximian.com>
4211
4212         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
4213         the "official" behavior here.
4214         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
4215
4216 2004-03-29  Martin Baulig  <martin@ximian.com>
4217
4218         * icall.c: Reflect latest API changes.
4219
4220 2004-03-29  Martin Baulig  <martin@ximian.com>
4221
4222         * loader.c (mono_get_method_from_token): Also call
4223         mono_metadata_load_generic_params () for abstract and interface
4224         methods; replace the type arguments in the method signature with
4225         the ones which are loaded from the metadata.
4226
4227 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
4228
4229         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
4230         of the lock is not the current thread. MS.NET don't do it, in spite of
4231         what the documentation says. See bug #56157.
4232
4233 2004-03-28  Martin Baulig  <martin@ximian.com>
4234
4235         * class.c (mono_class_init): Don't call init_properties() and
4236         init_events() for generic instances; set `prop->parent' when
4237         inflating properties.
4238
4239         * reflection.c (mono_generic_inst_get_object): Call
4240         `mono_class_init (ginst->klass)'.
4241         (mono_type_get_object): Only create a MonoGenericInst if your
4242         generic type is a TypeBuilder.
4243         (do_mono_reflection_bind_generic_parameters): Only set
4244         `ginst->is_dynamic' if our generic type is a TypeBuilder.
4245
4246 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
4247
4248         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
4249         Fixes #56091.
4250
4251 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4252
4253         * icall.c: added Kill_internal icall.
4254         * process.[ch]: added Kill_internal icall.
4255
4256 2004-03-25  Martin Baulig  <martin@ximian.com>
4257
4258         * class.h (MonoStats): Added `generic_instance_count',
4259         `inflated_method_count', `inflated_type_count' and
4260         `generics_metadata_size'.       
4261
4262 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4263
4264         * reflection.c: no warnings now.
4265
4266 2004-03-25  Martin Baulig  <martin@ximian.com>
4267
4268         * class.c (mono_class_get_full): New public function; does a
4269         mono_class_get(), but also takes a `MonoGenericContext *'.
4270
4271         * loader.c (mono_field_from_memberref): Renamed to
4272         `field_from_memberref', made static and added `MonoGenericContext *'
4273         argument.
4274         (mono_field_from_token): Added `MonoGenericInst *' argument.
4275         (method_from_memberef): Likewise.
4276         (mono_get_method_from_token): Likewise.
4277         (mono_get_method_full): New public function; does a
4278         mono_get_method(), but also takes a `MonoGenericContext *'.
4279
4280         * verify.c (mono_method_verify): Get the method's generic context
4281         and pass it to mono_field_from_token(), mono_get_method_full() and
4282         mono_class_get_full().
4283
4284 2004-03-25  Martin Baulig  <martin@ximian.com>
4285
4286         * class.c (mono_class_inflate_generic_type): Take a
4287         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
4288         `MonoGenericMethod *'.
4289
4290 2004-03-25  Martin Baulig  <martin@ximian.com>
4291
4292         * loader.h (MonoMethodInflated): Store the MonoGenericContext
4293         instead of the MonoGenericMethod here.
4294
4295 2004-03-25  Martin Baulig  <martin@ximian.com>
4296
4297         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
4298         each time we create a new MonoGenericInst, we also create a new
4299         context which points back to us.
4300
4301         * class.c (inflate_method): Use `ginst->context' instead of
4302         creating a new context.
4303
4304         * loader.c (method_from_memberref): Use
4305         `klass->generic_inst->context' instead of creating a new context.
4306
4307 2004-03-25  Martin Baulig  <martin@ximian.com>
4308
4309         * class.h (MonoGenericContext): New struct.
4310         (MonoGenericMethod): Removed `generic_inst'.
4311
4312         * class.c (mono_class_inflate_generic_method): Take a
4313         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
4314
4315 2004-03-25  Martin Baulig  <martin@ximian.com>
4316
4317         * loader.h (MonoMethodInflated): New typedef.
4318
4319         * metadata.h (MonoMethodSignature): Removed `gen_method', make
4320         `generic_param_count' consume just 30 bits, added `is_inflated'
4321         and `has_type_parameters' flags (one bit each).
4322
4323         * class.c (mono_class_inflate_generic_method): Create a
4324         MonoMethodInflated instead of a MonoMethodNormal and set
4325         `is_inflated' in the method signature.
4326
4327         * class.h (MonoGenericMethod): Removed `generic_method'.
4328
4329 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
4330
4331         * image.c: Make sure the name of a MonoImage is always an absolute path.
4332           This fixes bug #54415.
4333
4334 2004-03-24  Martin Baulig  <martin@ximian.com>
4335
4336         * class.c (mono_class_setup_vtable): If we're a generic instance,
4337         use our generic type's vtable size.
4338
4339 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
4340
4341         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
4342         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
4343         problems.
4344
4345 2004-03-23  Martin Baulig  <martin@ximian.com>
4346
4347         * class.h (MonoDynamicGenericInst): Added `int count_events' and
4348         `MonoEvent *events'.
4349
4350         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
4351         (typebuilder_icalls): Added "get_event_info"; calls
4352         mono_reflection_event_builder_get_event_info(). 
4353
4354         * reflection.c (mono_reflection_generic_inst_initialize): Added
4355         `MonoArray *events'.
4356         (mono_reflection_event_builder_get_event_info): New function.
4357
4358 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
4359
4360         * object.h: add mono_type_initialization_init
4361
4362         * object.c (mono_runtime_class_init): 
4363         implement class constructor synchronization rules
4364         to cope with threading issues.  
4365         add mono_type_initialization_init
4366
4367         * appdomain.c (mono_runtime_init): call 
4368         mono_type_initialization_init
4369
4370         * class.h: removing initializing field from MonoVTable
4371
4372 2004-03-23  Martin Baulig  <martin@ximian.com>
4373
4374         * class.c (my_mono_class_from_generic_parameter): Use
4375         `param->name' if it's not NULL. 
4376
4377 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
4378
4379         * class.c: do not insert non-virtual methods in the vtable.
4380         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
4381         that means the method is non-virtual. This never would have
4382         happened before.
4383
4384 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
4385
4386         * profiler.c: Added lock for accessing coverage_hash.
4387
4388 2004-03-22  Martin Baulig  <martin@ximian.com>
4389
4390         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
4391         `method->method->signature->generic_param_count != 0' to make it
4392         work for interface methods.
4393
4394 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4395
4396         * process.c: quote the string passed to the shell using g_shell_quote.
4397
4398 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4399
4400         * threads.c:
4401         (mono_threads_manage): don't remove the finalizer thread and self
4402         from the threads hash table so that mono_thread_manage can be called
4403         more than once.
4404
4405 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4406
4407         * process.c: quote the arguments when UseShellExecute is true. Fixes
4408         bug #55790.
4409
4410 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4411
4412         * threads.c: set mono_thread_detach as a cleanup routine for every
4413         thread. This way it's always executed upon thread termination, either
4414         aborted or finished normally. No more xsp hangs!
4415
4416 2004-03-17  Martin Baulig  <martin@ximian.com>
4417
4418         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
4419         `int count_nested' and a `MonoType **nested'.
4420
4421         * reflection.c (mono_reflection_bind_generic_parameters): Moved
4422         most of the functionality into a new static
4423         do_mono_reflection_bind_generic_parameters() and don't take a
4424         `MonoType *nested_in' argument any more.  Don't compute nested
4425         types here.
4426         (mono_reflection_generic_inst_get_nested_types): New public method
4427         to get nested types.
4428
4429         * class.c (mono_class_create_generic): Set `klass->nested_in' if
4430         we're a nested class.
4431
4432         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
4433         mono_reflection_generic_inst_get_nested_types() to compute the
4434         nested types.
4435
4436 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
4437
4438         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
4439         descriptive error message under windows.
4440         
4441 2004-03-17  Martin Baulig  <martin@ximian.com>
4442
4443         * class.c (dup_type): Added `const MonoType *original' argument;
4444         copy the attrs from the original type.
4445
4446 2004-03-17  Martin Baulig  <martin@ximian.com>
4447
4448         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
4449         `m->generic_inst_cache' here.
4450
4451 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
4452
4453         * exception.h exception.c: Add stack_overflow_exception.
4454
4455 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4456
4457         * threadpool.c:
4458         (overlapped_callback): call SetEvent *after* invoking the callback.
4459         No need to call CloseHandle.
4460
4461 2004-03-16  Martin Baulig  <martin@ximian.com>
4462
4463         * reflection.c (mono_image_get_fieldref_token): Take a
4464         `MonoReflectionField *' instead of a `MonoClassField *' and a
4465         `MonoClass *'; store the `MonoReflectionField *' in the hash.
4466
4467 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4468
4469         * appdomain.c: don't add the culture to the filename we're looking for
4470         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
4471
4472 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4473
4474         * locales.c: don't ignore symbols when doing case insensitive compares.
4475         Thanks Dick! Fixes bug #54046.
4476
4477         * threads.c: surround 'threads' usage with enter/leave in
4478         mono_thread_manage.
4479
4480 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
4481
4482         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
4483         implicitly marshalled as [Out]. Fixes #55450.
4484
4485         (mono_marshal_get_runtime_invoke): Zero out the result if there is
4486         an exception.
4487
4488 2004-03-16  Martin Baulig  <martin@ximian.com>
4489
4490         * class.c (mono_class_from_generic_parameter): Use the actual
4491         parameter name. 
4492
4493 2004-03-16  Martin Baulig  <martin@ximian.com>
4494
4495         * reflection.c (type_get_signature_size): New static function.
4496         Compues the size of the type in a method signature.
4497         (method_get_signature_size): New static function; calls
4498         type_get_signature_size() to compute the actual size of the
4499         method's signature.
4500         (method_encode_signature): Use method_get_signature_size() to get
4501         the signature's size rather than using `nparams * 10'.
4502
4503 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4504
4505         * file-io.h: define here WapiOverlapped on windows. I don't want the
4506         regular OVERLAPPED one.
4507
4508         * file-io.c:
4509         * threadpool.c: somehow, BindIoCompletionCallback is not found.
4510         Disabling AIO on windows.
4511
4512 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4513
4514         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
4515         bug #55385.
4516
4517 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4518
4519         * appdomain.c: upgraded corlib version.
4520
4521         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
4522         and BeginWrite. Allow opening files for asynchrnous operations.
4523
4524         * file-io.h: new struct that maps FileStreamAsyncResult.
4525         * icall.c: added new icalls.
4526         * process.[ch]: support setting child process environment variables
4527         and use the SHELL or COMSPEC when UseShellExecute is true.
4528
4529         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
4530         callback for async. IO is here and also BindHandle.
4531
4532         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
4533         from here.
4534
4535 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
4536
4537         * reflection.c (create_custom_attr): Allow len == 0.
4538
4539         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
4540         computation on big-endian machines.
4541
4542 2004-03-13  Martin Baulig  <martin@ximian.com>
4543
4544         * class.h (MonoGenericInst): Added `int count_ifaces'.
4545
4546         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
4547         `ginst->count_ifaces' instead `klass->interface_count' since we
4548         may get called before the vtable is created.
4549
4550         * loader.c (mono_method_get_param_names): If we're a generic
4551         instance, return and don't initialize the class.
4552
4553         * reflection.c (mono_reflection_setup_generic_class): Don't call
4554         ensure_runtime_vtable().
4555         (mono_reflection_bind_generic_parameters): Set
4556         `ginst->count_ifaces'.
4557
4558 2004-03-11  Jackson Harper <jackson@ximian.com>
4559
4560         * icall.c:
4561         * unicode.c:
4562         * unicode.h: Remove unused System.Char icalls.
4563         
4564 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
4565
4566         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
4567         code when we P/Invoke the first library in Windows.Forms, instead
4568         of when we first open the assembly.
4569
4570         * assembly.c: Drop the lookup from here.
4571
4572 2004-03-10  Martin Baulig  <martin@ximian.com>
4573
4574         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
4575         class for properties, fields and events.  Finally fixes #54945.
4576
4577 2004-03-10  Martin Baulig  <martin@ximian.com>
4578
4579         * metadata.c (mono_metadata_class_equal): New static function;
4580         checks whether two generic instances or two generic parameters are
4581         equal.
4582         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
4583         compare classes.        
4584
4585 2004-03-10  Martin Baulig  <martin@ximian.com>
4586
4587         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
4588
4589         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
4590         argument and write it into the `reflection_info' field.
4591
4592         * icall.c
4593         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
4594         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
4595
4596 2004-03-09  Jackson Harper  <jackson@ximian.com>
4597
4598         * char-conversions.h: use 8 bits for numeric data its all we need
4599         * icall.c: numeric data is only 8 bits now.
4600
4601 2004-03-09  Martin Baulig  <martin@ximian.com>
4602
4603         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
4604
4605         * class.c (init_properties, init_events): Initialize the new
4606         `parent' field.
4607
4608         * reflection.c (typebuilder_setup_properties): Likewise.
4609         (typebuilder_setup_events): Likewise.
4610
4611         * reflection.h (MonoEventInfo): Replaced `parent with
4612         `declaring_type' and `reflected_type'.
4613
4614         * icall.c (ves_icall_get_property_info): Distinguish between
4615         declaring and reflected type.
4616         (ves_icall_get_event_info): Likewise.
4617
4618 2004-03-09  Martin Baulig  <martin@ximian.com>
4619
4620         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
4621         (ves_icall_Type_GetField): Correctly set field->klass.
4622
4623 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
4624
4625         * loader.h: Fix warning.
4626
4627 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
4628
4629         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
4630         library routine if present.  Notice that it will still continue
4631         executing even if its missing, for those working on the Gtk#
4632         edition of Windows.Forms.
4633
4634         * assembly.c (do_mono_assembly_open): If loading the
4635         System.Windows.Forms call mono_loader_wini_init.
4636
4637 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
4638
4639         * class.h: Added MonoRemoteClass struct.
4640         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
4641         function for MonoStrings.
4642         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
4643         Added internal call for getting the proxy type.
4644         * marshal.c: Get the type of transparent proxies from its remote_class.
4645         Added methods that generate the IL for type checks and casts:
4646         mono_marshal_get_isinst, mono_marshal_get_castclass, 
4647         mono_marshal_get_proxy_cancast.
4648         * marshal.h: Declaration of the previous new methods.
4649         * object.c: Added new moethods for creating and updating MonoRemoteClass
4650         instances: mono_remote_class, mono_upgrade_remote_class, 
4651         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
4652         * verify.c: FIx transparent_proxy_fields layout.
4653         * appdomain.c: Bump corlib version.
4654
4655 2004-03-04  Jackson Harper  <jackson@ximian.com>
4656
4657         * icall.c: Add icall to access char conversion tables.
4658         * char-conversions.h: Character conversion tables.
4659         * Makefile.am: Add char-conversions.h private header file.
4660         
4661 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
4662
4663         * appdomain.c (unload_thread_main): Increase unloading timeout to
4664         10 sec as a temporary workaround for Nant problems.
4665
4666 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
4667
4668         * gc.c: Add checks for GC_enable and GC_disable.
4669
4670         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
4671         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
4672         (bug #54988).
4673         
4674 2004-02-27  Martin Baulig  <martin@ximian.com>
4675
4676         * reflection.c (mono_reflection_bind_generic_parameters): Take a
4677         `MonoReflectionType *' instead of a `MonoType *'.
4678
4679 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
4680
4681         * gc.c (run_finalize): Avoid finalizing the object representing the
4682         finalizer thread.
4683         (finalizer_thread): Fix warning.
4684
4685 2004-02-25  Martin Baulig  <martin@ximian.com>
4686
4687         * class.c (_mono_class_get_instantiation_name): Added `int offset'
4688         argument for nested types.
4689         (mono_class_create_generic): Added support for nested generictypes.
4690
4691         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
4692         `GList *nested'.
4693
4694         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
4695
4696         * reflection.c (method_encode_signature): Increase the minimum
4697         value of `size' from 10 to 11.
4698         (mono_reflection_bind_generic_parameters): Take `int type_argc'
4699         and `MonoType **types' arguments instead of the `MonoArray
4700         *types'; added `MonoType *nested_in'.  Recursively instantiate
4701         nested classes. 
4702
4703 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
4704
4705         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
4706         stack_overflow_ex members which are used by exception handling.
4707
4708         * appdomain.c (mono_runtime_init): Initialize the new members.
4709
4710         * gc.c (mono_gc_enable): New helper function.
4711         * gc.c (mono_gc_disable): New helper function.
4712
4713 2004-02-23  Martin Baulig  <martin@ximian.com>
4714
4715         * icall.c: I must have been really stupid - make it actually work
4716         this time ;-)
4717
4718 2004-02-23  Martin Baulig  <martin@ximian.com>
4719
4720         * loader.c (method_from_memberref): Only inflate the method if
4721         it's in another klass.
4722
4723 2004-02-23  Martin Baulig  <martin@ximian.com>
4724
4725         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
4726         (mono_class_init): If we're a generic instance and an interface,
4727         compute `class->interface_id'; also create `class->interfaces'
4728         here and inflate them.
4729
4730         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
4731         `ginst->is_open'.
4732         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
4733
4734         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
4735
4736 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
4737
4738         * reflection.c (method_encode_code): Improved the error message
4739         generated by the exception.
4740
4741 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4742
4743         * icall.c: Martin did not do what he said in the ChangeLog for
4744         2004-02-18, but put back the changes for properties and events.
4745         Commenting those changes out again and adding comment to bug #54518.
4746         
4747         * process.c: removed warning.
4748
4749 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
4750
4751         * marshal.c (emit_struct_conv): Print an error message instead of
4752         asserting when a type does not have the StructLayout attribute.
4753
4754 2004-02-20  Martin Baulig  <martin@ximian.com>
4755
4756         * reflection.c (mono_type_get_object): Also use the cache for
4757         generic instances.
4758         (mono_reflection_bind_generic_parameters): Always compute
4759         `ginst->ifaces'.        
4760
4761 2004-02-20  Martin Baulig  <martin@ximian.com>
4762
4763         * class.h (MonoGenericMethod): Removed `klass'.
4764
4765         * class.c (mono_class_inflate_generic_method): Added `MonoClass
4766         *klass' argument.
4767
4768 2004-02-20  Martin Baulig  <martin@ximian.com>
4769
4770         * reflection.c (method_encode_methodspec): Actually use the
4771         uninflated signature for the memberref.
4772
4773 2004-02-20  Martin Baulig  <martin@ximian.com>
4774
4775         * class.h (MonoGenericMethod): Removed `declaring'.
4776
4777         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
4778         is NULL, compute it here.
4779
4780 2004-02-20  Martin Baulig  <martin@ximian.com>
4781
4782         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
4783
4784         * metadata.c (mono_metadata_generic_inst_hash): New method.
4785         (mono_metadata_generic_inst_equal): New method.
4786
4787         * reflection.c (mono_reflection_bind_generic_parameters): Use the
4788         `klass->image->generic_inst_cache' cache to avoid creating
4789         duplicate MonoGenericInst's.
4790
4791         * class.c (mono_class_inflate_generic_type): Use the cache.
4792
4793 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
4794
4795         * object.c: fixed gc descriptor calculation for embedded valuetypes.
4796
4797 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4798
4799         * icall.c: added Socket.WSAIoctl icall.
4800
4801         * socket-io.[ch]: implemented
4802         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
4803
4804 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
4805
4806         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
4807
4808 2004-02-18  Urs C Muff  <umuff@quark.com>
4809
4810         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
4811         this work on PPC and other big-endian architectures.
4812
4813         * debug-mono-symfile.h: Prepended the names of all the `guint32'
4814         fields with an underscore to make sure they're only accessed by
4815         the read32() macro.
4816
4817 2004-02-18  Martin Baulig  <martin@ximian.com>
4818
4819         * icall.c: Put the klass->refclass changes back for methods and
4820         fields, but not for properties and events.  We're currently not
4821         distinguishing between DeclaringType and ReflectedType for
4822         properties and events, that's what caused the regressions.
4823
4824 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4825
4826         * object.c:
4827         (mono_async_result_new): the handle can be NULL.
4828
4829         * threadpool.c: Use an event instead of a semaphore, don't initialize
4830         it until needed. This saves quite a few semaphores from being created
4831         when using the threadpool.
4832
4833 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
4834
4835         * object.c (mono_string_is_interned_lookup): Fix interning of long
4836         strings. Fixes #54473.
4837
4838         * domain.c (ldstr_equal): Optimize if the two strings are equal.
4839
4840         * icall.c: Revert the klass->refclass changes since they introduce
4841         regressions (bug #54518).
4842
4843 2004-02-18  Martin Baulig  <martin@ximian.com>
4844
4845         * class.c (mono_class_init): If we're a generic instance and don't
4846         come from a TypeBuilder, inflate our members here.
4847         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
4848         (mono_class_create_generic): New public method.
4849         (mono_class_initialize_generic): Removed.
4850         (get_instantiation_name): Renamed to
4851         _mono_class_get_instantiation_name() and made it public.
4852
4853 2004-02-18  Martin Baulig  <martin@ximian.com>
4854
4855         * class.c (mono_class_inflate_generic_type): Clear the new
4856         instance's `nginst->klass' when inflating a generic instance.
4857         (mono_class_is_subclass_of): Added (basic) support for generic
4858         instances.
4859
4860 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
4861
4862         * appdomain.h, domain.c: use a MonoCodeManager instead of a
4863         MonoMempool to hold compiled native code.
4864
4865 2004-02-17  Martin Baulig  <martin@ximian.com>
4866
4867         * class.h (MonoDynamicGenericInst): Added `count_properties' and
4868         `properties'.
4869
4870         * reflection.c (mono_reflection_generic_inst_initialize): Added
4871         `MonoArray *properties' argument.
4872
4873         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
4874
4875 2004-02-17  Martin Baulig  <martin@ximian.com>
4876
4877         * icall.c (ves_icall_Type_GetFields): Renamed to
4878         ves_icall_Type_GetFields_internal() and added a
4879         `MonoReflectionType *rtype' argument; pass it to
4880         mono_field_get_object() to set the field's "reflected" type.
4881         (ves_icall_Type_GetConstructors): Likewise.
4882         (ves_icall_Type_GetEvents): Likewise.
4883         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
4884         argument; pass it to mono_method_get_object() to set the method's
4885         "reflected" type.       
4886
4887 2004-02-17  Martin Baulig  <martin@ximian.com>
4888
4889         * class.h (MonoDynamicGenericInst): New type.
4890         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
4891
4892         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
4893         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
4894         (ves_icall_MonoGenericInst_GetFields): New interncall.
4895
4896         * class.c (mono_class_from_generic): Don't call
4897         mono_class_initialize_generic() if this is a dynamic instance;
4898         ie. it's being created from a TypeBuilder.
4899         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
4900         `class->byval_arg.type'.
4901
4902         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
4903         to `inflate_method' and made static.
4904         (mono_reflection_inflate_field): Removed.
4905         (mono_reflection_generic_inst_initialize): New public method.
4906
4907         * reflection.h (MonoReflectionGenericInst): Removed `methods',
4908         `ctors' and `fields'; added `initialized'.
4909
4910 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
4911
4912         * debug-helpers.c (mono_method_full_name): Fix output for empty
4913         namespaces.
4914
4915 2004-02-12  Martin Baulig  <martin@ximian.com>
4916
4917         * class.h (MonoClassField): Added `MonoType *generic_type'.
4918
4919         * reflection.c (mono_image_get_fieldref_token): Added support for
4920         instantiated generic types.
4921         (field_encode_inflated_field): Removed.
4922         (mono_image_get_inflated_field_token): Removed.
4923         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
4924
4925         * reflection.h (MonoReflectionInflatedField): Removed.
4926
4927 2004-02-12  Martin Baulig  <martin@ximian.com>
4928
4929         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
4930         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
4931
4932         * reflection.c (mono_image_get_methodspec_token): Take a
4933         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
4934         (mono_image_create_token): Check whether we have a
4935         `method->signature->gen_method' and call
4936         mono_image_get_methodspec_token() if appropriate.
4937         (inflated_method_get_object): Removed.
4938         (mono_reflection_bind_generic_method_parameters): Return a
4939         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
4940         (mono_reflection_inflate_method_or_ctor): Likewise.
4941
4942         * reflection.h (MonoReflectionInflatedMethod): Removed.
4943
4944 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
4945
4946         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
4947         for custom valuetype marshalling.
4948
4949         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
4950
4951 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4952
4953         * icall.c: fixed WSAGetLastError_internal name.
4954
4955 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
4956
4957         * threads.c (mono_thread_attach): Allow this to be called multiple
4958         times for a thread.
4959         
4960         * threads.c (build_wait_tids): Do not wait for ourselves.
4961
4962         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
4963         appdomain list is empty.
4964
4965         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
4966         memory returned by mono_string_builder_to_utf16, since it points into
4967         managed memory. Thanks to Bernie Solomon for noticing this.
4968
4969         * icall.c: Add AppDomainSetup icalls.
4970
4971         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
4972
4973         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
4974         types.
4975
4976         * reflection.c (reflection_methodbuilder_to_mono_method): Save
4977         custom attributes to the method_aux struct. Also fix array indexes etc.
4978
4979         * loader.c (mono_method_get_param_names): Make dynamic case work again.
4980         
4981 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
4982
4983         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
4984         (both static and runtime) and reduce startup time.
4985
4986 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
4987
4988         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
4989         AsAny marshalling conversion instead of crashing.
4990
4991         * marshal.c: Fix warnings.
4992
4993 2004-02-09  Martin Baulig  <martin@ximian.com>
4994
4995         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
4996
4997         * reflection.h (MonoReflectionInflatedMethod): Removed the
4998         `declaring' field, it's now in the unmanaged MonoGenericMethod.
4999
5000         * reflection.c (method_encode_methodspec): Removed the `method'
5001         argument; we get it from `gmethod->declaring'.
5002         (inflated_method_get_object): Removed the `declaring' argument.
5003
5004 2004-02-09  Martin Baulig  <martin@ximian.com>
5005
5006         * class.h (MonoGenericMethod): New type.
5007         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
5008         `generic_method'.
5009
5010         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
5011         a `MonoGenericMethod *gen_method' one.
5012
5013         * class.c (mono_class_inflate_generic_type): Take an additional
5014         `MonoGenericMethod * argument.  This is only non-NULL if we're
5015         inflating types for a generic method.   
5016         (mono_class_inflate_generic_signature): Renamed to
5017         inflate_generic_signature() and made static; take a
5018         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
5019         (inflate_generic_header): Take a `MonoGenericMethod *' argument
5020         instead of a `MonoGenericInst *' one.
5021         (mono_class_inflate_generic_method): Likewise.
5022
5023         * reflection.c (encode_generic_method_sig): Take a
5024         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
5025         (method_encode_methodspec): Likewise.
5026         (inflated_method_get_object): Likewise. 
5027
5028         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
5029         field with a `MonoGenericMethod *gmethod' one.  
5030
5031 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
5032
5033         * class.h (mono_class_has_parent): add parens to expansion
5034         so you can ! this.
5035
5036 2004-02-08  Martin Baulig  <martin@ximian.com>
5037
5038         * image.h (MonoImage): Removed `generics_cache'.
5039
5040         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
5041         instead of a `MonoType *' argument; removed the `inflate_methods'
5042         argument.  Don't inflate methods here.
5043
5044         * loader.c (find_method): If it's a generic instance, call
5045         mono_class_init() on the `sclass->generic_inst->generic_type'.
5046
5047         * metadata.c (mono_type_size): Make this work on uninitialized
5048         generic instances; call it on the `ginst->generic_type's class.
5049
5050         * reflection.c (mono_reflection_bind_generic_parameters): Call
5051         mono_class_from_generic() to create the `ginst->klass'.
5052
5053 2004-02-08  Martin Baulig  <martin@ximian.com>
5054
5055         * class.h (MonoClass): Changed type of `generic_inst' from
5056         `MonoType *' to `MonoGenericInst *'.
5057
5058 2004-02-08  Martin Baulig  <martin@ximian.com>
5059
5060         * icall.c (ves_icall_Type_BindGenericParameters): Just call
5061         mono_type_get_object(), this is now creating a `MonoGenericInst'
5062         for MONO_TYPE_GENERICINST.
5063         (ves_icall_MonoGenericInst_GetParentType): Likewise.
5064         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
5065
5066         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
5067         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
5068         (inflated_method_get_object): Added `MonoClass *refclass' argument.
5069         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
5070         and reflected type.
5071
5072         * reflection.h (MonoReflectionInflatedMethod): Removed
5073         `declaring_type' and `reflected_type'.
5074
5075 2004-02-08  Martin Baulig  <martin@ximian.com>
5076
5077         * class.h (MonoGenericInst): Added `MonoType *parent' and
5078         `MonoType **ifaces'.
5079
5080         * reflection.h (MonoReflectionGenericInst): Removed `klass',
5081         `parent' and `interfaces'.
5082
5083         * reflection.c (mono_reflection_bind_generic_parameters): Take a
5084         `MonoType *' argument and return a `MonoType *'.
5085
5086         * icall.c
5087         (ves_icall_MonoGenericInst_GetParentType): New interncall.
5088         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
5089
5090 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
5091
5092         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
5093         valuetype marshalling.
5094
5095 2004-02-06  Martin Baulig  <martin@ximian.com>
5096
5097         * class.c
5098         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
5099         (my_mono_class_from_generic_parameter): Likewise.
5100
5101 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
5102
5103         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
5104         contents of the symbol files lazily.
5105
5106         * object.h (MonoThread): Add 'name' and 'name_len' fields.
5107
5108         * threads.h threads.c icall.c: New icalls for getting and setting the
5109         threads name.
5110
5111 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
5112
5113         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
5114         Raise an exception when the domain is not found.
5115
5116 2004-02-03  Martin Baulig  <martin@ximian.com>
5117
5118         * reflection.c (mono_image_get_methodspec_token): Use the
5119         uninflated signature; fixes gen-33.
5120
5121 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
5122
5123         * gc.c threads.c: Make the finalizer thread a normal managed thread so
5124         the finalizer code can use thread functionality.
5125
5126         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
5127         the finalizer thread.
5128
5129         * threads.c: Make some functions more robust.
5130
5131         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
5132
5133         * metadata.h: Add new marshalling conventions.
5134
5135         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
5136         stringbuilder marshalling. Fixes #53700.
5137
5138         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
5139
5140         * reflection.c (mono_image_get_type_info): Save declarative security
5141         info.
5142
5143         * reflection.c (mono_image_get_field_info): Handle uninitialized 
5144         unmanaged fields as well.
5145
5146         * appdomain.c: Bump corlib version.
5147
5148 2004-02-01  Martin Baulig  <martin@ximian.com>
5149
5150         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
5151         method type arguments.  
5152
5153 2004-01-30  Duncan Mak  <duncan@ximian.com>
5154
5155         * marshal.h: Add prototype for
5156         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
5157         and
5158         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
5159         fix the build.
5160
5161 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
5162
5163         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
5164         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
5165
5166 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
5167
5168         * marshal.c (mono_marshal_get_native_wrapper): Add support for
5169         custom marshalling of valuetypes.
5170
5171         * marshal.c: Fix some warnings.
5172
5173 2004-01-29  Martin Baulig  <martin@ximian.com>
5174
5175         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
5176         for generic method parameters.
5177
5178         * reflection.c (method_encode_methodspec): Write the uninflated
5179         signature into the methodspec table.
5180         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
5181         is always the uninflated method.
5182         (reflection_methodbuilder_to_mono_method): Copy the generic
5183         parameters from the MethodBuilder into `header->gen_params'.
5184
5185 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
5186
5187         * class.c (mono_class_from_generic_parameter): Fix warning.
5188
5189 2004-01-27  Martin Baulig  <martin@ximian.com>
5190
5191         * class.c (mono_class_from_generic_parameter): Don't create
5192         `klass->methods' here.  
5193
5194 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
5195
5196         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
5197         extension since it does not work with libraries named lib<FOO>.dll.so.
5198
5199 2004-01-25  Martin Baulig  <martin@ximian.com>
5200
5201         * class.c (mono_class_inflate_generic_type): Added support for
5202         MONO_TYPE_GENERICINST.
5203
5204         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
5205         inflate methods on open constructed types.      
5206
5207 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5208
5209         * object.c: fire ProcessExit event in the root AppDomain after running
5210         Main. Fixes bug #53299.
5211
5212 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
5213
5214         * socket-io.c: include the new socket-wrappers.h header.
5215         Use the wrappers instead of the unix socket functions to make the code
5216         more clear.
5217
5218 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
5219
5220         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
5221
5222         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
5223         Fixes #22532.
5224
5225 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
5226
5227         * reflection.c (mono_image_create_pefile): Handle the case when the
5228         entry point is not a MethodBuilder.
5229
5230         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
5231         field to ReflectionMethod since it is not allways a builder.
5232
5233         * reflection.c (type_get_fully_qualified_name): New helper function to
5234         return the fully qualified name of a type.
5235
5236         * reflection.c (encode_marshal_blob): Always emit the fully qualified
5237         type name for custom marshallers.
5238
5239         * reflection.c (mono_marshal_spec_from_builder): Ditto.
5240
5241         * class.c (mono_class_setup_vtable): If a parent class already 
5242         implements an interface, use the implementing methods from that class.
5243         Fixes #53148.
5244
5245 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5246
5247         * threadpool.c: just return instead of ExitThread to allow for thread
5248         clean up earlier.
5249
5250 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
5251
5252         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
5253         when closing resource modules.
5254
5255         * reflection.c (mono_image_create_pefile): Handle the case when the
5256         entry point is not a MethodBuilder.
5257
5258         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
5259         field to ReflectionMethod since it is not allways a builder.
5260
5261 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
5262
5263         * marshal.c (mono_marshal_get_managed_wrapper): 
5264         mono_marshal_alloc takes native int so CONV_I
5265         the arg for 64bits.
5266
5267 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
5268
5269         * reflection.c (fixup_cattrs): New function to fixup the methoddef
5270         tokens in the cattr table. Fixes #53108.
5271
5272 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5273
5274         * loader.c: don't trim ".dll" before looking up in the config file.
5275         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
5276
5277 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
5278
5279         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
5280         Return the module which contains the resource as well.
5281         (ves_icall_System_Reflection_Module_Close): New icall.
5282
5283         * appdomain.c: Bump corlib version number.
5284
5285         * image.c (mono_image_addref): New public function.
5286
5287         * assembly.c: Call mono_image_addref.
5288
5289         * reflection.c (mono_module_get_object): Increase reference count of 
5290         the image.
5291
5292         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
5293         Fixes #22532.
5294
5295         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
5296         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
5297         proper exceptions on DllImport problems.
5298
5299 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
5300
5301         * class.c, metadata.c: eliminate CSIZE macro.
5302
5303 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
5304
5305         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
5306         * object.h: Added async_callback field in MonoAsyncResult.
5307         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
5308         * verify.c: Added async_callback in MonoAsyncResult layout.
5309
5310 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
5311
5312         * reflection.c (mono_reflection_get_custom_attrs): Add support
5313         for Modules.
5314
5315 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
5316
5317         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
5318         marshalling.
5319         (mono_marshal_method_from_wrapper): Add null pointer check.
5320
5321 2004-01-16  Martin Baulig  <martin@ximian.com>
5322
5323         * debug-mono-symfile.h: Set version number to 36 and reflect
5324         latest symbol writer changes.
5325
5326 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
5327
5328         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
5329         multi-dimensional arrays.
5330         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
5331         (mono_class_from_mono_type): Use bounded_array_class_get.
5332         
5333         * class.c (mono_bounded_array_class_get): New function which takes
5334         a 'bounded' bool argument to distinguish vectors from one dimensional
5335         arrays.
5336
5337         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
5338         bounded_array_class_get if the array has bounds.
5339
5340         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
5341         Search modules loaded using AssemblyBuilder:AddModule as well.
5342
5343 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5344
5345         * appdomain.c: increased corlib version.
5346         * filewatcher.c: removed g_print.
5347         * icall.c:
5348         (get_property_info): only allocate what is actually requested.
5349         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
5350
5351 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5352
5353         * Makefile.am: added filewatcher.[ch]
5354         * filewatcher.[ch]: FileSystemWatcher runtime support.
5355         * icall.c: added new FSW icalls.
5356
5357 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
5358
5359         * string-icalls.c: fix stringbuilder regression as suggested by
5360         Iain McCoy <iain@mccoy.id.au>.
5361
5362 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
5363
5364         * process.c (process_read_stringtable_block): Recognize '007f' as
5365         a language neutral stringtable block.
5366
5367 2004-01-12  Patrik Torstensson
5368
5369         * object.h (MonoStringBuilder) : Changed layout to support our
5370         new stringbuilder class.
5371         * marshal.c: Change marshalling to support the new layout of 
5372         string builder.
5373         * appdomain.c: increased version number because new layout of
5374         string builder.
5375
5376 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
5377
5378         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
5379         assembly name as an string instead of an AssemblyName, since it is
5380         easier to extract info from it.
5381
5382         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
5383         the culture subdirectories too. Fixes #52231.
5384
5385 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5386
5387         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
5388         It takes 2 new parameters with an optional name for the method to look
5389         for and case ignoring info.
5390
5391         * threadpool.c: removed unused variable.
5392
5393 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5394
5395         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
5396         It takes 2 new parameters with an optional name for the property to look
5397         for and case ignoring info.
5398         Fixes bug #52753.
5399
5400 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
5401
5402         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
5403         Fix #52451.
5404
5405 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5406
5407         * appdomain.c:
5408         * assembly.c: escape the uri before passing it to g_filename_from_uri.
5409         Fixes bug #52630.
5410
5411 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
5412
5413         * reflection.c: Add support for more than one unmanaged resource.
5414
5415         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
5416         in field->def_value, as done in all other cases.
5417
5418         * reflection.c (mono_reflection_get_custom_attrs): Add support for
5419         TypeBuilders.
5420
5421         * reflection.c (mono_reflection_create_runtime_class): Remove 
5422         errorneous assignment to klass->element_class, since it is already
5423         done in mono_reflection_setup_internal_class.
5424
5425 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5426
5427         * gc.c: added missing LeaveCriticalSection.
5428         * icall.c: indented a couple of lines.
5429         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
5430         if we call EndInvoke inside a callback. Fixes bug #52601.
5431
5432 2004-01-07  Martin Baulig  <martin@ximian.com>
5433
5434         * mono-debug-debugger.h
5435         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
5436
5437 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
5438
5439         * appdomain.c: Use messages in NotImplementedException.
5440
5441         * exception.c (mono_get_exception_not_implemented): Now this takes
5442         a message argument.
5443
5444         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
5445         exception instead of g_asserting an aborting when something is not
5446         implemented.
5447
5448         Add some inline docs.
5449
5450 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
5451
5452         * reflection.h: Update after changes to object layout.
5453
5454         * reflection.c: Implement saving of unmanaged aka win32 resources.
5455
5456         * appdomain.c: Bump version number.
5457
5458         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
5459         Handle missing domains gracefully.
5460
5461 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
5462
5463         * file-io.c : On Windows, there are much more invalid_path_chars.
5464
5465 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
5466
5467         * class.h, object.c: prepare for GetType () speedup.
5468
5469 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
5470
5471         * profiler.c: workaround for --profile null reference exception on
5472           cygwin. Patch by Patrik Torstensson.
5473
5474 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
5475
5476         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
5477         make work for unaligned access.
5478
5479 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
5480
5481         * class.c: small cleanup (class->fields [i] -> field).
5482         * image.c: check address of metadata is valid.
5483
5484 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
5485
5486         * assembly.h assembly.c (mono_assembly_loaded): New public function to
5487         search the list of loaded assemblies.
5488
5489         * reflection.c (mono_reflection_type_from_name): Use 
5490         mono_assembly_loaded instead of mono_image_loaded.
5491
5492         * reflection.c: Fix warnings.
5493
5494 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
5495
5496         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
5497         is dynamic. This is needed since an assembly can contain both dynamic and
5498         non-dynamic images.
5499
5500         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
5501         assembly->dynamic.
5502
5503         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
5504
5505         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
5506         to store modules loaded using AddModule.
5507
5508         * reflection.c (mono_image_fill_file_table): Generalize this so it works
5509         on Modules.
5510
5511         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
5512
5513         * reflection.c (mono_image_fill_export_table_from_module): New function to
5514         fill out the EXPORTEDTYPES table from a module.
5515
5516         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
5517         into a separate function. Also handle loaded non-dynamic modules.
5518
5519         * reflection.c (mono_image_basic_init): Fix memory allocation.
5520
5521         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5522
5523         * assembly.c (mono_assembly_load_references): Make this public.
5524
5525 2003-12-19  Martin Baulig  <martin@ximian.com>
5526
5527         * class.c (mono_class_initialize_generic): Made this static, take
5528         a `MonoGenericInst *' instead of a `MonoClass *'.
5529         (mono_class_from_generic): Call mono_class_initialize_generic()
5530         unless we're already initialized or being called from
5531         do_mono_metadata_parse_generic_inst().
5532
5533         * class.h (MonoGenericInst): Added `initialized' and
5534         `init_pending' flags.
5535
5536         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
5537         `mono_class_init (gklass)' or mono_class_initialize_generic()
5538         here; set `generic_inst->init_pending' while parsing the
5539         `type_argv'.
5540
5541 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
5542
5543         * locales.c: include string.h for memxxx prototypes
5544
5545 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
5546
5547         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
5548         constructor when accessing literal fields.
5549
5550 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
5551
5552         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5553
5554         * reflection.c (assembly_add_resource_manifest): New function to fill
5555         the MANIFESTRESOURCE table.
5556
5557         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
5558
5559         * reflection.h: Update to changes in class layout.
5560
5561         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
5562         Reenable call to mono_runtime_is_shutting_down ().
5563
5564         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
5565         determine if the runtime is shutting down.
5566
5567 2003-12-16  Jackson Harper <jackson@ximian.com>
5568
5569         * icall.c: comment out call to mono_runtime_is_shutting_down to
5570         fix build.
5571         
5572 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
5573
5574         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
5575         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
5576
5577 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
5578
5579         * reflection.c: move definition of swap_with_size
5580         to before its first call
5581
5582 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
5583
5584         * appdomain.c (mono_runtime_is_shutting_down): New public function.
5585
5586         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
5587         icall.
5588
5589         * object.c: Fix warnings.
5590
5591         * icall.c (ves_icall_Type_Get...): Only consider inherited static
5592         members if FlattenHierarchy is set.
5593
5594         * reflection.c (mono_image_add_decl_security): New function to emit
5595         declarative security.
5596
5597         * reflection.h reflection.c: Add support for declarative security.
5598
5599         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
5600         
5601 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
5602
5603         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
5604         
5605         * appdomain.c verify.c: Moved corlib version checking into its own
5606         function in appdomain.c since it needs to create vtables etc.
5607
5608 2003-12-13  Patrik Torstensson <p@rxc.se>
5609
5610         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
5611         instead of unwrapped server.
5612
5613 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
5614
5615         * verify.c (check_corlib): Fix field index.
5616
5617 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
5618
5619         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
5620         GetGacPath icall.
5621
5622 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
5623
5624         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
5625         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
5626         cope with sizeof(size_t) != sizeof(guint32).
5627
5628 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5629
5630         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
5631         in case of failure.
5632
5633 2003-12-10  Mark Crichton <crichton@gimp.org>
5634
5635         * icall.c: removed the GetNonZeroBytes.  We now handle this case
5636         in managed code.
5637
5638         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
5639
5640 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
5641
5642         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
5643         marked as deleted.
5644
5645 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
5646
5647         * verify.c (check_corlib): Handle the case when the version field is 
5648         initialized by a static constructor.
5649
5650 2003-12-08  Patrik Torstensson  <p@rxc.se>
5651
5652     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
5653
5654 2003-12-08  Martin Baulig  <martin@ximian.com>
5655
5656         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
5657         a MonoReflectionGenericParameter, also take the parameter index
5658         and name as arguments.
5659         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
5660         (ves_icall_MonoGenericParam_initialize): New interncall.
5661         (ves_icall_Type_make_byref_type): New interncall.
5662
5663         * reflection.h (MonoReflectionGenericParam): Derive from
5664         MonoReflectionType, not just from MonoObject.  Added `refobj' and
5665         `index' fields.
5666
5667         * reflection.c (mono_reflection_define_generic_parameter): Create
5668         and return a new MonoReflectionGenericParam; don't initialize the
5669         constraints here.
5670         (mono_reflection_initialize_generic_parameter): New public method;
5671         initializes the constraints and creates the `param->pklass'.
5672
5673 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
5674
5675         * reflection.h reflection.c: Use the new fields 'num_types', 
5676         'num_fields' and 'num_methods' to track the number of types etc.
5677
5678         * verify.c (check_corlib): Check corlib version number.
5679
5680 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
5681
5682         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
5683         function works on all methods.
5684
5685 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
5686
5687         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
5688         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
5689         the custom_type_info flag of the transparent proxy.
5690         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
5691         objects that supports IRemotingTypeInfo.
5692         * object.h: Added custom_type_info field in transparent proxy.
5693
5694 2003-12-06  Martin Baulig  <martin@ximian.com>
5695
5696         * class.c (mono_class_create_from_generic): Removed.
5697         (mono_class_from_generic): Check `ginst->klass' before doing
5698         anything else.  This is important to fully support "recursive"
5699         generic types.
5700
5701         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
5702         empty `generic_inst->klass' before doing anything else.
5703
5704 2003-12-06  Dick Porter  <dick@ximian.com>
5705
5706         * verify.c: 
5707         * object.h:
5708         * icall.c:
5709         * locales.c: Use C structs to access class fields.  Don't do a
5710         conversion between MonoString and UChar because both are
5711         platform-endian UTF-16.  Compare now takes startindex and count
5712         parameters.  Add a char overload for IndexOf.  Speed up the
5713         invariant string IndexOf.
5714
5715 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
5716
5717         * Makefile.am (monosn_LDADD): Fix parallel build.
5718
5719 2003-12-04  Martin Baulig  <martin@ximian.com>
5720
5721         * icall.c
5722         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
5723         (ves_icall_Type_make_array_type): New interncall.       
5724
5725 2003-12-04  Martin Baulig  <martin@ximian.com>
5726
5727         * locales.c: also change it in the !HAVE_ICU case.
5728
5729 2003-12-04  Dick Porter  <dick@ximian.com>
5730
5731         * icall.c:
5732         * locales.c: construct_compareinfo is now in CompareInfo, not
5733         CultureInfo.
5734
5735 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
5736
5737         * image.c (mono_image_load_file_for_image): Cache loaded images in the
5738         image->files array.
5739
5740         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
5741         table as well.
5742
5743         * assembly.c (mono_assembly_load_references): Only load references
5744         once.
5745
5746         * class.c (mono_class_from_name): Avoid linear search of the 
5747         EXPORTEDTYPE table.
5748
5749         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
5750
5751 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
5752
5753         * image.h (MonoImage): Add 'field_cache' field.
5754
5755         * loader.c (mono_field_from_token): Cache field lookups.
5756         
5757         * reflection.c (mono_module_get_object): Fix name property.
5758
5759         * icall.c (ves_icall_get_enum_info): Update after changes to 
5760         mono_metadata_get_constant_index ().
5761
5762         * icall.c: Get rid of get_type_info icall, use a separate icall for
5763         each type property to avoid needless memory allocations. Fixes #51514.
5764
5765         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
5766         to avoid needless binary searches.
5767
5768         * class.c (class_compute_field_layout): Move the initialization of
5769         field->def_value to mono_class_vtable ().
5770
5771         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
5772         non-corlib types.
5773
5774         * object.c (mono_object_allocate): Make it inline.
5775
5776         * object.c (mono_object_allocate_spec): Make it inline.
5777         
5778 2003-12-02  Dick Porter  <dick@ximian.com>
5779
5780         * locales.c (create_NumberFormat): NumberFormatInfo construction.
5781         Patch by Mohammad DAMT (mdamt@cdl2000.com).
5782
5783 2003-12-01  Dick Porter  <dick@ximian.com>
5784
5785         * threads.c: Fix signature and call in CreateMutex and
5786         CreateEvent.
5787
5788 2003-12-01  Dick Porter  <dick@ximian.com>
5789
5790         * icall.c: 
5791         * locales.c: Implement string compares and searching
5792
5793         * object.h: Add extra Thread field
5794
5795 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
5796
5797         * reflection.c (fixup_method): Add support for MonoCMethod.
5798
5799 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
5800
5801         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
5802
5803         * reflection.c (assembly_name_to_aname): Allow extra characters in
5804         assembly names. Fixes #51468.
5805
5806 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
5807
5808         * exception.c (mono_exception_from_name_domain): New helper function.
5809
5810         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
5811         exception object in the correct domain.
5812
5813         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
5814         formatting + make a copy a the input data.
5815
5816         * loader.c (mono_get_method_from_token): Methods which contain
5817         native code do not have entries in the ImplMap.
5818
5819         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
5820         Thanks to Gonzalo for spotting this.
5821         
5822         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
5823         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
5824
5825         * assembly.h (mono_assembly_load_from): Split the second part of 
5826         assembly loading into a new public function.
5827
5828         * exception.h (mono_get_exception_bad_image_format): New function.
5829
5830 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
5831
5832         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
5833         Enumerate all modules inside a dynamic assembly. Fixes #51293.
5834         
5835         * icall.c: Add new icall for creating dynamic methods.
5836
5837         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
5838
5839         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
5840
5841         * reflection.c (mono_reflection_create_dynamic_method): New icall to
5842         create a dynamic method.
5843
5844         * reflection.c (resolve_object): New helper function.
5845
5846         * reflection.c: Generalize ReflectionMethodBuilder and the functions
5847         which manipulate it so they can also work on dynamic methods.
5848
5849         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
5850         creating the MonoReflectionMethodAux structure if it is not needed.
5851         
5852         * reflection.h verify.c: Update after changes to object layout.
5853
5854         * reflection.c (method_builder_encode_signature): Fix compilation on
5855         gcc 2.95.x.
5856
5857 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
5858
5859         * appdomain.h: Added support for context static fields. Added static_data
5860           field to MonoAppContext and renamed thread_static_fields to a more
5861           generic special_static_fields in MonoAppDomain, since it can now contain
5862           context static fields.
5863         * domain.c: Updated hashtable name.
5864         * object.c: Replaced field_is_thread_static() for a more generic
5865           field_is_special_static() which also checks for context static attribute.
5866           In mono_class_vtable(), added support for static context fields.
5867         * threads.c: Changed methods that manage thread static fields to more
5868           generic methods so they can be reused both for thread and context static
5869           data.
5870         * threads.h: Declared some new methods.
5871
5872 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
5873
5874         * reflection.h: Update after changes to the managed types.
5875
5876         * reflection.c (encode_custom_modifiers): New helper function.
5877
5878         * reflection.c (method_encode_signature): Emit custom modifiers.
5879
5880         * reflection.c (field_encode_signature): Emit custom modifiers.
5881
5882 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
5883
5884         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
5885
5886         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
5887         implementation.
5888
5889         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
5890         icall.
5891
5892         * object.c (mono_field_get_value_object): New function.
5893
5894         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
5895         specific.
5896
5897 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
5898
5899         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
5900         return a preallocated out-of-memory exception instance.
5901
5902         * object.c (out_of_memory): Use the new function.
5903
5904         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
5905         flag is before the custom modifiers. Fixes #49802.
5906
5907 2003-11-16  Martin Baulig  <martin@ximian.com>
5908
5909         * class.c (mono_class_is_open_constructed_type): Implemented the
5910         MONO_TYPE_GENERICINST case.
5911
5912 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
5913
5914         * assembly.c (mono_assembly_fill_assembly_name): New function to
5915         fill out the MonoAssemblyName structure.
5916         (mono_assembly_open): Use the new function.
5917
5918         * icall.c (fill_reflection_assembly_name): New helper function.
5919
5920         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
5921         new function.
5922
5923         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
5924
5925 2003-11-15  Martin Baulig  <martin@ximian.com>
5926
5927         * class.c (mono_class_is_open_constructed_type): New public
5928         function; checks whether a type is an open constructed type,
5929         ie. whether it still contains type parameters.
5930         (mono_class_inflate_generic_type): If we're a type parameter and
5931         the inflated type is also a MONO_TYPE_(M)VAR, return the original
5932         type.
5933
5934         * class.h (MonoGenericInst): Added `guint32 is_open'.
5935
5936         * loader.c (method_from_methodspec): Check whether we're an open
5937         or closed constructed type and set `ginst->is_open'.
5938
5939         * reflection.c (mono_reflection_bind_generic_parameters): Check
5940         whether we're an open or closed constructed type and set
5941         `ginst->is_open'.
5942         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
5943         from open constructed types.
5944
5945 2003-11-15  Martin Baulig  <martin@ximian.com>
5946
5947         * reflection.c (mono_reflection_bind_generic_parameters): If we're
5948         a generic instance (instead of a generic type declaration) with
5949         unbound generic parameters, bind them to our actual types.
5950
5951 2003-11-14  Martin Baulig  <martin@ximian.com>
5952
5953         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
5954
5955         * reflection.c (mono_reflection_bind_generic_parameters): If we're
5956         an interface type, populate `res->interfaces' with instantiated
5957         versions of all the interfaces we inherit.
5958
5959 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
5960
5961         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
5962         when MONO_PATH is set but doesn't contain the install dir.
5963
5964 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5965
5966         * icall.c:
5967         (ves_icall_Type_GetInterfaces): don't return an interface twice when
5968         it's also implemented in base classes. Fixes bug #50927.
5969
5970 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
5971
5972         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
5973         if this method is called from a finalizer. Fixes #50913.
5974
5975 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
5976
5977         * threads.c: Implement VolatileRead/VolatileWrite
5978
5979         * icall.c: Add new icalls for VolatileRead/VolatileWrite
5980
5981 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
5982
5983         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
5984         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
5985         2.95.3.
5986
5987         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
5988         from Peter Ross (pro@missioncriticalit.com).
5989         
5990 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
5991
5992         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
5993
5994 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
5995
5996         * assembly.c (mono_assembly_load_references): Disable check because it
5997         triggers on older corlibs which lots of people have.
5998
5999 2003-11-12  Jackson Harper  <jackson@ximian.com>
6000
6001         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
6002         load corlib.dll if mscorlib.dll is not found.
6003         * assembly.h: Remove corlib name define.
6004         * class.c:
6005         * domain.c:
6006         * image.c: Change corlib name to mscorlib.
6007         
6008 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
6009
6010         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
6011
6012 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
6013
6014         * appdomain.h: Added loader_optimization here to sync with the C#
6015         code, and add disallow_binding_redirects field.
6016
6017 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
6018
6019         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
6020
6021         * reflection.c (mono_image_build_metadata): Fix crash on modules
6022         with no types.
6023
6024         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
6025
6026         * icall.c (ves_icall_get_method_info): Return callingConvention as
6027         well.
6028
6029         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
6030         namespaces from the EXPORTEDTYPE table as well.
6031
6032         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
6033         from all modules inside the assembly.
6034         
6035 2003-11-11  Martin Baulig  <martin@ximian.com>
6036
6037         * reflection.c (mono_reflection_bind_generic_parameters): Make
6038         this work for interfaces.
6039
6040 2003-11-11  Martin Baulig  <martin@ximian.com>
6041
6042         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
6043
6044 2003-11-11  Martin Baulig  <martin@ximian.com>
6045
6046         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
6047         "MonoInflatedMethod" and "MonoInflatedCtor".
6048
6049 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
6050
6051         * reflection.c (resolution_scope_from_image): Use the assembly table
6052         from the manifest module, since other modules don't have it.
6053
6054         * debug-helpers.c (mono_type_full_name): New helper function.
6055
6056         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
6057
6058         * image.c (mono_image_load_file_for_image): New public function which
6059         is a replacement for the load_file_for_image in class.c.
6060
6061         * assembly.c (mono_assembly_load_module): A wrapper for the function
6062         above which does assembly association and reference loading too.
6063
6064         * class.c (mono_class_from_name): Call mono_assembly_load_module.
6065
6066 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6067
6068         * appdomain.c: not all of the attributes for the full assembly name
6069         are required and the order doesn't matter. Fixes bug #50787.
6070
6071 2003-11-10  Dick Porter  <dick@ximian.com>
6072
6073         * locales.c: Use platform-endian UTF16
6074
6075 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
6076
6077         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
6078         
6079 2003-11-10  Martin Baulig  <martin@ximian.com>
6080
6081         * metadata.c
6082         (mono_metadata_load_generic_params): Make this actually work.
6083
6084         * reflection.c (mono_reflection_bind_generic_parameters): If our
6085         parent is a generic instance, pass all the `types' to it, no
6086         matter whether it has the same number of type parameters or not.
6087
6088 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
6089
6090         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
6091
6092         * assembly.c (mono_assembly_load_references): Move the image<->assembly
6093         assignment code to this function so it gets called recursively for all
6094         modules.
6095
6096         * image.c (load_modules): Remove the assembly assignment since it is
6097         now done by mono_assembly_load_references.
6098         
6099         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
6100         Add 'module' argument.
6101         (mono_module_get_types): New helper function.
6102         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
6103
6104 2003-11-08  Martin Baulig  <martin@ximian.com>
6105
6106         * class.c (mono_class_inflate_generic_method): Interface method
6107         don't have a header.
6108
6109         * reflection.c (mono_image_get_methodspec_token): Take an
6110         additional `MonoGenericInst *' argument instead of reading it from
6111         the header; this is necessary to support interfaces.
6112         (mono_image_create_token): Pass the `MonoGenericInst *' from the
6113         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
6114         (inflated_method_get_object): Take an additional `MonoGenericInst *'
6115         argument.
6116
6117         * reflection.h (MonoReflectionInflatedMethod): Added
6118         `MonoGenericInst *ginst'.
6119
6120 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
6121
6122         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
6123
6124 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
6125
6126         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
6127
6128 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
6129
6130         * reflection.c 
6131         (reflection_methodbuilder_from_method_builder):
6132         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
6133         initialize a ReflectionMethodBuilder structure.
6134         (mono_image_get_methodbuilder_token):
6135         (mono_image_get_ctorbuilder_token): New functions to emit memberref
6136         tokens which point to types in another module inside the same assembly.
6137
6138         * reflection.c: Use the new helper functions.
6139         
6140         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
6141
6142         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
6143         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
6144
6145         * reflection.c (resolution_scope_from_image): Emit a moduleref if
6146         neccesary.
6147
6148         * reflection.c (mono_image_build_metadata): Emit metadata only for the
6149         current module. Emit the manifest only for the main module.
6150
6151         * reflection.c (mono_image_create_token): Add assertion when a 
6152         memberref needs to be created.
6153
6154         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
6155
6156         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
6157         larger buffer for the custom attribute blob. Fixes #50637.
6158         
6159 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6160
6161         * threadpool.c: notify listener on async processing handles after
6162         invoking the async callback. Thanks to Zoltan.
6163
6164 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
6165
6166         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
6167         avoid code duplication.
6168
6169         * reflection.h (MonoDynamicImage): New type which is currently unused,
6170         but will be used through the ref.emit code in place of 
6171         MonoDynamicAssembly.
6172
6173         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
6174         object layout.
6175
6176         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
6177         a MonoDynamicImage instead of just a MonoImage.
6178         
6179         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
6180         icalls to ModuleBuilder but keep their semantics, so they will work
6181         with moduleb->assemblyb. This will change later.
6182         
6183 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
6184
6185         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
6186         object layout.
6187
6188         * reflection.c (mono_image_build_metadata): Avoid creation of a default
6189         main module, since it is now done by the managed code.
6190
6191 2003-11-03  Martin Baulig  <martin@ximian.com>
6192
6193         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
6194         `ginst->klass' here.
6195         (method_encode_methodspec): Don't use the `ginst->generic_method's
6196         klass if it's a generic instance, use `ginst->klass' in this case.
6197
6198 2003-11-03  Martin Baulig  <martin@ximian.com>
6199
6200         * reflection.c (mono_image_get_generic_method_param_info):
6201         Removed, use mono_image_get_generic_param_info() instead.
6202         (mono_image_get_type_info): Write the GenericParam table before
6203         the Method table.  This is neccessary because in the GenericParam
6204         table, type parameters of the class (ie. '!0' etc.) must come
6205         before the ones from its generic methods (ie. '!!0' etc).
6206
6207 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
6208
6209         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
6210
6211 2003-11-02  Martin Baulig  <martin@ximian.com>
6212
6213         * reflection.c (create_generic_typespec): Take a
6214         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
6215         the generic parameters from it.
6216
6217 2003-11-02  Martin Baulig  <martin@ximian.com>
6218
6219         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
6220         instead of a `MonoClassField *' since we just need the type.
6221         (create_generic_typespec): New static function.  Creates a
6222         TypeSpec token for a generic type declaration.
6223         (mono_image_get_generic_field_token): New static function.
6224         (mono_image_create_token): If we're a FieldBuilder in a generic
6225         type declaration, call mono_image_get_generic_field_token() to get
6226         the token.
6227
6228 2003-11-02  Martin Baulig  <martin@ximian.com>
6229
6230         * reflection.h
6231         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
6232         `MonoReflectionGenericInst *declaring_type' and
6233         `MonoReflectionGenericInst *reflected_type' fields.
6234
6235         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
6236         `MonoReflectionGenericInst *declaring_type' and a
6237         `MonoReflectionGenericInst *reflected_type' argument instead of a
6238         single `MonoReflectionGenericInst *type' one.  Set
6239         `res->declaring_type' and `res->reflected_type' from them.
6240         (mono_reflection_inflate_field): Likewise.      
6241
6242 2003-11-02  Martin Baulig  <martin@ximian.com>
6243
6244         * class.c (mono_class_setup_vtable): Don't store generic methods
6245         in the vtable.  
6246
6247 2003-11-02  Martin Baulig  <martin@ximian.com>
6248
6249         * reflection.h (MonoReflectionGenericInst): Added
6250         `MonoReflectionType *declaring_type'.
6251
6252         * reflection.c (mono_reflection_bind_generic_parameters): Use
6253         `if (tb->parent)' instead of `klass->parent'.
6254
6255 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
6256
6257         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
6258         with an empty ASSEMBLY table.
6259
6260         * reflection.c (mono_image_build_metadata): Avoid using the same loop
6261         variable in the inner and outer loops.
6262
6263 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
6264
6265         * metadata.h (mono_metadata_make_token): Put parentheses around macro
6266         argument.
6267
6268         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
6269         
6270         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
6271         icalls. Instead, do everything in managed code. This is needed since
6272         it is hard to restore the original domain etc. in unmanaged code in the
6273         presence of undeniable exceptions.
6274
6275         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
6276         New icalls to push and pop appdomain refs.
6277
6278 2003-10-31  Martin Baulig  <martin@ximian.com>
6279
6280         * class.c (inflate_generic_type): Renamed to
6281         mono_class_inflate_generic_type() and made it public.
6282
6283         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
6284         New interncall.
6285
6286         * loader.c (mono_field_from_memberref): Also set the retklass for
6287         typespecs.
6288
6289         * fielder.c (mono_image_get_inflated_field_token): New static
6290         method; creates a metadata token for an inflated field.
6291         (mono_image_create_token, fixup_method): Added support for
6292         "MonoInflatedField".
6293         (fieldbuilder_to_mono_class_field): New static function.
6294         (mono_reflection_inflate_field): New public function.
6295
6296         * reflection.h
6297         (MonoReflectionGenericInst): Added `MonoArray *fields'.
6298         (MonoReflectionInflatedField): New typedef.     
6299
6300 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
6301
6302         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
6303         for Solaris and other platforms without s6_addr16
6304
6305 2003-10-30  Martin Baulig  <martin@ximian.com>
6306
6307         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
6308         argument instead of two.
6309         (mono_class_inflate_generic_signature): Likewise.
6310         (inflate_generic_header): Likewise.
6311         (mono_class_inflate_generic_method): Likewise.  In addition, if
6312         `ginst->klass' is set, it becomes the new `method->klass'.
6313
6314         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
6315         field.
6316
6317         * reflection.c (encode_generic_method_sig): Write a 0xa as the
6318         first byte. [FIXME]
6319         (method_encode_methodspec): If we have generic parameters, create
6320         a MethodSpec instead of a MethodRef.
6321         (fixup_method): Added support for "MonoInflatedMethod" and
6322         "MonoInflatedCtor".
6323         (mono_image_create_token): Added support for "MonoInflatedMethod"
6324         and "MonoInflatedCtor".
6325         (inflated_method_get_object): New static function; returns a
6326         managed "System.Reflection.MonoInflatedMethod" object.
6327         (mono_reflection_bind_generic_method_parameters): Return a
6328         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
6329         (mono_reflection_inflate_method_or_ctor): Likewise.
6330         (mono_image_get_generic_method_param_info): Initialize unused
6331         fields to zero.
6332         (mono_image_get_generic_param_info): Likewise.
6333
6334         * reflection.h (MonoReflectionInflatedMethod): New public
6335         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
6336         "S.R.MonoInflatedCtor" classes.
6337
6338         * loader.c (method_from_memberref): If we're a TypeSpec and it
6339         resolves to a generic instance, inflate the method.
6340
6341 2003-10-28  Dick Porter  <dick@ximian.com>
6342
6343         * object.c (mono_runtime_run_main): Convert command-line arguments
6344         into utf8, falling back to the user's locale encoding to do so.
6345
6346 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
6347
6348         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
6349         at this time.
6350
6351         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
6352
6353         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
6354         up icalls at method definition time. Partially fixes #33569.
6355
6356 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
6357
6358         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
6359         marshalling of arrays. Fixes #50116.
6360
6361         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
6362
6363         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
6364         points to a vtable in the dying appdomain.
6365
6366         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
6367         listeners into unmanaged code inside the lock.
6368
6369         * object.c (mono_class_vtable): Turn off typed allocation in non-root
6370         domains and add some comments.
6371
6372 2003-10-25  Martin Baulig  <martin@ximian.com>
6373
6374         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
6375
6376         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
6377
6378         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
6379         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
6380         currently parsing.  Create the generic class and store it in
6381         `generic_inst->klass' before parsing the type arguments.  This is
6382         required to support "recursive" definitions; see mcs/tests/gen-23.cs
6383         for an example.
6384         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
6385         to support recursive typespec entries.
6386
6387         * class.c (mono_class_setup_parent): If our parent is a generic
6388         instance, we may get called before it has its name set.
6389         (mono_class_from_generic): Splitted into
6390         mono_class_create_from_generic() and mono_class_initialize_generic().
6391
6392 2003-10-25  Martin Baulig  <martin@ximian.com>
6393
6394         * icall.c (ves_icall_Type_BindGenericParameters): Return a
6395         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
6396         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
6397         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
6398
6399         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
6400         (create_typespec): Likewise.
6401         (mono_reflection_bind_generic_parameters): Return a
6402         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
6403         (mono_reflection_inflate_method_or_ctor): New public function.
6404
6405         * reflection.h (MonoReflectionGenericInst): New typedef.        
6406
6407 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
6408
6409         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
6410         inside the domain lock. Fixes #49993.
6411         
6412         * object.c (mono_class_vtable): When typed allocation is used, 
6413         allocate vtables in the GC heap instead of in the mempool, since the
6414         vtables contain GC descriptors which are used by the collector even
6415         after the domain owning the mempool is unloaded.
6416
6417         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
6418
6419         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
6420         reflect what it does. Also invalidate mempools instead of freeing
6421         them if a define is set.
6422
6423         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
6424         of the appdomain.
6425         
6426         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
6427         hold the finalizable objects in this domain.
6428
6429         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
6430         appdomain.
6431
6432         * appdomain.c (mono_domain_set): New function to set the current
6433         appdomain, but only if it is not being unloaded.
6434
6435         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
6436         appdomain which is being unloaded.
6437         
6438         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
6439         unloading of the root appdomain.
6440
6441         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
6442         icall to execute a method in another appdomain. Intended as a 
6443         replacement for InternalSetDomain, which can confuse the code 
6444         generation in the JIT.
6445
6446         * appdomain.c (mono_domain_is_unloading): New function to determine
6447         whenever an appdomain is unloading.
6448
6449         * appdomain.c (mono_domain_unload): New function to correctly unload
6450         an appdomain.
6451
6452         * assembly.c (mono_assembly_load_references): Check that an assembly
6453         does not references itself.
6454
6455         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
6456         domain manually, it asks the finalizer thread to do it, then waits for
6457         the result. Also added a timeout.
6458
6459         * icall.c: Register the new icalls.
6460
6461         * threads.h threads.c: Export the mono_gc_stop_world and 
6462         mono_gc_start_world functions.
6463         
6464         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
6465         function to fill out the mempool with 0x2a.
6466
6467 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
6468
6469         * reflection.h (MonoReflectionMethodAux): New structure to store
6470         information which is rarely used, thus is not in the MonoMethod
6471         structure.
6472
6473         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
6474         store the aux info.
6475
6476         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
6477         and marshalling info into the aux structure.
6478
6479         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
6480         from the aux structure.
6481
6482         * loader.c (mono_method_get_param_names): Retrieve the param names from
6483         the aux structure.
6484         
6485 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
6486
6487         * exception.h exception.c: Add AppDomainUnloadedException && fix 
6488         warning.
6489
6490 2003-10-21  Dick Porter  <dick@ximian.com>
6491
6492         * socket-io.c
6493         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
6494         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
6495
6496 2003-10-21  Martin Baulig  <martin@ximian.com>
6497
6498         * reflection.c (mono_reflection_bind_generic_parameters):
6499         `klass->parent' is NULL for interfaces.
6500
6501 2003-10-21  Martin Baulig  <martin@ximian.com>
6502
6503         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
6504
6505 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
6506
6507         * exception.c (mono_exception_from_name_msg): New helper function for
6508         creating exceptions and initializing their message field.
6509
6510         * exception.c: Simplify functions using the new helper.
6511
6512         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
6513         New function.
6514
6515         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
6516         mono_raise_exception, since otherwise gcc doesn't generate the function
6517         epilog for raise_exception, confusing the stack unwinding in the JIT.
6518         Fixes #45043.
6519
6520         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
6521         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
6522         Fixes #49499.
6523
6524 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6525
6526         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
6527         utf8.
6528
6529 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
6530
6531         * icall.c: Removed GetUninitializedObject method because
6532           AllocateUninitializedClassInstance does the same.
6533
6534 2003-10-18  Martin Baulig  <martin@ximian.com>
6535
6536         * class.c (inflate_generic_signature): Renamed to
6537         mono_class_inflate_generic_signature() and made it public.
6538         (my_mono_class_from_generic_parameter): New static function; if we
6539         don't already have the generic parameter's MonoClass, create a
6540         very simple one which is just used internally in the runtime and
6541         not passed back to managed code.
6542
6543         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
6544
6545         * metadata.h (MonoMethodSignature): Moved the
6546         `MonoGenericParam *gen_params' to the MonoMethodHeader.
6547         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
6548
6549         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
6550         ves_icall_MonoMethod_GetGenericArguments(); this is now an
6551         interncall on the MonoMethod class, not on MethodInfo.
6552         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
6553         calling mono_reflection_bind_generic_method_parameters() directly.
6554
6555         * loader.c (mono_method_get_signature): If this is a MethodSpec;
6556         return the already computed `method->signature'.
6557         (method_from_methodspec): New static function to load a method
6558         from a MethodSpec entry.
6559         (mono_get_method_from_token): Call the new method_from_methodspec()
6560         for MethodSpec tokens.  
6561         (mono_get_method_from_token): If we're a generic method, load the
6562         type parameters.
6563
6564         * reflection.c (mono_image_get_memberref_token): Allow
6565         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
6566         table.
6567         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
6568         (mono_image_create_token): First check whether it's a generic
6569         method (so we'd need to create a MethodSpec), then do the other
6570         two alternatives.
6571         (mono_reflection_bind_generic_method_parameters): Return a
6572         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
6573         called directly from the interncall.
6574
6575 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
6576
6577         * reflection.c (load_public_key): Move loading of the public key
6578         into managed code.
6579
6580         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
6581
6582         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
6583         fields.
6584
6585         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
6586         culture, hash_alg and public_key. Fixes #49555.
6587
6588 2003-10-17  Martin Baulig  <martin@ximian.com>
6589
6590         * class.h (MonoGenericInst): Moved this declaration here and added
6591         `MonoMethod *generic_method'.
6592
6593         * icall.c
6594         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
6595         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
6596
6597         * metadata.c (mono_metadata_type_equal): Two types of
6598         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
6599         index; ie. don't compare the address of the `MonoGenericParam'
6600         structure.
6601         (mono_metadata_load_generic_params): Removed the `MonoMethod
6602         *method' argument.
6603
6604         * metadata.h (MonoGenericInst): Moved declaration to class.h.
6605         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
6606
6607         * reflection.c (method_encode_signature): Encode the number of
6608         generic parameters.
6609         (encode_generic_method_sig): New static function.
6610         (method_encode_methodspec): New static function; creates an entry
6611         in the MethodSpec table for a generic method.
6612         (mono_image_get_methodspec_token): New static function.
6613         (mono_image_create_token): Call mono_image_get_methodspec_token()
6614         for generic methods.
6615         (mono_reflection_bind_generic_method_parameters): New public
6616         function.  Instantiates a generic method.
6617
6618 2003-10-16  Martin Baulig  <martin@ximian.com>
6619
6620         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
6621         *gen_params' here from MonoMethodHeader.
6622
6623         * metadata.c (mono_metadata_parse_method_signature): If we have
6624         generic parameters, initialize `method->gen_params' and then set
6625         the correct `type->data.generic_param' in all the parameters.
6626
6627 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
6628
6629         * threads.c (mono_threads_get_default_stacksize): New function to 
6630         return the default stacksize.
6631
6632         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
6633         termination of the finalizer thread, since the previous method had
6634         race conditions. Fixes #49628.
6635
6636         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
6637         as for the other managed threads.
6638
6639 2003-10-16  Martin Baulig  <martin@ximian.com>
6640
6641         * class.c (inflate_generic_signature): Copy `generic_param_count'
6642         and `gen_params'.
6643
6644         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
6645         New interncall.
6646
6647         * metadata.c (mono_metadata_parse_method_signature): Actually set
6648         the `method->generic_param_count' here.
6649         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
6650
6651 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
6652
6653         * object.h: Add a new field to TypedRef to simplify the implementation
6654         of the REFANY opcodes in the JIT.
6655
6656         * icall.c: Make use of the new field.
6657
6658         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
6659         dynamically.
6660
6661 2003-10-15  Martin Baulig  <martin@ximian.com>
6662
6663         * class.c (mono_class_from_gen_param): Renamed to
6664         mono_class_from_generic_parameter() and moved most of the
6665         functionality from mono_reflection_define_generic_parameter()
6666         here; ie. we create a "real" class here.
6667         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
6668         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
6669         previously been called.
6670
6671         * class.h (MonoGenericParam): Moved the declaration of this struct
6672         here from metadata.h and added `MonoMethod *method'.
6673
6674         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
6675         interncall.
6676
6677         * loader.c (mono_get_method_from_token): If we have any generic
6678         parameters, call mono_metadata_load_generic_params() to read them
6679         from the MONO_TABLE_GENERICPAR.
6680
6681         * metadata.c (mono_metadata_load_generic_params): Added
6682         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
6683
6684         * metadata.h (MonoMethodSignature): Replaced
6685         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
6686         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
6687
6688         * reflection.c (mono_reflection_define_generic_parameter): Moved
6689         most of the functionality into the new
6690         mono_class_from_generic_parameter(); set the `method' field if
6691         we're a method parameter.       
6692
6693 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
6694
6695         * marshal.c (emit_struct_conv): if native size is 0
6696         emit no code.
6697
6698 2003-10-14  Martin Baulig  <martin@ximian.com>
6699
6700         * icall.c: The generics API has changed in the spec since it was
6701         added to System.Type; these modifications make it match the spec
6702         again.
6703         (ves_icall_Type_GetGenericParameters): Renamed to
6704         `ves_icall_Type_GetGenericArguments'.
6705         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
6706         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
6707         `ves_icall_MonoType_get_HasGenericArguments'.
6708         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
6709         `ves_icall_MonoType_get_IsGenericParameter'.
6710         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
6711         this is no interncall anymore.
6712         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
6713         `ves_icall_TypeBuilder_get_IsGenericParameter'.
6714
6715 2003-10-14  Martin Baulig  <martin@ximian.com>
6716
6717         * reflection.c (mono_reflection_bind_generic_parameters): Also
6718         inflate generic methods if we're reading the class from IL.
6719
6720 2003-10-13  Martin Baulig  <martin@ximian.com>
6721
6722         * reflection.c (mono_reflection_define_generic_parameter): This
6723         method isn't called directly from the icall anymore; take a
6724         `MonoReflectionAssemblyBuilder *' so we can use this for type and
6725         method generic parameters.
6726         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
6727         (method_builder_encode_signature): Encode generic parameters.
6728         (mono_image_get_method_info): Write generic params to the
6729         MONO_TABLE_GENERICPARAM table.
6730
6731         * reflection.h (MonoReflectionMethodBuilder): Added
6732         `MonoArray *generic_params'.
6733
6734         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
6735
6736         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
6737         wrapper for mono_reflection_define_generic_parameter().
6738         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
6739
6740 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
6741
6742         * marshal.h: Add missing function to fix build.
6743
6744         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
6745         the SetLastError pinvoke attribute.
6746
6747         * marshal.c (mono_marshal_set_last_error): New helper function called
6748         by the generated code.
6749         
6750         * marshal.c (mono_mb_emit_branch): New helper function.
6751
6752         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
6753
6754         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
6755         classes as parameters and return values of delegates. Fixes #29256. 
6756
6757 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
6758
6759         * locales.c: use gint32 in non HAVE_ICU case
6760
6761 2003-10-11  Martin Baulig  <martin@ximian.com>
6762
6763         * mono-debug.c (mono_debug_add_method): Added a workaround for
6764         bug #48591.
6765
6766 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
6767
6768         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
6769         delegates passed to native code must use the STDCALL calling 
6770         convention. Fixes #35987.
6771
6772 2003-10-10  Martin Baulig  <martin@ximian.com>
6773
6774         * class.c (inflate_generic_type): If we're inflating for a generic
6775         type instance (and not for a generic method), return
6776         MONO_TYPE_MVAR unchanged.
6777
6778 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6779
6780         * string-icalls.c: Join ignores null strings in the source array.
6781         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
6782         * threads.c: GetAvailableTheads is slightly more accurate.
6783
6784 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
6785
6786         * threads.h threads.c : add mono_threads_set_default_stacksize
6787         and pass default to CreateThread calls.
6788
6789 2003-10-09  Dick Porter  <dick@ximian.com>
6790
6791         * icall.c:
6792         * locales.h:
6793         * locales.c: Internal calls for constructing CultureInfo and
6794         related objects from libicu (if its available.)
6795
6796 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
6797
6798         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
6799
6800 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6801
6802         * threadpool.c: added an argument to async_invoke_thread that is the
6803         item to process, pass the MonoAsyncResult to the thread start function
6804         when creating a new thread. This way we don't need to acquire any lock
6805         when we're creating a new thread. Readded a semaphore for faster
6806         response times (instead of that Sleep i added).
6807
6808 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
6809
6810         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
6811         get daylight change dates better on Windows, fix handling
6812         of platforms without tm_gmtoff.
6813
6814 2003-10-06  Martin Baulig  <martin@ximian.com>
6815
6816         * class.c (inflate_generic_method): Renamed to
6817         mono_class_inflate_generic_method() and made public.
6818         (mono_class_init): Don't inflate the generic methods here.
6819         (mono_class_from_generic): Added `gboolean inflate_methods'
6820         argument.  Inflate the methods here.
6821
6822         * loader.c (mono_method_get_param_names): Ignore instances of
6823         generic types for the moment.
6824
6825         * reflection.c (fixup_method): Added support for inflated methods.
6826         (mono_image_create_token): Use mono_image_get_methodref_token()
6827         for inflated methods.
6828         (mono_custom_attrs_from_param): Ignore instances of generic types
6829         for the moment.
6830         (mono_reflection_bind_generic_parameters): New public function.
6831         Moved all the functionality from
6832         ves_icall_Type_BindGenericParameters() here and added support for
6833         dynamic types.
6834         (mono_reflection_define_generic_parameter): Initialize
6835         `klass->methods' here.
6836
6837         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
6838         functionality into mono_reflection_define_generic_parameter().
6839         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
6840         TypeBuilder, return that TypeBuilder.
6841
6842 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6843
6844         * appdomain.c: removed mono_delegate_semaphore.
6845
6846         * threadpool.c:
6847         (mono_thread_pool_add): moved hash table creation inside and the thread 
6848         creation outside of the critical region.
6849         (mono_thread_pool_finish): removed obsolete code.
6850         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
6851         continue or exit the thread depending on the queue.
6852
6853 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
6854
6855         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
6856         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
6857         handle more bool marshalling options
6858
6859 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
6860
6861         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
6862         arrays of structs. Also add a more descriptive error message when
6863         a structure member is marshalled as LPArray.
6864
6865 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
6866
6867         * marshal.c (mono_marshal_get_native_wrapper): Add support for
6868         marshalling arrays of complex types. Fixes #29098. Also remove an
6869         usused and incomplete function.
6870
6871 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
6872
6873         * gc.c: report heap_size - free_bytes as total memory allocated
6874         (bug#49362).
6875
6876 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
6877
6878         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
6879         fix timezone handling problems on Windows.
6880         
6881         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
6882         asserts when the year is outside the range handled by ms the functions.
6883
6884         * class.c (setup_interface_offsets): If the class is an interface,
6885         fill out its interface_offsets slot.
6886
6887 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6888
6889         * threadpool.c: mark threadpool threads as background.
6890
6891 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
6892
6893         * decimal.c - define DECINLINE to nothing if not using GCC
6894
6895 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
6896
6897         * assembly.c: More refcount fixes.
6898
6899 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6900
6901         * string-icalls.c: if we're not trimming, return the same string.
6902         When not splitting, don't create a new string.
6903
6904 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6905
6906         * image.c:
6907         (mono_image_open): increment the ref_count inside the critical section.
6908
6909 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
6910
6911         * image.c (mono_image_open): Fix reference counting bug.
6912
6913 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
6914
6915         * marshal.c (mono_marshal_type_size) struct alignment changed for 
6916         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
6917         64bits. Avoid leak in mono_marshal_get_native_wrapper when
6918         mono_lookup_pinvoke_call throws.        
6919
6920 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
6921
6922         * reflection.c (mono_reflection_parse_type): Fix #49114.
6923
6924         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
6925         temporary workaround for cygwin header problem.
6926
6927         * object.c (mono_object_isinst): Synchronize this with the code
6928         generated by the JIT for casts.
6929
6930 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
6931
6932         * reflection.c (encode_type): Fix #38332.
6933
6934 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
6935
6936         * marshal.c (mono_marshal_method_from_wrapper): New function to return
6937         the original method from the wrapper method.
6938
6939 2003-09-25  Martin Baulig  <martin@ximian.com>
6940
6941         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
6942         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
6943         (ves_icall_Type_get_IsGenericInstance): New interncall.
6944
6945 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
6946
6947         * object.c: fix cast warning in big endian code.
6948
6949 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
6950
6951         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
6952         
6953 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6954
6955         * assembly.c: don't call check_env from mono_assembly_load. It's
6956         already done once in mono_assemblies_init and may cause headaches when
6957         multiple threads are loading assemblies.
6958
6959 2003-09-19  Martin Baulig  <martin@ximian.com>
6960
6961         * reflection.c (mono_reflection_define_generic_parameter): Don't
6962         allocate `klass->methods', set `klass->flags' to
6963         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
6964
6965 2003-09-18  Martin Baulig  <martin@ximian.com>
6966
6967         * class.c (mono_class_init): Don't create `class->methods' if it's
6968         already initialized.
6969
6970         * metadata.c (mono_metadata_load_generic_params): Make this
6971         actually work.
6972
6973         * reflection.c (mono_reflection_define_generic_parameter): Set
6974         parent class and interfaces from the constraints.
6975
6976         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
6977         to keep this struct in sync with the declaration in TypeBuilder.cs.
6978
6979 2003-09-17  Martin Baulig  <martin@ximian.com>
6980
6981         * metadata.h (MonoType): Replaced the data's `int type_param'
6982         field with `MonoGenericParam *generic_param'.
6983         (MonoGenericParam): Added `MonoClass *klass'.
6984
6985         * class.c (mono_class_from_gen_param): Removed the
6986         `MonoImage *image' and `int type_num' arguments.
6987
6988         * metadata.c (mono_metadata_parse_generic_param): New static
6989         method; creates a MonoGenericParam which just contains the index.
6990         (do_mono_metadata_parse_type): Call
6991         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
6992         MONO_TYPE_MVAR.
6993
6994         * reflection.c (mono_image_typedef_or_ref): Generic type
6995         parameters may be in the same assembly, but never use a typedef
6996         for them.
6997         (mono_reflection_define_generic_parameter): We're now creating a
6998         "real" class for the type parameter; it's now safe to call
6999         mono_class_from_mono_type() on the class'es type, it'll do the
7000         right thing.
7001
7002 2003-09-16  Martin Baulig  <martin@ximian.com>
7003
7004         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
7005         `symfile->range_entry_size' and `symfile->class_entry_size' here;
7006         the `symfile' data structure must be fully initialized before it
7007         gets added to the table.
7008
7009 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
7010
7011         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
7012
7013         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
7014         class init trampolines.
7015
7016 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
7017
7018         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
7019         to the built-in profiler to turn off time and allocation profiling
7020         respectively.
7021
7022 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
7023
7024         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
7025         g_direct_equal.
7026
7027         * debug-helpers.c (mono_method_full_name): Print the wrapper type
7028         in human readable form.
7029
7030 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
7031
7032         * reflection.c icall.c: Fixed warnings.
7033
7034         * image.c (load_class_names): Use a temporary hash table to hold the
7035         namespaces in order to avoid doing many string comparisons.
7036
7037         * image.h: Fix typo.
7038
7039         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
7040         Pass NULL instead of g_direct_equal to the GHashTable constructor 
7041         since the NULL case is short-circuited inside g_hash_table_lookup, 
7042         leading to better performance.  
7043
7044         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
7045         obtain the first custom attribute for a given index. Depends on the
7046         CustomAttribute table being sorted by the parent field.
7047
7048         * reflection.c (mono_custom_attrs_from_index): Use the new function 
7049         for better performance.
7050
7051 2003-09-07  Martin Baulig  <martin@ximian.com>
7052
7053         * class.c (mono_class_init): If we're a generic instance, inflate
7054         all our methods instead of loading them from the image.
7055         (mono_class_from_generic): Set `class->methods = gklass->methods'.
7056
7057 2003-09-07  Martin Baulig  <martin@ximian.com>
7058
7059         * mono-debug-debugger.c: Added support for constructors.
7060
7061 2003-09-06  Martin Baulig  <martin@ximian.com>
7062
7063         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
7064         New interncall.
7065
7066         * reflection.c (mono_reflection_setup_generic_class): Call
7067         ensure_runtime_vtable() to create the vtable.
7068
7069 2003-09-05  Martin Baulig  <martin@ximian.com>
7070
7071         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
7072         MONO_TYPE_MVAR.
7073
7074 2003-09-04  Martin Baulig  <martin@ximian.com>
7075
7076         * reflection.c (mono_reflection_define_generic_parameter): Generic
7077         parameters start with zero.
7078
7079 2003-09-04  Martin Baulig  <martin@ximian.com>
7080
7081         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
7082
7083         * reflection.h (MonoReflectionGenericParam): New typedef.
7084         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
7085         the generic parameters from the managed TypeBuilder.
7086
7087         * reflection.c (mono_reflection_define_generic_parameter): New function.
7088         (mono_reflection_create_runtime_class): Encode generic parameters.
7089         (mono_reflection_setup_generic_class): New function; this is
7090         called after adding adding all generic params to the TypeBuilder.
7091         (encode_type): Added MONO_TYPE_VAR.
7092
7093 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
7094
7095         * class.h class.c (mono_class_needs_cctor_run): Moved this method
7096         here from the JIT.
7097
7098         * assembly.h assembly.c: Moved the AOT loading code into an assembly
7099         load hook.
7100
7101 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
7102
7103         * reflection.h reflection.c class.h class.c: Delete duplicate 
7104         definition of mono_type_get_name () from reflection.c and export the
7105         one in class.c.
7106
7107         * class.c: Class loading fixes from Bernie Solomon 
7108         (bernard@ugsolutions.com).
7109
7110         * reflection.c: Endianness fixes from Bernie Solomon 
7111         (bernard@ugsolutions.com).
7112         
7113 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
7114
7115         * assembly.h assembly.c: Define a file format version for AOT
7116         libraries.
7117         
7118         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
7119
7120         * appdomain.h (MonoJitInfo): New field to determine whenever the
7121         code is domain neutral.
7122         
7123 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
7124
7125         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
7126
7127 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
7128
7129         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
7130         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
7131         Avoid caching the result since strings must be domain specific. Fixes
7132         #48050.
7133
7134 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
7135
7136         * marshal.c (mono_marshal_init): Make this callable multiple times
7137         since it is hard to find a correct place to call it.
7138
7139         * object.c (mono_runtime_class_init): Execute static constructors in
7140         the correct appdomain.
7141
7142         * image.c (build_guid_table): Handle the case when multiple images have
7143         the same GUID.
7144
7145 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7146
7147         * icall.c: added a couple of icalls for System.Web.
7148
7149 2003-08-28  Martin Baulig  <martin@ximian.com>
7150
7151         * icall.c (ves_icall_Type_BindGenericParameters): Use
7152         `klass->generic_inst' instead of `&klass->byval_arg' in the
7153         mono_type_get_object() call.  The returned type must be
7154         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
7155
7156 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
7157
7158         * NOTES: New file.
7159
7160         * object.c (mono_class_proxy_vtable): Make it thread safe.
7161
7162         * pedump.c: Fix warning.
7163
7164         * object.c appdomain.h: Get rid of metadata_section. 
7165         It is no longer needed and it was causing deadlocks with domain->lock.
7166
7167         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
7168
7169 2003-08-26  Martin Baulig  <martin@ximian.com>
7170
7171         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
7172
7173 2003-08-26  Martin Baulig  <martin@ximian.com>
7174
7175         * pedump.c (main): Call mono_metadata_init(),
7176         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
7177         and mono_loader_init().
7178
7179 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
7180
7181         * loader.h: Add missing include to fix build.
7182
7183         * image.h: mono_image_load_references is no more.
7184
7185         * assembly.c: Reworked assembly loading to make it really thread safe.
7186         After these changes, the assembly returned by mono_assembly_open is
7187         fully initialized, i.e. all its references assemblies are loaded.
7188
7189         * assembly.c (mono_image_load_references): Renamed to 
7190         mono_assembly_load_references, and made private, since clients no
7191         longer need to call it.
7192
7193         * class.c: Removed calls to mono_assembly_load_references, since it was
7194         a source of deadlocks.
7195
7196         * loader.h loader.c class.h class.c: Protect data structures using a 
7197         new lock, the loader lock.
7198
7199         * class.c (mono_class_setup_vtable): Create temporary hash tables and
7200         GPtrArrays only when needed.
7201
7202         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
7203         into empty structures by mcs. Fixes pinvoke7.cs.
7204         
7205         * domain.c (mono_init): Call a new initialization function.
7206
7207         * appdomain.c (mono_runtime_init): Call the new initializer function
7208         of the marshal module.
7209
7210         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
7211         inserted into empty structures by mcs. Fixes pinvoke7.cs.
7212
7213         * marshal.h marshal.c: Added locks around the wrapper caches to make
7214         this module thread safe.
7215
7216         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
7217         this argument. Fixes pinvoke1.exe.
7218
7219 2003-08-25  Lluis Sanchez <lluis@ximian.com>
7220
7221         * object.h: Added call_type field to MonoMethodMessage and the corresponding
7222         enumeration of values. Removed fields to store remote call output values in
7223         MonoAsyncResult. Not needed any more.
7224         * object.c: Initialize call_type and async_result fields in mono_message_init.
7225         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
7226         dispatching the message.
7227         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
7228         async call to finish. To do it use a message with EndInvoke call type.
7229
7230 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
7231
7232         * loader.h loader.c (mono_method_hash_marhal_info): New function which
7233         determines whenever a method has marshalling info.
7234
7235 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7236
7237         * assembly.c: fix the build on windows.
7238
7239 2003-08-22 Lluis Sanchez <lluis@ximian.com>
7240
7241         * object.cs: Fixed bug #47785.
7242
7243 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
7244
7245         * string-icalls.c (StringReplace): If their are no occurances of
7246         the old string found return a reference to the supplied
7247         string. This saves some memory and matches MS behavoir.
7248         
7249 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7250
7251         * socket-io.c: fixed compilation for systems that define AF_INET6
7252         and don't define SOL_IP/SOL_IPV6.
7253
7254 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
7255
7256         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
7257         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
7258
7259         * rawbuffer.c rawbuffer.h: Make this module thread safe.
7260
7261         * domain.c: Make this module thread safe.
7262
7263         * domain.c (mono_init): Call new initialization function.
7264
7265         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
7266         reference types too. Fixes #38812.
7267
7268         * image.c (mono_image_init): Fixed warnings.
7269
7270         * class.c (mono_class_from_typeref): Handle assembly load failure
7271         correctly.
7272
7273         * appdomain.c (add_assemblies_to_domain): Handle the case when
7274         the references of an assembly are not yet loaded.
7275
7276         * metadata.c image.c assembly.c: Moved initialization of global
7277         variables to a separate function called at startup since lazy 
7278         initialization of these variables is not thread safe.
7279         
7280         * image.c assembly.c: Made this module thread safe by adding locks in 
7281         the appropriate places.
7282
7283         * domain.c (mono_init): Call the new initialization functions of the
7284         three modules.
7285
7286 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
7287
7288         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
7289           make a direct call. It is proxy's work to make the call asynchronous.
7290           mono_delegate_end_invoke(): If the targe is a proxy, just collect
7291           the return values.
7292         * object.cs: mono_method_call_message_new(): read AsyncResult and
7293           state object from parameters list, if this info is requested.
7294         * object.h: Added fields to store remote call output values in
7295           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
7296
7297 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
7298
7299         * object.h: add needed fields to MonoThread.
7300         * threads.c, threads.h: allow registering a function to cleanup data
7301         allocated per thread by the JIT.
7302
7303 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
7304
7305         * loader.h: portability fix by Bernie Solomon
7306         * <bernard@ugsolutions.com>.
7307
7308 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
7309
7310         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
7311         return a MonoArray. This simplifies the code and also ensures that
7312         the cache allways contains an object reference as a value.
7313
7314         * icall.c (ves_icall_get_parameter_info): Simplified using the new
7315         function.
7316
7317 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7318
7319         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
7320         fixes a problem with byte ordering when getting the address family for
7321         a socket.
7322
7323 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
7324
7325         * .cvsignore: Added monosn.
7326
7327         * reflection.h reflection.c loader.c: Added support for parameter
7328         marshalling to dynamically created types. Fixes #47295.
7329
7330 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
7331
7332         * rand.c: remove useless warnings.
7333
7334 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
7335
7336         * class.c: implemented ldtoken for methods and fieldrefs.
7337
7338 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7339
7340         * threadpool.c: when mono_async_invoke was called, no one took care of
7341         monitoring the queue. So if the method invoked took some time and we
7342         got new async invoke requests after 500 ms (the thread created waited
7343         that long in WaitForSingleObject), the new async invoke was not called
7344         until the previous one finished.
7345
7346         This is fixed now. Thanks to Totte for helping with it.
7347
7348 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7349
7350         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
7351
7352 2003-08-11  Martin Baulig  <martin@ximian.com>
7353
7354         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
7355
7356 2003-08-06  Martin Baulig  <martin@ximian.com>
7357
7358         * mono-debug-debugger.c: Added support for static fields,
7359         properties and methods.
7360
7361 2003-08-06  Martin Baulig  <martin@ximian.com>
7362
7363         * mono-debug-debugger.c: Don't store the MonoString's vtable to
7364         make this work for applications with multiple application domains.
7365
7366 2003-08-04  Martin Baulig  <martin@ximian.com>
7367
7368         * mono-debug-debugger.c: Completely reworked the type support; the
7369         most important thing is that we're now just using one single
7370         `MonoType' instance per type.
7371
7372 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
7373
7374         * mono-endian.h, mono-endian.c, icall.c: Added icall
7375         ves_icall_System_Double_AssertEndianity to assert double word endianity
7376         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
7377
7378 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
7379
7380         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
7381         support, icalls and fixes.
7382
7383 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
7384
7385         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
7386         classes that are a punctuation character in .NET is not the same a
7387         g_unichar_ispunct.
7388
7389 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
7390
7391         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
7392
7393 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
7394
7395         * icall.c: Add new MemCopy internalcall.
7396         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
7397         Simplified code; It is not necessary to handle all the cases here,
7398         as the C# code takes care of it.  Only handle the case of the name
7399         resource embedded into the assembly.
7400
7401         Changed signature to return the data pointer and the size of the
7402         data. 
7403
7404 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
7405
7406         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
7407         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
7408
7409 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
7410
7411         * socket-io.c: ignore EINTR error in select.
7412
7413 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
7414
7415         * class.h, class.c: removed unused subclasses field in MonoClass.
7416
7417 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
7418
7419         * icall.c: improve fix of get_base_definition(). If the parent class
7420           doesn't have the mehod, look at the parent of the parent.
7421         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
7422           to check if a parameter is an in or out parameter
7423           (PARAM_ATTRIBUTE_IN is not set by default).
7424           mono_method_return_message_restore(): Use mono_class_value_size to
7425           get the size of a value type. mono_type_stack_size (parameterType)
7426           does not return the correct value if parameterType is byRef.
7427           mono_load_remote_field(), mono_load_remote_field_new(),
7428           mono_store_remote_field(), mono_store_remote_field_new():
7429           raise exception if the remote call returns an exception.
7430
7431 2003-07-28  Martin Baulig  <martin@ximian.com>
7432
7433         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
7434         method.  This is a wrapper around mono_runtime_invoke() which
7435         boxes the instance object if neccessary.
7436
7437 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
7438
7439         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
7440         metadata.h, row-indexes.h, verify.c: first cut of generics support.
7441
7442 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
7443
7444         * icall.c: disable mcs bug workaround.
7445
7446 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
7447
7448         * object.c (mono_runtime_class_init): Take the metadata_section
7449         mutex before obtaining the domain mutex.
7450
7451         * appdomain.h: Added definition of metadata_section mutex here. 
7452
7453         * object.c: define metadata_mutex here.
7454
7455 2003-07-24  Ravi Pratap  <ravi@ximian.com>
7456
7457         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
7458         fixed.
7459
7460 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
7461
7462         * reflection.c: Fix bug #46669
7463
7464 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7465
7466         * exception.c:
7467         * exception.h:
7468         * icall.c:
7469         * object.h: fill in the type name for TypeLoadException.
7470
7471 2003-07-23  Ravi Pratap  <ravi@ximian.com>
7472
7473         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
7474         relationship between TypeBuilders while compiling corlib) and bug
7475         45993 (Array types returned from the runtime while compiling
7476         corlib were from the loaded corlib).
7477
7478 2003-07-22  Martin Baulig  <martin@ximian.com>
7479
7480         * mono-debug-debugger.c: Reworked the type support a bit more;
7481         distinguish between types and classes.
7482
7483 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
7484
7485         * icall.c: add IsArrayImpl icall.
7486
7487 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
7488
7489         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
7490         initializing real_size only once. Also fix bug #46602.
7491
7492 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
7493
7494         * object.c: Renamed mono_metadata_section to metadata_section.
7495
7496 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
7497
7498         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
7499           empty array if the type is an array. Fixed.
7500           ves_icall_MonoMethod_get_base_definition: if the base method
7501           is abstract, get the MethodInfo from the list of methods of
7502           the class.
7503         * reflection.c: ParameterInfo.PositionImpl should be zero-based
7504           and it was 1-based. Fixed in mono_param_get_objects.
7505
7506 2003-07-20  Martin Baulig  <martin@ximian.com>
7507
7508         * mono-debug.h: Set version number to 31.
7509         (mono_debug_init): Added `MonoDomain *' argument.
7510
7511         * mono-debug-debugger.c: Reworked the type support; explicitly
7512         tell the debugger about builtin types; pass the `klass' address to
7513         the debugger.
7514
7515 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
7516
7517         * image.c: Allow new metadata tables to be loaded without a
7518         warning. Also update the warning message to give the new constant value.
7519                 
7520 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
7521
7522         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
7523         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
7524         array type representation changes.
7525
7526 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
7527
7528         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
7529         on Environment.Exit () call.
7530
7531 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
7532
7533         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
7534         requires a matching corlib.
7535
7536 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
7537
7538         * Changelog: My editor decided to add a CR to each line. Sorry about that.
7539           Committed again without the CRs.
7540         
7541 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
7542
7543         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
7544           getting it from the "this" socket instance. Did not work
7545           if the socket is a subclass of Socket.
7546           Also fixed bug #35371.
7547
7548 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
7549
7550         * metadata.c: fixed size for TypedByRef.
7551         * loader.c: when searching for a method, consider the vararg amrker.
7552         * unicode.c, decimal.c: constify some arrays.
7553
7554 2003-07-15  Dick Porter  <dick@ximian.com>
7555
7556         * socket-io.c: Fixed compilation for gcc < 3.2.
7557
7558         Fixed compilation for machines that don't have AF_INET6 (thanks to
7559         Bernie Solomon <bernard@ugsolutions.com> for that part.)
7560
7561         Fixed compile warnings.
7562         
7563         Fixed formatting and line endings.
7564
7565 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
7566
7567         * socket-io.h:
7568         * socket-io.c: Added IPv6 support.
7569
7570 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
7571
7572         * class.c (mono_class_is_assignable_from): New function to implement
7573         the is_assignable_from logic. Used by mono_object_isinst, 
7574         Type::IsAssignableFrom () and the interpreter.
7575
7576         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
7577         Object, even interfaces.
7578         
7579         * object.c (mono_object_isinst): Implement in terms of 
7580         is_assignable_from.
7581
7582         * icall.c (ves_icall_type_is_assignable_from): New icall.
7583
7584 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
7585
7586         * domain.c (foreach_domain): fix compiler warning.
7587
7588 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
7589
7590         * image.c (load_metadata_ptrs): use g_strndup because strndup is
7591         not available on all plattforms
7592
7593 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
7594
7595         * image.h image.c: Store the metadata version string in MonoImage.
7596         * icall.c: New icall to retrieve the image version.
7597         * reflection.c (create_dynamic_image): Fill in the image version field
7598         * reflection.c (build_compressed_metadata): Use the image version
7599         from the image structure.
7600
7601 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7602
7603         * appdomain.c: modified comment.
7604         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
7605         That will be its last iteration when mono_gc_cleanup is called from
7606         mono_runtime_cleanup and before the domain is unloaded.
7607
7608         Fixes bug #45962.
7609
7610 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
7611
7612         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
7613         attributes.
7614
7615 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
7616
7617         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
7618         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
7619         Bernie Solomon <bernard@ugsolutions.com>.
7620
7621 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
7622
7623         * object.c, object.h: provide mono_object_new_fast() for faster
7624         allocation in some special cases.
7625
7626 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
7627
7628         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
7629         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
7630
7631 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
7632
7633         * threadpool.c: fix leaks.
7634
7635 2003-07-01  Dick Porter  <dick@ximian.com>
7636
7637         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
7638         using MonoGHashTables.  Fixes threadpool bug posted to list.
7639
7640 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
7641
7642         * image.h, image.c: added support to load an assembly from a byte array.
7643         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
7644         assembly bundle support.
7645
7646 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
7647
7648         * threadpool.c (mono_thread_pool_add): keep a reference to the
7649         AsyncResult to prevent GC
7650
7651 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
7652
7653         * class.c: leak fix.
7654
7655 2003-06-25  Dick Porter  <dick@ximian.com>
7656
7657         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
7658         for the async object, the WaitHandle object will close the handle.
7659         Fixes bug 45321.
7660
7661 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
7662
7663         * class.c: in mono_array_class_get (), lookup from the hash with the
7664         same type we insert: this works around a bug in
7665         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
7666         lluis. The real fix will have to wait for after the release.
7667
7668 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
7669
7670         * icall.c: fix memory leak when getting type members.
7671
7672 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
7673
7674         * reflection.c: added more pubtoken special cases.
7675
7676 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
7677
7678         * class.c: handle field offset correctly when class size
7679         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
7680
7681 2003-06-20  Martin Baulig  <martin@ximian.com>
7682
7683         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
7684         *image' field.
7685
7686 2003-06-20  Martin Baulig  <martin@ximian.com>
7687
7688         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
7689
7690 2003-06-20  Martin Baulig  <martin@ximian.com>
7691
7692         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
7693         just distinguish between variables in registers and variables at
7694         an offset relative to a register.
7695
7696 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7697
7698         * icall.c: #ifdef out latest changes until mcs is fixed.
7699
7700 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
7701
7702         * icall.c: return members in metadata order.
7703
7704 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
7705
7706         * icall.c: avoid infinite loop in GetTimeZoneData.
7707
7708 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
7709
7710         * icall.c: added Marshal.Prelink/All icalls.
7711
7712 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
7713
7714         * object.c, object.h: fix warnings and do some overflow checking
7715         when creating arrays.
7716
7717 2003-06-17  Dick Porter  <dick@ximian.com>
7718
7719         * file-io.h:
7720         * file-io.c: File attributes need to be tweaked slightly when
7721         passed from the managed to the w32 world.
7722
7723 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
7724         * profiler.h profiler-private.h profiler.c: Rework last patch
7725         based on suggestion by Paolo.
7726         
7727 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
7728
7729         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
7730         instruction level coverage data collection.
7731         * profiler.h profiler.c (: Added new callback function which can be
7732         used by the profiler to limit which functions should have coverage
7733         instrumentation.
7734         * profiler.c (mono_profiler_load): Call g_module_build_path to
7735         generate the file name of the profiler library.
7736
7737 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
7738
7739         * profiler.c, profiler.h, profiler-private.h: added basic block 
7740         coverage profiling API.
7741
7742 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
7743
7744         * reflection.c (mono_reflection_create_runtime_class): Add support
7745         for events in dynamically generated code.
7746
7747         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
7748         not allocated.
7749
7750 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
7751
7752         * icall.c: when getting timezone info, return reasonable values if we
7753         can't get the actual data.
7754
7755 2003-06-14  Dick Porter  <dick@ximian.com>
7756
7757         * threads.c (start_wrapper): Remove the reference to the thread
7758         object in the TLS data, so the thread object can be finalized.
7759         This won't be reached if the thread threw an uncaught exception,
7760         so those thread handles will stay referenced :-( (This is due to
7761         missing support for scanning thread-specific data in the Boehm GC
7762         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
7763
7764 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
7765
7766         * reflection.c: ensure streams and tables are first allocated with
7767         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
7768
7769 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
7770
7771         * icall.c: fixed GetElementType for byrefs (bug# 44792).
7772
7773 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
7774
7775         * reflection.c (mono_reflection_create_runtime_class): Add support for
7776         properties to dynamically created classes.
7777         * reflection.c: Fix a few places where non-MonoObjects were inserted
7778         into the tokens hashtable.
7779
7780 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
7781
7782         * object.c: some support to handle out of memory exceptions.
7783
7784 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
7785
7786         * marshal.c (mono_marshal_get_native_wrapper): support reference
7787         return types
7788
7789 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
7790
7791         * object.h, object.c: more portability stuff from Bernie Solomon.
7792         Unexport mono_object_allocate(). Added mono_object_unbox ().
7793         Set exitcode when an unhandled exception is thrown.
7794
7795 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
7796
7797         * marshal.c (mono_marshal_get_native_wrapper): use custom
7798         marshaler for return types.
7799
7800 2003-06-10  Dick Porter  <dick@ximian.com>
7801
7802         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
7803         ip_mreq is available
7804
7805 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
7806
7807         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
7808         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
7809         by Bernie Solomon <bernard@ugsolutions.com>.
7810
7811 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
7812
7813         * gc.c (mono_gc_init): Avoid error message on shutdown when
7814         GC_DONT_GC=1 is used.
7815
7816         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
7817         New icall to return the GUID of a module.
7818
7819 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
7820
7821         * class.c: ensure instance size always includes the parent's size
7822         even whem class size is set explicitly (fixes bug#44294).
7823
7824 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
7825
7826         * profiler.h, profiler.c: made the simple profiler thread-safe,
7827         get more accurate timing info. Allow the loading of an
7828         externally-developed profiler module.
7829
7830 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
7831
7832         * marshal.c (mono_marshal_get_native_wrapper): improved
7833         class/byref arguments.
7834         (mono_marshal_get_native_wrapper): better string marshaling support.
7835
7836 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
7837
7838         * class.c: ensure .pack and .size are handled correctly and
7839         simplified layout of static fields.
7840
7841 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
7842
7843         * appdomain.c
7844         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
7845
7846         * loader.c (mono_lookup_pinvoke_call): look for modules in the
7847         current directory (fix bug 44008)
7848
7849 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
7850
7851         * marshal.c (mono_marshal_get_native_wrapper): started support for
7852         custom marshalers.
7853         (mono_delegate_to_ftnptr): consider marshalling specifications
7854
7855 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
7856
7857         * reflection.c, reflection.h: emit custom marshal info.
7858
7859 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7860
7861         * object.c: free the GError.
7862         * icall.c: added CloseEvent_internal.
7863         * threads.[ch]:
7864         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
7865         call.
7866
7867 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
7868
7869         * loader.c (mono_method_get_signature): Add support for dynamic
7870         assemblies.
7871
7872 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
7873
7874         * reflection.c: fixed bug #43905.
7875
7876 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
7877
7878         * class.c, domain.c, icall.c, metadata.h, object.h: support for
7879         handling TypedReference and ArgIterator.
7880         * loader.c, loader.h: added function to get signature at call site.
7881
7882 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
7883
7884         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
7885         data readonly. Buglets and warning fixes. Some MethodSpec support.
7886
7887 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
7888
7889         * class.h, class.c, object.c: remove relative numbering support.
7890
7891 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
7892
7893         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
7894         free the string, until we get a chance to fix Gtk#
7895
7896 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7897
7898         * marshal.c: revert last patch.
7899
7900 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
7901
7902         * icall.c: updates for new mono_class_vtable() not calling
7903         the type constructor anymore.
7904
7905 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
7906
7907         * object.h, object.c: separate vtable creation from type
7908         initialization. Make running the .cctor thread safe.
7909
7910 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
7911
7912         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
7913
7914 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
7915
7916         * loader.c (mono_get_method): consider calling convention
7917
7918 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
7919
7920         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
7921         to return the invisible global type for a module.
7922
7923         * reflection.c (mono_image_build_metadata): Emit global fields too.
7924
7925 2003-05-20  Peter Williams  <peterw@ximian.com>
7926
7927         * loader.c (mono_lookup_internal_call): Add a few newlines.
7928
7929 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
7930
7931         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
7932         literal strings.
7933
7934         * appdomain.c (set_domain_search_path): Recalculate search path when
7935         AppDomainSetup.PrivateBinPath changes.
7936
7937         * object.c (mono_class_compute_gc_descriptor): It turns out some
7938         parts of the class libs (like System.Thread) holds pointers to
7939         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
7940         to treat native int a pointer type here.
7941         
7942 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
7943
7944         * appdomain.h, domain.c: add hashtable for jump target resolution.
7945
7946 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
7947
7948         * reflection.h reflection.c icall.c: Added new icalls 
7949         GetManifestResourceInfoInternal, GetModulesInternal and support
7950         infrastructure.
7951
7952 2003-05-16  Dick Porter  <dick@ximian.com>
7953
7954         * icall.c:
7955         * file-io.h:
7956         * file-io.c: Implement System.IO.MonoIO::GetTempPath
7957
7958 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
7959
7960         * object.c: mono_store_remote_field: little fix to previous patch.
7961
7962 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
7963
7964         * class.c: add constructors to array classes.
7965         * icall.c: special case array construction for InternalInvoke (),
7966
7967 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
7968
7969         * class.h class.c reflection.c object.c: Added support for field
7970         defaults in dynamically generated classes.
7971
7972 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
7973
7974         * reflection.c: properly encode charset for ddlimport.
7975
7976 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
7977
7978         * threads.c: allow compiling without GC.
7979
7980 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
7981
7982         * appdomain.h, object.c, object.h, threads.c, threads.h: added
7983         handling of thread static data.
7984
7985 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
7986
7987         * reflection.h, reflection.c: added mono_custom_attrs_free ().
7988
7989 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
7990
7991         * class.c (mono_array_class_get): always set the serializable flags
7992         (mono_array_class_get): always set the SEALED attribute for array types
7993
7994 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
7995
7996         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
7997         attributes (fix for bug 42021).
7998
7999 2003-05-12  Dick Porter  <dick@ximian.com>
8000
8001         * gc.c: Don't run finalizers when the finalizer thread is
8002         finishing up, because the default domain has already been
8003         destroyed.
8004
8005 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
8006
8007         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
8008         value is null, we should throw an exception.   This is slightly
8009         different than the other conventions used for the constructor.
8010
8011 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8012
8013         * socket-io.c: fixed windows build.
8014
8015 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8016
8017         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
8018
8019 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
8020
8021         * object.c (mono_string_new_wrapper): Compatibility fix for MS
8022         compilers.
8023
8024 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
8025
8026         * class.c (mono_class_layout_fields): Add experimental GC aware
8027         auto layout facility. Requires class library changes to work correctly.
8028
8029         (mono_class_setup_vtable): Avoid overriding explicit interface
8030         method implementations. Fixes iface3.exe test.
8031
8032         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
8033         object reference.
8034         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
8035         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
8036
8037         * metadata.h: Add new type classification macro which determines
8038         whenever the type holds an object reference.
8039
8040 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
8041
8042         * marshal.c (mono_marshal_get_native_wrapper): cleanups
8043
8044 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
8045
8046         * gc.c (finalizer_thread): Work around a GC bug.
8047
8048 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
8049
8050         * marshal.c (emit_struct_conv): allow unions
8051
8052         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
8053
8054 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
8055
8056         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
8057
8058 2003-05-06  Martin Baulig  <martin@ximian.com>
8059
8060         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
8061
8062 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8063
8064         * socket-io.c:
8065         (Select_internal): allow NULLs, don't create arrays if not needed.
8066         Coupled with Socket.cs changes.
8067
8068         * threadpool.c:
8069         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
8070         register a finalizer for it that will close the semaphore handle. This
8071         fixes the leak and make Lupus' test run with > 4080 loops.
8072
8073 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
8074
8075         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
8076         Jerome Laban (bug #42287)
8077
8078 2003-05-02  Martin Baulig  <martin@ximian.com>
8079
8080         * debug-mono-symfile.h
8081         (MonoSymbolFile): Moved declaration into mono-debug.h.
8082         (MonoDebugMethodJitInfo): Likewise.
8083         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
8084         argument.
8085         (_mono_debug_address_from_il_offset): Take a
8086         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
8087
8088         * mono-debug.h
8089         (MonoDebugDomainData): New struct.
8090         (mono_debug_get_domain_data): New function.
8091         (mono_debug_add_method): Take an additional `MonoDomain *'
8092         argument.
8093         (mono_debug_source_location_from_address): Likewise.
8094         (mono_debug_il_offset_from_address): Likewise.
8095         (mono_debug_address_from_il_offset): Likewise.
8096
8097 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
8098
8099         * reflection.c: one more check for null type in custom attrs.
8100
8101 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8102
8103         * reflection.c: avoid warning (comparison is always false due to limited
8104         range of data type).
8105
8106 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8107
8108         * icall.c: throw an exception in Type.GetField if the argument 'name'
8109         is NULL.
8110
8111 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
8112
8113         * reflection.c: fixed handling of enums in named arguments to custom
8114         attributes (bug #42123).
8115
8116 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
8117
8118         * reflection.c: use the right array element type and handle
8119         a null for a Type argument, too.
8120
8121 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
8122
8123         * reflection.c: handle arrays as arguments to custom attributes.
8124
8125 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
8126
8127         * reflection.c: handle a string value in a custom attr
8128         ctor that takes an object.
8129
8130 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
8131
8132         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
8133         (fix bug #42063)
8134
8135 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
8136
8137         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
8138
8139 2003-04-27  Martin Baulig  <martin@ximian.com>
8140
8141         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
8142         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
8143         MONO_DEBUGGER_EVENT_BREAKPOINT.
8144         (mono_breakpoint_trampoline_code): Removed.
8145         (mono_debugger_event_handler): The last argument is now a
8146         `guint32'.
8147         (mono_debugger_insert_breakpoint_full): Removed the
8148         `use_trampoline' argument.
8149         (mono_debugger_method_has_breakpoint): Likewise.
8150         (mono_debugger_trampoline_breakpoint_callback): Renamed to
8151         mono_debugger_breakpoint_callback(); take the method and
8152         breakpoint number as arguments.
8153
8154 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
8155
8156         * metadata.c: fix off by one when loading parameters attributes.
8157
8158 2003-04-24  Martin Baulig  <martin@ximian.com>
8159
8160         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
8161
8162 2003-04-24  Martin Baulig  <martin@ximian.com>
8163
8164         * mono-debug-debugger.c: Moved all code which interacts with the
8165         Mono Debugger here.
8166
8167         * debug-mono-symfile.c: This code now just deals with the symbol
8168         file itself, the debugger code is now in mono-debug-debugger.c.
8169
8170 2003-04-23  Martin Baulig  <martin@ximian.com>
8171
8172         * mono-debug.c (mono_debug_source_location_from_il_offset):
8173         New method; like mono_debug_source_location_from_address(), but
8174         takes an IL offset instead of a machine address.
8175
8176 2003-04-23  Martin Baulig  <martin@ximian.com>
8177
8178         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
8179         `line' field; this is now computed by the debugger.
8180
8181 2003-04-23  Martin Baulig  <martin@ximian.com>
8182
8183         * mono-debug.[ch]: New files.  This is the new debugging interface.
8184
8185         * mono-debug-debugger.[ch]: New files.  Moved all code which
8186         interacts with the Mono Debugger here.
8187
8188 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
8189
8190         * domain.c (mono_init): initialize mono_defaults.monitor_class
8191
8192 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
8193
8194         * reflection.c (method_encode_code): Add a spicy exception to help
8195         future compiler authors.
8196
8197 2003-04-21  Martin Baulig  <martin@ximian.com>
8198
8199         * icall.c
8200         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
8201         Make this work with relative pathnames; g_filename_to_uri() needs
8202         an absolute filename.
8203
8204 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
8205
8206         * icall.c: Track name changes in Object and ValueType.
8207
8208 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
8209
8210         * metadata.c (mono_type_stack_size): size should be a multiple of
8211         sizeof (gpointer)
8212
8213 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8214
8215         * gc.c:
8216         (internal_domain_finalize): moved into mono_domain_finalize. No need
8217         to create another thread because the finalizers will be run in the
8218         finalizer thread.
8219         
8220         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
8221         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
8222         to be run (MS does this too).
8223
8224 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
8225
8226         * object.c (mono_class_compute_gc_descriptor): Update comment.
8227
8228         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
8229
8230         * image.h: Add synchronized wrapper cache.
8231
8232         * image.c (do_mono_image_open): Initialize cache.
8233
8234         * reflection.c (create_dynamic_mono_image): Initialize cache.
8235
8236 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8237
8238         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
8239         ves_icall_System_Buffer_ByteLengthInternal.
8240
8241 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
8242
8243         * reflection.c: setup klass->nested_in earlier. Allow
8244         a dash in the assembly name.
8245
8246 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
8247
8248         * metadata.c (mono_type_to_unmanaged): dont access
8249         type->data.klass for MONO_TYPE_OBJECT
8250         (mono_type_to_unmanaged): consider System.Delegate class
8251
8252 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
8253
8254         * class.c: just setup supertypes in the proper place instead of
8255         initializing the full element class for arrays.
8256
8257 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
8258
8259         * class.c: ensure the element class of arrays is initialized.
8260         Setup the supertype info for array classes, too.
8261
8262 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
8263
8264         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
8265
8266 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8267
8268         * Makefile.am: re-added -m option when running cygpath. This way,
8269         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
8270         separator.
8271         * mono-config.c: same codepath for locating mono config file for WIN32
8272         and the rest.
8273         * assembly.c: if mono_assembly_setrootdir is called, don't override
8274         the value set.
8275
8276 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8277
8278         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
8279         MONO_ASSEMBLIES variable.
8280
8281 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
8282
8283         * icall.c: added Assembly::GetNamespaces() icall.
8284
8285 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8286
8287         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
8288
8289 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
8290
8291         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
8292         * object.c: fixed bug in the construction of vtable for proxies
8293
8294 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
8295
8296         * object.c (mono_array_new): Mark mono_array_new as an icall.
8297
8298 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8299
8300         * class.c: fixed test for public method when overriding interfaces.
8301         Closes bug #40970.
8302
8303 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
8304
8305         * appdomain.h, domain.c: added mono_domain_foreach() to
8306         be able to access the currently loaded appdomains.
8307         * object.c: make string interning work across sppdomains.
8308         Mark some functions for use as icalls.
8309
8310 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
8311
8312         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
8313
8314         * reflection.h reflection.c: Allocate long living data using 
8315         GC_MALLOC_ATOMIC so the collector does not need to scan it.
8316
8317         * reflection.c: Double the allocation size in streams instead of
8318         increasing it, to prevent unneccesary copying on large assemblies.
8319         
8320         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
8321         creation if the assembly does not have the Run flag set.
8322
8323 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
8324
8325         * class.h: avoid the C++ keywords in header files (Jerome Laban
8326         spotted and fixed this).
8327
8328 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8329
8330         * object.c:
8331         (mono_unhandled_exception): fill in the arguments for the
8332         UnhandledException event. Only trigger that event for the default
8333         domain (as MS does).
8334
8335 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
8336
8337         * object.c: Improve typed allocation stuff based on suggestions from
8338         Paolo. Also turn it on if the GC library supports it.
8339
8340 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
8341
8342         * object.c object.h class.h: Added experimental typed allocation
8343         facility using the interfaces in gc_gcj.h.
8344
8345         * os/gc_wrapper.h: Added new include files.
8346         
8347 2003-04-03  Martin Baulig  <martin@ximian.com>
8348
8349         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
8350         which is not yet enabled by default.
8351
8352         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
8353         functions.
8354         (mono_gc_lock, mono_gc_unlock): New static functions.
8355
8356         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
8357         functions; stop/start the world for the garbage collector.  This
8358         is using the windows API; we need to complete the SuspendThread()/
8359         ResumeThread() implementation in the io-layer to make this work on Unix.
8360         (mono_gc_push_all_stacks): New public function; tells the garbage
8361         collector about the stack pointers from all managed threads.
8362
8363 2003-04-03  Martin Baulig  <martin@ximian.com>
8364
8365         * object.h (MonoThread): Added `gpointer stack_ptr'.
8366
8367         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
8368
8369 2003-04-03  Martin Baulig  <martin@ximian.com>
8370
8371         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
8372
8373 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
8374
8375         * reflection.c (typebuilder_setup_fields): Initialize field.first and
8376         field.last.
8377
8378 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
8379
8380         * loader.c (mono_lookup_internal_call): Report the corlib that is
8381         out of sync.
8382
8383 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
8384
8385         * icall.c (ves_icall_type_GetTypeCode): fixed check for
8386         System.DBNull (it's class not valuetype).
8387
8388 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
8389
8390         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
8391         if the array method was already assigned a token (fixes bug#40646).
8392
8393 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
8394
8395         * reflection.c (mono_reflection_get_type): Attempt type resolve even
8396         if no assembly is given.
8397
8398 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
8399
8400         * metadata.h: Added the new tables.
8401
8402         * row-indexes.h: Added definitions for new tables.
8403
8404         * metadata.c: Add schemas for new tables, and add support for
8405         computing the sizes of them.
8406
8407         * class.c: Update for handling the new type cases.
8408
8409 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
8410
8411         * metadata.h (MONO_TYPE_IS_VOID): new macro
8412
8413 2003-03-31  Martin Baulig  <martin@ximian.com>
8414
8415         * threads.h (MonoThreadCallbacks): Added `thread_created'.
8416
8417         * threads.c (mono_thread_new_init): Call `thread_created' in the
8418         mono_thread_callbacks.
8419
8420 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
8421
8422         * loader.h: added marshalbyrefobject_class to mono_defaults
8423         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
8424         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
8425           generation of output parameters.
8426           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
8427         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
8428           contextbound and the target object belongs to the context of the caller.
8429         * object.h: added context and unwrapped_server variables in MonoRealProxy.
8430         * object.c: Implemented support for interfaces and abstract classes
8431           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
8432           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
8433
8434 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
8435
8436         * class.h class.c (mono_class_is_subclass_of): New function.
8437         
8438         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
8439         routines for most common case (calls from ArrayList::ToArray).
8440
8441         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
8442         routine so programs which call Environment::Exit() can be profiled.
8443
8444         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
8445         Added MONO_ARCH_SAVE_REGS.
8446
8447         * icall.c (ves_icall_type_is_subtype_of): Use new function.
8448
8449 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
8450
8451         * blob.h: Add a couple of new MonoType types definitions.
8452
8453         * tabledefs.h: Add a couple of new call convs.
8454
8455 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
8456
8457         * reflection.h (MonoReflectionDynamicAssembly): track changes in
8458         the layout of the class.
8459
8460         * reflection.c (alloc_table): double the size on overflow to avoid
8461         unnecessary copying.
8462
8463         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
8464         avoid filling out metadata tables and blobs. Also set mb->ilgen to
8465         null so it can be garbage collected.
8466         
8467 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
8468
8469         * reflection.c (mono_reflection_get_type): Return the resolved type
8470         only if it is in the assembly we searched.
8471
8472         * reflection.c (ensure_runtime_vtable): Initialize method slots.
8473
8474         * class.c (mono_class_setup_vtable): Set the slot of the overriding
8475         method.
8476
8477 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8478
8479         * appdomain.c:
8480         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
8481         the right one is 'file:///blah', but MS allows it.
8482         * assembly.c:
8483         (mono_assembly_open): allow 'file://blah'
8484
8485         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
8486
8487 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
8488
8489         * socket-io.c: fixes bug #40310.
8490
8491 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
8492
8493         * reflection.c (mono_reflection_parse_type): handle deeply nested
8494         types correctly.
8495
8496         * reflection.c (mono_image_create_token): Use unique token values
8497         since they will be put into a hash table.
8498
8499         * class.c (mono_class_setup_vtable): If a method occurs in more than
8500         one place in the vtable, and it gets overriden, then change the
8501         other occurances too.
8502
8503         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
8504         object as return type.
8505
8506 2003-03-22  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
8507
8508         * icall.c: Deleted "ToString" implementation for double and float
8509         because they are full implemented in managed code.
8510
8511 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
8512
8513         * reflection.c, reflection.h: implemented and exported functions
8514         to retrieve info about custom attributes.
8515
8516 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8517
8518         * appdomain.c: moved Uri handling to assembly.c
8519         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
8520         work when using a file Uri in *nix and windows.
8521
8522         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
8523         GetReferencedAssemblies.
8524
8525 2003-03-18  Dick Porter  <dick@ximian.com>
8526
8527         * icall.c: Rename a couple of internal calls
8528
8529         * threads.c: Set the thread state to Stopped when a thread exits.
8530         Fixes bug 39377.
8531
8532 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
8533
8534         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
8535         New icall.
8536
8537         * object.c (mono_class_vtable): fix warning.
8538
8539 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
8540
8541         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
8542
8543         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
8544         memory.
8545         (method_encode_clauses): Create exception info structures in the right
8546         order.
8547         (mono_reflection_setup_internal_class): Initialize supertypes field.
8548
8549         * class.c object.c: Handle interfaces which implement other interfaces 
8550         correctly.
8551
8552         * class.h class.c: Move the supertypes array initialization code into 
8553         a separate function so it can be used for dynamic types too. Also call
8554         it earlier, in mono_class_init(), since it can be used before the
8555         type is initialized.
8556
8557 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8558
8559         * Makefile.am:
8560         * assembly.c:
8561         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
8562
8563         * appdomain.c:
8564         * appdomain.h:
8565         * marshal.c:
8566         * object.c: remove warnings.
8567
8568 2003-03-13  Martin Baulig  <martin@ximian.com>
8569
8570         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
8571         (MonoDebugLexicalBlockEntry): New types.
8572
8573         * debug-mono-symfile.c
8574         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
8575
8576 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8577
8578         * process.c: ret can be any non-zero value accroding to MS doc.
8579
8580 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
8581
8582         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
8583         fixing a warning for a miss-used prototype, would have cause
8584         random memory corruption.
8585
8586 2003-03-07  Martin Baulig  <martin@ximian.com>
8587
8588         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
8589         getting really annoying ....
8590
8591 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
8592
8593         * reflection.c (fixup_method): added support for array methods.
8594
8595 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
8596
8597         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
8598         (pointed out by Michael Adams).
8599
8600 2003-03-04  Dick Porter  <dick@ximian.com>
8601
8602         * icall.c: Temporarily reverted the Double and Single ToString()
8603         change, because it broke nunit.
8604
8605 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
8606
8607         * object.h, threads.h: make include files compatible with C++
8608         (patch by Jerome Laban <jlaban@wanadoo.fr>).
8609
8610 2003-03-04  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
8611
8612         * icall.c: Erased ToString helper functions for Double and Single.
8613         Now, that implementations ar all in managed code (Double and Single
8614         Formatters).
8615
8616 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
8617
8618         * appdomain.c: Added method for initializing the default context of
8619         a domain. Added internal call for getting the default context.
8620         * appdomain.h: Added context variable in MonoDomain struct.
8621         * domain.c: mono_domain_set also sets the default context of the domain
8622         * icall.c: Mapped internal method InternalGetDefaultContext.
8623         * object.c: mono_object_get_virtual_method returns always a remoting
8624         wrapper if the object is a transparent proxy.
8625         mono_runtime_invoke_array: when creating an object by calling the
8626         constructor, if the created object is a proxy, then the constructor should
8627         be called using the a remoting wrapper.
8628
8629 2003-03-03  Dick Porter  <dick@ximian.com>
8630
8631         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
8632         variable so it compiles on solaris.  Problem spotted by
8633         Christopher Taylor <ct@cs.clemson.edu>
8634
8635 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8636
8637         * appdomain.c:
8638         (get_info_from_assembly_name): don't leak value.
8639
8640         * icall.c:
8641         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
8642         result.
8643
8644 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
8645
8646         * assembly.c: export mono_image_load_references ().
8647         * class.c: handle function pointers. mono_class_from_name() now
8648         supports nested type names directly.
8649
8650 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
8651
8652         * reflection.h reflection.c: Encode already created dynamic methods 
8653         and fields correctly as a DEF instead of a REF.
8654
8655         * reflection.c: Get rid of the force_ref argument to 
8656         mono_image_typedef_or_ref since it was wrong in the first place.
8657
8658         * string-icalls.c: add error checking to string constructors according
8659         to the MSDN docs.
8660
8661         * reflection.c: Emit types in the order their TypeBuilders were 
8662         created. Previously, a new table index was assigned to each type before
8663         the tables were emitted. This was wrong because the signature blob
8664         might already refer to a type by its original table index.
8665
8666 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
8667
8668         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
8669         change.
8670         
8671 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8672
8673         * Makefile.am: make assemblies dir have \ instead of / on windows.
8674
8675 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
8676
8677         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
8678         iterate over the NESTEDCLASS table using a linear search since the
8679         table is not guaranteed to be sorted by the secondary key.
8680
8681         * class.c (mono_class_create_from_typedef): fixed up call to
8682         mono_metadata_nesting_typedef.
8683         
8684 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
8685
8686         * marshal.c (mono_string_to_byvalstr): clear the memory as
8687         suggested by Jerome Laban <jlaban@wanadoo.fr>
8688
8689 2003-02-26  Dick Porter  <dick@ximian.com>
8690
8691         * process.c: Cope with padding in .rsrc blocks
8692
8693 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
8694
8695         * metadata.h: reverted the filter_len change, it breaks reflection
8696         
8697 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
8698
8699         * metadata.h: added a new field to store the filter_len
8700         
8701
8702 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
8703
8704         * reflection.c: handle custom attributes for types and members
8705         created with Reflection.Emit (bug#38422).
8706
8707 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
8708
8709         * reflection.c: define RTSpecialName automatically for constructors for
8710         compatibility with MS.NET.
8711
8712         * reflection.c (mono_reflection_create_runtime_class): initialize
8713         nested_in field of dynamically created classes.
8714
8715 2003-02-22  Martin Baulig  <martin@ximian.com>
8716
8717         * debug-mono-symfile.h: Incremented version number.
8718
8719 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
8720
8721         * object.h icall.c process.c: fix warnings.
8722
8723 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
8724
8725         * appdomain.h appdomain.c:
8726         (mono_domain_try_type_resolve): split the 
8727         name_or_tb argument into a name and a tb argument.
8728         (mono_domain_has_type_resolve): new function to check whenever the
8729         application has registered a TypeResolve event handler.
8730         
8731         * icall.c reflection.h reflection.c: move the type resolve logic into
8732         mono_reflection_get_type () so it will be invoked when 
8733         Assembly::GetType () is called.
8734
8735         * reflection.c:
8736         (mono_reflection_get_type): renamed to get_type_internal.
8737         (mono_reflection_get_type): fixed type name generation so it works 
8738         for nested types too.
8739         (mono_reflection_get_type): call has_type_resolve () to avoid the 
8740         costly type name generation if there is no resolve event handler.
8741
8742 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
8743
8744         * class.c, image.c: load exported types from file references.
8745
8746 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
8747
8748         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
8749           used to cache the managed methods used to create proxies and make 
8750           remote invocation of methods.
8751         * class.h: Added in MonoVTable a flag to indicate that a class needs 
8752           to be remotely created.
8753         * object.c: Modified the method mono_class_vtable(). It now initializes 
8754           the remote flag of the vtable. Modified mono_object_new_specific(), 
8755           so now it checks the remote flag.
8756         * icall.c: Added a couple of internal methods, one for enabling instance 
8757           creation interception for a type, and one for creating objects bypassing
8758           the remote check.
8759
8760 2003-02-18  Martin Baulig  <martin@ximian.com>
8761
8762         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
8763         New interncall to get a method's metadata token.
8764
8765         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
8766         New interncall for the debugger.
8767
8768 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
8769
8770         * class.c (mono_class_setup_vtable): allocate supertype array
8771
8772 2003-02-18  Martin Baulig  <martin@ximian.com>
8773
8774         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
8775
8776 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8777
8778         * reflection.c:
8779         (assembly_name_to_aname): jump over unknown properties (i've found
8780         something like: 'type, assembly, version=xxx, custom=null, public...',
8781         so now will ignore custom=null and still get the rest of the values).
8782
8783 2003-02-17  Dick Porter  <dick@ximian.com>
8784
8785         * threads.c: Have Thread.Start() wait for a semaphore to signal
8786         that the thread has set up all its local data.  This fixes bug
8787         34323, where Abort() raced the new thread's TLS data.
8788
8789         Also removes the handle_store() call from start_wrapper, because
8790         threads are now always created suspended and there is no longer a
8791         race between the parent and child threads to store the info.
8792
8793 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
8794
8795         * image.c: explain the #- heap issue in a message, hopefully
8796         avoiding FAQs on mono-list.
8797
8798 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8799
8800         * icall.c:
8801         (GetEntryAssembly): if the domain has not invoked
8802         AppDomain.ExecuteAssembly yet, return the assembly of the default
8803         AppDomain.
8804
8805 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
8806
8807         * class.c (mono_ldtoken): make it work in dynamic assemblies.
8808
8809 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
8810
8811         * metadata.c, reflection.c: simple speedup to type hash
8812         and equals code.
8813
8814 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
8815
8816         * image.c, image.h, class.c, assembly.c: move module loading
8817         to MonoImage. When loading metadata, consider alignemnet from
8818         the start of metadata, not from the metadata address in memory.
8819
8820 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
8821
8822         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
8823         AssemblyBuilder objects. Factored out custom attribute creation into
8824         a separate function.
8825         (create_custom_attr): new function to create custom attributes.
8826
8827 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
8828
8829         * Makefile.am: Got tired of typing the full pathname to pedump.
8830         Until there is another option, am installing this.
8831
8832 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
8833
8834         * class.c (class_compute_field_layout): always set field->parent 
8835         (mono_ldtoken): use mono_defaults.fieldhandle_class;
8836
8837 2003-02-11  Dick Porter  <dick@ximian.com>
8838
8839         * threads-types.h:
8840         * monitor.c: Rewrote Monitor, making lock much faster and
8841         Pulse/Wait work as specified.  Also uses much fewer handles, and only
8842         creates them as needed.
8843
8844         * exception.c: Added SynchronizationLockException
8845
8846         * threads.c: Deleted old Monitor implementation.  The new one is
8847         in a new file.
8848
8849 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
8850
8851         * class.c: handled TypedReference type code. Set the correct size for
8852         class data. Setup interface_offsets for interface classes, too.
8853
8854 2003-02-09  Martin Baulig  <martin@ximian.com>
8855
8856         * debug-mono-symfile.h: Reflect latest symbol writer changes.
8857
8858 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
8859
8860         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
8861         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
8862         * object.c: fixed mono_object_get_virtual_method () for interfaces.
8863         * verify.c: check for code that runs after the end of the method.
8864
8865 2003-02-08  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
8866
8867         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
8868         "System.Math::Round2".
8869         * sysmath.h: Added Floor, Round and Round2 definitions.
8870         * sysmath.c: Modified certain functions that were not 100% compliant
8871         with MS.NET (math precision) and added the implementation of Floor,
8872         Round and Round2.
8873
8874 2003-02-07  Martin Baulig  <martin@ximian.com>
8875
8876         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
8877
8878 2003-02-07  Martin Baulig  <martin@ximian.com>
8879
8880         * debug-mono-symfile.c: Reflected latest symwriter changes.
8881         (mono_debug_create_mono_symbol_file): Removed.
8882         (mono_debug_open_mono_symbol_file): Take an argument which
8883         specifies whether to create a dynamic symbol file.
8884
8885 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
8886
8887         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
8888
8889 2003-02-05  Martin Baulig  <martin@ximian.com>
8890
8891         * reflection.c (mono_image_build_metadata): Make this public,
8892         protect it against being called multiple times, don't create
8893         resources and don't build the compressed metadata here.
8894         (mono_image_create_pefile): Do this here.
8895
8896         * icall.c
8897         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
8898
8899 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8900
8901         * socket-io.c: fixed bug #36322.
8902
8903 2003-02-06  Piers Haken <piersh@friskit.com>
8904
8905         * appdomain.[ch]:
8906         * class.h:
8907         * debug-mono-symfile.c:
8908         * icall.c:
8909         * loader.c:
8910         * mono-config.c:
8911         * monosn.c:
8912         * reflection.c:
8913         * socket-io.c: warning cleanups
8914
8915 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
8916
8917         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
8918         function. works like remoting invoke, but does a check for the Proxy first.
8919
8920 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
8921
8922         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
8923
8924 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
8925
8926         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
8927         array of pointers.
8928         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
8929         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
8930
8931         * object.c (mono_store_remote_field_new): used by the new jit
8932         instead of mono_store_remote_field
8933         (mono_load_remote_field_new): used by the new jit
8934         instead of mono_load_remote_field
8935
8936 2003-02-05  Patrik Torstensson
8937
8938         * appdomain.c: changed unload to take the domain id instead
8939         of domain
8940         
8941         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
8942
8943
8944 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8945
8946         * appdomain.c: don't look for assemblies in ApplicationBase if
8947         PrivateBinPathProbe is set.
8948
8949 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8950
8951         * object.c: make the first argument in main_args contain the absolute
8952         path to the assembly. Fixes bug #37511.
8953
8954 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8955
8956         * icall.c: get correct UTC offset for countries not using daylight
8957         time saving. Fixes bug #30030.
8958
8959 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8960
8961         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
8962         and 1 are the family).
8963
8964 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
8965
8966         * icall.c (ves_icall_InternalExecute): removed wrong assertion
8967
8968         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
8969
8970 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
8971
8972         * reflection.c: added support for SignatureHelper tokens, which is
8973         needed by the Calli opcode.
8974
8975         * reflection.h: track changes to SignatureHelper class.
8976
8977         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
8978
8979 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8980
8981         * appdomain.c: fixed loading assemblies from PrivateBinPath.
8982
8983 2003-02-03  Patrik Torstensson
8984         * appdomain.[c|h], domain.c : 
8985          - Added support for getting a domain via domain id
8986          - Support for setting and getting domain from System.AppDomain 
8987            (used in cross appdomain channel)
8988          - Added support for get/set for a MonoAppContext on a thread 
8989            (Context class in System.Runtime.Remoting.Contexts),
8990          - Removed hack in Get/SetData and ExecuteAssembly.
8991         
8992         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
8993         the managed world to get control when a proxy is created.
8994
8995         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
8996         
8997 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
8998
8999         * icall.c
9000         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
9001         Populate the codebase field as well.
9002
9003 2003-02-02  Martin Baulig  <martin@ximian.com>
9004
9005         * debug-mono-symfile.c
9006         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
9007         (mono_debug_symfile_add_method): Allow interncalls.
9008
9009 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9010
9011         * icall.c: throw parse exception if strtod fails or the string is empty.
9012
9013 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
9014
9015         * marshal.c: handle object type separately from defined
9016         class types.
9017
9018 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
9019
9020         * marshal.c: handle NATIVE_LPSTR for strings when it's
9021         explicitly specified.
9022
9023 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
9024
9025         * reflection.c, reflection.h, icall.c: setup the reflection
9026         handle cache for ModuleBuilders and AssemblyBuilders.
9027
9028 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
9029
9030         * reflection.c (reflection_methodbuilder_to_mono_method): set
9031         pinvoke flag
9032
9033 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9034
9035         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
9036
9037 2003-01-29  Dick Porter  <dick@ximian.com>
9038
9039         * threads.c: No need for the fake_thread kludge now that Thread
9040         doesn't run a class constructor
9041         
9042 2003-01-29  Dick Porter  <dick@ximian.com>
9043
9044         * threads.c: Use g_direct_hash instead of the rather bogus
9045         g_int_hash
9046
9047 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
9048
9049         * marshal.c (mono_marshal_get_native_wrapper): add check for null
9050         (fix pinvoke12.exe)
9051         (mono_marshal_get_struct_to_ptr): generate valid IL code
9052         (mono_marshal_get_ptr_to_struct): generate valid IL code
9053         (*): correctly set sig->pinvoke, we need to memdup the signature
9054         to do that
9055
9056 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
9057
9058         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
9059         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
9060
9061 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
9062
9063         * profiler.c: provide more callers information.
9064
9065 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
9066
9067         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
9068
9069         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
9070
9071         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
9072
9073 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9074
9075         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
9076         exception instead of going into an infinite loop on dates which it 
9077         can't yet handle.
9078
9079         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
9080         out-of-range exception if needed.
9081
9082         * class.c (mono_class_setup_vtable): allow a virtual method to provide
9083         an implementation for an interface method and to override an inherited
9084         method at the same time. 
9085         Imagine a scenario when a virtual method is used to override a
9086         virtual abstract method in a parent class, and this same method 
9087         provides an implementation for an method inherited from an interface. 
9088         In this case, the interface resolution code will set im->slot, which 
9089         means that the virtual method override pass will skip this method 
9090         which means a pointer to the abstract method inherited from the parent
9091         will remain in the vtable of this non-abstract class.
9092
9093         * class.c: (mono_class_setup_vtable): continue search for a real 
9094         method if only an abstract method is found.     
9095
9096 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
9097
9098         * reflection.c: add size to encoding for ByValStr and ByValArray
9099         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
9100
9101 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9102
9103         * class.c (mono_class_setup_vtable): pass the override info as an
9104         argument.
9105
9106         * class.c (mono_class_setup_vtable): set the slot of overriding methods
9107         correctly.
9108         
9109         * reflection.c (ensure_runtime_vtable); add support for method 
9110         overrides.
9111         
9112 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9113
9114         * reflection.c (resolution_scope_from_image): Hack to work to work with
9115         dynamic assemblies.
9116
9117         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
9118         added a 'force_ref' argument to force this function to allways return 
9119         a TypeRef. This is needed by mono_image_get_memberref_token ().
9120         
9121 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9122
9123         * reflection.c (mono_image_get_type_info): interfaces really don't have
9124         a parent.
9125
9126         * reflection.c (mono_image_basic_init): fill out missing fields of
9127         image structure.
9128
9129         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
9130         dynamic assemblies. This is required so dynamic assemblies show up in
9131         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
9132         Type::GetType() etc. This is consistent with MS behaviour.
9133
9134         * image.c image.h reflection.c: add newly created classes to the name 
9135         cache so mono_class_get () will find them.      
9136
9137 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9138
9139         First part of changes to get IKVM.NET running under mono.
9140         
9141         * appdomain.h, appdomain.c: added new function 
9142         mono_domain_try_type_resolve() which will emit TypeResolve events. 
9143         This function will call AppDomain::DoTypeResolve to do the actual work.
9144
9145         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
9146         moved existing code dealing with dynamic tokens to a new function 
9147         called mono_reflection_lookup_dynamic_token (). This function will 
9148         raise TypeResolve events when appropriate. Since reflection.c is not 
9149         part of libmetadata, a new hook function called 
9150         mono_lookup_dynamic_token() is added to class.c which will call this.
9151
9152         * assembly.h assembly.c: make the invoke_load_hook function public,
9153         so it can be called for dynamic assemblies.
9154
9155         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
9156
9157         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
9158         type isn't found.
9159
9160         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
9161         MonoGHashTable, since it contains pointers to objects which the GC 
9162         needs to track.
9163
9164         * assembly.c (search_loaded): remove unused variable.
9165         
9166 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
9167
9168         * object.c: fixed issue exposed by gcc-generated IL programs
9169         that use RVA data for pointers.
9170
9171 2003-01-25  Martin Baulig  <martin@ximian.com>
9172
9173         * threads.c (start_wrapper): Moved the initialization of
9174         `start_func' above the mono_new_thread_init() call to which we
9175         pass it as argument.
9176
9177 2003-01-24  Martin Baulig  <martin@ximian.com>
9178
9179         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
9180         the MonoThread pointer.
9181
9182 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
9183
9184         * icall.c: Rename `PowImpl' to Pow.
9185
9186 2003-01-23  Dick Porter  <dick@ximian.com>
9187
9188         * threads.c (start_wrapper): Create a Thread object if needed, so
9189         the Main() thread can do the class initialisation in a subthread
9190         that has been set up to allow managed code execution.
9191
9192         Pass the thread ID instead of the MonoThread pointer to the thread
9193         start and attach callbacks.  This change is required, because the
9194         jit thread start callback must be called _before_ the Thread
9195         object can be created.
9196         
9197         (mono_thread_init): Removed much object creation code that is no
9198         longer needed.  No managed code is called from here now.
9199
9200         * object.c (mono_runtime_exec_managed_code): Create a subthread
9201         for Main, and call back to the runtime to use it.
9202         Set the exit code when Main exits.
9203
9204         * gc.c: Make sure domain finalisation happens in a subthread.
9205         Re-enable threaded GC, fixing bug 31333 (again).
9206
9207         * environment.c: System.Environment internall calls (so far just
9208         ExitCode is here, the others are still in icall.c)
9209
9210         * appdomain.c (mono_runtime_cleanup): All threads running managed
9211         code should have finished before mono_runtime_cleanup() is
9212         reached, so no need to clean up threads.
9213
9214 2003-01-22  Martin Baulig  <martin@ximian.com>
9215
9216         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
9217         `gpointer func' arguments.      
9218         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
9219         but added `MonoThread *thread' argument.
9220         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
9221
9222         * threads.c (mono_new_thread_init): Added `gpointer func' argument
9223         and pass it to the mono_thread_start_cb callback.
9224         (mono_install_thread_callbacks): New public function to install a
9225         set of callbacks which are set by the debugger.
9226         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
9227
9228 2003-01-22  Martin Baulig  <martin@ximian.com>
9229
9230         * Makefile.am: Install debug-mono-symfile.h.
9231
9232 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
9233
9234         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
9235
9236 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
9237
9238         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
9239         * class.c (mono_ptr_class_get): correctly set access levels of pointers
9240         (mono_array_class_get): correctly set access levels of arrays
9241
9242 2003-01-20      Patrik Torstensson
9243         * image.h (MonoAssemblyName): changed major, minor, build, revision
9244         from signed to unsigned.
9245
9246 2003-01-20  sean kasun <skasun@azstarnet.com>
9247
9248         * reflection.c (load_cattr_value): Now this handles
9249         MONO_TYPE_SZARRAY.  Fixes bug #35629
9250
9251 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
9252
9253         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
9254         integer value
9255
9256 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9257
9258         * decimal.c: fixed bug #26056.
9259
9260 2003-01-17  Martin Baulig  <martin@ximian.com>
9261
9262         * gc.c: Raise an ExecutionEngineException instead of using g_error().
9263
9264 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9265
9266         * exception.[ch]:
9267         (mono_get_exception_type_initialization): new function.
9268
9269         * object.c: throw a TypeInitializationException when an exception is
9270         thrown invoking the class constructor.
9271
9272 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9273
9274         * reflection.c: fixed attribute reading.
9275
9276 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9277
9278         * icall.c:
9279         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
9280         provided, look for the type in the calling assembly and then in
9281         mscorlib; if the assembly name is provided, only try that one.
9282
9283 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
9284
9285         * object.c: register the vtable before there is a chance it's
9286         queried again recursively.
9287
9288 2003-01-13  Duncan Mak  <duncan@ximian.com>
9289
9290         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
9291         gc-internal.h. 
9292         
9293 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
9294
9295         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
9296
9297 2003-01-11  Martin Baulig  <martin@ximian.com>
9298
9299         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
9300         this to 20 for the release.
9301
9302 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
9303
9304         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
9305
9306         * loader.c (mono_method_get_marshal_info): bug fix
9307
9308         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
9309         structures with explicit layout
9310
9311 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
9312
9313         * profiler.c: made the output more readable (and sorted). 
9314         Added caller information for the allocation profiler.
9315
9316 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
9317
9318         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
9319
9320 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9321
9322         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
9323         to get value types.
9324         
9325 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
9326
9327         * object.c, profiler.h, profiler.c, profiler-private.h:
9328         Added object allocation profiler.
9329
9330 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
9331
9332         * reflection.h, reflection.c: handle global methods.
9333         Compress blob entries.
9334
9335 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
9336
9337         * marshal.c: fix compilation.
9338
9339 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
9340
9341         * loader.c (mono_method_get_marshal_info): impl.
9342
9343         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
9344
9345 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9346
9347         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
9348         for reference types.
9349
9350 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
9351
9352         * loader.c: fixed off by one error in loaded parameter names.
9353
9354 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
9355
9356         * marshal.c (mono_marshal_get_icall_wrapper): like
9357         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
9358         instead of a MonoMethod.
9359
9360 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9361
9362         * decimal.c: fixed bug #36537.
9363
9364 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
9365
9366         * marshal.c: throw a missing method exception if a
9367         P/Invoke method is not found.
9368
9369 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
9370
9371         * icall.c: allow a null this for constructors.
9372
9373 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
9374
9375         * icall.c: raise the proper exceptions if the arguments to the
9376         internal Invoke are incorrect.
9377
9378 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
9379
9380         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
9381
9382 2003-01-03  Martin Baulig  <martin@ximian.com>
9383
9384         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
9385
9386 2002-12-31  Martin Baulig  <martin@ximian.com>
9387
9388         * debug-mono-symfile.c: Completely rewrote the type section.
9389         Instead of using individual malloc()ed fields, we use one big
9390         continuous memory area and offsets into this area.
9391         See the comments in the source code for details.
9392
9393 2002-12-30  Martin Baulig  <martin@ximian.com>
9394
9395         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
9396
9397 2002-12-30  Martin Baulig  <martin@ximian.com>
9398
9399         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
9400         line number table in this data blob instead of using an external
9401         pointer.
9402
9403 2002-12-28  Martin Baulig  <martin@ximian.com>
9404
9405         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
9406
9407 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
9408
9409         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
9410         as a boxed return type.
9411
9412 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
9413
9414         * appdomain.c
9415         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
9416         g_build_filename to properly get separators on the filename created.
9417
9418         * object.h: Small change, introduce MonoMarshalByRefObject to
9419         track the layout of that structure in the C# universe as we make
9420         changes there.
9421
9422 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
9423
9424         * object.c: removed assert to allow static fields on interfaces.
9425         * loader.c: a TypeSpec may be used for any type, not just arrays.
9426
9427 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
9428
9429         * class.c, class.h: added mono_class_array_element_size ().
9430         Ignore static methods in interfaces.
9431
9432 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9433
9434         * threads.c: fixed the build under cygwin.
9435
9436 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
9437
9438         * reflection.c: handle nullref constants. Allocate keys for
9439         reflection handles with the GC.
9440
9441 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
9442
9443         * threads.c, threads.h: added mono_thread_get_abort_signal()
9444         to get a suitable signal for thread abort.
9445
9446 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
9447
9448         * metadata.c: fix handling of ExportedType table.
9449
9450 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9451
9452         * icall.c: added WriteWindowsDebugString internal call.
9453
9454 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9455
9456         * reflection.h: added fields to match C# implementation.
9457
9458 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9459
9460         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
9461
9462 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
9463
9464         * gc.h, gc-internal.h: Rename header for GC internal calls to
9465         gc-internal.h from gc.h as to not clash with Boehm GC having its
9466         header installed as <gc.h> in outside include paths.
9467         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
9468         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
9469
9470 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9471
9472         * icall.c: assign minor, build and revision in FillName.
9473
9474 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
9475
9476         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
9477         Added support for running code generated by Reflection.Emit.
9478
9479 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9480
9481         * appdomain.c: check for NULL argument in LoadFrom.
9482
9483 2002-12-10  Dick Porter  <dick@ximian.com>
9484
9485         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
9486
9487 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9488
9489         * appdomain.c: fix buglet when building exe file name.  Handle full
9490         assembly name (needed after latest changes to AssemblyName).
9491         * image.c:
9492         (mono_image_close): free some hashtables.
9493
9494 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
9495
9496         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
9497         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
9498         on some systems (redhat 7.3) 
9499
9500 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
9501
9502         * threads.c: delete the critical section of a sync block,
9503         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
9504
9505 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
9506
9507         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
9508
9509 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9510
9511         * appdomain.[ch]: handle the assembly preload event to try loading the
9512         assemblies using the paths we have in the current domain.
9513
9514         * assembly.[ch]: created an assembly preload hook that is called to try
9515         loading the assembly by other means that the ones provided here.
9516
9517         * domain.c: initialize the domain search path.
9518
9519         From now on, assemblies (TODO: except corlib and System) are loaded
9520         according to these rules when using mono_assembly_load ():
9521
9522                 1. It tries to load the assembly from the ApplicationBase
9523                 of the current domain appending .dll and .exe (TODO: have to
9524                 try loading from name/name.dll and name/name.exe).
9525
9526                 2. It tries the search path specified in PrivateBinPath for the
9527                 current domain (if any).
9528
9529                 3. Previous behavior.
9530
9531 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
9532
9533         * icall.c: implemented GetInterfaceMap() related icall.
9534         * domain.c, loader.h: load MethodInfo in mono_defaults.
9535
9536 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
9537
9538         * gc.c: disable the finalizer thread for now, untill all the issues
9539         with it are resolved.
9540
9541 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
9542
9543         * string-icalls.c: handle embedded nulls in string ctor when the
9544         length is specified.
9545
9546 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
9547
9548         * class.c: look for explicit interface implementation in parent
9549         classes, too.
9550
9551 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
9552
9553         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
9554
9555 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
9556
9557         * gc.c: protect handles with a critical section.
9558
9559 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9560
9561         * icall.c:
9562         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
9563         parameters. If no assembly specified, try getting the type from all
9564         the assemblies in the current domain, else, load the assembly and get
9565         the type from it.
9566
9567 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9568
9569         * marshal.c: applied patch from Aleksey Demakov that fixes
9570         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
9571
9572 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9573
9574         * icall.c: fixed get_location.
9575
9576 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
9577
9578         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
9579         declarations to make it work with older gcc. 
9580
9581         * loader.c (mono_get_method): set signature->pinvoke for native calls
9582
9583 2002-11-20  Dick Porter  <dick@ximian.com>
9584
9585         * threads.c (mono_thread_init): Set the main thread's handle
9586
9587 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
9588
9589         * gc.c: allow compilation without GC support. Changed to match the
9590         mono coding style.
9591
9592 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
9593
9594         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
9595
9596 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
9597
9598         * reflection.c: set a public key token on the core assemblies.
9599
9600 2002-11-18  Dick Porter  <dick@ximian.com>
9601
9602         * threads.c: Split out some thread initialisation so that other
9603         files can set the start callback function.
9604
9605         * gc.c: Run finalisers in a separate thread, to avoid stack
9606         overflow.  Fixes bug 31333.
9607
9608         * appdomain.c: Set up GC finalisation thread.
9609
9610         * reflection.c: 
9611         * object.c: 
9612         * domain.c: Use gc.h macros for GC_malloc
9613         
9614 2002-11-15  Dick Porter  <dick@ximian.com>
9615
9616         * threadpool.c: 
9617         * threads.c:
9618         * appdomain.c: Removed mono_runtime_init_with_attach(),
9619         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
9620         merging the extra parameter with the existing function.  Removed
9621         unneeded code in mono_thread_attach().
9622
9623 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
9624
9625         * image.c (mono_image_loaded_by_guid): a method to get loaded
9626         images by guid. 
9627         (load_metadata_ptrs): we store the guid as string.
9628
9629 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
9630
9631         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
9632
9633         * metadata.c (mono_guid_to_string): imported method form Zoltan
9634         Varga (slightly modified)
9635
9636         * assembly.c (mono_assembly_open): load precompiled code
9637
9638         * loader.h (MonoMethod): we store the method token for use in the
9639         aot compiler. 
9640
9641 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9642
9643         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
9644         the hook function called when an assembly is loaded.
9645         
9646         * domain.c: Modified file.
9647         (mono_domain_assembly_load): removed hash table insertion of assemblies.
9648
9649         Fixes bug #33196.
9650
9651 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
9652
9653         * reflection.c: Map PEFileKind to the value expected by the WinNT
9654         image loader. 
9655
9656 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9657
9658         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
9659         Read until the buffer is filled completely.
9660
9661 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9662
9663         * icall.c: implemented MonoType.InternalGetEvent ().
9664
9665 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9666
9667         * appdomain.c: implemented InitAppDomainSetup. Delayed
9668         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
9669         the entry_assembly.
9670
9671         * assembly.c: base_dir is now an absolute path ending with
9672         G_DIR_SEPARATOR.
9673
9674         * icall.c: modified get_location according to the above changes.
9675
9676         * object.c: init AppDomain.SetupInformation for the default domain after
9677         we have the entry assembly.
9678
9679         * domain.c: when unloading a domain, setup = NULL.
9680
9681 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
9682
9683         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
9684
9685 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
9686
9687         * object.h, object.c: introduced mono_object_get_virtual_method ()
9688         to lookup the method invoked on an object when a callvirt is done on
9689         a method.
9690         * icall.c: make MethodInfo::Invoke() always do a virtual call.
9691
9692 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9693
9694         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
9695         current domain when loaded an assembly and failed to load it.
9696
9697         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
9698
9699 2002-10-31  Dick Porter  <dick@ximian.com>
9700
9701         * icall.c: 
9702         * file-io.h: 
9703         * file-io.c: Return the error status in a parameter, as the
9704         GetLastError() value has long since been blown away if we try and
9705         look it up in a subsequent internal call invocation.  Delete the
9706         GetLastError() internal call, because it's useless.
9707
9708 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
9709
9710         * class.[ch]: added cast_class to fix bug 29517
9711
9712 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
9713
9714         * marshal.c: create valid IL code in the filter clause:
9715         the new JIT is less forgiving:-)
9716
9717 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9718
9719         * icall.c: removed get_property internal call.
9720
9721 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
9722
9723         * appdomain.h domain.c: Added an ID to appdomains.
9724         
9725         * threads.c threads.h icall.c: Implement icall
9726         Thread:GetDomainID(), and remove unused icall 
9727         CurrentThreadDomain_internal.
9728
9729 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9730
9731         * icall.c: Don't recurse through the base types in GetConstructor.
9732         Fixes bug #32063. 
9733
9734 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
9735
9736         * mempool.h, mempool.c: added mono_mempool_empty() and
9737         mono_mempool_stats().
9738
9739 2002-10-23  Dick Porter  <dick@ximian.com>
9740
9741         * file-io.c: 
9742         * file-io.h: 
9743         * icall.c: Added MonoIO.GetFileType internal call
9744
9745 2002-10-17  Dick Porter  <dick@ximian.com>
9746
9747         * appdomain.c (mono_runtime_cleanup): Don't signal the async
9748         delegate semaphore before waiting for all threads to finish,
9749         because new threads can also call async delegates.  Fixes bug
9750         32004.
9751
9752         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
9753         of 3 seconds, in case another async job is queued.  (This part is
9754         needed because the bug fix reintroduced the 3s exit lag.)  This
9755         makes the mono_runtime_shutdown flag superfluous.
9756
9757 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
9758
9759         * reflection.c: include ehader size in method section headers.
9760         Really check for suplicated modules entries.
9761
9762 2002-10-17  Martin Baulig  <martin@gnome.org>
9763
9764         * debug-mono-symfile.c: Added back support for locals.
9765
9766 2002-10-14  Martin Baulig  <martin@gnome.org>
9767
9768         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
9769         MONO_TYPE_VOID.
9770
9771 2002-10-14  Martin Baulig  <martin@gnome.org>
9772
9773         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
9774         mono_class_get() instead of looking in the class cache. 
9775
9776 2002-10-13  Martin Baulig  <martin@gnome.org>
9777
9778         * debug-mono-symfile.c: Set version number to 28, include the
9779         signature in method names.
9780
9781 2002-10-13  Martin Baulig  <martin@gnome.org>
9782
9783         * debug-mono-symfile.h: Set version number to 27.
9784
9785 2002-10-11  Martin Baulig  <martin@gnome.org>
9786
9787         * gc.c: Don't register/unregister NULL pointers as disappearing links.
9788
9789 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
9790
9791         * metadata.c, metadata.h: added helper function to allocate signatures.
9792
9793 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9794
9795         * icall.c: added internal call to get the location of machine.config.
9796
9797 2002-10-08  Martin Baulig  <martin@gnome.org>
9798
9799         * debug-mono-symfile.c: Ignore classes with a pending init for the
9800         moment.
9801
9802 2002-10-03  Dick Porter  <dick@ximian.com>
9803
9804         * threads.c: Freebsd pthread_t is a pointer
9805
9806 2002-10-03  Dick Porter  <dick@ximian.com>
9807
9808         * socket-io.c: Implemented GetHostName_internal
9809
9810 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9811
9812         * mono-config.c:
9813         (mono_config_parse_file): don't leak the text.
9814
9815 2002-10-02  Martin Baulig  <martin@gnome.org>
9816
9817         * debug-mono-symfile.c: Added support for methods.
9818
9819 2002-10-01  Martin Baulig  <martin@gnome.org>
9820
9821         * debug-mono-symfile.c: Don't emit methods and line numbers for
9822         the dynamic symbol file, just write the type table.  We can easily
9823         have an external helper program which creates a symbol file for an
9824         IL file.        
9825
9826 2002-10-01  Dick Porter  <dick@ximian.com>
9827
9828         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
9829         Only add the handle to the cleanup array when we're about to
9830         launch the thread.  Bug 31425 deadlocked when the test was run on
9831         mono under w32.
9832
9833 2002-10-01  Martin Baulig  <martin@gnome.org>
9834
9835         * debug-mono-symfile.c: Added support for properties.
9836
9837 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
9838
9839         * reflection.c: unaligned store fix from Mark Crichton
9840         <crichton@gimp.org>.
9841
9842 2002-09-27  Martin Baulig  <martin@gnome.org>
9843
9844         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
9845         New interncall.
9846
9847 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
9848
9849         * assembly.h, assembly.c: use a sane API to hook into the assembly
9850         loading process instead of a useless special-purpouse hack
9851         (ngen needs a hook, too, for example).
9852
9853 2002-09-27  Dick Porter  <dick@ximian.com>
9854
9855         * threads.c (mono_thread_init): Call GetCurrentProcess() so
9856         io-layer can set up some process handle info.  Not needed on w32,
9857         but doesn't hurt either.
9858
9859         * process.c: Pass the program name in the second parameter to
9860         CreateProcess, so the path is searched.  Include the working
9861         directory. Implemented process name, process enumeration, and some
9862         process detail internal calls.
9863         
9864         * icall.c: Added internal calls for process lookup, and some
9865         process details
9866
9867 2002-09-26  Martin Baulig  <martin@gnome.org>
9868
9869         * assembly.c (mono_install_open_assembly_hook): New global
9870         function to install a function to be invoked each time a new
9871         assembly is loaded.
9872         (mono_assembly_open): Run this callback function if set.
9873
9874         * debug-mono-symfile.c: Put back line numbers for the dynamic
9875         symbol file and also record the .il file as source file.  This
9876         allows us to install the temporary symbol file as `file.dbg' just
9877         like a compiler-generated one.
9878
9879 2002-09-26  Nick Zigarovich <nick@chemlab.org>
9880
9881         * Corrected typo in gc.c (BOHEM vs BOEHM).
9882
9883 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9884
9885         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
9886         GetProperties. Also avoid calling g_slist_length in GetProperties and
9887         GetMethods.
9888
9889 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
9890
9891         * reflection.c: avoid unaligned stores (bug spotted by
9892         Mark Crichton  <crichton@gimp.org>).
9893
9894 2002-09-25  Martin Baulig  <martin@gnome.org>
9895
9896         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
9897         instead of guint64 for addresses and added prologue/epilogue info.
9898
9899 2002-09-25  Martin Baulig  <martin@gnome.org>
9900
9901         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
9902         store line number info.  For the dynamic symbol file, we only need
9903         to provide the JIT generated dynamic line number info for the dynamic
9904         symbol file.
9905
9906 2002-09-25  Martin Baulig  <martin@gnome.org>
9907
9908         * debug-mono-symfile.h: Incremented version number.
9909
9910 2002-09-24  Martin Baulig  <martin@gnome.org>
9911
9912         * class.c (mono_debugger_class_init_func): New global function
9913         pointer variable.
9914         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
9915         call it.
9916
9917         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
9918         function.  This is called via the mono_debugger_class_init_func
9919         hook to add all types to the dynamic type table.
9920         (ves_icall_MonoDebugger_GetType): New interncall to get a class
9921         from its metadata token.
9922
9923         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
9924         New interncall for the debugger.
9925
9926 2002-09-24  Nick Drochak <ndrochak@gol.com>
9927
9928         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
9929         before using it in case it is null.
9930         
9931 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9932
9933         * metadata.c: allow custom modifiers in local var signatures
9934         (bug spotted by Zoltan Varga).
9935
9936 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
9937
9938         * class.c: deal with the <Module> class that may have a NULL vtable.
9939         Eliminate warnings.
9940
9941 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
9942
9943         * image.c, image.h: more strong name helpers.
9944         * monosn.c: more work: convert pem keys to cryptoapi format.
9945
9946 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
9947
9948         * string-icalls.c: speedup IndexOf.
9949
9950 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
9951
9952         * icall.c: updates from Zoltan.2.Varga@nokia.com.
9953
9954 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
9955
9956         * icall.c: cleanup: use mono_object_domain ().
9957
9958 2002-09-23  Martin Baulig  <martin@gnome.org>
9959
9960         * debug-mono-symfile.c: Improved type support.
9961
9962 2002-09-22  Martin Baulig  <martin@gnome.org>
9963
9964         * debug-mono-symfile.c: Added support for reference types and strings.
9965
9966 2002-09-22  Martin Baulig  <martin@gnome.org>
9967
9968         * debug-mono-symfile.c: Started to work on the type table.
9969
9970 2002-09-21  Martin Baulig  <martin@gnome.org>
9971
9972         * debug-mono-symfile.c: Largely reworked the symbol table format.
9973         The symbol table is now incrementally updated each time a new
9974         method is added.  We're now also using our own magic and version
9975         so that you don't need to recompile all your classes if the
9976         dynamic table changes.
9977         (mono_debug_update_mono_symbol_file): Removed.
9978         (mono_debug_symfile_add_method): New function to add a method.
9979
9980 2002-09-21  Martin Baulig  <martin@gnome.org>
9981
9982         * icall.c
9983         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
9984         New interncall.
9985
9986         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
9987         New interncall to get a method from its metadata token.
9988
9989 2002-09-21  Martin Baulig  <martin@gnome.org>
9990
9991         * debug-mono-symfile.c: Create type table.
9992
9993 2002-09-20  Martin Baulig  <martin@gnome.org>
9994
9995         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
9996
9997 2002-09-20  Martin Baulig  <martin@gnome.org>
9998
9999         * debug-mono-symfile.c: Provide information about params and locals.
10000
10001 2002-09-20  Martin Baulig  <martin@gnome.org>
10002
10003         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
10004         New interncall.
10005
10006         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
10007         interncall to get a method from its metadata token.
10008
10009 2002-09-20  Martin Baulig  <martin@gnome.org>
10010
10011         * debug-mono-symfile.c: Added a few checks for method->header
10012         being non-NULL.  This should never happen, but for the moment
10013         let's use a g_warning() rather than a g_assert().
10014
10015 2002-09-19  Mark Crichton  <crichton@gimp.org>
10016
10017         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
10018         even if support for it isn't present.  Added an #ifdef to fix this.
10019
10020         * socket-io.c: Added checks back for Solaris support.
10021
10022 2002-09-19  Martin Baulig  <martin@gnome.org>
10023
10024         * debug-mono-symfile.c (read_string, write_string): Reflect latest
10025         changes in the symbol file format.
10026
10027 2002-09-18  Martin Baulig  <martin@gnome.org>
10028
10029         * debug-mono-symfile.c: Set version number to 21.
10030
10031 2002-09-18  Dick Porter  <dick@ximian.com>
10032
10033         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
10034         on netbsd.  Fixes bug 30051.
10035
10036 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10037
10038         * reflection.c:
10039         (set_version_from_string): little fix.
10040
10041 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
10042
10043         * monosn.c, Makefile.am: added strong name utility.
10044         * reflection.h, reflection.c: implemented delayed signing,
10045         locale, version and hash id assembly attributes.
10046
10047 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
10048
10049         * loader.c, metadata.c: load param attributes in signatures.
10050
10051 2002-09-16  Martin Baulig  <martin@gnome.org>
10052
10053         * debug-mono-symfile.c: Added string table with all method names.
10054
10055 2002-09-14  Martin Baulig  <martin@gnome.org>
10056
10057         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
10058         fast method lookup.
10059
10060 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
10061
10062         * reflection.c: record the public key token of referenced assemblies.
10063
10064 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
10065
10066         * image.c, image.h: added functions to get the strong name and the
10067         public key of an assembly.
10068         * pedump.c: use them.
10069
10070 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
10071
10072         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
10073
10074 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
10075
10076         * marshal.c (mono_marshal_get_managed_wrapper): Added
10077         MONO_TYPE_BOOLEAN 
10078
10079 2002-09-11  Martin Baulig  <martin@gnome.org>
10080
10081         * gc.c: Call GC_unregister_disappearing_link() on all links when
10082         finalizing them, this is necessary to aviod a crash in boehm's
10083         finalize handler.
10084
10085 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10086
10087         * gc.c: handle GetTarget for finalized objects spotted and fixed by
10088         nick@chemlab.org.
10089
10090 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
10091
10092         * icall.c: implemented MonoType::Module.
10093         * reflection.c, reflection.h: mono_module_get_object () from
10094         Tomi Pakarinen <tomi.pakarinen@welho.com>.
10095
10096 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
10097
10098         * icall.c: ignore overridden methods in GetMethods ().
10099         Fix for FieldInfo::SetValue().
10100         * object.c: handle float/double in runtime invoke.
10101
10102 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
10103
10104         * object.c: allow a constructor to be called again on an object.
10105
10106 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
10107
10108         * class.h, class.c: move field layout code to it's own function and
10109         export it. Get an interface id earlier. Move fields in MonoClass
10110         so they are more cache friendly and align the bitfields.
10111         * loader.c: temporary handle get_param_names() for a runtime method.
10112         * reflection.c, reflection.h: more code to handle runtime creation of
10113         types.
10114
10115 2002-09-09  Martin Baulig  <martin@gnome.org>
10116
10117         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
10118         signature with the pinvoke field being set for the actual call.
10119
10120 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10121
10122         * icall.c: removed some unused icalls. Start of map of glib charsets
10123         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
10124
10125 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
10126
10127         * debug-helpers.c: break infinite loop (found and fixed by
10128         Holger Arnold <harnold@gmx.de>).
10129
10130 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
10131
10132         * icall.c: target may be null in create_delegate.
10133
10134 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
10135
10136         * marshal.c: handle a boolean return type.
10137
10138 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
10139
10140         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
10141
10142 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
10143
10144         * gc.c: fix weakreferences.
10145
10146 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
10147
10148         * icall.c: added icall to get default codepage.
10149
10150 2002-09-03  Dick Porter  <dick@ximian.com>
10151
10152         * threads.h: 
10153         * threads.c: Use MonoThread instead of MonoObject where
10154         apropriate.
10155
10156         Store running thread objects in a hash table, so that we have all
10157         the info to hand when waiting for them to finish
10158         (means we don't need OpenThread() any more, so mingw builds should
10159         be fully functional again.)
10160
10161         * verify.c:
10162         * object.h: Added thread ID to MonoThread
10163
10164 2002-09-03  Martin Baulig  <martin@gnome.org>
10165
10166         * icall.c (System.Reflection.Assembly::get_location): New interncall.
10167
10168 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10169
10170         * icall.c: fixed leak in get_temp_path. Thanks lupus.
10171
10172 2002-09-03  Martin Baulig  <martin@gnome.org>
10173
10174         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
10175         argument to store the end address of the disassembled instruction.
10176
10177         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
10178         here from debug-symfile.h.
10179         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
10180         JIT into this struct.
10181         (MonoSymbolFile): Added `char *image_file' field.
10182         (MonoDebugGetMethodFunc): Removed.
10183         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
10184         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
10185         (mono_debug_find_method): New method.
10186
10187         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
10188         create a full symbol file.
10189         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
10190         and static symbol files.
10191         (mono_debug_find_method): The symbol file keeps an internal method hash,
10192         call this to get a MonoDebugMethodInfo from a MonoMethod.
10193
10194         * debug-symfile.[ch]: Removed.
10195
10196 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
10197
10198         * image.c (do_mono_image_open): Remove linker version check.
10199
10200 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
10201
10202         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
10203         wrappers for instance methods.
10204         
10205 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10206
10207         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
10208
10209 2002-08-28  Dick Porter  <dick@ximian.com>
10210
10211         * Makefile.am: Export HOST_CC for w32 builds
10212
10213 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
10214
10215         * file-io.c process.c: MonoString are null terminated, no
10216         need for mono_string_to_utf16() anymore.
10217
10218 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10219
10220         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
10221
10222 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
10223
10224         * icall.c, reflection.h: speedup System.MonoType.
10225
10226 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
10227
10228         * reflection.c: allow null as the value of a string argument in
10229         custom attributes constructors.
10230
10231 2002-08-27  Martin Baulig  <martin@gnome.org>
10232
10233         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
10234         `trampoline_address' field.
10235
10236 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
10237
10238         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
10239         check (fixes bug #29486) 
10240
10241 2002-08-27  Martin Baulig  <martin@gnome.org>
10242
10243         * debug-mono-symfile.c: Changed the file format in a way that allows us
10244         open it read-only and to use a specially malloced area for all the
10245         dynamic data.  We can now also generate a symbol file on-the-fly if we're
10246         debugging IL code and there is no MCS generated symbol file for it.
10247
10248 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
10249
10250         * object.c: added a define for a good string and array
10251         creation speedup (not enabled by default because we need to deal with
10252         the synch stuff).
10253
10254 2002-08-26  Martin Baulig  <martin@gnome.org>
10255
10256         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
10257         function to create a dynamic symbol file.  This is used by the
10258         debugger to create a symbol file for IL code on-the-fly.
10259
10260 2002-08-26  Martin Baulig  <martin@gnome.org>
10261
10262         * loader.c (mono_lookup_pinvoke_call): Include the error message
10263         from g_module_error() in the error message.
10264
10265 2002-08-24  Martin Baulig  <martin@gnome.org>
10266
10267         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
10268         function to update the symbol file.  The symbol file is mmap()ed
10269         writable, but private.  This allows us to install the symbol file
10270         together with the assembly.
10271
10272 2002-08-24  Martin Baulig  <martin@gnome.org>
10273
10274         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
10275         but they can read the new symbol file format which mcs is now creating.
10276
10277         * debug-symfile.c (mono_debug_find_source_location): Moved to
10278         debug-mono-symfile.c; this is now operating on the new symbol file.
10279
10280 2002-08-23  Martin Baulig  <martin@gnome.org>
10281
10282         * debug-helpers.c (mono_method_desc_from_method): New function to get
10283         a MonoMethodDesc from a MonoMethod.
10284
10285 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
10286
10287         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
10288         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
10289
10290 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
10291
10292         * string-icalls.[ch]: make helper methods static.
10293
10294 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10295
10296         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
10297         types to it and to SetValueInternal.
10298
10299         * object.c: Moved handle_enum label to its proper place. This was the
10300         f... bug! ;-)
10301
10302         This time i compiled mcs and gtk-sharp and they both work.
10303
10304 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10305
10306         * icall.c: reverted partially my previous patch until 
10307         object.c:set_value handles enums correcly.
10308
10309 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10310
10311         * icall.c:
10312         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
10313         (ves_icall_System_Environment_get_MachineName): removed warning when
10314         compiling under cygwin.
10315
10316 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
10317
10318         * object.c: fixed field_get_value() for reference types.
10319
10320 2002-08-22  Dick Porter  <dick@ximian.com>
10321
10322         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
10323         Don't free a buffer while it's still needed.  Patch from Jonathan
10324         Liger <Jonathan.liger@wanadoo.fr>
10325
10326 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
10327
10328         * icall.c (ves_icall_System_Environment_get_Platform): Add new
10329         internal call.
10330
10331 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
10332
10333         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
10334         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
10335
10336         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
10337         we call unmanaged code which throws exceptions.
10338
10339 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10340
10341         * appdomain.h: added per-domain entry_assembly.
10342         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
10343         arguments.
10344         * icall.c: Assembly::GetEntryAssembly icall.
10345         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
10346         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
10347
10348 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10349
10350         * appdomain.h, gc.c: added mono_domain_finalize ().
10351
10352 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10353
10354         * object.c:
10355         (mono_print_unhandled_exception): changed g_warning by g_printerr
10356         because g_log has a 1024 characters limit (yeah, i got a big stack
10357         trace). Don't print exception name, that should be in ToString 
10358         returned string.
10359
10360 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10361
10362         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
10363         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
10364
10365 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10366
10367         * object.c:
10368         (mono_print_unhandled_exception): after previous commit, i realized
10369         that MS calls ToString on the exception. I changed this function to
10370         do that. This way we get stack_trace for free.
10371
10372 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10373
10374         * object.c:
10375         (mono_print_unhandled_exception): invoke Message property instead of
10376         getting 'message' field from Exception. Don't allocate memory for
10377         'trace' and 'message' if not needed.
10378
10379 2002-08-18  Dick Porter  <dick@ximian.com>
10380
10381         * unicode.c: Fix asserts to match Encoder.cs checks
10382
10383 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10384
10385         * marshal.c: fix unaligned store issue and a few wrong
10386         opcode argument types.
10387
10388 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10389
10390         * icall.c: added GetUninitializedObjectInternal internal call.
10391
10392 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
10393
10394         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
10395         to the right domain.
10396
10397 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
10398
10399         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
10400
10401         * class.c (class_compute_field_layout): set blittable to false for Strings
10402
10403         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
10404
10405 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10406
10407         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
10408         first chunk of code to create types at runtime. Code to
10409         handle ReflectedType/DeclaringType. Make reflection handles
10410         domain specific.
10411
10412 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
10413
10414         * class.c: set correct name in arrays.
10415
10416 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
10417
10418         * appdomain.c (mono_domain_transfer_object): make it work with
10419         valuetypes. bug fixes.
10420
10421 2002-08-12  Dick Porter  <dick@ximian.com>
10422
10423         * object.h: Rename some parameters to avoid c++ keywords (Patch
10424         from Joseph Wenninger <kde@jowenn.at>)
10425
10426 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
10427
10428         * icall.c: added icall to implement Assembly.GetFile*.
10429
10430 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
10431
10432         * reflection.h, reflection.c: code to embed managed resources.
10433
10434 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
10435
10436         * class.c: move all the type size stuff into
10437         class_compute_field_layout().
10438
10439 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10440
10441         * class.c: ensure enums have always the correct instance size.
10442         * unicode.c: remove wrong assert.
10443
10444 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
10445
10446         * assembly.c: fix mem corruption issue.
10447         * image.h, image.c: added mono_image_get_resource () to access
10448         managed resources.
10449         * icall.c: implemented Assembly.EntryPoint property and some
10450         Managed Resources related internalcalls.
10451
10452
10453 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
10454
10455         * image.c, image.h: impemented mono_image_get_entry_point ().
10456         * appdomain.c: use mono_image_get_entry_point.
10457
10458 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10459
10460         * reflection.c: support the object type argument when loading
10461         custom attributes.
10462
10463 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
10464
10465         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
10466         String as return type.
10467
10468 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
10469
10470         * reflection.c: fix encoding of named args for custom attrs to match
10471         the ms implementation. Read them back when instantiating custom
10472         attributes.
10473
10474 2002-08-02  Radek Doulik  <rodo@ximian.com>
10475
10476         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
10477         by Dietmar as quick fix
10478         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
10479         16 as stack size, used on more places as quick fix before Dietmar
10480         will fix it properly
10481
10482 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
10483
10484         * object.h, object.c: added accessors for fields and properties.
10485
10486 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10487
10488         * class.c, class.h: made mono_class_get_field_from_name ()
10489         loop on parent types.
10490         Added mono_class_get_property_from_name ().
10491
10492 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
10493
10494         * class.c, class.h: move the code to setup the type vtable in its own
10495         function so that it can be reused also for types created at runtime.
10496         Eliminate the "class" identifier from the header file.
10497         * reflection.c: setup the vtable for enums so that we can create
10498         objects for use in SetConstant ().
10499
10500 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
10501
10502         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
10503         instead of the delegate itself as this pointer (bug #28383)
10504
10505 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
10506
10507         * marshal.c (mono_marshal_get_managed_wrapper): added return type
10508         conversions.
10509
10510 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10511
10512         * loader.c: don't set the pinvoke bit on icalls.
10513
10514 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
10515
10516         * debug-helpers.c (mono_method_full_name): only print a number to
10517         indicate wrapper type (so that the output is more readable in traces).
10518
10519 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
10520
10521         * class.c (mono_class_init): include method override patch from Paolo
10522
10523 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
10524
10525         * icall.c: fixed GetTypeCode().
10526
10527 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
10528
10529         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
10530         use real delegate invoke function to make it work with multicast
10531         delegates (fix bug# 28291).
10532
10533 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
10534
10535         * object.c: load constant strings.
10536
10537 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10538
10539         * reflection.c: no magic numbers.
10540         * tabledefs.h: security action enum.
10541
10542 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
10543
10544         * assembly.c: fix possible memory corruption.
10545
10546 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
10547
10548         * reflection.h, reflection.c: added support for linking resources.
10549         * verify.c: check we have an updated corlib.
10550
10551 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
10552
10553         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
10554         string arrays.
10555         (mono_marshal_string_array): null terminate unmanaged string arrays.
10556         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
10557
10558 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
10559
10560         * icall.c: Type.GetType () can now return also types from the
10561         calling assembly.
10562
10563 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
10564
10565         * loader.h, loader.c: stack walking support.
10566         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
10567         GetCallingAssembly.
10568
10569 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
10570
10571         * marshal.c: added optimisations for blittable types 
10572
10573         * class.c (mono_array_class_get): do not set blittable attribute on arrays
10574         (mono_class_setup_mono_type): set blittable attribute for single
10575         and double.
10576
10577         * marshal.c (mono_string_utf8_to_builder): impl.
10578         (mono_string_builder_to_utf8): impl.
10579         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
10580
10581 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
10582
10583         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
10584         (mono_marshal_get_managed_wrapper): impl. byref types
10585
10586 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10587
10588         * icall.c:
10589         (search_method): don't display debug message. 
10590
10591 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
10592
10593         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
10594
10595 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
10596
10597         * appdomain.c: set the missing filename when throwing exception.
10598
10599 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
10600
10601         * metadata.c (mono_type_size): code cleanup
10602         (mono_type_stack_size): removed some test code
10603
10604 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
10605
10606         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
10607         mono_get_exception_file_not_found now.
10608
10609         * exception.c (mono_exception_from_name_two_strings): New version
10610         that will call a constructor with two string arguments. 
10611         (mono_get_exception_file_not_found): New helper routine, used to
10612         report file-not-found errors.
10613
10614 2002-07-20  Dick Porter  <dick@ximian.com>
10615
10616         * process.h:
10617         * process.c: Pass file handles to CreateProcess
10618         
10619         * icall.c:
10620         * file-io.h:
10621         * file-io.c: Implemented CreatePipe
10622
10623 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
10624
10625         * metadata.c (mono_get_param_info): set alignment for value types
10626
10627 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10628
10629         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
10630         Constify mono_domain_assembly_open().
10631         * loader.c: handle null namespace in icalls.
10632
10633 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
10634
10635         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
10636         (emit_str_to_ptr_conv): marshal object as structs
10637
10638         * metadata.c (mono_type_to_unmanaged): marshal object as structs
10639
10640         * marshal.c (mono_marshal_get_runtime_invoke): support value types
10641
10642 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
10643
10644         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
10645         (mono_marshal_get_native_wrapper): we an now return value types
10646
10647 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10648
10649         * verify.c: more checks implemented.
10650
10651 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
10652
10653         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
10654         (fix bug #27695)
10655         (mono_marshal_get_native_wrapper): allow byref arguments
10656         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
10657         impl. PtrToStringXXX methods
10658         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
10659         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
10660         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
10661         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
10662         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
10663
10664 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10665
10666         * reflection.c: fix buglet in parsing an assembly name.
10667
10668 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
10669
10670         * marshal.c (emit_ptr_to_str_conv): first impl.
10671
10672 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
10673
10674         * object.c, class.h: cache the vtable in the class as suggested by
10675         vargaz@freemail.hu (Zoltan Varga).
10676
10677 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10678
10679         * class.h, loader.c: added mono_field_from_token().
10680         * verify.c: first cut of type checking code.
10681
10682 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
10683
10684         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
10685
10686 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
10687
10688         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
10689         (fix bug #27782)
10690         (mono_marshal_get_remoting_invoke): impl.
10691         (mono_delegate_begin_invoke): impl.
10692         (mono_mb_emit_save_args): impl.
10693         (mono_delegate_end_invoke): impl.
10694         (mono_marshal_get_delegate_begin_invoke):
10695         (mono_marshal_get_delegate_end_invoke):
10696         (mono_marshal_get_delegate_invoke): generate a special name for
10697         those methods (including the signature) and associate them whith
10698         the delegate class. 
10699
10700 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
10701
10702         * reflection.[ch]: 
10703         (mono_reflection_type_from_name): now it has a MonoImage parameter
10704         which is used as the default image to search the type in. If the image
10705         is NULL or getting the type from it fails, it defaults to corlib.
10706
10707         * icall.c: changed 1 call to mono_reflection_type_from_name to match
10708         new parameter.
10709
10710 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10711
10712         * reflection.c: update the parameter table index.
10713
10714 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
10715
10716         * domain.c: don't include the mark byte in the string hash.
10717
10718 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
10719
10720         * icall.cs: icall for Type.GetTypeCode ().
10721         * verify: a couple of fixes and disabled local initialization checks.
10722
10723 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
10724
10725         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
10726
10727         * debug-helpers.c (mono_method_full_name): print the type of the
10728         runtime wrapper
10729
10730         * metadata.c (mono_signature_hash): a hash function for signatures
10731         (mono_signature_hash): better hash algorithm
10732
10733         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
10734
10735         * debug-helpers.c (mono_method_full_name): this can now generate
10736         method names with signatures
10737
10738         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
10739         method dont have this pointers.
10740
10741 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
10742
10743         * reflection.c: fixup typebuilder tokens.
10744         * image.c: fix buglet.
10745         * marshal.h: remove whitespace.
10746         * metadata.h, metadata.c: reinstate code that was removed.
10747         * verify.c: handle catch directives and fix another couple of bugs.
10748
10749 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
10750
10751         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
10752         (mono_marshal_get_native_wrapper): make it comp. with the old code
10753         (mono_marshal_get_native_wrapper): support boolean
10754         (mono_marshal_get_managed_wrapper): support more types
10755
10756 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
10757
10758         * class.c (class_compute_field_layout): compute class->blittable attribute.
10759
10760 2002-07-09  Dick Porter  <dick@ximian.com>
10761
10762         * threads.c: Make the thread cleaning up cope with threads that
10763         call ExitThread()
10764
10765 2002-07-08  Radek Doulik  <rodo@ximian.com>
10766
10767         * reflection.c (method_encode_code): use non-translated values to
10768         compute finally_start, this fixes exception handling on ppc, yay!
10769
10770         * decimal.h (struct signscale): fix endianess
10771
10772 2002-07-07  Radek Doulik  <rodo@ximian.com>
10773
10774         * reflection.c: swap box_val and not val
10775
10776 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
10777
10778         * reflection.c, reflection.h: handle full assembly info in type name.
10779         Handle Type arguments when loading custom attributes.
10780         * icall.c: updated to use new mono_reflection_type_from_name () method.
10781
10782 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10783
10784         * loader.c:
10785         (method_from_memberref): also print assembly name when method not found.
10786
10787 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10788
10789         * icall.c:
10790         (ves_icall_TypeGetProperties): fixed bug #27473. 
10791
10792 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10793
10794         * reflection.c: display image name and token when cannot find the
10795         .ctor for an attribute.
10796
10797 2002-07-05  Martin Baulig  <martin@gnome.org>
10798
10799         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
10800
10801 2002-07-04  Dick Porter  <dick@ximian.com>
10802
10803         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
10804         compile on mingw.  This will cause mingw builds to not wait for
10805         subthreads to terminate after the main thread does.  I've lodged a
10806         bug with the mingw developers for them to wrap OpenThread().
10807
10808 2002-07-03  Dick Porter  <dick@ximian.com>
10809
10810         * threads.c: Store thread IDs instead of handles, because
10811         GetCurrentThread() returns a pseudohandle and therefore stores
10812         useless values.  mono_thread_cleanup() continues checking the
10813         array of threads until it is empty, to cope with subthreads
10814         spawning new threads after the main thread has finished.
10815
10816         * profiler.h:
10817         * profiler.c:
10818         * profiler-private.h: Pass the thread ID to thread profiler
10819         functions, instead of a handle
10820
10821 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
10822
10823         * verify.c: fixes to make it more usable.
10824         * pedump.c: added --verify code to verify IL code in an assembly.
10825
10826 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10827
10828         * reflection.c: turn errors into warnings to allow compiling corlib.
10829
10830 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
10831
10832         * reflection.c: add special cases to compile corlib.
10833
10834 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
10835
10836         * reflection.c: handle properties with only a set method.
10837
10838 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
10839
10840         * opcodes.h: add enum with opcodes in opval order.
10841
10842 2002-07-01  Dick Porter  <dick@ximian.com>
10843         
10844         * object.h:
10845         * object.c (mono_runtime_run_main): Removed unneeded argument
10846
10847 2002-06-28  Martin Baulig  <martin@gnome.org>
10848
10849         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
10850
10851 2002-06-27  Dick Porter  <dick@ximian.com>
10852
10853         * threads.c: Store the handle in both the parent thread and in the
10854         subthread, to minimise the time between starting a new thread and
10855         storing its ID.
10856
10857 2002-06-26  Dick Porter  <dick@ximian.com>
10858
10859         * appdomain.c (mono_runtime_cleanup): Close the socket library
10860         after all the threads have finished, not before
10861
10862 2002-06-26  Martin Baulig  <martin@gnome.org>
10863
10864         * debug-symfile.c (mono_debug_find_source_location): Added
10865         `guint32 *line_number' argument.  If it's not NULL, store the line number
10866         there and return the file name without the line number.
10867
10868 2002-06-25  Dick Porter  <dick@ximian.com>
10869
10870         * icall.c:
10871         * process.h:
10872         * process.c: Process forking and other support functions
10873
10874 2002-06-25  Dick Porter  <dick@ximian.com>
10875
10876         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
10877         things dont happen when the image is closed.
10878         (mono_image_lookup_resource): Walk the resource section looking
10879         for a particular entry
10880
10881         * cil-coff.h: PE resource section decoding
10882
10883 2002-06-25  Dick Porter  <dick@ximian.com>
10884         
10885         * assembly.h:
10886         * assembly.c: 
10887         (mono_assembly_foreach): Accessor functions to walk the list of
10888         loaded assemblies
10889         (mono_assembly_set_main):
10890         (mono_assembly_get_main): Process methods need to know which
10891         assembly is the "main" one
10892
10893         * object.c (mono_runtime_run_main): Record the main assembly
10894
10895         * debug-helpers.c: Fix typo
10896
10897 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
10898
10899         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
10900         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
10901
10902 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
10903
10904         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
10905
10906 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
10907
10908         * image.c (do_mono_image_open): Initialize reference count,
10909         otherwise we leak the MonoImage.
10910
10911 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
10912
10913         * reflection.c: small tweak to handle self-hosting.
10914
10915 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
10916
10917         * reflection.c: fix type name parse code.
10918
10919 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
10920
10921         * reflection.c: break out of the loop.
10922         * image.c: special case corlib.
10923
10924 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10925
10926         * reflection.c: add all the custom attrs at the end to ensure the
10927         ctors have been properly initialized when the attributes are defined
10928         in the current assembly.
10929
10930 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
10931
10932         * reflection.c: handle correctly multiple-nested types.
10933
10934 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
10935
10936         * row-indexes.h: fix typos.
10937         * reflection.c: adjust for typos and fix method_def_or_ref
10938         encoding in MethodImpl table.
10939
10940 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
10941
10942         * reflection.c: fix entry point patching (thanks Serge!).
10943
10944 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
10945
10946         * verify.c: add check for System.Exception
10947
10948 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
10949
10950         * image.c, class.c: minifix for code just c&p'ed.
10951         * reflection.c: warning fix.
10952         * object.h, loader.h, domain.c: load also StringBuilder.
10953
10954 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
10955
10956         * marshal.h, marshal.c: some support code to handle complex marshaling.
10957
10958 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10959
10960         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
10961         Better signatures with vtable error dump.
10962
10963 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
10964
10965         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
10966
10967 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
10968
10969         * icall.c (ves_icall_Type_GetField): impl.
10970
10971 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10972
10973         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
10974         to retrieve a marshal description blob for a field or param.
10975
10976 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
10977
10978         * reflection.h, reflection.c: change order of nested type emission
10979         to avoid table corruption. The NestedTypes table is sorted.
10980         * icall.c: change order of GetConstructor results to workaround mcs bug.
10981
10982 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
10983
10984         * reflection.h, reflection.c: handle field and param marshal
10985         information.
10986
10987 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10988
10989         * icall.c, marshal.c marshal.h: more Marshal class implementation.
10990
10991 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10992
10993         * reflection.c: fix call convention.
10994
10995 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10996
10997         * reflection.h, reflection.c: mono_image_get_memberref_token()
10998         takes a type instead of a class, now. Added
10999         mono_image_get_array_token() to create tokens for the special
11000         multi-dim array methods.
11001
11002 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
11003
11004         * assembly.c: handle modules (no assembly table). Split
11005         loading references in its own function.
11006         * class.c: handle moduleref resolution scope.
11007         * image.c, image.h: cache module name in image.
11008
11009 2002-06-07  Martin Baulig  <martin@gnome.org>
11010
11011         * reflection.c (mono_image_get_type_info): Only add a class layout entry
11012         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
11013
11014 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
11015
11016         * icall.c: more signature fixes that used uint instead of int.
11017
11018 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11019
11020         * reflection.c: fixed signature of field refs.
11021
11022 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11023
11024         * class.c, reflection.c: handle typerefs of nested types
11025         (both on read and when writing files).
11026
11027 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
11028
11029         * icall.c: fix method signatures that tried to workaround the previous
11030         typo, d'oh!
11031
11032 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
11033
11034         * debug-helpers.c: fix typo.
11035
11036 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
11037
11038         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
11039         rewrote the PE/COFF writing code (our programs are understood by the
11040         ms runtime, now).
11041
11042 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
11043
11044         * gc.c, gc.h, icall.c: weakreference support.
11045
11046 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
11047
11048         * Makefile.am, mono-config.c: use $(sysconfdir).
11049
11050 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
11051
11052         * icall.c: changed default precision of Double.ToString() to 15.
11053         Fixed memory leak. Unified with Single.ToString.
11054
11055 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
11056
11057         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
11058
11059 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
11060
11061         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
11062         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
11063         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
11064         and myself.
11065
11066 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11067
11068         * debug-symfile.c, sysmath.c: yet more compilation fixes.
11069
11070 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11071
11072         * reflection.c, socket-io.c: more compilation fixes.
11073
11074 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
11075
11076         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
11077         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
11078         unicode.c: warning and compiler compatibility fixes.
11079
11080 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
11081
11082         * class.h, metadata.c: fixed warnings/compilation errors.
11083
11084 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
11085
11086         * Makefile.am, mono-config.c, mono-config.h: configuration file
11087         support routines.
11088         * loader.c, loader.h: make Dll mapping configurable at runtime in the
11089         config file. Export methods to insert and lookup mappings.
11090
11091 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
11092
11093         * reflection.c: handle types and boxed objects in custom attr
11094         constructors.
11095
11096 2002-05-30  Martin Baulig  <martin@gnome.org>
11097
11098         * debug-symfile.c
11099         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
11100
11101 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
11102
11103         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
11104         to lookup the implmap row for a P/Invoke method.
11105         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
11106         P/Invoke method from the runtime on an as needed basis.
11107
11108 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
11109
11110         * metadata.c (mono_metadata_parse_signature): impl.
11111
11112 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11113
11114         * class.c: handle .pack directive.
11115
11116 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
11117
11118         * object.c: initialize static fields with RVA data.
11119
11120 2002-05-25  Martin Baulig  <martin@gnome.org>
11121
11122         * debug-symfile.c
11123         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
11124
11125 2002-05-24  Martin Baulig  <martin@gnome.org>
11126
11127         * debug-symfile.c
11128         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
11129         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
11130         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
11131
11132 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
11133
11134         * object.c: special case string ctros in invoke.
11135         * gc.c: silly whitespace changes.
11136
11137 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
11138
11139         * threadpool.[ch]: impl. a threadpool that can
11140         be used by mint and mono.
11141
11142 2002-05-22  Martin Baulig  <martin@gnome.org>
11143
11144         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
11145         The first argument is now a `MonoReflectionModuleBuilder *', the return
11146         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
11147         `methods' field to get the method builder.  The `token' argument is the
11148         unfixed token.
11149
11150         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
11151         invalid characters instead of g_assert_not_reached()ing.  This seems
11152         to be the behaviour of mscorlib.
11153
11154 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
11155
11156         * object.c (mono_runtime_invoke_array): applied patch from Rachel
11157         Hestilow to fix bug #25104
11158
11159 2002-05-21  Martin Baulig  <martin@gnome.org>
11160
11161         * debug-symfile.c (mono_debug_find_source_location): New function.
11162         Looks up an IL offset in the line number table and returns the source
11163         location as a string.
11164
11165 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11166
11167         * icall.c:
11168         (mono_double_ToStringImpl): changed %f by %g until we have something
11169         better.
11170
11171 2002-05-21  Nick Drochak  <ndrochak@gol.com>
11172
11173         * icall.c : Use different name for Math.Pow's icall.  Needed to check
11174         parameters first in C#.
11175
11176 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11177
11178         * icall.c, reflection.h: added icall to get info about an event.
11179
11180 2002-05-20  Radek Doulik  <rodo@ximian.com>
11181
11182         * object.c (mono_value_box): don't use memcpy for boxing on BIG
11183         endian
11184         (mono_value_box): don't use memcpy for small sizes on
11185         architectures with unaligned access
11186
11187 2002-05-20  Martin Baulig  <martin@gnome.org>
11188
11189         * reflection.c (mono_reflection_setup_internal_class): Don't crash
11190         if `tb->parent == NULL'.
11191         (mono_reflection_create_internal_class): New function.  This is
11192         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
11193         for enum types.
11194
11195         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
11196         New interncall.
11197
11198 2002-05-19  Martin Baulig  <martin@gnome.org>
11199
11200         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
11201         argument to get the length, don't default to the array length.
11202
11203 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
11204
11205         * assembly.c (mono_assembly_setrootdir): New function used to
11206         override the MONO_ASSEMBLIES directory.
11207
11208 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
11209
11210         * icall.c: ValueType_GetHashCode() initialize local var.
11211
11212 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
11213
11214         * reflection.c: sort custom attributes table.
11215
11216 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
11217
11218         * reflection.c: support named args in custom attributes (write support).
11219
11220 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
11221
11222         * reflection.c: fix finally position calculation.
11223
11224 2002-05-15  Radek Doulik  <rodo@ximian.com>
11225
11226         * reflection.c: fixed endianess at many places
11227
11228         * icall.c (ves_icall_InitializeArray): comment out debug msg
11229
11230 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
11231
11232         * object.c (mono_unhandled_exception): new function to handle
11233         unhandled exceptions.
11234         (mono_unhandled_exception): call the UnhandledException event.
11235         (mono_runtime_delegate_invoke): impl.
11236
11237 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
11238
11239         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
11240         returns the RVA, not the direct pointer to the data. Handle the case
11241         when the class size is fixed.
11242
11243 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
11244
11245         * reflection.c: fix some endianess issues.
11246
11247 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
11248
11249         * object.c (mono_runtime_invoke): is now able to catch exceptions.
11250
11251         * threads.c (mono_thread_init): added a callback which is invoked
11252         at thread start.
11253
11254 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
11255         
11256         * icall.c: make GetHashCode return non-negative values.
11257
11258 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
11259
11260         * object.c, icall.c, gc.c: revert to address-based hashcode.
11261
11262 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
11263
11264         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
11265
11266 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
11267
11268         * icall.c, class.c: special case <Module>.
11269
11270 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
11271
11272         * icall.c: fix bug in GetNow().
11273
11274 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
11275
11276         * object.c (mono_runtime_class_init): make sure that we call all
11277         static class constructors.
11278
11279 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
11280
11281         * reflection.c: sort methodsemantics table.
11282
11283 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
11284
11285         * reflection.h, reflection.c: honour init locals setting.
11286
11287 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
11288
11289         * icall.c: copied Double ToStringImpl for Single ToStringImpl
11290
11291 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
11292
11293         * reflection.c: support ContructorBuilders in attribute blob creation.
11294
11295 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11296
11297         * reflection.c: some changes to build a binary that can be run
11298         directly in windows.
11299
11300 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
11301
11302         * loader.c: print a big message when an icall can't be found.
11303
11304 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11305
11306         * string-icalls.c: fix bug 24248.
11307
11308 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
11309
11310         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
11311         icall.c, reflection.h: separate assembly loading by pathname and by
11312         assembly name. Use the MONO_PATH env var to search for assemblies.
11313
11314 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
11315
11316         * assembly.c, image.h: add some support for assemblies
11317         with multiple modules.
11318         * class.c, class.h: export mono_class_from_typeref().
11319         * loader.c: remove duplicated code and use mono_class_from_typeref(),
11320         instead.
11321
11322 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
11323
11324         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
11325         documentation says (the ECMA one is correct).
11326
11327 2002-05-02  Dick Porter  <dick@ximian.com>
11328
11329         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
11330         Don't name the synchronisation mutex.
11331
11332 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
11333
11334         * rand.c
11335         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
11336         Make the prototypes match.
11337         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
11338         Same.
11339
11340         * icall.c
11341         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
11342         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
11343         all systems have tm.tm_zone, so use strftime() with %Z to print
11344         the timezone abreviation into a temp string.
11345
11346         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
11347         rather than mono_array_addr() on a MonoString on Big Endian
11348         machines.
11349
11350 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
11351
11352         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
11353         fix bug 24041
11354
11355 2002-04-30  Dick Porter  <dick@ximian.com>
11356
11357         * socket-io.c: Cope with SOCKET being an integer rather than a
11358         pointer now.
11359
11360         * threads.c: Added Thread_free_internal, to deal with thread
11361         handle cleanup.  Moved calls to handle_store() and handle_remove()
11362         to start_wrapper(), so each can only be called once.  Allocate
11363         synchronisation blocks with GC_malloc(), and use GC finalisation
11364         to close the handles.
11365
11366         * icall.c: added System.Threading.Thread::Thread_free_internal
11367
11368 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
11369
11370         * icall.c: support Environment.Exit, CommandLineArgs().
11371
11372 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
11373
11374         * object.c, object.h: added mono_runtime_run_main () and
11375         mono_runtime_get_main_args () for use in System.Environment.
11376
11377 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
11378
11379         * gc.c: fix thinko, enable actual finalization since the jit is now
11380         fixed.
11381
11382 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11383
11384         * gc.c, object.c: take into account that an object may be offset wrt the address
11385         returned by GC_malloc().
11386
11387 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
11388
11389         * image.c: handle files without entries in the assembly table (modules).
11390
11391 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
11392
11393         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
11394         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
11395         allowed to be null when it's System.Object class setup.
11396
11397 2002-04-27  Martin Baulig  <martin@gnome.org>
11398
11399         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
11400         if `tb->parent == NULL' rather than crashing.
11401
11402 2002-04-28  Nick Drochak  <ndrochak@gol.com>
11403
11404         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
11405         calling acos() where asin() should have been called.
11406
11407 2002-04-26  Martin Baulig  <martin@gnome.org>
11408
11409         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
11410         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
11411         there's a subdirectory called `System', but we don't want to read that
11412         subdirectory as an assembly.
11413
11414 2002-04-25  Martin Baulig  <martin@gnome.org>
11415
11416         * debug-symfile.c: Reflect latest MonoString changes.
11417
11418 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
11419
11420         * rand.c, rand.h: instance method icalls need to have an explicit
11421         this pointer as first argument in the C implementation.
11422
11423 2002-04-25  Nick Drochak <ndrochak@gol.com>
11424
11425         * icall.c: Fix typo in map for GetNonZeroBytes
11426
11427 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11428
11429         * string-icalls.c : String does now passes unit tests without any 
11430         errors, the following changes has been made:
11431         
11432         Implemented replace methods.
11433         Renaming of methods to (try) follow the standard.
11434         Fixed compare ordinal
11435         Made all memory allocated directly to function instead of via icall function.
11436         Small performance fix in is_in_array function
11437                         
11438  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
11439
11440         c (mono_string_Internal_ctor_charp_int_int):
11441         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
11442         sindex < 0, throw ArgumentOutOfRangeException instead of
11443         ArgumentNullException.
11444
11445         Added new check for length == 0, however
11446         I need to make it return String.Empty from the C code.
11447         
11448         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
11449         that calculate the length for us here.
11450         
11451         (mono_string_Internal_ctor_sbytep_int_int): Replaced
11452         mono_string_new_utf16 with mono_string_new, since value is utf8.
11453
11454 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11455
11456         * object.c: register the object for finalization if needed.
11457         Allocate one more char in the string for the terminating 0 char.
11458
11459 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
11460
11461         * class.c, class.h, image.c: check if a type implemenst a destructor.
11462         Use the proper key for array class lookups.
11463         * icall.c: register the icalls in the System.GC class.
11464         * gc.c, gc.h: GC-related functions and icalls.
11465
11466 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11467
11468         * icall.c:
11469         * socket-io.c:
11470         * unicode.c: free some strings gotten from mono_string_to_utf8 and
11471         changed a couple of free () by g_free ().
11472
11473         * decimal.c: one-liner in the comments for decimal2string ().
11474
11475 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11476
11477         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
11478
11479 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11480
11481         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
11482         * object.c (mono_runtime_invoke_array) : handle null in params
11483
11484 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11485
11486         * string-icalls.c: fixed bug in split (one off bug)
11487
11488 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11489
11490         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
11491         * icalls.c: added String::Equals as internal method
11492
11493 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11494
11495         * threads.c: fixed bug in the double interlocked functions
11496
11497 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
11498
11499         * threads.c: implemented all of the new interlocked icalls.
11500         * string-icalls.c: fix a bug in insert.
11501         * icalls.c: added the icalls for interlocked, removed old string functions.
11502         
11503 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
11504
11505         * loader.c: fix off-by-one error when reading argument names.
11506
11507 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11508
11509         * profiler.c: win32 counter implementation (untested).
11510         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
11511         (the latter needs testing and more complete impl. from win32 folks).
11512
11513 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
11514
11515         * object.c: mono_array_new_full workaround mono_array_class_get
11516         problem.
11517
11518 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11519
11520         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
11521         * object.h (mono_string_chars): Changed casting type.
11522
11523 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11524
11525         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
11526                            method signatures to use gunichar2 instead of gint16.
11527
11528 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
11529
11530         * object.h, object.c: domain-specific versions of mono_object_new and
11531         mono_array_new.
11532
11533 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
11534
11535         * object.c: changed String layout
11536
11537         * string-icalls.c (mono_string_Internal_ctor_chara): added
11538         internal string constructors.
11539
11540 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
11541
11542         * threads.c: pass 'this' to the thread start routine.
11543
11544 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11545
11546         * string-icalls.c: fix IndexOf and LastIndexOf. Now
11547         InternalCompareStr don't call twice mono_string_cmp_char for the last
11548         character. Improved performance in mono_string_cmp_char.
11549
11550 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
11551
11552         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
11553         code into its own library: libmonoruntime.
11554
11555 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
11556
11557         * object.h, object.c: changed array format so that szarrays do not
11558         require a bounds structure.
11559         * icall.c, appdomain.c: support for new szarray format.
11560
11561 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
11562
11563         * metadata.c: compare also the retuns type when comparing signatures:
11564         we didn't do this as an optimization since really overloaded methods
11565         must differ also in the arguments, but this doesn't work with
11566         low-level IL code (or when using explicit conversion operators: see
11567         bug#23498 for an example).
11568
11569 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
11570
11571         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
11572
11573 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
11574
11575         * icall.c: make MonoType::GetElementType its own icall.
11576
11577 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
11578
11579         * icall.c: remove MonoMethod_get_Name().
11580         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
11581         object.
11582
11583 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11584
11585         * string-icalls.c: optimized a few methods.
11586
11587 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11588
11589         * icall.c: added all new string internal calls
11590         * string-icalls.c: added, new string internal call implementation.
11591         * object.c: added mono_string_new_size for allocating a string a size
11592
11593 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
11594
11595         * object.c (mono_object_isinst): use the same code as in the
11596         optimized x86 version.
11597
11598 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11599
11600         * profiler.c: TSC-based timer code (faster and more accurate).
11601         Not hooked up in configure, yet (set USE_X86TSC to 1).
11602
11603 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
11604
11605         * profiler.c, profiler.h: track time spent compiling methods.
11606         * threads.c: track thread creation/destruction.
11607
11608 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
11609
11610         * profiler.c, profiler.h, profiler-private.h: profiling interface
11611         and sample implementation. Moved here so that it can be used also by
11612         the jit.
11613
11614 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
11615
11616         * reflection.c, reflection.h: keep types and other handles separate in
11617         the hash tables for referred tokens. Add guid for modules.
11618
11619 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
11620
11621         * assembly.c: fix bugs found with valgrind.
11622         * metadata.h, metadata.c: added mono_metadata_guid_heap().
11623
11624 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
11625
11626         * threads: added icall support for getting current domain for
11627                    the thread.
11628  
11629 2002-04-13  Martin Baulig  <martin@gnome.org>
11630
11631         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
11632         (MonoDebugVarInfo): Added `index' field for register based addresses.
11633         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
11634         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
11635         `MonoDebugVarInfo *params' and `guint32 this_offset' with
11636         `MonoDebugVarInfo *this_var'.
11637
11638         * debug-symfile.c (relocate_variable): New static function to write
11639         a location description for a local variable or method parameter.
11640
11641 2002-04-12  Martin Baulig  <martin@gnome.org>
11642
11643         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
11644         stack offset and begin/end scope address of a local variable.
11645         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
11646         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
11647         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
11648
11649         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
11650         Added new relocation types for start/end scope of a local variable.
11651
11652 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11653
11654         * object.h: add mono_object_domain() macro.
11655         * reflection.c: handle typespecs.
11656         * icall.c: MonoMethod::get_Name() implementation.
11657
11658 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11659
11660         * icall.c: String::GetHashCode() icall implementation.
11661
11662 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11663
11664         * icall.c: String::IndexOfAny icall.
11665         * object.c, object.h: make array->max_length more useful.
11666         Intrduced mono_object_class() and mono_string_length() macros.
11667
11668 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11669
11670         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
11671         instead of g_unichar_isdigit.
11672
11673 2002-04-11  Nick Drochak  <ndrochak@gol.com>
11674
11675         * icall.c: Implement a simple Double.ToString().
11676
11677 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
11678
11679         * appdomain.h: only io-layer.h is supposed to be included.
11680         * icall.c: explicitly import environ. Fix warning.
11681
11682 2002-04-10  Nick Drochak  <ndrochak@gol.com>
11683
11684         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
11685                 return true even if it's not Daylight Savings time.
11686                 Only return false for the case where the function isn't
11687                 implemented for a plaform (read Windows).
11688
11689 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11690
11691         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
11692         data with a mutex.
11693
11694 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
11695
11696         * mempool.c (mono_mempool_alloc): only use g_malloc when
11697         absolutely necessary.
11698
11699 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
11700
11701         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
11702
11703         * class.c (mono_class_vtable): use domain mempool to allocate vtable
11704         (mono_class_proxy_vtable): use domain mempool
11705
11706 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
11707
11708         * appdomain.h, appdomain.c: split initialization that requires the
11709         execution engine support into mono_runtime_init().
11710
11711 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
11712
11713         * class.c (mono_class_init): don't include vtable inside MonoClass
11714         to save some memory, gather some statistics.
11715         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
11716
11717 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
11718
11719         * icall.c: internalcall implementation for ValueType.Equals().
11720
11721 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
11722
11723         * object.c (mono_message_init): moved 
11724         (mono_runtime_exec_main): new arch. independent impl.
11725         (mono_runtime_invoke_array): new method - like
11726         mono_runtime_invoke, but you can pass an array of objects.
11727         (mono_remoting_invoke): new arch. independent impl.
11728         (mono_message_invoke): new arch. independent impl.
11729         (mono_runtime_class_init): new arch. independent impl.
11730         (mono_runtime_object_init): new arch. independent impl.
11731
11732 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11733
11734         * metadata.c, object.c, reflection.c: documented the exported
11735         functions.
11736
11737 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
11738
11739         * icall.c: simpler code to pass the assembly builder data to corlib.
11740         Implement GetNestedTypes() internalcall.
11741
11742 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
11743
11744         * class.c: warn if a type can't be loaded.
11745
11746 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
11747
11748         * image.h: typedef MonoImageOpenStatus
11749         * types.h: removed unused file
11750         
11751 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
11752
11753         * icall.c: Enum_ToObject accepts enum value arguments.
11754
11755 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
11756
11757         * class.c: move initialization of properties, events and nested
11758         classes, so that they happen for interfaces, too.
11759
11760 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
11761
11762         * icall.c: cleanup some ugly casts in Array_SetValue*.
11763
11764 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
11765
11766         * icall.c: the values array fro enums is of the correct type, now.
11767         Implement (correctly) getFullName instead of assQualifiedName for
11768         MonoType.
11769         * reflection.h, reflection.c: added mono_type_get_name ().
11770
11771 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
11772
11773         * assembly.c, image.h: for each MonoImage, record from wich assembly
11774         it was loaded.
11775         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
11776         Make Type.Assembly work.
11777
11778 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
11779
11780         * debug-symfile.h: use char* instead of gpointer to avoid
11781         unnecessary casts.
11782
11783         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
11784
11785         * icall.c (ves_icall_InternalExecute): impl. FielSetter
11786         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
11787
11788 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
11789
11790         * icall.c (mono_message_init): impl. (code cleanup)
11791         (ves_icall_InternalExecute): impl. FieldGetter
11792
11793         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
11794         defined we call all (non-static)methods through the vtable. 
11795
11796 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
11797
11798         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
11799         finalizer even though the memory is still referenced (and the chunk of
11800         memory is not freed).
11801
11802 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
11803
11804         * assembly.c: fix brokeness.
11805
11806 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
11807
11808         * class.c: kill some warnings. Check explicit interface method
11809         implementation also without considering the namespace.
11810         Load also literal strings in static class data.
11811
11812 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
11813
11814         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
11815         (default_assembly_name_resolver): Make the resolver take the
11816         "base" directory where the assembly was originally defined, so we
11817         can load DLLs that are in the same directory as the assembly that
11818         is being referenced.
11819
11820 2002-03-28  Dick Porter  <dick@ximian.com>
11821
11822         * file-io.h: 
11823         * file-io.c:
11824         * socket-io.c: 
11825         * unicode.h: 
11826         * unicode.c: Warning cleanups
11827
11828 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
11829
11830         * object.h, reflection.h: use the correct type instead of MonoObject.
11831
11832 2002-03-28  Martin Baulig  <martin@gnome.org>
11833
11834         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
11835         (mono_debug_update_symbol_file): Initialize classes if necessary.
11836
11837 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
11838
11839         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
11840         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
11841
11842 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
11843
11844         * assembly.h: fix function prototype.
11845         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
11846         * mono-endian.h: use const cast.
11847
11848 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
11849
11850         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
11851
11852 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
11853
11854         * loader.c: don't assert when a typeref can't be loaded, give
11855         a chance to the runtime to trow an exception instead.
11856         * loader.h: fix warning.
11857
11858 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
11859
11860         * class.c (mono_class_proxy_vtable): added proxy support
11861
11862 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
11863
11864         * icall.c: removed last of PAL calls, added System.Environment
11865         * file-io.h, file-io.c: MonoIO implementation
11866         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
11867
11868 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
11869
11870         * appdomain.c: do not use the byte marker in ldstr table lookup.
11871         * debug-helpers.c: allow two ':' to separate class and method name.
11872         * object.c: allocate arrays bounds with the GC, too.
11873         * verify: add a few more checks.
11874
11875 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
11876
11877         * reflection.c: output also literal strings. Allocate parameter data
11878         with GC_malloc() (thanks, Martin, for catching this!).
11879
11880 2002-03-26  Martin Baulig  <martin@gnome.org>
11881
11882         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
11883         include the `this' offset in the `param_offsets'.
11884
11885 2002-03-25  Martin Baulig  <martin@gnome.org>
11886
11887         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
11888         mono_debug_get_class() function to get the classes. Added new
11889         relocation types for arrays and strings.
11890         (mono_debug_get_class): New static function to search in all
11891         referenced assemblies for a metadata token.
11892
11893         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
11894
11895 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
11896
11897         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
11898         hold gc-allocated objects. Make the string heap a stream like the
11899         others. Removed duplicated code when writing stream info.
11900         Added asserts to catch possible buffer overflows. Set the sorted map
11901         for tables that need sorting. Added some documentation.
11902
11903 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
11904
11905         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
11906         for interned strings and vtables.
11907
11908 2002-03-24  Martin Baulig  <martin@gnome.org>
11909
11910         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
11911         it in the array since it was created with g_slist_prepend().
11912
11913 2002-03-24  Martin Baulig  <martin@gnome.org>
11914
11915         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
11916         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
11917         (mono_debug_method_from_token): Renamed to
11918         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
11919         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
11920
11921         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
11922         relocation types.
11923
11924         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
11925
11926 2002-03-24  Martin Baulig  <martin@gnome.org>
11927
11928         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
11929         (mono_debug_method_from_token): New func.
11930
11931         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
11932         New interncall, calls mono_debug_local_type_from_signature().
11933         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
11934         calls mono_debug_method_from_token().
11935
11936 2002-03-23  Martin Baulig  <martin@gnome.org>
11937
11938         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
11939         specifies the number of bytes to be converted, not the array size.
11940         Return the number of chars, not the number of bytes.
11941         (ves_icall_iconv_get_chars): The `byteCount' argument
11942         specifies the number of bytes to be converted, not the array size.
11943
11944 2002-03-23  Martin Baulig  <martin@gnome.org>
11945
11946         * reflection.h (MonoReflectionSigHelper): New type.
11947
11948         * reflection.c (mono_reflection_sighelper_get_signature_local),
11949         (mono_reflection_sighelper_get_signature_local): New functions.
11950
11951         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
11952         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
11953         interncalls.
11954
11955 2002-03-23  Martin Baulig  <martin@gnome.org>
11956
11957         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
11958         is_writeable is set.
11959         (mono_raw_buffer_update): New function to write the modified map
11960         back to disk.
11961
11962         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
11963
11964         * debug-symfile.c (mono_debug_update_symbol_file): Call
11965         mono_raw_buffer_update() when done writing.
11966
11967 2002-03-23  Martin Baulig  <martin@gnome.org>
11968
11969         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
11970
11971         * debug-symfile.c: Added support for arguments and local variables.
11972
11973 2002-03-23  Dick Porter  <dick@ximian.com>
11974
11975         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
11976         protected by ifdefs, hence breaking the w32 build.
11977
11978 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
11979
11980         * object.c: implement is_interned() the right way.
11981
11982 2002-03-21  Martin Baulig  <martin@gnome.org>
11983
11984         * debug-symfile.[ch]: New files to handle debugging information
11985         files. There's also support to dynamically update these symbol
11986         files to include machine dependent information.
11987
11988 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
11989
11990         * threads.c (mono_thread_create): new function to create thread
11991         from C
11992
11993 2002-03-20  Martin Baulig  <martin@gnome.org>
11994
11995         * icall.c (ves_icall_InternalInvoke): Create a new object if the
11996         method is a constructor.
11997         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
11998         points to ves_icall_InternalInvoke().
11999
12000 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
12001
12002         * file-io.c: Flush shouldn't throw exceptions.
12003
12004 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
12005
12006         * file-io.c: FileStream flush support; FileSetLength now
12007         restores file pointer.
12008
12009 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
12010
12011         * class.c: set image for pointer classes.
12012
12013 2002/03/19  Nick Drochak <ndrochak@gol.com>
12014
12015         * sysmath.c: Forgot one.
12016
12017 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
12018
12019         * sysmath.c: Avoid redefining existing names.
12020
12021 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
12022
12023         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
12024         handled by runtime as icall rather than dllimport from libm.so
12025         * file-io.c, file-io.h: fixed handle argument type.
12026
12027 2002-03-18  Dick Porter  <dick@ximian.com>
12028
12029         * reflection.c (mono_image_get_type_info): rename interface to
12030         iface, because of "#define interface struct" on windows.
12031
12032 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
12033
12034         * class.c, class.h: rename and export mono_ptr_class_get().
12035         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
12036         * reflection.c, reflection.h, icall.c: better/saner type name
12037         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
12038         method signatures.
12039
12040 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
12041
12042         * class.c (mono_class_init): removed hardcoded GHC_SLOT
12043
12044         * icall.c (ves_icall_InternalInvoke): impl.
12045
12046 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
12047
12048         * reflection.c: output the interface map table, too.
12049
12050 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
12051
12052         * class.c (class_compute_field_layout): separate computation of 
12053         static field layout
12054
12055 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
12056
12057         * icall.c: added System.Buffer support.
12058         * file-io.c: moved file icalls from PAL to FileStream.
12059
12060 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
12061
12062         * icall.c (ves_icall_System_Object_GetHashCode): impl.
12063
12064 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
12065
12066         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
12067
12068 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
12069
12070         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
12071
12072 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
12073
12074         * debug-helpers.{c,h}: moved here from monograph some useful functions
12075         to locate a method by name/signature in a class or image. Included
12076         also a small and flexible IL disassembler.
12077
12078 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
12079
12080         * reflection.c: fixup tokens in methods with small header size, too.
12081
12082 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
12083
12084         * object.c (mono_string_to_utf8): remove assert(!error), instead
12085         print a warning. 
12086
12087 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
12088
12089         * icall.c: update to the new mono_Array_class_get interface.
12090
12091 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
12092
12093         * appdomain.c, object.c: Boehm-GC enable.
12094         * icall.c: make get_data_chunk() support split data requests.
12095         Ensure a class is initialized in more cases. Return only the first
12096         property found in GetProperties() or the compiler gets confused. 
12097         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
12098         * reflection.h, reflection.c: add fixup mechanism for field and method
12099         tokens. Initialize assembly->typeref in a single place. Output
12100         properties after events. Support custom attributes for events, too.
12101         Typo fix for paramter custom attrs.
12102
12103 2002-03-07  Martin Baulig  <martin@gnome.org>
12104
12105         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
12106
12107 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
12108
12109         * class.c (mono_array_class_get): fix. for multi. dim. arrays
12110
12111 2002-03-06  Martin Baulig  <martin@gnome.org>
12112
12113         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
12114         non-zero lower bounds. See testcases #F10-#F13.
12115
12116 2002-03-05  Martin Baulig  <martin@gnome.org>
12117
12118         * exception.c (mono_get_exception_argument_out_of_range): New exception.
12119
12120         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
12121         ves_icall_System_Array_GetValue(), only calculate the absolute array position
12122         here.
12123         (ves_icall_System_Array_SetValue): Likewise.
12124         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
12125         as argument and does the actual work. This function is used when copying a
12126         multi-dimensional array.
12127         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
12128         now do all the widening conversions of value types.
12129         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
12130
12131 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12132
12133         * class.c: remove some magic numbers and use the smbolic names,
12134         instead. Added init_events() to load event info at class init time.
12135         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
12136         and mono_metadata_methods_from_event().
12137         * reflection.h, reflection.c: added support for writing out the evnets
12138         related information.
12139
12140 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
12141
12142         * reflection.h, icall.c: use a different method (GetInterfaces)
12143         to gather interface info and add isbyref, isprimitive and
12144         ispointer to the ves_icall_get_type_info() return value.
12145
12146 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
12147
12148         * class.h: stared adding support for events.
12149         * icall.c: split find_members implementation. Added debug icall to get
12150         the address of an object.
12151         * reflection.c: handle TypeBuilders in mono_type_get_object().
12152
12153 2002-03-01  Martin Baulig  <martin@gnome.org>
12154
12155         * icall.c (ves_icall_System_Array_GetLength): This must throw an
12156         ArgumentOutOfRangeException(), not an ArgumentException().
12157         (ves_icall_System_Array_GetLowerBound): Likewise.
12158         (ves_icall_System_Array_GetValue): Improved argument checking.
12159         (ves_icall_System_Array_SetValue): Improved argument checking.
12160
12161 2002-03-01  Martin Baulig  <martin@gnome.org>
12162
12163         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
12164         called with invalid arguments rather than just dying with g_assert().
12165         (ves_icall_System_Array_SetValue): Likewise.
12166         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
12167         raise a NotImplementedException instead.
12168         (ves_icall_System_Array_GetLength): Added argument checking.
12169         (ves_icall_System_Array_GetLowerBound): Added argument checking.
12170
12171 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
12172
12173         * object.h (mono_assert): new macros mono_assert and
12174         mono_assert_not_reached
12175
12176 2002-02-28  Martin Baulig  <martin@gnome.org>
12177
12178         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
12179         and "System::String::IsInterned" to "System::String::_IsInterned".
12180
12181 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
12182
12183         * icall.c: remove hacks for typebuilder. Added icall to create a
12184         modified type from a tybebuilder.
12185         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
12186         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
12187         to create a backing MonoClass for a TypeBuilder.
12188
12189 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12190
12191         * class.c, class.h: more refactoring of class init.
12192         Export mono_class_setup_mono_type() and mono_class_setup_parent().
12193
12194 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
12195
12196         * marshal.c, marshal.h: start of marshaling interface.
12197
12198 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
12199
12200         * icall.c: fix order in assembly qualified name icall.
12201
12202 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
12203
12204         * class.c: do not free str, since we store it in the hash table.
12205         * reflection.h: add label field to MonoILExceptionInfo.
12206         * reflection.c: handle references to more than one assembly. Handle
12207         case when there isn't a module created in the assembly.
12208
12209 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
12210
12211         * class.c: Fix typo. Start refactoring of class init code.
12212
12213 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
12214
12215         * appdomain.c: exit with 1 on error.
12216         * class.c: we already have the name in MonoClassField.
12217         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
12218         MonoStreamHeader instead of an offset of image->raw_metadata.
12219
12220 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
12221
12222         * appdomain.c (mono_init): Be even more descriptive about the error.
12223
12224 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
12225
12226         * appdomain.c: give the user an informative message when corlib can't
12227         be loaded.
12228
12229 2002-02-26  Martin Baulig  <martin@gnome.org>
12230
12231         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
12232         New icall to get the time zone data.
12233
12234 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12235
12236         * reflection.c: set virtual and raw size of section correctly.
12237         * threads.c: transfer domain information to newly created threads.
12238
12239 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
12240
12241         * class.c: when instancing a class in a domain, load the default
12242         vaules for static fields from the constant table. Fix System.Enum to
12243         not be an enum.
12244         * icall.c: implement Object::GetType() internalcall. Implemented
12245         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
12246         Fixed checking of binding flags in find_members().
12247         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
12248         * reflection.c: handle enumerations when writing to the constant
12249         table. Use a different object cache for types.
12250
12251
12252 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
12253
12254         * object.c (mono_object_isinst): fix for arrays
12255
12256         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
12257
12258 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
12259
12260         * object.c: don't use mprotect ()  and fix intern pool hash table
12261         lookup for big endian systems.
12262
12263 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
12264
12265         * icall.c: change type_is_subtype_of () signature.
12266
12267 2002-02-21  Mark Crichton  <crichton@gimp.org>
12268
12269         * rand.c, rand.h: Added random number generator for
12270         System.Security.Cryptography classes.
12271
12272         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
12273
12274         * icall.c: Added System.Security.Cryptography calls.
12275
12276 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
12277
12278         * class.c, icall.c, metadata.c: better support for pointer types.
12279         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
12280         * reflection.c: Add support for getting custom attrs for properties
12281         and simplify some code.
12282
12283 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
12284
12285         * icall.c: change getToken () and add custom attribute GetBlob()helper
12286         method.
12287         * reflection.h: add custom attrs array to the reflection builder structures.
12288         * reflection.c: encode and emit custom attributes for all the relevant
12289         reflection objects. Cache fieldref and methodref tokens. Change
12290         mono_image_create_token() interface to take a MonoDynamicAssembly.
12291         More complete custom attributes decoder. Load custom attributes for
12292         Assembly, Field, Method and Constructor objects, too. Make the
12293         returned array an Attribute[] one, not object[]. Added
12294         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
12295         custom attribute constructor.
12296
12297 2002-02-20  Dick Porter  <dick@ximian.com>
12298
12299         * icall.c:
12300         * rawbuffer.c:
12301         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
12302         problem code out for now).
12303
12304 2002-02-19  Radek Doulik  <rodo@ximian.com>
12305
12306         * object.c (mono_ldstr): use hash table to avoid multiple swapping
12307
12308 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
12309
12310         * icall.c: register the GetCustomAttributes method.
12311         * object.c, object.h: add mono_string_new_len ().
12312         * reflection.h, reflection.c: added mono_runtime_invoke(),
12313         mono_install_runtime_invoke(). Added
12314         mono_reflection_get_custom_attrs () to load custom attributes and
12315         create the attribute objects.
12316
12317 2002-02-19  Dick Porter  <dick@ximian.com>
12318         * threads-dummy-types.c:
12319         * threads-dummy-types.h:
12320         * threads-dummy.c:
12321         * threads-dummy.h:
12322         * threads-pthread-types.c:
12323         * threads-pthread-types.h:
12324         * threads-pthread.c:
12325         * threads-pthread.h:  Deleted obsolete files
12326
12327 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
12328
12329         * class.c (mono_class_vtable): runtime init the class when we
12330         allocate static class data.
12331
12332         * icall.c (ves_icall_System_Array_SetValue): check for null values.
12333
12334         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
12335         and String - but we will need generic marshalling support in the
12336         future. 
12337         (mono_init): set the domain name in a ms compatible way
12338
12339         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
12340         String[].
12341
12342 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
12343
12344         * object.c (mono_array_clone): use alloca() instead of g_malloc  
12345         for sizes
12346
12347         * appdomain.c (mono_domain_unload): impl.
12348
12349 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
12350
12351         * appdomain.c, object.c: fix intern pool implementation.
12352         * class.c: fix alignment code.
12353
12354 2002-02-16  Radek Doulik  <rodo@ximian.com>
12355
12356         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
12357         and s2 > s1, just copy lower bytes to be compatible with little
12358         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
12359         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
12360
12361         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
12362         force big_endian to be 1 for big endian machines 
12363         (ves_icall_iconv_new_decoder): ditto
12364
12365 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
12366
12367         * socket-io.c (convert_sockopt_level_and_name): If the system
12368         doesn't define SOL_IP or SOL_TCP, get them by hand using
12369         getprotobyname() and caching the values (because this could be a
12370         slow operation).
12371         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
12372         Use the appropriate struct when the system does support it. Ie,
12373         not all systems have struct ip_mreqn so use struct ip_mreq when
12374         appropriate.
12375
12376 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
12377
12378         * reflection.c: handle finally clauses.
12379
12380 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
12381
12382         * socket-io.c: use g_snprintf() instead of snprintf.
12383
12384 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
12385
12386         * reflection.c (mono_param_get_objects): Cast second argument to
12387         mono_method_get_param_names to a const char** to silence the
12388         compiler warning.
12389
12390         * appdomain.c (mono_domain_assembly_open): Put parens around the
12391         truth statement in the for-loop.
12392
12393         * unicode.c (iconv_convert): Got rid of a compiler warning about
12394         int i being unused when the system has a new iconv.
12395         (iconv_get_length): Same.
12396
12397         * image.c (load_class_names): Cast the second argument to
12398         g_hash_table_insert() to char* to hush compiler warnings about the
12399         arg being a const.
12400         (mono_image_open): Same here.
12401
12402         * socket-io.c: Don't conditionally include sys/filio.h or
12403         sys/sockio.h here anymore since we now get them from
12404         io-layer/io-layer.h
12405         (inet_pton): If the system doesn't support inet_aton, implement
12406         using inet_addr and also #define INADDR_NONE if it isn't defined
12407         by the system.
12408
12409 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
12410
12411         * metadata.c, metadata.h: added function to get packing and size info
12412         of a typedef.
12413         * reflection.h, reflection.c: handle field RVA data. Save info about
12414         the table layout if needed. Assign typedef indexes to all the types
12415         before dumping the info about them to avoid forward reference problems.
12416
12417 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
12418
12419         * socket-io.c (convert_sockopt_level_and_name): ifdef
12420         SO_ACCEPTCONN because it is not defined on my system (old debian)
12421
12422 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
12423
12424         * opcode.c: use stddef.h to get NULL.
12425
12426 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
12427
12428         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
12429         for FIONBIO, FIONREAD and SIOCATMARK.
12430         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
12431         define INADDR_NONE and besides, inet_addr() is deprecated and
12432         should not be used. Use inet_pton() instead - it also has the
12433         added bonus that it can easily handle IPv6 addresses as well.
12434         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
12435
12436 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
12437
12438         * decimal.c: remove _MSC_VER conditional.
12439
12440 2002-02-13  Dick Porter  <dick@ximian.com>
12441
12442         * socket-io.c: 
12443         * icall.c: Internal calls for Blocking, Select, Shutdown,
12444         GetSocketOption and SetSocketOption
12445
12446 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12447
12448         * assembly.cs: better resolver: use it instead of some kludgy
12449         code.
12450
12451 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
12452
12453         * reflection.c: the best way to speed-up the compiler is to avoid
12454         infinite loops.
12455
12456 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
12457
12458         * class.c (mono_class_vtable): changed the object layout
12459         (obj->vtable->class). 
12460         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
12461
12462 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12463
12464         * assembly.c: look for assemblies in the assembly dir, too.
12465
12466 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
12467
12468         * class.c: fix thinko in mono_class_from_type().
12469
12470 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12471
12472         * exception.h, exception.c: added TypeLoadException.
12473         * object.h, object.c: added mono_array_clone ().
12474         * icall.c: handle throwOnError in AssemblyGetType().
12475         Added Array.Clone().
12476         * opcode.h, opcode.c: use a single value for the opcode val.
12477         Compile fix for non-gcc compilers.
12478
12479 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
12480
12481         * opcodes.c, opcodes.h: export interesting info about opcodes.
12482
12483 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
12484
12485         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
12486         icalls. 
12487
12488         * class.c (class_compute_field_layout): set element_class for enums
12489         (mono_class_create_from_typedef): set element_class for normal classes
12490
12491         * icall.c (ves_icall_System_Enum_get_value): impl.
12492
12493         * class.c (mono_class_create_from_typedef): do not set valuetype
12494         flag for System.ValueType and System.Enum
12495
12496 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
12497
12498         * unicode.c (iconv_convert): fix big endian problem.
12499
12500 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
12501
12502         * class.c: add asserts if we are ever going to scribble over memory.
12503         * socket-io.c: not all systems have AF_IRDA defined.
12504
12505 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
12506
12507         * class.c (class_compute_field_layout): do not consider static
12508         fields to compute alignment
12509
12510 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
12511
12512         * appdomain.c (mono_appdomain_get): impl.
12513         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
12514
12515 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
12516
12517         * icall.c: ignore "file://" prefix when loading an assembly.
12518
12519 2002-01-23  Dick Porter  <dick@ximian.com>
12520
12521         * socket-io.c:
12522         * icall.c:
12523         * Makefile.am: Added socket support
12524
12525 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
12526
12527         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
12528         code back.  This should return the assemblies that are loaded by
12529         the runtime on behalf of an application domain. 
12530
12531         The current implementation is still broken, it just returns every
12532         assembly loaded, but until we get real applications domain this
12533         will do.
12534
12535 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
12536
12537         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
12538         AppDomain object.
12539
12540 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
12541
12542         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
12543         the mono_class_from_name lookup.
12544         (ves_icall_get_parameter_info): ditto.
12545         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
12546         method.
12547         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
12548
12549 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
12550
12551         * class.c: load also nested classes on class init.
12552         System.ValueType instance methods gets passed boxed
12553         values, unless methods in derived classed that get a pointer to the
12554         data.
12555         * icall.c: use better name parsing code in GetType().
12556         * image.c, image.h: add mono_image_loaded ().
12557         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
12558         * reflection.c, reflection.h: added mono_reflection_parse_type().
12559
12560 2002-01-22  Veronica De Santis <veron78@interfree.it>
12561
12562         * icall.c : Added mapping of internal calls for Manual and Auto reset events
12563         * threads.c : Added the implementation of internal calls for events
12564         * threads.h : Added prototypes of internal calls for events
12565         
12566 2002-01-21  Radek Doulik  <rodo@ximian.com>
12567
12568         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
12569
12570 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
12571
12572         * class.c (mono_class_init): set min_align to 1 (instead of 0)
12573         (mono_class_value_size): use min_align
12574
12575 2002-01-20  Dick Porter  <dick@ximian.com>
12576
12577         * threads.h:
12578         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
12579         so it compiles on w32.
12580
12581 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
12582
12583         * metadata.c (mono_type_stack_size): impl.
12584
12585         * class.c (mono_class_get_field): impl. memberref token
12586
12587 2002-01-16 Veronica De Santis <veron78@@interfree.it>
12588
12589         * icall.h : Added the internal calls mapping for CreateMutex_internal
12590                     and ReleaseMutex_internal.
12591         * threads.h : Added the prototype of mutexes internal calls.
12592         * threads.c : Added the implementations of mutexes internal calls.
12593
12594 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
12595
12596         * metaparse.h: removed unused file.
12597         * reflection.c, reflection.h: added stream_data_align () function 
12598         to align data in streams and keep stream aligned. Add support for
12599         exception support in method headers.
12600
12601 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
12602
12603         * unicode.c: make iconv_convert () return the number of bytess written
12604         in the output buffer.
12605
12606 2002-01-15  Dick Porter  <dick@ximian.com>
12607         * threads.c: Make the runtime's idea of infinite timeouts coincide
12608         with the class library's
12609
12610         Fix a particularly egregious bug in mono_thread_cleanup(). That
12611         code was so utterly bogus it must have been written on a Monday.
12612
12613 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
12614
12615         * reflection.h: add subtypes field to TypeBuilder.
12616         * reflection.c: encode constants for literal fields.
12617         Handle subtypes. Fix user string token (and add a zero byte)
12618         at the end.
12619         
12620 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
12621
12622         * class.c (mono_class_init): bug fix: assign slot numbers for
12623         abstract methods.
12624
12625 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
12626
12627         * reflection.c: don't try to output a code RVA for abstract methods.
12628         Small fixes for method header format. Output parameter info to the
12629         ParamDef table. Save method overriding info to MethodImpl table.
12630         Fix property support. Allow typedef.extends to be a type in the
12631         building assembly.
12632         * verify.c: fix off-by-one error.
12633
12634 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
12635
12636         * class.c: fix mono_class_from_mono_type () for szarray types.
12637         Remove unused cache check in mono_class_from_type_spec().
12638         * icall.c: *type_from_name () functions handle simple arrays and byref.
12639         * reflection.c: handle byref and szarray types. Handle methods without
12640         body (gets P/Invoke compilation working). Handle types and fields in
12641         get_token ().
12642         * reflection.h: add rank to MonoTypeInfo.
12643
12644 2002-01-10  Dick Porter  <dick@ximian.com>
12645
12646         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
12647         internal calls
12648
12649 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
12650
12651         * icall.c: initialize class in type_from_handle ().
12652         Loop also in parent classes for get_method ().
12653         * reflection.c: properly encode class and valuetype types.
12654         Start on encoding TypeBuilder types. Handle fieldrefs.
12655         Use correct length when registering a user string.
12656         Handle ConstructorBuilder and MonoMethod in get_token ().
12657         Make mono_type_get_object () aware of cached types.
12658         * object.c: back out change to mono_string_new ().
12659
12660 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
12661         * object.c: mono_string_new should return a NULL when the string 
12662         passed in is NULL -- not try to deference it.
12663         
12664 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
12665
12666         * icall.c: hack to make IsSubType work for TypeBuilders.
12667         * reflection.c: emit constructors before methods.
12668         Retrieve param names in mono_param_get_objects().
12669
12670 2002/01/05  Nick Drochak  <ndrochak@gol.com>
12671
12672         * Makefile.am: fix list of headers and sources so automake 1.5
12673         doesn't complain. Removed \# at end of list.
12674
12675 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
12676
12677         * reflection.c: get token for a method ref. Set return type of
12678         constructor to void.
12679         * loader.c: debug message.
12680         * class.c: typo fix.
12681
12682 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
12683
12684         * icall.c: fix array init with rank > 1. FindMembers
12685         loops in parent class as well.
12686         * image.c: do not insert nested types in name cache.
12687         * reflection.c: warning fix.
12688         * reflection.h: add override method (for interface impl).
12689
12690 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
12691
12692         * metadata.c: fix customattr decoding.
12693
12694 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
12695
12696         * rawbuffer.cs: Added native Win32 implementation, avoids using
12697         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
12698
12699 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
12700
12701         * class.c: make the low-level routines handle the cache.
12702
12703 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
12704
12705         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
12706
12707 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
12708
12709         * class.c: fix mono_array_element_size() for objects.
12710         * class.h, class.c: add properties to MonoClass and load them
12711         at init time.
12712         * icall.c: check with isinst() when assigning a value to an array
12713         instead of requiring the classes to match exactly.
12714         Implemented icall for System.Type::GetType().
12715         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
12716         enums. Handle bindingflags when looking for methods and fields.
12717         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
12718         and mono_metadata_methods_from_property().
12719         * reflection.h, reflection.c: added structures for propreties,
12720         parameters and enums. Implemented mono_property_get_object() and
12721         mono_param_get_objects().
12722
12723 2001-12-18  Dick Porter  <dick@ximian.com>
12724
12725         * file-io.c: Use mono_string_to_utf16() instead of
12726         mono_string_chars()
12727
12728         * object.c: Added mono_string_to_utf16(), which copies the non
12729         NULL-terminated MonoString into a new double-null-terminated
12730         buffer.
12731
12732 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
12733
12734         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
12735
12736 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
12737
12738         * file-io.c: raise exceptions if handle is invalid.
12739
12740 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
12741
12742         * assembly.c: yet another check for mscorlib.
12743         * class.c, class.h: load nesting info for classes.
12744         * icall.c: many new functions to support the Reflection classes.
12745         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
12746         * reflection.h, reflection.c: mono_image_create_token(),
12747         mono_assembly_get_object(), mono_type_get_object(),
12748         mono_method_get_object(), mono_field_get_object(): methods to return
12749         objects that parallel the C representation of assemblies, types,
12750         methods, fields.
12751
12752 2001-12-11  Dick Porter  <dick@ximian.com>
12753
12754         * icall.c:
12755         * file-io.c: Internal calls for file IO.
12756
12757 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
12758
12759         * tabledefs.h: missing FileAttributes.
12760         * verify.h, verify.c: use is_valid_string () to simplify and check for
12761         valid strings more correctly. Fix warnings and speeling.
12762         Check more tables: Filed, File, ModuleRef, StandAloneSig.
12763         Check code: branches, maxstack, method calls.
12764
12765 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
12766
12767         * object.c (mono_object_allocate): removed static, so that the jit
12768         can allocate value types.
12769
12770         * icall.c (ves_icall_System_DateTime_GetNow): impl.
12771
12772 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
12773
12774         * class.c: init enum types right away and register the
12775         token->MonoClass map in mono_class_create_from_typedef ().
12776         * verify.h, verify.c: first cut of the verifier.
12777         * pedump.c: add --verify switch to verify metadata tables.
12778         * tabledefs.h: add some missing enums.
12779
12780 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
12781
12782         * class.c (mono_install_runtime_class_init): impl.
12783         (mono_class_init): renamed mono_class_metadata_init to
12784         mono_class_init, also removed the metadata_inited flag
12785
12786         * object.c (mono_object_isinst): use faster algorithm
12787
12788 2001-11-30  Radek Doulik  <rodo@ximian.com>
12789
12790         * mono-endian.h: reverted last change
12791         added function prototypes
12792
12793         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
12794         add mono-endian.c back
12795
12796         * mono-endian.c: returned back, as Paolo pointed out, it's needed
12797         for unaligned access, I've mistaked it with endianess. I am
12798         sorry.
12799         (mono_read16): fix reverted endianess
12800         (mono_read64): ditto
12801         (mono_read32): ditto
12802
12803 2001-11-30  Dick Porter  <dick@ximian.com>
12804
12805         * exception.c: Implement mono_exception_from_name()
12806
12807 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
12808
12809         * metadata.h, metadata.c: remove params_size and locals_size and their
12810         calculation from the metadata code: they are only usefult to the
12811         interp.
12812
12813 2001-11-29  Radek Doulik  <rodo@ximian.com>
12814
12815         * object.c (mono_ldstr): swap bytes here, it's probably not the
12816         best place, but works for me now, I'll redo it once I know mono
12817         better, also note that I add PROT_WRITE and don't reset back, also
12818         note that it's only affects big endians, so x86 should be OK
12819
12820         * mono-endian.h (read16): use just glib macros for both endians
12821
12822         * mono-endian.c: removed as glib macros are used in in
12823         mono-endian.h so we don't need to care about endianess for read
12824         macros as glib does that for us already
12825
12826 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
12827
12828         * class.h, class.h: take minimum alignment into consideration so
12829         that the fields of a class remain aligned also when in an array.
12830
12831 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
12832
12833         * loader.h, loader.c: add mono_method_get_param_names().
12834         * class.c: 0-init class fields.
12835
12836 2001-11-26  Dick Porter  <dick@ximian.com>
12837
12838         * icall.c:
12839         * threads-types.h:
12840         * threads.c: New file that handles System.Threading on all platforms
12841
12842         * object.c: 
12843         * object.h: Remove the synchronisation struct from MonoObject,
12844         replace it with a pointer that gets initialised on demand
12845
12846         * Makefile.am: Replace all the system-specific threading code with
12847         a single file that uses the new wrapper library
12848
12849 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
12850
12851         * class.c, class.h: add mono_install_trampoline() so that the runtime
12852         can register a function to create a trampoline: removes the ugly
12853         requirement that a runtime needed to export arch_create_jit_trampoline.
12854         * object.h, object.c: added mono_install_handler() so that the runtime
12855         can install an handler for exceptions generated in C code (with
12856         mono_raise_exception()). Added C struct for System.Delegate.
12857         * pedump.c: removed arch_create_jit_trampoline.
12858         * reflection.c: some cleanups to allow registering user strings and
12859         later getting a token for methodrefs and fieldrefs before the assembly
12860         is built.
12861         * row-indexes.h: updates and fixes from the new ECMA specs.
12862
12863 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
12864
12865         * class.h, class.c: add enum_basetype field to MonoClass.
12866         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
12867         to get index in the constant table reated to a field, param or
12868         property.
12869         * reflection.h, reflection.c: handle constructors. Set public-key and
12870         version number of the built assembly to 0.
12871         * row-indexes.h: update from new ECMA spec.
12872
12873 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
12874
12875         * class.h, class.c: add a max_interface_id to MonoClass.
12876         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
12877         since it's used to do that. Added mono_type_type_from_obj().
12878         Make GetType() return NULL instead of segfaulting if the type was not
12879         found. Handle simple arrays in assQualifiedName.
12880         * object.h: add a struct to represent an Exception.
12881         * reflection.c: output call convention in method signature.
12882         Add code to support P/Invoke methods and fixed offsets for fields.
12883
12884 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
12885
12886         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
12887         the value.
12888         * icall.c: use mono_array_addr instead of array->vector: fixes the
12889         reflection image writing.
12890         * reflection.c: init call convention byte to 0 in method signature.
12891         Encode the property signature. Don't output property-related methods
12892         twice. Really process the properties for a type (don't cast a field to
12893         a property, my mom always told me that).
12894         Fix 64 bit issues in pointer alignment in a different and more
12895         readable way.
12896
12897 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
12898
12899         * loader.h: Removed type class from MonoDefaults, added monotype
12900
12901         * loader.c: Loaded MonoType, removed loading of Type
12902
12903         * icall.c (my_mono_new_object): Now returns a System.MonoType,
12904         and fills in System.Type._impl with a RuntimeTypeHandle rather
12905         than the actual MonoClass *
12906
12907         (ves_icall_type_from_handle): change from type_class to
12908         monotype_class
12909
12910         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
12911         implemented
12912
12913         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
12914         implemented
12915
12916         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
12917
12918         (ves_icall_System_Reflection_Assembly_GetType): implemented
12919
12920         (ves_icall_System_MonoType_assQualifiedName): implemented
12921
12922         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
12923
12924 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
12925
12926         * assembly.c (mono_assembly_open): Implement a cache for the
12927         assemblies. 
12928
12929         (mono_assembly_close): only destroy the assembly when the last
12930         reference is gone.
12931         
12932 2001-11-09  Dick Porter  <dick@ximian.com>
12933
12934         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
12935
12936 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
12937
12938         * class.c (mono_class_metadata_init): bug fix: compute the right slot
12939
12940 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
12941
12942         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
12943         from Martin Weindel.
12944         * object.h: add mono_string_chars ().
12945
12946 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
12947
12948         * reflection.c (build_compressed_metadata): Eliminates warnings
12949         and uses 64-bit clean code.
12950
12951         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
12952         (mono_type_equal): Change signature to eliminate warnings.
12953
12954 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
12955
12956         * icall.c, loader.c: remove the internalcall array constructors.
12957         Changes to match the new MonoArray structure.
12958         * object.h, object.c: an array object doesn't allocate an extra
12959         vector. Add mono_array_new_full () to create jagged arrays easily.
12960
12961 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
12962
12963         * metadata.h, metadata.c: add mono_metadata_field_info () to
12964         retreive all the info about a field from vairous tables.
12965         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
12966         * class.h, class.c: augment MonoClassField with more info.
12967         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
12968         policy and load a field's RVA if needed.
12969
12970 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
12971
12972         * class.c (mono_class_metadata_init): create a trampoline for all
12973         virtual functions instead of actually compiling them.
12974
12975 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
12976
12977         * class.h, class.c: include name in MonoClassField.
12978         * class.c: fix fundamental type of System.Object and System.String.
12979         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
12980         tokens in ldtoken.
12981         * icall.c: remove internalcalls for the Reflection stuff that is now
12982         done in C# code.
12983         * loader.c: mono_field_from_memberref () implementation.
12984         * mono-endian.c: thinko (s/struct/union/g).
12985         * object.c, object.h: make the mono_string_* prototypes actually use
12986         MonoString instead of MonoObject.
12987         * reflection.c, reflection.h: updates for changes in the reflection
12988         code in corlib: we use C structures that map to the actual C# classes.
12989         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
12990         fat method header if needed and use the info from the ILGenerator for
12991         methods. Handle fields in types. Misc fixes.
12992
12993 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
12994
12995         * class.c (mono_class_metadata_init): bug fix: always allocate
12996         space for static class data
12997
12998 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
12999
13000         * class.c (mono_compute_relative_numbering): use relative
13001         numbering to support fast runtime type checks.
13002
13003 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
13004
13005         * class.c (mono_class_create_from_typeref): added debugging output
13006         to print class name when MonoDummy is returned instead of real class
13007
13008 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
13009
13010         * class.c (mono_class_metadata_init): interface offset table now
13011         contains pointers into the vtable - this is more efficient for the jit
13012
13013 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
13014
13015         * class.c (mono_class_metadata_init): use a temporary vtable (the
13016         old algorithm only worked for the interpreter, but not for the jit)
13017
13018 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
13019
13020         * loader.c (method_from_memberref): use mono_class_get to get the
13021         class of an array instead of using System.Array directly.
13022         (mono_get_method): also add MEMBERREF methods to the method cache
13023         which usefull for arrays.
13024
13025 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
13026
13027         * pedump.c (arch_compile_method): added to compute vtable entry
13028
13029         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
13030         number of interfaces.
13031         
13032         * class.h: merged MonoArrayClass into MonoClass
13033
13034         * class.c (mono_class_create_from_typedef): compute the vtable size and
13035         allocate space to include the vtable inside MonoClass
13036         (mono_class_metadata_init): initialize the vtable
13037
13038 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
13039
13040         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
13041         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
13042         * image.c: endian fixes by Laurent Rioux.
13043         * object.h, object.c: rename MonoStringObject to MonoString and
13044         MonoArrayObject to MonoArray. Change some function names to conform to
13045         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
13046         guint16* as first argument, so don't use char*.
13047         Provide macros to do the interesting things on arrays in a portable way.
13048         * threads-pthread.c: updates for the API changes and #include <sched.h>
13049         (required for sched_yield()).
13050         * icall.c: updates for the API changes above.
13051         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
13052         platforms that need them.
13053
13054 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
13055
13056         * class.c: set the correct type for all the fundamental
13057         type when loading the class.
13058
13059 2001-10-05  Dick Porter  <dick@ximian.com>
13060
13061         * threads-pthread.c (pthread_mutex_timedlock): Simple
13062         compatibility version for C libraries that lack this call.
13063
13064 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
13065
13066         * class.c: MonoTypes stored in MonoClass are stored as
13067         fundamental MonoTypes when the class represents a
13068         fundamental type (System.Int32, ...).
13069         The TypeHandle return by ldtoken is a MonoType*.
13070         * icall.c: ves_icall_get_data_chunk () write out all the
13071         PE/COFF stuff. Implement ves_icall_define_method (),
13072         ves_icall_set_method_body (), ves_icall_type_from_handle ().
13073         * image.c: properly skip unknown streams.
13074         * loader.h, loader.c: add type_class to mono_defaults.
13075         * metadata.c, metadata.h: export compute_size () as
13076         mono_metadata_compute_size () with a better interface.
13077         Typo and C&P fixes.
13078         * pedump.c: don't try to print the entry point RVA if there is no entry point.
13079         * reflection.c, reflection.h: many cleanups, fixes, output method
13080         signatures and headers, typedef and typeref info, compress the metadata
13081         tables, output all the heap streams, cli header etc.
13082         * row-indexes.h: typo fixes.
13083
13084 2001-10-04  Dick Porter  <dick@ximian.com>
13085
13086         * object.h: Add a synchronisation mutex struct to MonoObject
13087
13088         * object.c (mono_new_object): Initialise the object
13089         synchronisation mutexes
13090
13091         * icall.c: System.Threading.Monitor internal calls
13092         
13093         * threads-pthread.h:
13094         * threads-pthread.c: System.Threading.Monitor internal calls
13095
13096         * threads-types.h: New file, includes the system-specific thread
13097         structures
13098         
13099         * threads-pthread-types.h:
13100         * threads-pthread-types.c: New files, handle pthread-specific
13101         synchronisation types
13102
13103         * threads-dummy-types.h: 
13104         * threads-dummy-types.c: New files of dummy support for
13105         thread-specific types
13106
13107         * metadata.c:
13108         * image.c:
13109         * pedump.c: include mono-endian.h not endian.h
13110         
13111         * Makefile.am: More threads files.
13112         Name mono-endian.h not endian.h
13113
13114 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
13115
13116         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
13117         stuff and implement a few more bits.
13118         * icall.c: a field needs to be dereferenced twice. Do not use the same
13119         name for two variables in the same scope.
13120         * image.c, image.h: cleanups.
13121
13122 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
13123
13124         * class.c (mono_class_metadata_init): bug fix: compute the right size
13125
13126 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
13127
13128         * icall.c: implemented some of the Reflection internalcalls.
13129         * image.c, image.h: start writing out the PE/COFF image.
13130         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
13131         that does the reverse than decode_blob_size ().
13132         * object.c: use mono_metadata_encode_value (). Move here
13133         temporary implementation of mono_string_to_utf8 ().
13134         * rawbuffer.c: make malloc_map static.
13135
13136 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
13137
13138         * metadata.c: fix type comparison for arrays.
13139         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
13140         Added a couple of new classes to monodefaults.
13141         * icall.c: added a couple of Reflection-related internalcalls.
13142         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
13143         Added a byval_arg MonoType to MonoClass.
13144
13145 2001-09-28  Dick Porter  <dick@ximian.com>
13146
13147         * icall.c:
13148         * threads-pthread.h: 
13149         * threads-pthread.c: Implemented internal calls for
13150         LocalDataStoreSlot operations.  Applied mutexes around all shared
13151         data.  Reworked the thread creation and Start() operations to
13152         avoid a race condition.
13153         
13154         * threads-dummy.h:
13155         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
13156
13157 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
13158
13159         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
13160
13161 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
13162
13163         * class.c, loader.c: warn and return NULL instead of erroring out.
13164         * icall.c: added System.AppDomain::getCurDomain().
13165         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
13166
13167 2001-09-25  Dick Porter  <dick@ximian.com>
13168
13169         * threads-pthread.h:
13170         * threads-pthread.c: Implemented timed thread joining and added
13171         System.Threading.Thread::Join_internal internal call
13172
13173         * icall.c: Added System.Threading.Thread::Join_internal internal call
13174
13175         * threads-dummy.h:
13176         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
13177
13178 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
13179
13180         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
13181         mono_string_intern () to implement the semantics of the ldstr opcode
13182         and the interning of System.Strings.
13183         * icall.c: provide hooks to make String::IsIntern and String::Intern
13184         internalcalls.
13185
13186 2001-09-23  Dick Porter  <dick@ximian.com>
13187
13188         * threads-dummy.c: 
13189         * threads-dummy.h: New files of dummy threading routines
13190
13191         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
13192         support code based on system specifics
13193
13194         Rename PTHREAD_LIBS to THREAD_LIBS
13195         
13196 2001-09-23  Dick Porter  <dick@ximian.com>
13197
13198         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
13199         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
13200         internal calls.
13201         (mono_thread_init): Set up a Thread object instance to return when
13202         the main thread calls Thread.CurrentThread
13203         (mono_thread_cleanup): Wait for all subthreads to exit
13204
13205         * icall.c: New internal calls for System.Threading.Thread::Sleep
13206         (including Schedule) and CurrentThread
13207
13208         * threads.h: New file, to insulate thread-specific stuff from the
13209         rest of the code
13210
13211 2001-09-21  Dick Porter  <dick@ximian.com>
13212
13213         * threads-pthread.h: 
13214         * threads-pthread.c: New file, for handling pthreads-style
13215         threading support.  Start() now starts a new thread and executes
13216         the ThreadStart delegate instance.
13217
13218         * icall.c: Added the internalcall for
13219         System.Threading.Thread::Start_internal
13220
13221         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
13222
13223 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
13224
13225         * loader.c: work around the different signatures for delegates
13226         constructors csc generates in compiled code vs the ones compiled in mscorlib.
13227
13228 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
13229
13230         * class.h, class.c: add mono_class_get_field_from_name ().
13231         * *: Fix C comments and other ANSI C issues.
13232
13233 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
13234
13235         * endian.h, assembly.c: fix some endianness issues.
13236
13237 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
13238
13239         * loader.h, load.c: add delegate_class to mono_defaults.
13240         Handle runtime provided methods in mono_get_method ().
13241
13242 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
13243
13244         * loader.c (mono_get_method): use pinvoke for internal call
13245
13246         * icall.c: use pinvoke for internal call
13247
13248         * loader.c (method_from_memberref): set the method name
13249
13250 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
13251
13252         * metadata.c: help the compiler generate better code for
13253         mono_class_from_mono_type ().
13254
13255 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
13256
13257         * class.c (mono_class_metadata_init): delayed computing of the
13258         class size to mono_class_metadata_init ()
13259
13260 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
13261
13262         * class.c, class.h: add an interfaces member to MonoClass.
13263         * image.c, image.h: add assembly_name field to MonoImage
13264         from the assembly table.
13265         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
13266
13267 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
13268
13269         * class.c: Handle Array in mono_class_from_mono_type ().
13270         * metadata.c, pedump.c: some endian fixes.
13271
13272 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
13273
13274         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
13275         * metadata.c: fix small problem introduced with the latest commit.
13276
13277 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
13278
13279         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
13280         We don't need a MonoMetadata pointer anymore to compare signatures in
13281         mono_metadata_signature_equal (), update callers.
13282         Reduced memory usage an number of allocations for MonoMethodHeader and
13283         MonoMethodSignature.
13284
13285 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
13286
13287         * metadata.c: added compare for szarray.
13288
13289 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
13290
13291         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
13292         and add a couple more types to it and mono_defaults. Give an hint on
13293         classes that need implementing in our corlib and are referenced
13294         in mscorlib.
13295
13296 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
13297
13298         * class.h, class.c: keep track if a class is also an Enum.
13299         * loader.c: Implement a couple more types for use in libffi
13300         marshalling. Gives better diagnostics when failing to dlopen
13301         a library. Set method->klass for P/Invoke methods, too.
13302
13303 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
13304
13305         * class.c, class.h: add a MonoType this_arg to MonoClass that
13306         represents a pointer to an object of the class' type that
13307         can be used by the interpreter and later the type cache.
13308         Add best guess alignment info for valuetype objects.
13309
13310 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
13311
13312         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
13313         into MonoType: one less level of indirection and allocation and
13314         simplifies quite a bit of code. Added cache for MonoTypes that are
13315         used frequently, so that we don't need to allocate them all the time.
13316
13317 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
13318
13319         * class.c (mono_class_create_from_typedef): System.Enum is also a
13320         value type, although it does not derive from System.ValueType
13321         (maybe a bug in the ms compiler?)
13322
13323         * metadata.c (mono_type_size): return the right size for value types
13324
13325         * loader.c (mono_get_method): only initialize method header if not abstract
13326
13327         * class.c (mono_class_from_mono_type): use mono_default values. 
13328
13329 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
13330
13331         * *: use MonoClass pointers instead of <type_tokens>
13332         
13333         * class.h: new flag: metadata_inited.
13334
13335         * class.c (mono_class_metadata_init): impl.
13336         (mono_class_instance_size): impl.
13337         (mono_class_data_size): impl.
13338
13339 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
13340
13341         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
13342         MonoClass now has the name and name_space fields. 
13343         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
13344         mono_get_method () takes and optional MonoClass as argument.
13345         Removed mono_typedef_from_name() and added mono_class_token_from_name()
13346         instead that takes advantage of a map from class names to typedef
13347         tokens in MonoImage.
13348
13349 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
13350
13351         * metadata.c: zero is not a valid alignment boundary.
13352         Merge MONO_TYPE_VOID in default decoding code.
13353
13354 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
13355
13356         * image.h: merged MonoMetadata into MonoImage
13357
13358         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
13359         identify the type of elements.
13360
13361 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
13362
13363         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
13364         * cil-coff.h: split MonoMSDOSHeader and add size info.
13365         * image.c: add some consistency checks.
13366         * metadata.c: fix row size computation: one programmer
13367         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
13368         add explanation for the locator routine.
13369         Fix decoding of size in method header.
13370         
13371 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
13372
13373         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
13374         (g_concat_dir_and_file): Bring g_concat_dir_and_file
13375         function from gnome-libs.  This uses the right path separator
13376         based on the OS, and also works around a bug in some systems where
13377         a double slash is not allowed. 
13378         (default_assembly_name_resolver): Use g_concat_dir_and_file
13379         (mono_assembly_open): ditto.
13380
13381 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
13382
13383         * metadata.c (mono_metadata_signature_equal): impl.
13384
13385         * *: void is now a realy MonoType (instead of using NULL)
13386         
13387         * metadata.c (do_mono_metadata_parse_type): use
13388         mono_metadata_parse_type to parse void value.
13389
13390 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
13391
13392         * metadata.c, metadata.h: in the signature and method header store
13393         only the space required for holding the loca vars and incoming arguments.
13394
13395 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
13396
13397         * metadata.c (do_mono_metadata_parse_type): treat void like any
13398         other type (instead of assigning NULL);
13399
13400 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
13401
13402         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
13403
13404 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
13405
13406         * image.c (do_mono_image_open): added a cache for arrays.
13407
13408 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
13409
13410         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
13411         decode a single column from a row in a metadata table and changes
13412         to take advantage of it in the typedef locator (gives a nice speed up).
13413         Store offset info for function params.
13414
13415 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
13416
13417         * image.h (MONO_IMAGE_IS_CORLIB): removed 
13418
13419 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
13420
13421         * assembly.c: how could mono_assembly_close () had ever worked?
13422         * metadata.c, metadata.h: provide offset info for local vars.
13423         Implement mono_type_size () to take care of alignment as well
13424         as size (it was mono_field_type_size in cli/class.c before).
13425
13426 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
13427
13428         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
13429
13430         * assembly.h (CORLIB_NAME): set to corlib.dll
13431
13432         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
13433
13434 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
13435
13436         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
13437         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
13438         tokentype.h: massive namespace cleanup.
13439
13440 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
13441
13442         * metadata.h, metadata.c: decode exception clauses when parsing method header.
13443
13444 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
13445
13446         * metadata.c (mono_metadata_free_type): added check for type !=
13447         NULL (void) before calling mono_metadata_free_type()
13448
13449 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
13450
13451         * metadata.h, row_indexes.h: added header with enumerations to use
13452         to index in the columns from tables in metadata and to decode coded
13453         tokens: we should start using this instead of embedding magic numbers
13454         all over the code.
13455
13456 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
13457
13458         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
13459         Move metadata_t info from cli_image_info_t to MonoImage, where
13460         it's easily accessible. Changed all the uses accordingly.
13461         Added the method and class caches to MonoImage.
13462         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
13463         and mono_metadata_decode_value () signature to be more consistent
13464         with the other parse functions (and simplify code). Taken advantage
13465         of zero-length array allocation with GCC. Removed reduntant (and
13466         wrong) MonoFieldType struct and use MonoParam instead. Changed
13467         mono_metadata_parse_field_type () to use common code for parsing.
13468         Added mono_metadata_typedef_from_field () and
13469         mono_metadata_typedef_from_method () to lookup a typedef index from a
13470         field or method token.
13471         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
13472
13473 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
13474
13475         * metadata.c (mono_metadata_parse_field_type): Implement. 
13476         (do_mono_metadata_parse_type): Split engine from
13477         mono_metadata_parse_type, so that we can create smaller structures
13478         for things that just have one pointer to the MonoType (look at
13479         the MonoFieldType)
13480
13481 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
13482
13483         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
13484         as Jan Gray found out, it is incorrect. 
13485
13486 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
13487
13488         * assembly.c: Implement asssembly loading.  This loads an image
13489         and loads all the referenced assemblies.  Come to think of it, we
13490         could always do lazy loading of the assemblies. 
13491
13492         * image.c (mono_image_open): Keep loaded images in a hashtable.
13493
13494         * image.h (MonoImage): Add reference count.
13495
13496 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
13497
13498         * assembly.c (mono_assembly_open): Keep track of the file name in
13499         case the assembly has no ASSEMBLY table.
13500
13501         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
13502         from get.c here.
13503
13504 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
13505
13506         * metadata.c, metadata.h: decode local vars in method header
13507         parse function. Change callers accordingly.
13508
13509 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
13510
13511         * metadata.h, cil-coff.h: protect against multiple inclusion.
13512         Added some new structures to hold information decoded from metadata:
13513         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
13514         and relevant decoding/free functions.
13515         * metadata.c: implement decoding functions. Add warning for out of bounds
13516         index in mono_metadata_locate(). Implement mono_get_method () to retreive
13517         all the info about a method signature and invocation. Remove check on
13518         uninitialized local var in parse_mh() and fix memory leak.
13519
13520 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
13521
13522         * metadata.h: More macros.
13523
13524         * tokentype.h: New file.
13525
13526 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
13527
13528         * assembly.c: added a consistency check and initialize
13529         some structures with g_new0().
13530         * metadata.c: fixed a couple more bugs in table size computation
13531         and add other checks for out-of bound access to metadata.
13532
13533 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
13534
13535         * metatada.c: fix bugs computing table sizes. Spew a
13536         warning when index in string heap is out of bounds.
13537
13538 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
13539
13540         * metadata.h: Add a couple of macros to manipulate tokens. 
13541
13542 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
13543
13544         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
13545         cli_section_tables).
13546
13547 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
13548
13549         * metadata.c (mono_metadata_user_string): New function, provides
13550         access to the UserString heap. 
13551
13552 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
13553
13554         * metadata.c: Add inline documentation.
13555
13556 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
13557
13558         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
13559         files. 
13560
13561 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
13562
13563         * typeattr.h: New file, TypeAttribute flags. 
13564
13565 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
13566
13567         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
13568         mono_assembly_ensure_section): Section loading code.
13569         (load_section_tables): Load the sections.
13570
13571         * mono/metadata/metadata.c (mono_metadata_locate_token,
13572         mono_metadata_locate): Functions to locate the information
13573         definition given a token or a table and an index.
13574         (mono_metadata_compute_table_bases): New.
13575         (compute_size): New function to compute the sizes of the various
13576         tables.
13577
13578         * mono/metadata/metadata.h: Finish listing the different index
13579         types. 
13580
13581         * mono/metadata/pedump.c: Improve to dump new information.
13582
13583 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
13584
13585         * mono/metadata/metadata.c: Entered all the tables matching
13586         Beta2. 
13587
13588         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
13589