Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
[mono.git] / mono / metadata / ChangeLog
1
2 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
3
4         * domain.c, object.c: change the ldstr_table to hold
5         MonoString* as keys: makes the runtime isinterned lookup
6         faster and simplifies memory management.
7
8 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
9  
10         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
11         possible to add imperative security checks before calling the icall.
12         * reflection.c: Return security attributes on the original MonoMethod
13         (and not the wrapped one). This fix permissions on icalls.
14
15 2005-01-25  Dick Porter  <dick@ximian.com>
16
17         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
18         the check for mktime() support actually test the mktime() return
19         value.  "Fixes" bug 71682, though the output is still different to
20         MS.
21
22 2005-01-25  Martin Baulig  <martin@ximian.com>
23
24         * class.c (mono_class_is_assignable_from): Make this work for
25         generic instances.
26
27 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
28
29         * marshal.c (mono_string_utf8_to_builder)
30         (mono_string_builder_to_utf16): We might not have ownership of the
31         string. In thise case, we need to create a new buffer.
32
33         * object-internals.h (mono_stringbuilder_capacity): sb->str might
34         be null, in which case, use the default capacity.
35
36 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
37
38         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
39         GC events to the profiler.
40
41 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
42
43         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
44         if you don't want the GC to run.
45
46 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
47
48         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
49         start providing a GC API and keeping different implementations in
50         their own file.
51         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
52
53 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
54
55         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
56         mmap rather than allocating a huge buffer.
57         (mono_debug_close_mono_symbol_file): Free the buffer allocated
58         above.
59
60 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
61
62         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
63         and CheckExecutionRights.
64         * reflection.c|h: Keep the index of the declarative security to be 
65         used, instead of the pointer, when AOT compiler is used. Also add 
66         class initialization when requesting demands.
67         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
68         CheckExecutionRights. Both properties are now FALSE by default, and
69         unmodifiable, unless the --security option is used.
70
71 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
72
73         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
74         reflection.c: properly refcount images and assemblies, many leaks fixed.
75
76 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
77
78         * threadpool.c: increase the timeout for threads in the thread pool to
79         10s.  Fixes bug #67159.
80
81 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
82
83         * class-internals.h: Sun's compiler insists on explicit
84         signed on bit fields to handle then correctly.
85
86 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
87
88         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
89         Make the size of the array fit only the number of invalid path
90         chars that we have.
91
92         * class.c (_mono_class_get): Improve the error reporting when a
93         class referenced is not found, to assist debugging. 
94
95 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
96
97         * threads.c: fix off-by-one error.
98         * domain.c: free data allocated in the domain.
99
100 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
101
102         * reflection.c (mono_method_body_get_object): Fill out exception info
103         as well.
104
105         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
106         structure.
107         
108 2005-01-19  Martin Baulig  <martin@ximian.com>
109
110         * loader.c (mono_get_method_constrained): Make this work again.
111
112 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
113
114         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
115         guint16 to match the managed side.
116
117         * reflection.c (mono_reflection_body_get_object): Fill out local
118         variables array.
119
120         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
121         as well.
122
123         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
124         'local_var_sig_token'.
125
126 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
127
128         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
129         System.Drawing.
130
131         * reflection.c (mono_method_body_get_object): Handle abstract and
132         runtime methods.
133
134 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
135
136         * marshal.c, loader.c, class-internals.h, reflection.c:
137         store the emthod data for a wrapper in an array instead of a list.
138
139 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
140
141         * marshal.c: change the code to allocate memory more
142         conservatively for method wrappers.
143
144 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
145
146         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
147         fields from MonoClass to the marshal info structure where they belong.
148
149 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
150
151         * class.c, object.c, class-internals.h, marshal.c: rearrange
152         some fields and tweak some types to lower memory usage.
153
154 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
155
156         * threads.c (signal_thread_state_change): Handle the case when the
157         target thread is the current thread.
158
159         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
160
161         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
162         emit_ptr_to_object_conv. 
163
164         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
165         marshalling. Fixes #71352.
166
167 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
168
169         * metadata.h, blob.h: move table enum to blob.h so it can be included
170         in any header.
171         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
172         cut the size of MonoImage/MonoDynamicImage.
173
174 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
175
176         * profiler.c (mono_profiler_install_simple): Fix default arguments.
177
178 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
179
180         * reflection.c, reflection.h, icall.c: add a function to check
181         if an attribute type is defined for a metadata object.
182
183 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
184
185         * object-internals.h: Added some needed fields from StringBuilder class.
186         * marshal.c: Set the maxCapacity when creating a StringBuilder.
187
188 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
189
190         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
191         threads before shutting down the runtime.
192
193         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
194
195 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
196
197         * object-internal.h, threads.c: implement stacksize and 
198         parameterized thread start functionality (requires
199         matching corlib). Marked broken code for later removal.
200
201 2005-01-12  Martin Baulig  <martin@ximian.com>
202
203         * class-internals.h (MonoGenericClass): Moved the `initialized'
204         flag to MonoDynamicGenericClass, removed `init_pending'.
205         (MonoGenericInst): Added `is_reference' flag.
206
207 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
208
209         * reflection.c (mono_image_create_pefile): Only set the pe_offset
210         inside the MSDOS header. Fixes #71201.
211
212         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
213         gc thread.
214         (mono_domain_finalize): Ditto.
215
216 2005-01-12  Martin Baulig  <martin@ximian.com>
217
218         * class.c (mono_get_shared_generic_class): Use the cache for
219         non-dynamic generic classes.
220
221         * class-internals.h (mono_class_create_generic_2): Removed
222         function prototype, this function is now static inside class.c.
223
224         * class.c (mono_class_create_generic_2): Made this static, only
225         call it from mono_class_init() and mono_class_setup_parent().
226         (collect_implemented_interfaces_aux): Call mono_class_init() on
227         the interfaces we collect.
228         (mono_class_setup_vtable): Call mono_class_init (class->parent).
229
230 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
231
232         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
233         it a real thread handle.
234
235         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
236         MonoJitExceptionInfo, since each catch clause needs its own variable.
237         
238 2005-01-11  Dick Porter  <dick@ximian.com>
239
240         * image.c (mono_pe_file_open): New variant on mono_image_open()
241         that does not set up the CLI metadata; used for FileVersionInfo so
242         it can get the data for windows binaries too.
243         
244         * process.c (process_read_string_block): Don't read off the end of
245         the StringTable block.
246
247         These both fix bug 70766.
248
249 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
250
251         * gc.c: set some fields to NULL at GC cleanup time.
252         * threads.c: if we quit the main thread, call exit ().
253
254 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
255
256         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
257
258 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
259
260         * threads.h, threads.c, object.c: added accessor and settor for
261         main_thread. Handle it specially when exiting from it: wait
262         for other foreground threads to exit.
263
264 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
265
266         * process.c, verify.c: remove some bloat.
267
268 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
269
270         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
271         the calling convention to cdecl under win32.
272
273 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
274
275         * object.c (mono_object_get_size): New function to get the size of
276         an object instance.
277
278         * profiler.c (simple_allocation): Use above.
279
280 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
281
282         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
283         ves_icall_System_AppDomain_getRootDomain (as it's not required to
284         get an appdomain by it's id and we can't assume the root's id is 0).
285         * domain-internals.h: Change the function prototype to match.
286         * icall.c: Change the icall table for AppDomain.
287
288 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
289
290         * locales.c (string_invariant_compare_char): Only compute
291         GUnicodeTypes in the case where we need them.  Test for ordinality
292         first and return if so.
293
294         From the commit:
295
296                 /*
297                  * FIXME: here we must use the information from c1type and c2type
298                  * to find out the proper collation, even on the InvariantCulture, the
299                  * sorting is not done by computing the unicode values, but their
300                  * actual sort order.
301                  */
302
303 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
304
305         * loader.c: for P/Invoke methods, allow the "Internal" shared
306         library name to refer to the calling process symbol namespace.
307
308 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
309
310         * Makefile.am: Add the security manager to the build.
311         * security-manager.c|h: New. Initialization of the security manager.
312
313 2005-01-07  Dick Porter  <dick@ximian.com>
314
315         * threads.c: 
316         * monitor.c: Update thread state during Monitor and WaitHandle
317         waits.  Fixes bug 71031.
318
319 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
320
321         * reflection.c (property_encode_signature): Correctly handle when the
322         property has no methods.
323
324 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
325
326         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
327         
328         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
329         fields from mb, not rmb. Fixes #71017.
330
331         * marshal.c (emit_ptr_to_str_conv): Add support for 
332         ByValTStr -> string conversion. Fixes #71015.
333
334         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
335
336         * mempool.c (mono_mempool_contains_addr): New helper function.
337
338 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
339
340         * metadata.c (mono_metadata_compute_size): Fix size calculation of
341         HasSematics encoded fields.
342         
343         * metadata.c (mono_type_to_unmanaged): Improve error message for 
344         invalid string marshalling.
345
346         * metadata.c: Fix warnings.
347         
348 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
349
350         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
351         profiler support.
352
353 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
354
355         * domain.c object.c domain-internals.h: Revert part of r38077 since the
356         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
357         tests.
358
359 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
360
361         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
362         so methods containing these can be AOTed.
363
364 2005-01-03  Martin Baulig  <martin@ximian.com>
365
366         * loader.c (find_method): Removed the hack for generic instances.
367         (method_from_memberref): If our parent is a generic instance, pass
368         its generic type definition to find_method() and then inflate the
369         method.
370         (mono_get_method_constrained): Pass the generic type definition to
371         find_method() and inflate the method later.
372
373         * class-internals.h (MonoStats): Added `generic_class_count'.
374
375         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
376         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
377
378         * reflection.c (mono_custom_attrs_from_params): Don't ignore
379         generic type definitions.
380
381 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
382
383         * loader.c icall.c: Fix warnings.
384
385 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
386
387         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
388         blittable types. Fixes #70864.
389
390 2004-12-29  Martin Baulig  <martin@ximian.com>
391
392         * icall.c
393         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
394
395         * reflection.c (mono_method_get_object): Create a
396         "System.Reflection.MonoGenericMethod" for inflated methods; don't
397         call mono_get_inflated_method().
398
399         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
400
401 2004-12-27  Martin Baulig  <martin@ximian.com>
402
403         * class-internals.h (MonoMethod): Added `is_inflated' flag.
404         (MonoMethodInflated): Added `inflated' field.
405
406         * class.c (mono_class_inflate_generic_method): Don't really
407         inflate the method here; just set the `is_inflated' flag in the
408         MonoMethod.
409         (mono_class_get_inflated_method): Actually inflate the method here
410         if it's not already inflated; we use the MonoMethodInflated's new
411         `inflated' field as a cache.
412
413 2004-12-26  Martin Baulig  <martin@ximian.com>
414
415         * class.c
416         (inflate_generic_class): Moved some code out of inflate_generic_type().
417         (mono_class_inflate_generic_method): If we're already inflated,
418         inflate the context and use the declaring method; ie. make sure
419         the declaring method of an inflated method is always the generic
420         method definition.
421         (mono_class_create_from_typedef): Create
422         `class->generic_container->context->gclass'.
423
424 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
425
426         * metadata-internals.h, marshal.c, reflection.c: More
427         MonoGHashTable->GHashTable.
428
429         * domain-internals.h, class.c: Change MonoGHashTable's into
430         GHashTables for some cases where no gc stuff is used
431
432         All users: update apis
433
434 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
435
436         * metadata.c (builtin_types): Make this `const'. Makes this get
437         put into the shareable section.
438         (mono_metadata_init): Casts to make gcc happy.
439
440 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
441
442         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
443
444 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
445
446         * icall.c: Added an internal call to retrieve the position and length
447         of assembly-level declarative security attributes (RequestMinimum, 
448         RequestOptional and RequestRefuse). This is used by the Assembly class
449         to re-create the corresponding permission sets.
450
451 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
452
453         * marshal.c: fix the stelemref wrapper to be type correct
454         (and faster).
455
456 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
457
458         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
459         to do key & 0x7fffffff. Hashtable already does this. It just
460         results in longer code.
461
462 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
463
464         * appdomain.c: Bump corlib version.
465         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
466         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
467         * reflection.c|h: Add functions to get declarative security infos
468         (blob position and length) for assemblies, classes and methods.
469
470 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
471
472         * reflection.c: sort the constant table (bug #70693).
473
474 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
475
476         * object-internals.h, threads.c, domain.c: add accessors for
477         the MonoThread and MonoDomain tls keys.
478
479 2004-12-18  Martin Baulig  <martin@ximian.com>
480
481         * class.c (inflate_generic_type): If we're inflating a generic
482         instance, set `ngclass->context->container = context->container';
483         ie. the container we inflated into.
484
485         * metadata.c (mono_metadata_parse_generic_param): Reflect above
486         inflate_generic_type() changes.
487
488 2004-12-17  Martin Baulig  <martin@ximian.com>
489
490         * class-internals.h
491         (MonoGenericClass): Replaced `MonoType *generic_type' with
492         `MonoClass *generic_class'.  Removed `dynamic_info'; if
493         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
494         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
495
496 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
497
498         * exception.c (mono_exception_from_token): New helper function.
499
500 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
501
502         * assembly.c (mono_assembly_load_with_partial_name): Call 
503         mono_assembly_loaded before invoking the preload hooks. Fixes
504         #70564.
505
506         * object-internals.h (MonoThread): Change culture_info and 
507         ui_culture_info into an array.
508
509         * threads.c: Cache culture info objects from more than one appdomain.
510
511         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
512         current UI culture.
513
514 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
515
516         * threads.h threads.c appdomain.c: Clear the culture_info field of
517         all threads during unloading if they point to an object in the dying
518         appdomain.
519
520 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
521
522         * culture-info.h (TextInfoEntry): New struct
523         * object-internals.h: sync with managed
524         * locales.c: fill the `text_info_data' field
525         * culture-info-tables.h: update
526
527 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
528
529         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
530         collector.
531
532 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
533
534         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
535         (ves_icall_ModuleBuilder_getMethodToken): Ditto
536
537 2004-12-12  Martin Baulig  <martin@ximian.com>
538
539         * mono-debug-debugger.c (write_type): If we're an enum and the
540         builtin types have already been initialized, call mono_class_init().
541
542 2004-12-11  Martin Baulig  <martin@ximian.com>
543
544         * metadata.c (mono_metadata_load_generic_params): Added
545         `MonoGenericContainer *parent_container' argument; automatically
546         compute `container->is_method'; pass the correct owner to
547         get_constraints().      
548
549         * reflection.c (compare_genericparam): Sort the GenericParam table
550         according to increasing owners. 
551
552 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
553
554         * profiler.c: allow disabling the default profiler.
555
556 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
557
558         * decimal.c, icall.c: allow disabling System.Decimal support.
559
560 2004-12-09  Marek Safar <marek.safar@seznam.cz>
561
562         * reflection.c: Add support for null attribute arguments.
563
564 2004-12-09  Martin Baulig  <martin@ximian.com>
565
566         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
567         names to get rid of compiler warnings.
568
569 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
570
571         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
572         mono_marshal_load_type_info (). Fixes #69625.
573         (mono_marshal_get_ptr_to_struct): Likewise.
574
575 2004-12-08  Martin Baulig  <martin@ximian.com>
576
577         * mono-debug.h: Bumped version number to 47.
578
579         * mono-debug-debugger.c
580         (mono_debugger_event_handler, mono_debugger_event): Take two
581         guint64 arguments insteed of a gpointer and a guint32.  
582
583 2004-12-08  Martin Baulig  <martin@ximian.com>
584
585         * debug-mono-symfile.h
586         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
587         `address' to `native_offset'.
588
589 2004-12-08  Martin Baulig  <martin@ximian.com>
590
591         * class.c (mono_class_create_from_typespec): Only inflate if we
592         either have `context->gclass' or `context->gmethod'.
593
594 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
595
596         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
597
598         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
599
600         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
601
602         * reflection.c (mono_assembly_get_object): Remove the workaround put
603         in for the release.
604         
605         * appdomain.c: Use the corlib_internal field from MonoAssembly.
606
607         * appdomain.c: Bump corlib version.
608
609         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
610         be visible in other appdomains.
611
612 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
613
614         * threads.c: Interlocked inc and dec for longs were messed up,
615         use a KISS based impl for this. Fixes 70234
616
617 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
618
619         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
620
621 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
622
623         * icall.c: fix to follow policy not to allow struct
624         arguments in icalls.
625
626 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
627
628         * process.c: make the patch that handles spaces in file paths work
629         on mono/windows too.
630
631 2004-12-06  Martin Baulig  <martin@ximian.com>
632
633         * class.c (mono_class_create_generic): Call
634         mono_class_setup_supertypes() if we're dynamic.
635         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
636
637 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
638
639         * object-internals.h: Add new fields to MonoThread.
640
641         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
642
643         * icall.c threads-types.h threads.c: Add new icalls.
644
645         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
646
647         * object-internals.h (MonoReflectionAssembly): Sync object layout with
648         managed side.
649
650         * appdomain.c: Bump corlib version.
651
652         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
653         internal assemblies. Fixes #69181.
654
655 2004-12-05  Martin Baulig  <martin@ximian.com>
656
657         * class.c (mono_class_inflate_generic_signature): Make this a
658         no-op if `context' is NULL or we don't have any type parameters;
659         also copy `sentinelpos'.        
660
661 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
662
663         * image.c: Add unbox_wrapper_cache.
664
665         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
666
667         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
668         function generator.
669         
670         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
671         Fixes #70173.
672
673         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
674         
675 2004-12-04  Martin Baulig  <martin@ximian.com>
676
677         * loader.c (mono_method_get_signature_full): New public function;
678         like mono_method_get_signature(), but with an additional
679         `MonoGenericContext *' argument.
680
681         * class.c (mono_class_inflate_generic_signature): Formerly known
682         as inflate_generic_signature(); make this public.
683
684 2004-12-04  Martin Baulig  <martin@ximian.com>
685
686         * metadata.c
687         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
688         instead of a `MonoGenericContainer *'.  
689         (mono_metadata_parse_array_full): Likewise.
690         (mono_metadata_parse_signature_full): Likewise.
691         (mono_metadata_parse_method_signature_full): Likewise.
692         (mono_metadata_parse_generic_inst): Likewise.
693         (mono_metadata_parse_generic_param): Likewise.
694         (mono_metadata_parse_mh_full): Likewise.
695         (mono_type_create_from_typespec_full): Likewise.
696
697 2004-12-03  Martin Baulig  <martin@ximian.com>
698
699         * class-internals.h (MonoGenericContainer): Replaced the
700         `MonoGenericContext * pointer with a `MonoGenericContext'
701         structure and made it the first element.
702
703 2004-12-03  Martin Baulig  <martin@ximian.com>
704
705         * class.c
706         (inflate_generic_type): Set the `context->container' when creating
707         a new MonoGenericContext.
708         (mono_class_inflate_generic_method): Likewise.
709         (mono_class_create_from_typespec): Just use `context->container'
710         to get the container.
711
712         * loader.c (method_from_methodspec): Set `context->parent' from
713         `context->container' - and if that's a method container, use its
714         parent.  Also set the `context->container' when creating a new
715         MonoGenericContext.
716         (mono_get_method_from_token): Use just `context->container' to get
717         the container.
718
719         * metadata.c (do_mono_metadata_parse_generic_class): Also set
720         `gclass->context->container'.
721
722         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
723         the `context->container' when creating a new MonoGenericContext.
724
725 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
726
727         * reflection.c (compare_genericparam): Sort params with identical
728         owner by their number. Fixes gen-111 on sparc.
729
730 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
731
732         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
733         around the domain changes.
734
735         * appdomain.c (mono_domain_unload): Handle the case when the thread
736         calling Unload is itself being aborted during unloading. Fixes #70022.
737
738         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
739
740         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
741         checkpoint_func as an icall so it gets a wrapper.
742         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
743         in the cross-appdomain wrappers too.
744
745         * threads.c (mono_thread_has_appdomain_ref): Make this public.
746
747         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
748
749         * reflection.c: Fix some memory leaks.
750         
751 2004-12-02  Martin Baulig  <martin@ximian.com>
752
753         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
754
755         * metadata.c (generic_class_cache): New static hashtable.
756         (mono_metadata_lookup_generic_class): New public method.
757
758 2004-12-02  Martin Baulig  <martin@ximian.com>
759
760         * class.c (mono_class_create_from_typedef): Call
761         mono_class_setup_parent() and mono_class_create_mono_type() before
762         parsing the interfaces.
763
764 2004-12-02  Martin Baulig  <martin@ximian.com>
765
766         * metadata.c (generic_inst_cache): New static hashtable.
767         (mono_metadata_lookup_generic_inst): New public function.
768         (mono_metadata_inflate_generic_inst): New public function.
769         (mono_metadata_parse_generic_inst): New public function.
770         (do_mono_metadata_parse_generic_class): Use the new
771         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
772         since this'll also use the cache.
773
774         * reflection.c (mono_reflection_bind_generic_method_parameters):
775         Use mono_metadata_lookup_generic_inst() to use the new cache.
776
777         * class.c (inflate_mono_type): Use
778         mono_metadata_inflate_generic_inst() to inflate a generic
779         instance; this'll also use the new cache.
780
781         * loader.c (method_from_methodspec): Use
782         mono_metadata_parse_generic_inst() and
783         mono_metadata_inflate_generic_inst() rather than parsing it
784         manually, so we can use the new cache.
785
786 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
787
788         * threads.c (wait_for_tids): Do not incorrectly free threads when 
789         the wait times out.
790
791 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
792
793         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
794         iter->args based on whether parameters are passed in registers (i.e.
795         MONO_ARCH_REGPARMS is defined)
796
797 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
798
799         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
800         the exception message. Fixes #70070.
801         (method_from_methodspec): Fix warnings.
802
803 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
804
805         * process.c: (complete_path) return the path quoted
806
807 2004-12-01  Martin Baulig  <martin@ximian.com>
808
809         * class-internals.h (MonoGenericInst): New structure.
810         (MonoGenericClass): Replaced `type_argc', `type_argv' and
811         `is_open' with `MonoGenericInst *inst'.
812         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
813         `is_open' with `MonoGenericInst *inst'.
814
815 2004-11-30  Martin Baulig  <martin@ximian.com>
816
817         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
818
819         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
820         to `generic_class_cache'.
821
822         * metadata.c
823         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
824         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
825         (mono_generic_inst_is_valuetype): Renamed to
826         mono_generic_class_is_valuetype().
827
828         * class-internals.h
829         (MonoGenericInst): Renamed to MonoGenericClass.
830         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
831         (MonoClass): Renamed `generic_inst' to `generic_class'.
832         (MonoGenericContext): Renamed `ginst' to `gclass'.
833
834         * object-internals.h
835         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
836
837         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
838         mono_reflection_generic_class_initialize().
839
840         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
841         now known as "System.Reflection.MonoGenericClass".
842         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
843
844 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
845
846         * class-internals.h: Added a flag field to MonoClass to cache the
847         declarative security attributes actions associated with the class.
848         * domain-internals.h: Added booleans to MonoJitInfo to cache the
849         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
850         applicable to the JITted method.
851         * reflection.c|h: Added functions to extract (as flags) which security
852         actions are available (declaratively) for a method, class or assembly.
853         * metadata.c|h: Added functions to search the declarative security
854         table in the metadata.
855         
856 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
857
858         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
859         EXPORTEDTYPES are already in the class name cache, so there is no
860         need to add extra code here to look at them. Just removes a bit of
861         cruft.
862
863         (ves_icall_System_Environment_get_TickCount): No need for #if
864         WINDOWS. We already have the code in io-layer.
865
866 2004-11-28  Martin Baulig  <martin@ximian.com>
867
868         * loader.c
869         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
870         Fixes gen-112.cs.
871
872 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
873
874         * assembly.c (do_mono_assembly_open): Instead of having a
875         conditional WITH_BUNDLE, incorporate support for bundles here, by
876         having a global `bundles' variable holding a pointer to the actual
877         bundles. 
878
879         (mono_register_bundled_assemblies): New API call used by the
880         bundle code. 
881
882         See mkbundle.1 for details.
883         
884 2004-11-27  Martin Baulig  <martin@ximian.com>
885
886         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
887         the vtable for generic methods.
888
889 2004-11-26  Martin Baulig  <martin@ximian.com>
890
891         * metadata.c
892         (mono_metadata_generic_method_hash): New public function.
893         (mono_metadata_generic_method_equal): Likewise.
894
895         * class-internals.h
896         (MonoGenericContainer): Added `GHashTable *method_hash'.
897
898         * reflection.c (ReflectionMethodBuilder): Added
899         `MonoGenericContainer *generic_container'.
900         (reflection_methodbuilder_to_mono_method): Don't create a new
901         MonoGenericContainer each time we're called.
902         (mono_reflection_bind_generic_method_parameters): Use
903         `container->method_hash' to cache the results so we don't create a
904         different method if we're called several times with the same
905         arguments.
906
907         * loader.c (method_from_methodspec): Use the new
908         `container->method_hash' here, too.
909
910 2004-11-26  Martin Baulig  <martin@ximian.com>
911
912         * class.c (inflate_generic_signature): Correctly compute
913         `res->has_type_parameters'.
914         (mono_class_vtable): Use the `has_type_parameters' flag to
915         determine whether we're a generic method.
916
917         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
918
919 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
920
921         * object.c (mono_runtime_run_main): Fix a small memory leak.
922
923 2004-11-25  Martin Baulig  <martin@ximian.com>
924
925         * class.c (set_generic_param_owner): Fixed the loop.
926
927 2004-11-25  Martin Baulig  <martin@ximian.com>
928
929         * object.c (mono_class_vtable): Don't create any JIT wrappers for
930         generic methods.
931
932 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
933
934         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
935         names. Fixes #69787.
936
937 2004-11-24  Martin Baulig  <martin@ximian.com>
938
939         * class.c (mono_class_create_generic_2): If we don't have a
940         `ginst->parent', inflate `gklass->parent' to get our parent.
941
942 2004-11-24  Martin Baulig  <martin@ximian.com>
943
944         * reflection.c (compare_genericparam): Correctly sort the
945         GenericParam table; fixes #69779.
946
947 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
948
949         * reflection.c: When writing a PE file, don't create a huge
950         buffer in memory. Just write the arrays we have to the file.
951         This reduces memory usage.
952
953         * metadata-internals.h: MonoDynamicStream pefile is no longer used
954         globally.
955
956 2004-11-17  Martin Baulig  <martin@ximian.com>
957
958         * class.c (mono_class_init): Don't setup `class->parent' for
959         dynamic instances; moved this to mono_class_generic_2().
960         (mono_class_create_generic): Also set `klass->inited' for dynamic
961         generic instances.
962         (mono_class_create_generic_2): Don't do anything for dynamic
963         generic instances.  Set `klass->parent' here and also call
964         mono_class_setup_parent() here. 
965
966         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
967         `MonoType *parent' argument; set `ginst->parent' before calling
968         mono_class_create_generic_2(), so we set the correct parent.
969
970 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
971
972         * reflection.c: allow getting attributes from ModuleBuilder
973         (used by ikvm).
974
975 2004-11-17  Martin Baulig  <martin@ximian.com>
976
977         * class.c (mono_class_create_from_typedef): If a type parameter is
978         inherited from an outer class, set its owner to that class.
979
980 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
981
982         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
983           for (int*) written size. This fixes bug #69592.
984
985 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
986
987         * icall.c: Added IsAuthenticodePresnet internal call.
988         * image.c|h: New function that check a MonoImage for an Authenticode
989         signature in the certificate PE data directory.
990         * security.c|h: New internal call to ask the runtime if an 
991         Authenticode signature seems referenced in the PE header.
992
993 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
994
995         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
996
997         * reflection.c (mono_image_create_pefile): Free the assembly streams
998         after writing out the assembly file.
999
1000         * object.c (mono_runtime_run_main): Fix small memory leak.
1001
1002         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
1003         property access modifiers. Fixes #69389.
1004
1005 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
1006
1007         * domain.c, object.c, object-internals.h, domain-internals.h,
1008         object.h, marshal.c: keep dynamic code info per domain.
1009
1010 2004-11-15  Martin Baulig  <martin@ximian.com>
1011
1012         * class.c (mono_type_get_name_recurse): Put type arguments in
1013         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
1014         see bug #68387.
1015
1016 2004-11-15  Martin Baulig  <martin@ximian.com>
1017
1018         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
1019         (mono_class_setup_vtable): When computing `the_cname' for a
1020         generic instance, don't include the namespace since we'd otherwise
1021         add it twice.
1022
1023 2004-11-15  Martin Baulig  <martin@ximian.com>
1024
1025         * class.c (mono_class_create_generic): Changed return type to void.
1026         (mono_class_create_generic_2): New public function; setup
1027         `class->method', `class->field' and `class->interfaces' here
1028         instead of in mono_class_init().
1029
1030         * class.h (mono_class_create_generic): Moved to class-internals.h.
1031
1032 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
1033
1034         * reflection.c (mono_image_create_pefile): take a file HANDLE.
1035         rather than writing to memory, write to this file. Right now,
1036         we are just writting into a buffer, and copying that. However
1037         we can avoid the buffer later.
1038
1039         (mono_dynamic_stream_reset): new function
1040
1041         * icall.c, object-internals.h: update for the above.
1042
1043 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
1044
1045         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
1046         have been using gc'd memory. First it is slower, unlikely
1047         the comment in the source code said, secondly, it increases
1048         our footprint to do it in the gc.
1049
1050         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
1051         the method so that it does not have to copy to managed code.
1052
1053 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
1054
1055         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
1056
1057 2004-11-12  Martin Baulig  <martin@localhost>
1058
1059         * reflection.c (mono_image_create_token): Allow generic method
1060         definitions here, since they may appear in an `.override'; see
1061         gen-98/gen-99 for an example.
1062
1063 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
1064
1065         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
1066         #69365.
1067
1068         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
1069         descriptive.
1070
1071 2004-11-11  Martin Baulig  <martin@ximian.com>
1072
1073         * class.c (mono_class_setup_vtable): In an explicit interface
1074         implementation, the method name now includes the arity.
1075
1076 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
1077
1078         * object.c (mono_array_full_copy): Fix warning.
1079
1080 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
1081
1082         * appdomain.c: Removed look_for_method_by_name(). Use the new method
1083         mono_class_get_method_from_name() instead.
1084         
1085         * class-internals.h: Added two new types of wrappers. 
1086         Added MonoRemotingTarget enum. Added new trampoline function type, which
1087         takes an additional MonoRemotingTarget value as parameter, so it is
1088         possible to request a trampoline for a specific target.
1089         
1090         * class.c: Added new mono_class_get_method_from_name() method.
1091         
1092         * class.h: In MonoRemoteClass, we can have now to vtables, one for
1093         general remoting sinks and one specific for cross domain calls.
1094         
1095         * debug-helpers.c: Added new wrapper names.
1096         
1097         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
1098         of a remote class.
1099         
1100         * image.c: Porperly delete value objects form the remoting invoke hashtable.
1101         
1102         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
1103         with several other methods (mono_marshal_get_xappdomain_dispatch,
1104         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
1105         and others) can generate a fast remoting wrapper for cross domain calls.
1106         More information can be found in docs/remoting.
1107         Other changes: Removed mono_find_method_by_name, and used
1108         mono_class_get_method_from_name instead.
1109         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
1110         is stored in the remoting invoke hashtable.
1111         
1112         * marshal.h: published the new method for getting the xdomain wrapper,
1113         and also added a method for getting the adequate wrapper for a given
1114         method and target.
1115         
1116         * object-internals.h, object.c: Added a couple of methods for capying and
1117         cloning arrays.
1118         Modified mono_install_remoting_trampoline, which takes the new remoting
1119         trampoline that has a remoting target as parameter.
1120         mono_class_proxy_vtable now also takes a remoting target as parameter, and
1121         will return the most suitable vtable for the target.
1122         Added mono_remote_class_vtable, which returns the vtable of a remote class
1123         (which can be the normal remoting vtable or the xdomain vtable).
1124         
1125         * threads.c: the xdomain invoke and dispatch wrappers must also be
1126         protected against interruptions.
1127
1128 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1129
1130         * icall.c: use memmove in BlockCopyInternal when the source and
1131         destination arrays are the same.
1132
1133 2004-11-09  Martin Baulig  <martin@ximian.com>
1134
1135         * class-internals.h (MonoGenericContainer): Removed `method' and
1136         `signature', replaced them with `is_method' and `is_signature'
1137         flags.  Added `context'.
1138
1139         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
1140         instead of a `MonoGenericContainer *'.
1141
1142         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
1143         for dynamic type parameters.
1144         (mono_metadata_load_generic_params): Setup `container->context'.
1145
1146         * reflection.c (mono_reflection_setup_generic_class): Setup
1147         `tb->generic_container->context'.
1148         (do_mono_reflection_bind_generic_parameters): Use
1149         mono_class_inflate_generic_type() to correctly inflate types,
1150         rather than using our own hack just for MONO_TYPE_VAR.
1151
1152 2004-11-09  Martin Baulig  <martin@ximian.com>
1153
1154         * class.c (mono_class_inflate_generic_method): Small fix; don't
1155         crash here.
1156
1157         * icall.c
1158         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
1159         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
1160         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
1161         (ves_icall_Type_BindGenericParameters): Likewise.
1162         (ves_icall_Type_get_IsGenericInstance): Likewise.
1163         (ves_icall_Type_GetGenericParameterPosition): Likewise.
1164         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
1165         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
1166         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
1167
1168 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
1169
1170         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
1171         assembly versions and public key tokens. Fixes #69113.
1172
1173 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
1174
1175         * metadata.c: fix bug introduced with the type cache changes
1176         on 2004-11-06.
1177
1178 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
1179
1180         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
1181         the MonoClass pointer instead of the token in exception clauses.
1182         * reflection.c: updates for the above and make the code not depend
1183         on the structure of MonoExceptionClause.
1184
1185 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
1186
1187         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
1188         Add support for dynamic assemblies. Fixes #69114.
1189
1190         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
1191
1192 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
1193
1194         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
1195         since most only those methods use it. the code member of
1196         MonoMethodPInvoke was dead, so that can be removed too. Also,
1197         remove inline_count (again, not used), and move slot so that it
1198         can share bits with some other flags. This saves 8 bytes in the
1199         structure and gives us about 50 kb back for mcs helloworld.cs
1200
1201         * *.[ch]: Do naming changes for the above.
1202
1203         * loader.c (mono_method_get_header): Lazily init the header
1204         on first access.
1205         (mono_get_method_from_token): don't init the header here
1206         (mono_free_method): the header may never be allocated
1207
1208         Overall, this saves 150 kb of unmanaged allocations
1209         for mcs helloworld.cs. That accounts for 10% of the unmanaged
1210         memory at runtime.
1211         
1212         * loader.c, loader.h (mono_method_get_header): new accessor.
1213
1214         * *.[ch]: use the above method. Prepares us to lazily load
1215         the header.
1216
1217         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
1218         three warnings, which are actual bugs (see 69206).
1219
1220         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
1221         unused. Saves a cool 4 bytes / method.
1222
1223 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
1224
1225         * metadata.c (builtin_types): Add types for System.Object here.
1226         (mono_metadata_parse_type_full): Cache MonoType*'s that are
1227         for a class or valuetype from klass->this_arg or klass->byval_arg.
1228
1229         On mcs for a hello world, this gets us down from 21836 MonoType's
1230         to 14560.
1231
1232         (mono_metadata_free_type): Account for the above change.
1233
1234 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
1235
1236         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
1237         exception instead of asserting if name is null.
1238         (ves_icall_System_AppDomain_GetData): Ditto.
1239
1240 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
1241
1242         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
1243         EnumBuilder.
1244
1245         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
1246         Return NULL when the domain does not have entry_assembly set.
1247
1248         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
1249         Add a 'resource_modules' argument.
1250         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
1251
1252         * reflection.c (mono_reflection_create_runtime_class): Move setting
1253         of wastypebuilder here, so mono_get_type_object () returns a MonoType
1254         for enums too.
1255
1256         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
1257         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
1258         Throw an ArgumentNullException if 'ptr' is null.
1259
1260         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
1261         assemblies here. Fixes #69020.
1262
1263 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
1264
1265         * reflection.c (build_compressed_metadata): Fix the previous patch for
1266         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
1267         the stack.
1268
1269 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
1270
1271         * assembly.c (mono_assembly_names_equal): Allow a match if one of
1272         the cultures is false. Fixes #69090.
1273
1274         * reflection.c (build_compressed_metadata): Fix invalid memory read 
1275         detected by valgrind.
1276         
1277         * reflection.c (mono_reflection_get_type): Avoid triggering a 
1278         TypeResolve multiple times for the same type. Fixes #65577.
1279
1280 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
1281
1282         * marshal.c: Avoid using ldftn to call managed functions. It is
1283         much slower than just a call.
1284
1285         * reflection.c (mono_module_get_object): free the basename we
1286         allocate here from glib.
1287         
1288         * reflection.c (ensure_runtime_vtable): make sure to free
1289         overrides.  Also, we were allocating an array of MonoMethod not an
1290         array of MonoMethod*.
1291
1292         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
1293
1294         * image.c (mono_image_close): free image->guid here.
1295
1296 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
1297
1298         * reflection.c: Fix some spec conformance issues with the PE file
1299         structures so mcs compiled apps run on the Net 2.0 beta.
1300
1301 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
1302
1303         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
1304         Implement this. Fixes #67264.
1305
1306         * debug-helpers.h debug-helpers.c marshal.c: Move 
1307         mono_find_method_by_name to debug-helpers.c.
1308
1309 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
1310
1311         * object.c (mono_release_type_locks): type_initialization_hash is
1312         a GHashTable.
1313
1314         * reflection.c object.c object-internals.h: Fix warnings.
1315
1316         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
1317         without accessors. Fixes #61561.
1318
1319         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
1320         application base from the root domain if not set. Fixes #65641.
1321         (mono_runtime_init): Fix warning.
1322
1323 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1324
1325         * appdomain.c: call mono_thread_pool_init.
1326         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
1327         of worker threads based on the number of CPUs and the environment
1328         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
1329         for non-windows (windows) systems.
1330
1331 2004-10-27  Chris Toshok  <toshok@ximian.com>
1332
1333         * mono-debug-debugger.c (write_class): don't call mono_class_init
1334         here, as even with the check for (!klass->init_pending), we get
1335         into a situation where we're hitting cycles in class
1336         initialization.  Fixes #68816.
1337
1338 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
1339
1340         * image.c: Avoid overwriting values in the loaded_images_hash when an
1341         assembly is loaded multiple times. Fixes #61152.
1342
1343         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
1344         so multiple satellite assemblies for the same name can be loaded.
1345         Fixes #68259.
1346
1347         * mono_domain_assembly_preload: Actually return the loaded assembly, 
1348         not NULL.
1349
1350         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
1351         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
1352
1353         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
1354         pending finalizers are not invoked after the appdomain has been 
1355         unloaded. Fixes #67862.
1356
1357 2004-10-22  Martin Baulig  <martin@ximian.com>
1358
1359         * mono-debug-debugger.c
1360         (mono_debugger_runtime_invoke): Don't box valuetypes.
1361
1362 2004-10-22  Chris Toshok  <toshok@ximian.com>
1363
1364         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
1365         don't hide private methods.
1366
1367 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
1368
1369         * icall.c: Allows the runtime to "share" (when known) the public key
1370         token of an assembly. This avoid the need to recalculate the token 
1371         (from the public key) in managed code.
1372
1373 2004-10-21  Chris Toshok  <toshok@ximian.com>
1374
1375         * debug-helpers.c (append_class_name): argh, revert last patch.
1376         
1377 2004-10-21  Chris Toshok  <toshok@ximian.com>
1378
1379         * debug-helpers.c (append_class_name): use '+' as the delimiter,
1380         not '/', so that it matches what the debugger uses to look up
1381         methods.
1382
1383 2004-10-21  Martin Baulig  <martin@ximian.com>
1384
1385         * mono-debug-debugger.c (mono_debugger_throw_exception): New
1386         public method; this is called each time an exception is thrown and
1387         allows the debugger to use exception catch points.
1388
1389 2004-10-21  Martin Baulig  <martin@ximian.com>
1390
1391         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
1392         the stack pointer and the exception object in some struct and pass
1393         that to the debugger.
1394
1395 2004-10-21  Chris Toshok  <toshok@ximian.com>
1396
1397         * mono-debug-debugger.c (do_write_class): add instance/static
1398         event support.  We don't expose "raise" or "other" yet.
1399         (event_is_static): new method.
1400
1401 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
1402
1403         * mono-debug-debugger.c
1404         (mono_debugger_handle_exception): Remove
1405         bogus return value for fussy compilers.
1406
1407 2004-10-20  Martin Baulig  <martin@ximian.com>
1408
1409         * mono-debug-debugger.c
1410         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
1411         (mono_debugger_handled_exception): Likewise.
1412
1413 2004-10-20  Martin Baulig  <martin@ximian.com>
1414
1415         * mono-debug-debugger.h (MonoDebuggerEvent): Added
1416         MONO_DEBUGGER_EVENT_EXCEPTION.
1417
1418         * mono-debug-debugger.c (mono_debugger_handle_exception): New
1419         public function to send the debugger a notification for an
1420         exception and inform it about a catch/finally clause.
1421
1422 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
1423
1424         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
1425         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
1426         fix 2.95 build. 
1427
1428         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
1429
1430 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
1431
1432         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
1433         marshalled as [In,Out]. Fixes #58325.
1434
1435 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
1436
1437         * reflection.c (mono_method_body_get_object): Implement some fields.
1438
1439 2004-10-12  Martin Baulig  <martin@ximian.com>
1440
1441         * reflection.c (mono_reflection_bind_generic_parameters): Small
1442         fix, correctly retrieve our parent from a generic instance.
1443
1444 2004-10-12  Martin Baulig  <martin@ximian.com>
1445
1446         * metadata.c (mono_metadata_generic_param_equal): We always have
1447         an owner.
1448
1449         * class.c
1450         (mono_class_from_generic_parameter): We need to have an owner.
1451         (my_mono_class_from_generic_parameter): Likewise.
1452
1453         * reflection.c (mono_reflection_setup_generic_class): Renamed to
1454         mono_reflection_create_generic_class() and added a new
1455         mono_reflection_setup_generic_class().  
1456         (mono_reflection_initialize_generic_param): If we're a nested
1457         generic type and inherited from the containing class, set our
1458         owner to the outer class.
1459
1460 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
1461
1462         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
1463
1464         * reflection.c (mono_method_body_get_object): New function to create
1465         a MethodBody object.
1466
1467         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
1468
1469 2004-10-11  Martin Baulig  <martin@ximian.com>
1470
1471         * metadata.c (_mono_metadata_type_equal): Renamed to
1472         do_mono_metadata_type_equal() and made static.
1473
1474 2004-10-11  Martin Baulig  <martin@ximian.com>
1475
1476         * appdomain.c: Bump corlib version number to 28.
1477
1478 2004-10-10  Martin Baulig  <martin@ximian.com>
1479
1480         * class-internals.h
1481         (MonoGenericInst): Added `MonoGenericContainer *container'.
1482         (MonoGenericMethod): Likewise.
1483         (MonoGenericContext): Likewise.
1484         (MonoGenericParam): Added `MonoGenericContainer *owner'.
1485
1486         * metadata.c
1487         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
1488         (do_mono_metadata_parse_generic_inst): Likewise.
1489         (mono_metadata_parse_type_full): New public method.  This is the actual
1490         mono_metadata_parse_type() implementation - with an additional
1491         `MonoGenericContainer *' argument.
1492         (mono_metadata_parse_array_full): Likewise.
1493         (mono_metadata_parse_signature_full): Likewise.
1494         (mono_metadata_parse_method_signature_full): Likewise.
1495         (mono_metadata_parse_mh_full): Likewise.
1496         (mono_type_create_from_typespec): Likewise.
1497         (mono_metadata_interfaces_from_typedef_full): New public method;
1498         this is similar to the other _full() methods, but we take a
1499         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
1500         (mono_metadata_parse_generic_param): Take an additional
1501         `MonoGenericContainer *' argument and lookup the MonoGenericParam
1502         from that container.
1503         (mono_metadata_generic_param_equal): New static method to compare
1504         two type parameters.
1505         (_mono_metadata_type_equal): New static method; takes an
1506         additional `gboolean signature_only' argument - if true, we don't
1507         compare the owners of generic parameters.
1508         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
1509         with a TRUE argument - do a signature-only comparision.
1510
1511         * loader.c: Use the new _full() methods and pass the
1512         MonoGenericContainer to them.
1513
1514         * object-internals.h (MonoReflectionTypeBuilder): Added
1515         `MonoGenericContainer *generic_container' field.
1516         (MonoReflectionMethodBuilder): Likewise.
1517
1518 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
1519
1520         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
1521         case initial images of dynamic assemblies.
1522
1523         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
1524
1525         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
1526
1527         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
1528         length of event->other array.
1529         (typebuilder_setup_events): Ditto.
1530
1531         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
1532         'assembly_by_name' and add an 'assemblies' list.
1533
1534         * assembly.h assembly.c: Add a new search hook for determining whenever
1535         an assembly is already loaded. Use this instead of searching in the
1536         loaded_assemblies list.
1537
1538         * domain.c appdomain.c: Implement the new search hook so loaded 
1539         assemblies are now scoped by appdomain. Fixes #67727.
1540
1541 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
1542
1543         * threads.c (mono_thread_attach): Initialize synch_lock field so
1544         mono_thread_detach works again.
1545
1546         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
1547         'lib' too. Fixes #63130.
1548
1549 2004-10-06  Jackson Harper  <jackson@ximian.com>
1550
1551         * culture-info-tables.h: regenerated.
1552
1553 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
1554
1555         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
1556         implemented by other interfaces in the result. Fixes #65764.
1557         
1558         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
1559         Handle unloadable modules without crashing.
1560
1561         * image.c (load_modules): Revert the previous patch since modules must
1562         have a fixed index inside the array.
1563         
1564         * image.c (load_modules): Don't include native modules in the modules
1565         array.
1566
1567 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
1568
1569         * reflection.h: Add param_defaults field.
1570
1571         * reflection.c: Add support for parameter defaults in dynamic methods.
1572         Fixes #64595.
1573
1574         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
1575         an empty string when a type has no namespace. Fixes #64230.
1576
1577 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
1578
1579         * tabledefs.h: Added "internal" security actions to support non-CAS
1580         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
1581         Note: they do not seems to be used anymore in 2.0 (new metadata format)
1582
1583 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
1584
1585         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
1586         constructor of abstract class. Fixes #61689.
1587
1588 2004-10-04  Martin Baulig  <martin@ximian.com>
1589
1590         * class-internals.h (MonoGenericContainer): New type.
1591         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
1592         `MonoGenericContainer *generic_container'.
1593         (MonoClass): Replaced `gen_params' and `num_gen_params' with
1594         `MonoGenericContainer *generic_container'.
1595
1596         * metadata.c (mono_metadata_load_generic_params): Return a
1597         `MonoGenericContainer *' instead of a `MonoGenericParam *';
1598         removed the `num' argument.
1599
1600 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
1601
1602         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
1603         for dynamic images.
1604
1605         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
1606         machine fields.
1607
1608         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
1609
1610         * reflection.c: Save pe_kind and machine values into the generated
1611         image file.
1612
1613         * appdomain.c: Bump corlib version number.
1614
1615         * object-internals.h: Reorganize layout of LocalBuilder.
1616
1617         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
1618         New helper function.
1619
1620         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
1621         created MonoType for dynamic types. Fixes #66180.
1622
1623 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
1624
1625         * threadpool.c: the ares hashtable needs a critical section around it.
1626         this prevents some nasty segfaults
1627
1628 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
1629
1630         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
1631         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
1632         bug 67324).
1633         
1634 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
1635
1636         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
1637         
1638 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
1639
1640         * image.c: Always canonicalize image file names, to avoid loading
1641         the same assembly twice when referenced using a relative path.
1642
1643 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
1644
1645         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
1646
1647         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
1648
1649         * marshal.c: Fix warnings.
1650
1651 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
1652
1653         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
1654         attempting to marshal the delegate_trampoline as the method_addr.
1655         This patch has a static hashtable of marshalled delegates so that 
1656         we can map delegate_trampoline addresses back to delegates.  This
1657         allows a delegate passed to managed code to be passed back into native
1658         code.  Fixes #67039
1659
1660 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
1661
1662         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
1663
1664         * reflection.c (method_encode_code): Align method headers properly.
1665         Fixes #66025.
1666
1667 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
1668
1669         * marshal.c: In the runtime invoke wrapper, reset the abort
1670         exception if it is cached. This avoids the automatic rethrowal of 
1671         the exception after the catch of the wrapper. Also check for pending
1672         interruptions before calling the managed method. This is done using
1673         the new method emit_thread_force_interrupt_checkpoint, since the
1674         normal checkpoint method is ignored when running the invoke wrapper.
1675         * object.c: If the abort exception is rethrown, set the abort_exc
1676         field of the thread, so it will be rethrown aftere every catch.
1677         * threadpool.c: Only run an interruption checkpoint if what has been
1678         requested is a stop of the thread (aborts will be ignored).
1679         * threads.c: By default, a thread will now never be interrumped while
1680         running the runtime invoke wrapper (this ensures that runtime_invoke
1681         will always return to the caller if an exception pointer is provided).
1682         There is a new special method mono_thread_force_interruption_checkpoint()
1683         to force an interruption checkpoint even if running a protected
1684         wrapper, which is used by the same runtime invoke wrapper to do a check
1685         at a safe point.
1686
1687 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
1688
1689         * object.c, object-internals.h: Implemented mono_release_type_locks,
1690         which releases the cctor locks held by a thread.
1691         * threads.c, threads.h: In thread_cleanup, release cctor locks held
1692         by a thread. Added mono_thread_exit() method to be used to safely stop
1693         a thread.
1694
1695 2004-09-28  Raja R Harinath  <rharinath@novell.com>
1696
1697         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
1698         Move null check before dereference.  Avoid indexing beyond the end
1699         of the 'modules' array.
1700
1701 2004-09-28  Raja R Harinath  <rharinath@novell.com>
1702
1703         * metadata-internals.h (MonoImage): Add module_count field.
1704         * image.c (load_modules): Set image->module_count.
1705         (mono_image_load_file_for_image): Use image->module_count.
1706         * reflection.c (mono_image_load_module): Append to image->modules array 
1707         of dynamic assembly.
1708         (mono_module_get_object): Fix loop to actually increment index.
1709         Use image->module_count.
1710         * assembly.c (mono_assembly_load_references): Use image->module_count.
1711         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
1712         Likewise.
1713
1714 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
1715
1716         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
1717         Avoid assert on generic types.
1718
1719 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
1720
1721         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
1722
1723         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
1724
1725         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
1726         function to convert a MarshalSpec structure to its managed counterpart.
1727
1728         * reflection.c: Fix warnings.
1729         
1730         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
1731         field.
1732
1733         * icall.c (mono_create_icall_signature): Fix build.
1734
1735 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
1736
1737         * icall.c: Add MakePointType icall.
1738
1739         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
1740         warnings.
1741
1742 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1743
1744         * threadpool.c: reuse allocated slots in the queue.
1745
1746 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
1747
1748         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
1749
1750         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
1751
1752         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
1753         previous change.
1754
1755         * tabledefs.h: Add constants for pinvoke attributes BestFit and
1756         ThrowOnUnmappableChar.
1757
1758         * icall.c (ves_icall_Type_GetPacking): New icall.
1759
1760 2004-09-24  Martin Baulig  <martin@ximian.com>
1761
1762         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
1763
1764 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1765
1766         * appdomain.c:
1767         (mono_domain_set): allow setting a domain that is being unloaded.
1768         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
1769         being unloaded.
1770
1771 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
1772
1773         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
1774         the GetCustomAttributes icall.
1775
1776 2004-09-23  Martin Baulig  <martin@ximian.com>
1777
1778         * object-internals.h (MonoReflectionGenericParam): Replaced
1779         'has_ctor_constraint', `has_reference_type' and `has_value_type'
1780         with `guint32 attrs'.
1781
1782 2004-09-23  Martin Baulig  <martin@ximian.com>
1783
1784         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
1785
1786 2004-09-23  Martin Baulig  <martin@ximian.com>
1787
1788         * object-internals.h (GenericParameterAttributes): New enum.
1789
1790 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
1791
1792         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
1793         
1794         * class.c (init_events): Fill out event->other field.
1795
1796         * class.c: Fix warnings.
1797
1798         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
1799
1800 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
1801
1802         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
1803         walk which doesn't supply the IL offset.
1804
1805 2004-09-22  Martin Baulig  <martin@ximian.com>
1806
1807         * reflection.c (mono_reflection_setup_internal_class): If we're
1808         System.ValueType, System.Object or System.Enum, set
1809         `klass->instance_size' and create the vtable.
1810         (mono_reflection_create_internal_class): If we're an enum type,
1811         get the base class from our current corlib.
1812
1813 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
1814
1815         * reflection.h (MonoResolveTokenError): New type.
1816
1817         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
1818         icall.
1819
1820         * icall.c: Add an 'error' argument to the ResolveToken icalls.
1821
1822 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
1823
1824         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
1825         Support also calling constructors, but only for already allocated objects.
1826
1827 2004-09-17  Geoff Norton <gnorton@customerdna.com>
1828
1829         * reflection.c (type_get_qualified_name): If the klass is null
1830         return the typename to avoid a NullRefEx.
1831         (encode_cattr_value): Get the qualified name of the boxed type,
1832         not the underlying enumtype.  Fixes #62984.
1833
1834 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
1835
1836         * marshal.c: Fix problems with previous checkin.
1837
1838 2004-09-21    <vargaz@freemail.hu>
1839
1840         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
1841         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
1842
1843         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
1844
1845 2004-09-21  Geoff Norton <gnorton@customerdna.com>
1846
1847         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
1848         should only return a type for pointers, arrays, and passbyref types.
1849         Fixes bug #63841.
1850
1851 2004-09-21  Martin Baulig  <martin@ximian.com>
1852
1853         * domain.c (mono_debugger_check_runtime_version): New public
1854         function.
1855
1856         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
1857
1858 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
1859
1860         * reflection.c: Added missing sort to the declarative security 
1861         attributes table. MS implementation stops seeing the attributes if the
1862         token number regress in the table (as shown by ildasm and permview).
1863
1864 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
1865
1866         * object-internals.h (MonoReflectionModule): Add 'token' field.
1867         
1868         * reflection.c (mono_reflection_get_token): Add support for Module
1869         and Assembly.
1870         (mono_module_get_object): Set 'token' field.
1871         (mono_module_file_get_object): Set 'token' field.
1872
1873         * icall.c: Add new Assembly and Module icalls.
1874
1875         * appdomain.c: Bump corlib version.
1876
1877 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
1878
1879         * loader.h loader.c class.h class.c: Add helper functions for obtaining
1880         tokens of metadata objects.
1881
1882         * reflection.h reflection.c (mono_reflection_get_token): New function
1883         to obtain the token of a metadata object.
1884
1885         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
1886
1887 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
1888
1889         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
1890         
1891         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
1892
1893 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
1894
1895         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
1896         * object-internals.h: Added 3 MonoArray* members to MonoReflection
1897         AssemblyBuilder to access the permissions set in the class lib.
1898         * reflection.c: Added security attributes encoding step in 
1899         mono_image_build_metadata.
1900         * tabledefs.h: Added new security actions defined in 2.0:
1901         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
1902
1903 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
1904
1905         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
1906         macro parameter.
1907
1908 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
1909  
1910         * locales.c: nullify the ICU_collator member of CompareInfo when it is
1911           finalized. There where random SIGSEVs at program termination, when
1912           an object being finalized was trying to do a string comparison and
1913           the current culture was already finalized.
1914  
1915 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1916
1917         * threads.c: call thread_cleanup before finishing the thread if we get
1918         there.
1919
1920 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
1921
1922         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
1923         assemblies from the parent. Fixes #65665.
1924
1925 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
1926
1927         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
1928         modifiers.
1929
1930 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
1931
1932         * reflection.h: add prototype for mono_get_dbnull_object
1933         * reflection.c: add prototypes for get_default_param_value_blobs 
1934         and mono_get_object_from_blob for fussier compilers
1935
1936 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
1937  
1938         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
1939         false deadlock checks in class initialization.
1940  
1941 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
1942
1943         * image.c (mono_image_addref): Fix comment.
1944
1945         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
1946         possible.
1947
1948 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
1949
1950         * reflection.c (mono_param_get_objects): Modified to return
1951         ParameterInfo.DefaultValue object.
1952
1953         (get_default_param_value_blobs):
1954         (mono_get_object_from_blob):
1955         (mono_get_dbnull_object): New helper routines. 
1956
1957         * object.c (mono_get_constant_value_from_blob): New helper routine
1958         carved out from get_default_field_value ()
1959
1960         * object-internals.h (mono_get_constant_value_from_blob): Added
1961         function declaration.
1962
1963 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
1964
1965         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
1966         referenced assemblies. Fixes #62135.
1967
1968         * exception.h exception.c (mono_get_exception_file_not_found2): New
1969         helper function.
1970
1971 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
1972
1973         * class.h class.c: Add mono_type_get_underlying_type ().
1974
1975 2004-09-09  Geoff Norton <gnorton@customerndna.com>
1976
1977         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
1978         Fix GetTypes() to support dynamically created assemblies.
1979
1980 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
1981
1982         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
1983         
1984         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
1985         previous patch.
1986
1987         * reflection.h reflection.c loader.c: Allow dynamic construction of
1988         pinvoke methods. Fixes #65571.
1989         
1990         * reflection.c (mono_reflection_get_type): Revert previous change since
1991         it causes regressions.
1992
1993 2004-09-08  Martin Baulig  <martin@ximian.com>
1994
1995         * class.c (class_compute_field_layout): Don't call
1996         mono_class_layout_fields() for open generic instances.
1997
1998 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
1999         * threads.c appdomain.c: fix typo in GC macro
2000
2001 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2002
2003         * threads.c: don't call mono_thread_detach() in start_wrapper(),
2004         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
2005
2006 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
2007
2008         * image.c (mono_image_close): Applied patch from 
2009         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
2010         assembly is loaded multiple times from data.
2011         
2012         * image.c (mono_image_open): Fix warning.
2013
2014 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
2015
2016         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
2017         once. Fixes #58334.
2018         
2019         * reflection.c (mono_reflection_create_runtime_class): Initialize
2020         klass->nested_classes. Fixes #61224.
2021
2022 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
2023
2024         * threads.c: sched_yield() on exit, to allow threads to quit.
2025
2026 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
2027
2028         * object.c (mono_unhandled_exception): Remove leftover debug code.
2029
2030 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
2031
2032         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
2033
2034 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
2035
2036         * marshal.c (emit_marshal_array): Really null terminate string arrays.
2037         
2038         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
2039
2040 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
2041
2042         * marshal.c (emit_marshal_array): Null terminate string arrays.
2043         
2044         * marshal.c (raise_auto_layout_exception): Fix warning.
2045
2046         * reflection.c (mono_param_get_objects): Initialize the default value
2047         with DBNull.Value, not null. Fixes #62123.
2048
2049 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
2050
2051         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
2052         throw an exception with a cute explanation.
2053
2054 2004-09-06  Dick Porter  <dick@ximian.com>
2055
2056         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
2057         Close the new process's thread handle, as we don't use it.  The
2058         handle stays around forever otherwise.
2059
2060 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
2061
2062         * object.c (arith_overflow): Fix warning.
2063
2064         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
2065         calling conventions in method refs. Fixes #65352.
2066
2067         * reflection.c: Fix warnings.
2068
2069 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
2070
2071         * icall.c: Add a new icall for Array.Clear
2072
2073 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
2074
2075         * object.c: When allocating an array, we have to throw
2076         an overflow exception if any of the lengths are < 0.
2077
2078 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
2079
2080         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
2081         properly. Also move implementation of string array marshalling to 
2082         managed code. Fixes #42316.
2083
2084 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2085
2086         * assembly.c: provide more information when loading an assembly fails.
2087
2088 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2089
2090         * filewatcher.c: don't expect the development fam package to be
2091         installed.
2092
2093 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
2094
2095         * marshal.c: Make a copy of the signature cookie since it will be
2096         freed by the caller.
2097         
2098         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
2099
2100         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
2101
2102         * metadata.c (mono_metadata_free_marshal_spec): New function to free
2103         marshal specs.
2104
2105         * marshal.c: More refactoring.
2106         
2107         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
2108         smaller functions.
2109
2110 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
2111
2112         * object.c: In mono_message_invoke, fill the output parameter array after
2113           calling the managed method (it was done before the call). This fixes
2114           bug #59299.
2115
2116 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
2117
2118         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
2119         as well.
2120
2121 2004-09-02  Martin Baulig  <martin@ximian.com>
2122
2123         * class.c (mono_class_instance_size): Don't allow generic type
2124         definitions or open generic instances.
2125         (mono_class_array_element_size): If we're a value type, call
2126         mono_class_instance_size() on the original class.
2127
2128         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
2129         handle generic instances.
2130
2131         * mono-debug-debugger.c (write_type): Handle generic instances
2132         like classes.
2133
2134 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
2135
2136         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
2137         the allocation request fails. Fixes #65089.
2138
2139         * object.c (mono_runtime_free_method): Do not call mono_free_method.
2140         
2141         * object.c (mono_runtime_free_method): New function to free a dynamic
2142         method.
2143
2144         * marshal.c (mono_delegate_free_ftnptr): New function to free the
2145         delegate trampoline.
2146
2147         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
2148         with hasthis as dynamic,
2149
2150         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
2151
2152         * domain.c (mono_jit_info_table_remove): New function to remove an
2153         entry from the jit info table.
2154
2155         * class-internals.h (MonoMethod): Add 'dynamic' field.
2156
2157         * loader.c: Fix warnings.
2158
2159 2004-09-01  Martin Baulig  <martin@ximian.com>
2160
2161         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
2162         instead of mono_debugger_lock() because the latter one is a no-op
2163         unless running in the debugger.
2164
2165 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
2166
2167         * class.c (class_compute_field_layout): Classes with auto-layout or
2168         reference fields are not blittable.
2169         
2170 2004-09-01  Dick Porter  <dick@ximian.com>
2171
2172         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
2173         mono_image_get_filename() to get the assembly location.
2174
2175         * icall.c:
2176         * metadata.h: Fix compile warnings
2177
2178 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
2179
2180         * class.c (class_compute_field_layout): System.Object is blittable.
2181
2182         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
2183         as in/out. Fixes #59909.
2184
2185 2004-09-01  Martin Baulig  <martin@ximian.com>
2186
2187         * metadata.h (MONO_TYPE_ISREFERENCE): Call
2188         mono_metadata_generic_inst_is_valuetype() if we're a generic
2189         instance to check whether our underlying type is a reference type.
2190
2191 2004-09-01  Martin Baulig  <martin@ximian.com>
2192
2193         * metadata.c (mono_type_size): If we're a generic instance, call
2194         mono_class_value_size() for value types.
2195
2196 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
2197
2198         * marshal.c: Implement more custom marshalling functionality. Fixes
2199         #64915.
2200
2201 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
2202
2203         * mono-debug.c, debug-mono-symfile.c: add some locking love.
2204
2205 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
2206
2207         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
2208
2209         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
2210
2211         * icall.c: Fix some warnings.
2212
2213         * threads.c (abort_appdomain_thread): Fix unref errors.
2214         (mono_thread_current): Fix THREAD_DEBUG define.
2215
2216 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
2217
2218         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
2219
2220         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
2221
2222 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
2223
2224         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
2225         string arrays.
2226
2227 2004-08-28  Martin Baulig  <martin@ximian.com>
2228
2229         * metadata.c
2230         (mono_metadata_generic_inst_is_valuetype): New public function.
2231
2232         * metadata.h (MONO_TYPE_ISSTRUCT): Call
2233         mono_metadata_generic_inst_is_valuetype() if we're a generic
2234         instance to check whether our underlying type is a valuetype.
2235
2236 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
2237
2238         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
2239         #63768.
2240
2241 2004-08-25  Martin Baulig  <martin@ximian.com>
2242
2243         * loader.c (mono_get_method_from_token): Abstract methods can also
2244         be generic and thus have type parameters.
2245
2246         * metadata-internals.h
2247         (MonoDynamicImage): Added `GPtrArray *gen_params'.
2248
2249         * reflection.c (mono_image_get_generic_param_info): Don't create a
2250         metadata row, just add an entry to the `gen_params' array.
2251         (build_compressed_metadata): Sort the `gen_params' array and then
2252         actually create the metadata.
2253
2254 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2255
2256         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
2257
2258 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
2259
2260         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
2261
2262 2004-08-24  Martin Baulig  <martin@ximian.com>
2263
2264         * class.cs (mono_class_is_subclass_of): Like an interface, a
2265         generic instance also derives from System.Object.
2266
2267 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
2268
2269         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
2270         custom modifiers to be in any order. Fixes #61990.
2271
2272 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
2273
2274         * object.c: Register mono_object_new_fast icall.
2275         
2276         * object.c (mono_class_get_allocation_ftn): Return to calling
2277         mono_object_new_fast, since it seems faster to compute the object 
2278         size in unmanaged code than passing it as a parameter.
2279
2280         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
2281
2282         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
2283         this function with Boehm as the oom handler, so we don't have to check
2284         the result of GC_malloc.
2285
2286         * object.c: Remove checks for oom.
2287
2288         * object.h object.c (mono_class_get_allocation_ftn): New function to
2289         return the icall which can be used to allocate an instance of a given
2290         class. 
2291
2292         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
2293
2294         * class-internals.h: Add 'enabled' field.
2295
2296 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
2297
2298         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
2299
2300 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
2301         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
2302         value 0x0010.
2303
2304 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
2305
2306         * appdomain.c: use the Tls function for appdomain too,
2307         at Zoltan's request. Actually return in mono_context_get
2308
2309         * appdomain.c, profiler.c, threads.c: use __thread
2310
2311 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
2312
2313         * appdomain.c threads.c: Call GC_CreateThread on windows.
2314
2315         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
2316         multiple libraries since this don't work on windows.
2317
2318 2004-08-18  Martin Baulig  <martin@ximian.com>
2319
2320         * class-internals.h
2321         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
2322         MonoMethodHeader.
2323
2324         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
2325         MonoMethodNormal since we also need it for abstract and interface
2326         methods.
2327
2328         * reflection.c
2329         (build_compressed_metadata): Sort the GenericParam table.
2330         (mono_image_create_token): Added `gboolean create_methodspec'
2331         argument; this is false when generating a MethodImpl token.
2332         (reflection_methodbuilder_to_mono_method): Abstract and interface
2333         methods may also have generic parameters.
2334
2335 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
2336
2337         * appdomain.c: thread local alloc
2338
2339 2004-08-17  Martin Baulig  <martin@ximian.com>
2340
2341         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
2342
2343         * icall.c
2344         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
2345         argument.
2346
2347         * class.c (mono_type_get_full_name): New public function.
2348         (mono_type_get_name): Don't include the type arguments.
2349
2350 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
2351
2352         * Makefile.am: Build static versions of libmetadata and libmonoruntime
2353         for inclusion into the mono executable.
2354
2355 2004-08-16  Martin Baulig  <martin@ximian.com>
2356
2357         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
2358         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
2359
2360 2004-08-14  Martin Baulig  <martin@ximian.com>
2361
2362         * class.c (dup_type): Also copy the `byref' field.
2363
2364 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
2365
2366         * reflection.c (create_dynamic_mono_image): Revert the last change 
2367         since it breaks bootstrap.
2368
2369 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
2370
2371         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
2372
2373         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
2374         not free them with g_free.
2375
2376 2004-08-11  Martin Baulig  <martin@ximian.com>
2377
2378         * reflection.c (mono_reflection_setup_internal_class): Also call
2379         mono_class_setup_mono_type() if we already have a `tb->type.type'.
2380
2381 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
2382
2383         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
2384         called during default (first) AppDomain creation. Keep track of
2385         Evidence when loading assemblies.
2386
2387 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
2388
2389         * opcodes.c, opcodes.h: reduce runtime relocations.
2390
2391 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
2392
2393         * culture-info.h, locales.c: fixes and chages to sue the new
2394         optimized format of the locale data.
2395         * culture-info-tables.h: regenerated.
2396
2397 2004-08-06  Geoff Norton <gnorton@customerdna.com>
2398         
2399         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
2400
2401 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
2402
2403         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
2404         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
2405         * domain-internals.h: icall declaration.
2406         * icall.c: icall registration.
2407         * object-internals.h: New fields in MonoAssembly for CAS.
2408
2409 2004-08-05  Duncan Mak  <duncan@ximian.com>
2410
2411         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
2412         CEE_LDELEM_ANY.
2413
2414 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
2415
2416         * reflection.c: fix to deal with object[] arrays in custom ctors
2417         (bug #62550).
2418
2419 2004-08-05  Martin Baulig  <martin@ximian.com>
2420
2421         * class.c (mono_class_array_element_size): Added support for
2422         generic instances and correctly handle "recursive" types.
2423
2424 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
2425
2426         * assembly.c: Fix warnings.
2427
2428 2004-08-04  Martin Baulig  <martin@ximian.com>
2429
2430         * class.c
2431         (mono_type_get_name_recurse): Added `gboolean include_arity'
2432         argument specifying whether or not we should include the generic
2433         arity in the type name.
2434         (_mono_type_get_name): New static function.
2435         (mono_class_setup_vtable): If we're a generic instance, don't
2436         include the generic arity in the names of explicit method
2437         implementations.        
2438
2439 2004-08-03  Martin Baulig  <martin@ximian.com>
2440
2441         * class.c (mono_type_get_name_recurse): Enclose the generic type
2442         arguments in `<', '>'.
2443
2444 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
2445
2446         * gc.c: make GC warning messages use the trace API, they are just
2447         noise to most of the users.
2448
2449 2004-08-03  Martin Baulig  <martin@ximian.com>
2450
2451         * debug-mono-symfile.c (read_string): Correctly read the string.
2452
2453 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
2454
2455         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
2456         
2457         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
2458         icalls.
2459         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
2460
2461 2004-07-30  Martin Baulig  <martin@ximian.com>
2462
2463         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
2464         Reflect latest symbol writer changes.   
2465
2466 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
2467
2468         * object.c: always create an object if null is passed
2469         to Invoke() where a valuetype is expected.
2470
2471 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
2472
2473         * marshal.c (mono_marshal_init): make managed
2474         signatures match native ones better for 64bits.
2475
2476 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2477
2478         * appdomain.c: hack to build correctly the private bin path on windows.
2479         Fixes bug #61991.
2480
2481 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
2482
2483         * assembly.c: Load mscorlib from the correct framework directory
2484           (mono/<version>/mscorlib.dll).
2485         * appdomain.h: Added prototypes for new functions.
2486         * internals.h: Added some prototypes.
2487         * domain.c: When initializing the runtime, get from the executable and
2488           the configuration files the runtime version that the app supports.
2489           Added support methods for reading app.exe.config. Added list of versions
2490           supported by the JIT. Added two new methods: mono_init_from_assembly,
2491           which initializes the runtime and determines the required version from
2492           the provided exe file, and mono_init_version, which initializes
2493           the runtime using the provided version.
2494         * icall.c: Get machine.config from version-specific directory.
2495         * reflection.c: When generating an image, embed the version number
2496           of the current runtime.
2497
2498 2004-07-28  Dick Porter  <dick@ximian.com>
2499
2500         * socket-io.c
2501         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
2502         returned sockaddr size before creating the remote address object.
2503         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
2504         61608.
2505
2506 2004-07-28  Dick Porter  <dick@ximian.com>
2507
2508         * locales.c (string_invariant_compare_char): Fix invariant char
2509         compares between upper and lower cases.  Fixes bug 61458.
2510
2511 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
2512         
2513         * marshal.c: actually cache stelem.ref wrappers.
2514         
2515 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
2516
2517         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
2518         sections and remove the mono_cli_rva_map () function.
2519
2520 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
2521
2522         * debug-mono-symfile.c: fix one more endianess issue, from a patch
2523         by Geoff Norton (<gnorton@customerdna.com>).
2524
2525 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
2526
2527         * class.c: fix class loads for pointer types (typeof(int) !=
2528         typeof(int*)).
2529
2530 2004-07-27  Martin Baulig  <martin@ximian.com>
2531
2532         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
2533         reading the debugging information from an external ".mdb" file.
2534
2535 2004-07-24  Martin Baulig  <martin@ximian.com>
2536
2537         * reflection.c (mono_image_get_type_info): Only write a class
2538         layout entry if we actually have a size or a packing size.
2539
2540 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
2541
2542         * reflection.c (type_get_fully_qualified_name): 
2543         insert cast to get type checking of ?: with non-gcc compilers
2544
2545 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
2546
2547         * rand.c: use g_getenv for both lookups of
2548         MONO_EGD_SOCKET
2549
2550 2004-07-17  Martin Baulig  <martin@ximian.com>
2551
2552         * reflection.c (mono_reflection_bind_generic_method_parameters):
2553         Set `gmethod->reflection_info'.
2554
2555 2004-07-17  Martin Baulig  <martin@ximian.com>
2556
2557         * class.c (mono_class_create_from_typedef): Insert the newly
2558         created class into the hash table before computing the interfaces
2559         since we could be called recursively.
2560
2561 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
2562
2563         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
2564         function to implement stelem.ref in managed code
2565         * class-internals.h, debug-helpers.c: a new wrapper type
2566         for the above.
2567
2568 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
2569
2570         * gc.c: allow GC handles to work even when no GC is compiled in.
2571         Fix part of bug #61134 (GetAddrOfPinnedObject).
2572
2573 2004-07-13  Peter Williams  <peter@newton.cx>
2574  
2575         * process.c (complete_path): Make sure we don't attempt to execute
2576         directories.
2577  
2578 2004-07-12  Geoff Norton <gnorton@customerdna.com>
2579
2580         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
2581           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
2582           and will add/subtract the hour if needed
2583
2584 2004-07-12  Martin Baulig  <martin@ximian.com>
2585
2586         * reflection.c (mono_field_get_object): If we have
2587         `field->generic_info', take the attributes from
2588         `field->generic_info->generic_type'.    
2589
2590 2004-07-12  Martin Baulig  <martin@ximian.com>
2591
2592         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
2593         This function must be called before initializing the runtime.
2594         (mono_debug_init_1): New function; call this after initializing
2595         the runtime, but before loading the assembly.  It tells the
2596         debugger to load corlib and the builtin types.
2597
2598         * mono-debug-debugger.c: Did some larger changes in the debugging
2599         code; support recursive class declarations, make sure we actually
2600         add all classes.
2601
2602 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2603
2604         * debug-helpers.c: undo my previous patch and fixed the real issue in
2605         ../mini/exceptions-x86.c
2606
2607 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2608
2609         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
2610         when no HOME env. variable was set and a NullRef was thrown in a .cctor
2611         called from other .cctors.
2612
2613 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
2614
2615         * loader.c: Removed the mono_loader_wine_init hack now that we are
2616         doing a managed version of Windows.Forms.
2617
2618 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
2619
2620         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
2621         threadpool.c, threads.c: remove static data from rootset.
2622
2623 2004-07-09  Dick Porter  <dick@ximian.com>
2624
2625         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
2626         Don't do any more processing if the matched length was 0.  It was
2627         increasing the size of the string before.  Fixes bug 61167.
2628
2629 2004-07-09  Dick Porter  <dick@ximian.com>
2630
2631         * socket-io.h:
2632         * socket-io.c
2633         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
2634         Add support for SO_PEERCRED if its available.
2635
2636 2004-07-09  Peter Bartok <pbartok@novell.com>
2637         * loader.c: winelib.exe.so error message is now only displayed if
2638         MONO_DEBUG is set. To help us avoid questions when people are trying
2639         out the new Managed.Windows.Forms.
2640
2641 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
2642
2643         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
2644         for isinst and castclass wrappers.
2645
2646         * class-internals.h icall.c: Move registration and lookup of JIT icalls
2647         to libmetadata from the JIT, so they could be used by the marshalling
2648         code and the interpreter.
2649
2650         * marshal.c: Register marshalling related JIT icalls here instead of
2651         in mini.c. Use CEE_MONO_ICALL instead of the family of 
2652         CEE_MONO_PROC<x> opcodes to call marshalling functions.
2653
2654         * metadata.h: Remove unneeded marshalling conversions.
2655
2656         * opcodes.c: Update for new opcodes.
2657         
2658 2004-07-08  Martin Baulig  <martin@ximian.com>
2659
2660         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
2661         (mono_debug_get_domain_data): Make this function static.
2662
2663 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
2664
2665         * gc.c, object.h: add nice GC handle API for embedders.
2666
2667 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
2668
2669         * reflection.c: more changes for the new api
2670
2671         * object.c: When we reflect on a field w/ a constant value, it
2672         will not have a memory location, so we must access metadata. Also,
2673         allow easier reading of strings so that we can read them from
2674         the constant data.
2675
2676         * class.c (mono_class_layout_fields): no need for literal fields here.
2677
2678         * class-internals.h: api changes for const fields
2679
2680         * icall.c (ves_icall_get_enum_info): use new apis for const fields
2681
2682 2004-07-06  Martin Baulig  <martin@ximian.com>
2683
2684         * mono-debug.h: Increment version number to 44.
2685
2686         * mono-debug.c (mono_debug_add_wrapper): The second argument is
2687         now a gpointer, rewrote this whole method.
2688
2689         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
2690         function.  Add information about the wrapper in a new "misc table".
2691
2692         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
2693         for the new misc table.
2694
2695 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
2696
2697         * metadata-internals.h image.c: Add a cache for helper signatures.
2698
2699         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
2700
2701 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
2702
2703         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
2704         delegates from a delegate. Fixes #61033.
2705         
2706         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
2707         marshalling of stringbuilder arrays. Fixes #59900.
2708
2709 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
2710
2711         * icall.c: Add EnumBuilder:setup_enum_type icall.
2712
2713 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
2714
2715         * icall.c: Added a new icall for the property version of
2716         OffsetOfStringData.
2717
2718 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
2719
2720         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
2721         it has a constant size across platforms.
2722
2723         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
2724         stack trace.
2725
2726 2004-06-29  Martin Baulig  <martin@ximian.com>
2727
2728         * mono-debug.c (mono_debug_add_method): Protect the whole function
2729         in mono_debugger_lock(), not just parts of it.
2730
2731 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
2732
2733         * reflection.c: make sure padding bytes in heaps are zeroed.
2734
2735 2004-06-24  David Waite  <mass@akuma.org>
2736
2737         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
2738         image.c, loader.c, locales.c, marshal.c, metadata.c,
2739         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
2740         string-icalls.c, threads.c: change to C90-style comments from C99 /
2741         C++ -style
2742
2743 2004-06-24  Dick Porter  <dick@ximian.com>
2744
2745         * threads.c
2746         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
2747         return createdNew.  Fixes bug 60412.
2748
2749         * threads-types.h: 
2750         * icall.c: Add createdNew parameter to CreateMutex icall
2751
2752 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
2753
2754         * reflection.c, object-internals.h: save default value in params.
2755
2756 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2757
2758         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
2759         no need to build a new path combining that with the application base.
2760         Fixes bug #60442.
2761
2762 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
2763
2764         * reflection.c: fixed minor standard compliance issues.
2765
2766 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
2767
2768         * reflection.c: fixed issue with encoding some custom attributes
2769         (arrays in properties and fields, bug #60411).
2770
2771 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2772
2773         * reflection.c: fix start address when copying the public key token.
2774
2775 2004-06-23  Martin Baulig  <martin@ximian.com>
2776
2777         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
2778         the `exc' object in a static object to put it into the GC's root set.
2779
2780 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
2781
2782         * reflection.c: make mono_reflection_setup_internal_class ()
2783         callable a second time to setup a new parent class.
2784
2785 2004-06-23  Dick Porter  <dick@ximian.com>
2786
2787         * threads.c: Check for WAIT_IO_COMPLETION return values.
2788
2789 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
2790
2791         * appdomain.c: Removed the g_free on the public key token. Now copy 
2792         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
2793         * assembly.c: Added public key token string value when loading 
2794         assemblies. Fix bug #60439.
2795         * icall.c: Added missing informations (like public key) in 
2796         GetReferencedAssemblies. Fix #60519.
2797         * image.h: Changed definition for public key token from const char*
2798         public_tok_value to guchar public_key_token [17];
2799         * reflection.c: Updated for changes to public key token.
2800
2801 2004-06-22  Lluis Sanchez Gual
2802
2803         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
2804         for the field in base classes.
2805
2806 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
2807
2808         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
2809         mark headers as not supported, they are installed only for use by the
2810         debugger.
2811
2812 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
2813
2814         * *.c, *.h: avoid namespace pollution in public headers.
2815
2816 2004-06-21  Martin Baulig  <martin@ximian.com>
2817
2818         * exception.c (mono_get_exception_security): It's in
2819         "System.Security", not in "System".
2820
2821         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
2822         the exception classes.
2823
2824 2004-06-21  Martin Baulig  <martin@ximian.com>
2825
2826         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
2827         Protect the exception object from being finalized.
2828
2829 2004-06-21  Martin Baulig  <martin@ximian.com>
2830
2831         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
2832         public function.
2833
2834 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
2835
2836         * reflection.c: Load the assembly in mono_reflection_type_from_name,
2837         if it was not loaded before. Fix parts of #60439.
2838
2839 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
2840
2841         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
2842         code that was broken since Ben's change: wrappers are now
2843         dependent on the method signature only again.
2844
2845 2004-06-21  Martin Baulig  <martin@ximian.com>
2846
2847         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
2848         added interface support.
2849
2850 2004-06-21  Martin Baulig  <martin@ximian.com>
2851
2852         * class.c (mono_vtable_get_static_field_data): New public method.
2853
2854 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
2855
2856         * filewatcher.c : Windows build fix to be compliant with API changes.
2857
2858 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
2859
2860         * class.h, class.c: more accessors.
2861         * metadata.h, metadata.c: prepare for hiding MonoType and
2862         MonoMethodSignature: people should use the accessors from now on
2863         outside of the tree.
2864
2865 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
2866
2867         * *.c, *.h: more API cleanups.
2868
2869 2004-06-18  Jackson Harper  <jackson@ximian.com>
2870
2871         * assembly.c: Trace loading assemblies.
2872         * loader.c: Trace loading native libraries.
2873         * mono-config.c: Trace loading config files.
2874         
2875 2004-06-18  Dick Porter  <dick@ximian.com>
2876
2877         * locales.c: Tell ICU the lengths of strings, it can cope with
2878         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
2879
2880 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
2881
2882         * image.c: swapped name/filename;
2883
2884 2004-06-18  Martin Baulig  <martin@ximian.com>
2885
2886         * mono-debug-debugger.c (write_class): Write the parent class at
2887         the end of the header.
2888
2889 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
2890
2891         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
2892
2893 2004-06-17  Raja R Harinath  <rharinath@novell.com>
2894
2895         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
2896         (bundle_obj): New conditional define.
2897         (BUILT_SOURCES): Remove.
2898         ($(bundle_srcs)): Make parallel-make safe.
2899         (libmonoruntime_la_LIBADD): Make unconditional.
2900         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
2901         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
2902
2903 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
2904
2905         * culture-info-tables.h: It was inconsistent with the latest
2906           supp info files.
2907
2908 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
2909
2910         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
2911         be loaded.
2912
2913         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
2914         with gcc 2.95.
2915
2916 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
2917
2918         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
2919         cleaned up public header threads.h.
2920
2921 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
2922
2923         * Makefile.am, *.c, *.h: more API cleanups.
2924
2925 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
2926
2927         * Makefile.am: removed monosn from compilation.
2928         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
2929         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
2930         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
2931         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
2932         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
2933         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
2934
2935 2004-06-15  Jackson Harper  <jackson@ximian.com>
2936
2937         * assembly.c: Make locales lower case when searching the GAC for
2938         assemblies. gacutil will always make locales lowercase when
2939         installing so this effectively makes them case insensitive.
2940         
2941 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
2942
2943         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
2944         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
2945           parameter which allows to choose whether the wait can be interrupted or 
2946           not. Also added the method mono_monitor_enter(), which locks the monitor
2947           using an infinite wait and without allowing interruption.
2948           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
2949           interrupted.
2950         * object.h: Added new fields in MonoThread. suspend_event holds the event
2951           used to susped/resume the thread. synch_lock is the lock object to use for
2952           modifying the thread state.
2953         * threads.c: Use the new synch_lock object for locking, instead of "this",
2954           which can generate deadlocks.
2955           Moved thread state change in Thread.Sleep and Thread.Join from managed
2956           to unmanaged code. This avoids a deadlock when the thread was suspended
2957           just after acquiring the thread lock.
2958           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
2959           Implemented Thread.Suspend using an event instead of ThreadSuspend,
2960           which is not fully implemented in the io-layer.
2961         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
2962
2963 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
2964
2965         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
2966         threads-types.h: more API cleanups.
2967
2968 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
2969
2970         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
2971         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
2972         threadpool.c, threads.c: first pass at the exported API cleanup.
2973
2974 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
2975
2976         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
2977
2978 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2979
2980         * icall.c: added internalGetHome.
2981
2982 2004-06-14  Dick Porter  <dick@ximian.com>
2983
2984         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
2985         possible to return successfully when '.' or '..' were the only
2986         entries in a directory, but were skipped.  The MonoIOStat was not
2987         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
2988         Fixes bug 59574.
2989
2990 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
2991
2992         * reflection.c: make binaries run on .Net 1.1 by default.
2993
2994 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
2995
2996         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
2997
2998 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
2999
3000         * marshal.c: keep track of struct size with explicit layout
3001         (bug #59979).
3002
3003 2004-06-12  Martin Baulig  <martin@ximian.com>
3004
3005         * mono-debug-debugger.c: Comment out a debugging g_message().
3006
3007 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
3008
3009         * reflection.c, reflection.h: do not free custom attrs that are cached.
3010         * icall.c: use braces to make code clearer.
3011
3012 2004-06-11  Martin Baulig  <martin@ximian.com>
3013
3014         * class.h (MonoInflatedField): New type.
3015         (MonoClassField): Replaced `MonoType *generic_type' with
3016         `MonoInflatedField *generic_info'.
3017
3018         * icall.c
3019         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
3020
3021 2004-06-11  Martin Baulig  <martin@ximian.com>
3022
3023         * reflection.c (mono_image_create_method_token): Correctly encode
3024         varargs methods.
3025
3026 2004-06-11  Martin Baulig  <martin@ximian.com>
3027
3028         * metadata.c (mono_metadata_parse_method_signature): When parsing
3029         a MethodDef which has VarArgs, also set sentinelpos if we don't
3030         have any parameters.
3031
3032 2004-06-11  Martin Baulig  <martin@ximian.com>
3033
3034         * verify.c (mono_method_verify): In CEE_CALL, use
3035         mono_method_get_signature() to get the method's signature, unless
3036         we're a PInvoke method.
3037
3038 2004-06-10  Jackson Harper  <jackson@ximian.com>
3039
3040         * assembly.c: Use <path>/lib/mono/gac for the extra paths
3041         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
3042         logical name as the supplied path is just a prefix to the gac not
3043         the direct path to it.
3044         
3045 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
3046
3047         * reflection.c: make the token for a created method match
3048         the token of the MethodBuilder it was created from
3049         (IKVM requires this behaviour now).
3050
3051 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
3052
3053         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
3054         reflection.c, socket-io.c: leak fixes.
3055
3056 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
3057
3058         * icall.c: handle sentinel pos in vararg methods in position different
3059         from 0.
3060
3061 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3062
3063         * culture-info-tables.h: freshly generated.
3064
3065 2004-06-09  Martin Baulig  <martin@ximian.com>
3066
3067         * loader.c (mono_get_method_constrained): Call `mono_class_init
3068         (constrained_class)'.   
3069
3070 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
3071
3072         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
3073         any methods. Fixes #59629.
3074
3075 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
3076
3077         * culture-info-tables.h: reflecting locale-builder updates.
3078
3079 2004-06-08  Dick Porter  <dick@ximian.com>
3080
3081         * object.h:
3082         * locales.c: Fixed compile warnings, including a real bug in
3083         CompareInfo_internal_compare.
3084         
3085 2004-06-08  Dick Porter  <dick@ximian.com>
3086
3087         * locales.c
3088         (ves_icall_System_Globalization_CompareInfo_internal_index):
3089         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
3090         Double-check the resuls of usearches, because ICU currently
3091         ignores most of the collator settings here.  Fixes bug 59720.
3092         
3093 2004-06-08  Dick Porter  <dick@ximian.com>
3094
3095         * locales.c
3096         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
3097         Fix memory leak and segfault-causing typo.  No idea how this one
3098         lasted so long without being noticed.
3099
3100 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
3101
3102         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
3103         any methods. Fixes #59629.
3104
3105 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3106
3107         * assembly.c:
3108         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
3109         own the critical section before). Removed dead code (that's done
3110         in the preload hook).
3111
3112         (mono_assembly_load_with_partial_name): call the preload hook.
3113
3114 2004-06-08  Martin Baulig  <martin@ximian.com>
3115
3116         * metadata.c (mono_metadata_signature_alloc): Default
3117         `sentinelpos' to -1.
3118
3119         * reflection.c (mono_image_get_array_token): Likewise.
3120
3121 2004-06-08  Martin Baulig  <martin@ximian.com>
3122
3123         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
3124
3125         * metadata.c (mono_metadata_parse_method_signature): When parsing
3126         a MethodDef which has VarArgs, set sentinelpos.
3127
3128         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
3129         `gint16' since we're using -1 for non-varargs methods.
3130
3131         * reflection.c
3132         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
3133         (method_encode_signature): Added varargs support.
3134         (method_builder_encode_signature): Likewise.
3135         (mono_image_get_varargs_method_token): New static method.
3136         (mono_image_create_method_token): New public method; this is
3137         called via an icall instead of mono_image_create_token() when
3138         calling a varargs method.       
3139
3140 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
3141
3142         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
3143
3144 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
3145
3146         * culture-info-tables.h : Reflecting the latest locale-builder that
3147           fixed empty array representation ({} to {0}).
3148
3149 2004-06-07  Jackson Harper  <jackson@ximian.com>
3150
3151         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
3152         looking up extra gac paths. This allows MONO_GAC_PATH to act
3153         exactly like a prefix.
3154         
3155 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
3156
3157         * reflection.c (mono_reflection_type_from_name): Make a copy of the
3158         type name before modifying it. Fixes #59405.
3159
3160 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
3161
3162         * culture-info.h: added fields for "all datetime patterns".
3163         * locales.c: (  ves_icall_System_Globalization_CultureInfo
3164           _construct_datetime_format ()): fill xxx_patterns fields.
3165         * object.h: added fields for "all datetime patterns" to
3166           MonoDateTimeFormatInfo.
3167         * culture-info-tables.h: reflecting locale-builder updates.
3168
3169 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
3170
3171         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
3172         the event has no add and remove methods. Fixes #59629.
3173
3174 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
3175
3176         * object.c: Fixed possible integer overflow when allocating large
3177         strings.
3178
3179 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
3180
3181         * culture-info-tables.h: reflecting locale-builder updates.
3182
3183 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
3184
3185         * culture-info-tables.h: reflecting locale-builder updates.
3186
3187 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
3188
3189         * culture-info-tables.h: reflecting locale-builder updates.
3190
3191 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
3192
3193         * threads.c: Made Thread.Sleep abortable.
3194
3195 2004-06-02  Martin Baulig  <martin@ximian.com>
3196
3197         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
3198
3199         * debug-mono-symfile.h: Bumped symbol file version number to 37.
3200
3201 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
3202
3203         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
3204
3205 2004-05-30  Jackson Harper  <jackson@ximian.com>
3206
3207         * reflection.c: Do not hardcode assembly versions or public key
3208         tokens anymore. All of this except the corlib section was dead
3209         code anyways.
3210         
3211 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
3212
3213         * object.c (mono_runtime_invoke_array): Automatically create boxed
3214         objects for byref valuetypes if needed. Fixes #59300.
3215         
3216         * object.c (mono_method_return_message_restore): Handle 
3217         MONO_TYPE_OBJECT as well.
3218
3219 2004-05-28  Jackson Harper  <jackson@ximian.com>
3220
3221         * reflection.c: The modified type encoding was causing build
3222         problems. Reverted for now.
3223         
3224 2004-05-28  Jackson Harper  <jackson@ximian.com>
3225
3226         * reflection.c/h: Take an assembly ref so that we dont create
3227         fully qualified names when encoding types in the same assembly as
3228         the custom attribute being emitted.
3229         * appdomain.c: Increment version number.
3230         
3231 2004-05-26  Duncan Mak  <duncan@ximian.com>
3232
3233         * icall.c
3234         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
3235         Set the full version number (major, minor, build, revision).
3236
3237 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
3238
3239         * marshal.c (emit_struct_conv): increment src/dst after blit
3240         (mono_marshal_get_managed_wrapper,
3241         mono_marshal_get_native_wrapper): make sure we have marshalling
3242         info before marshalling params (info computation affects
3243         blittable)
3244
3245         * class.c (class_compute_field_layout): correctly deal with
3246         blittable
3247         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
3248         value types (as per what windows dows by default)
3249         (mono_class_setup_mono_type): System.ValueType is blittable
3250         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
3251         blittable
3252
3253         * marshal.c (mono_marshal_load_type_info): flag types  as
3254         non-blittable if the native layout doesn't match the managed
3255         layout
3256
3257 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3258
3259         * appdomain.c: don't add stuff in the private search path that is
3260         above the application base. If application base is not set, there's
3261         no private search path.
3262
3263 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
3264
3265         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
3266         byref struct arguments in native->managed marshalling.
3267
3268 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
3269
3270         * marshal.c (mono_marshal_get_runtime_invoke): correctly
3271         cache methods using signature (special case for methods
3272         that are value type or string class)
3273         
3274         * image.c (mono_image_close): clean up allocated GSList's
3275         in runtime_invoke_cache.
3276
3277 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3278
3279         * mono-config.c: set the correct path for mono_cfg_dir on windows when
3280         there's no MONO_CFG_DIR environment variable defined.
3281
3282 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3283
3284         * threads.c: windows version must be >= 0x0500 to include OpenThread.
3285
3286 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
3287
3288         * threadpool.c: Really wait for 500ms after the async call, even if the wait
3289           is interrumped.
3290         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
3291           before waiting for it, and call CloseHandle after the wait to unref it.
3292           This will make sure that handles are not disposed too early.
3293
3294 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3295
3296         * appdomain.c:
3297         * appdomain.h:
3298         * icall.c: removed
3299         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
3300         needed now.
3301
3302         * object.c: se the application_base only for the domain that runs
3303         Main. Fixes bug #59216,
3304
3305 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3306
3307         * appdomain.c:
3308         * object.c: only the domain in which Main is run have
3309         SetupInformation.ConfigurationFile set, so moved a few lines from
3310         appdomain.c to object.c.
3311
3312 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3313
3314         * appdomain.c: we tried to load [name].(dll|exe), but according
3315         to bug #57710, we must also try [culture]/[name].(dll|exe) and
3316         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
3317         There's a test case attached to bug #58922.
3318
3319 2004-05-27  Dick Porter  <dick@ximian.com>
3320
3321         * icall.c:
3322         * file-io.c: Implemented icalls for locking and unlocking regions
3323         in a file.
3324         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
3325         FALSE on error (fixes both compiler warning and real bug.)
3326
3327 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
3328
3329         * culture-info-tables.h: reflecting locale-builder updates.
3330
3331           (Added missing ChangeLog entry for 05/26)
3332
3333 2004-05-27  Jackson Harper  <jackson@ximian.com>
3334
3335         * locales.c: Fix some cut and paste errors.
3336         
3337 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3338
3339         * mono-config.c: set the correct path for config. directory on windows.
3340
3341 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
3342
3343         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
3344           on win32.
3345
3346 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
3347
3348         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
3349         from pinvoke functions.
3350         
3351         * marshal.c (mono_ftnptr_to_delegate): Implement this.
3352
3353 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
3354
3355         * culture-info-tables.h: reflecting locale-builder updates.
3356
3357 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
3358
3359         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
3360         #59086.
3361
3362 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
3363
3364         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
3365         * icall.c: Modified icalls for RNG.
3366         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
3367         Windows (CryptoAPI).
3368
3369 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
3370
3371         * locales.c: Fix build.
3372
3373 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
3374
3375         * culture-info-tables.h: reflecting locale-builder updates.
3376
3377 2004-05-25  Jackson Harper  <jackson@ximian.com>
3378
3379         * locales.c: When creating the current culture use the $LANGs
3380         specific culture. So DateTimeFormat and NumberFormat entries are created.
3381         
3382 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
3383
3384         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
3385         a char array as parameter.
3386
3387 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
3388
3389         * image.c: In mono_image_open(), always use an absolute path name to
3390           look for already loaded images.
3391
3392 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
3393
3394         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
3395         missing in the windows build (like older cygwin include files).
3396
3397 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
3398
3399         * icall.c: Fixed check for possible integer overflow in Buffer_
3400         BlockCopy icall. Replaced comments style // by /* */.
3401
3402 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
3403
3404         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
3405         
3406         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
3407         check after MONO_VTADDR. Fixes pinvoke2.exe.
3408
3409         * marshal.h marshal.c metadata.h: Add beginnings of support for
3410         ftnptr -> delegate marshalling.
3411
3412 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
3413
3414         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
3415         * threads.c: Fix warnings.
3416
3417 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
3418
3419         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
3420         * icall.c: Registered icalls for Suspend and Resume.
3421         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
3422           Thread.Abort.
3423         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
3424         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
3425         * process.c: Use WaitForSingleObjectEx.
3426         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
3427           checkpoints.
3428         * threads.c, threads.h: Make use of new Ex wait methods. Improved
3429           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
3430           for Suspend and Resume. Added new mono_thread_stop, used for stoping
3431           background threads. Added basic support for Abort in Windows.
3432           Start new threads using a managed delegate invoke wrapper. This wrapper
3433           has an interruption checkpoint that is needed since an interruption
3434           can be requested before the thread leaves the unmanaged code that starts 
3435           the thread.
3436         * marshal.c: Added interruption checkpoint after every native call, and
3437           also before managed calls for wrappers called from unmanaged code to
3438           go into managed code.
3439         * object.h: Added new field in MonoThread to keep track of interruption
3440           requests.
3441
3442 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
3443
3444         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
3445         calls.
3446
3447 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3448
3449         * appdomain.c:
3450         * assembly.c:
3451         * gc.c:
3452         * locales.c:
3453         * mono-config.c:
3454         * rand.c: getenv -> g_getenv (windows!)
3455
3456         * process.c: complete_path is also used on non-windows platforms.
3457
3458 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3459
3460         * icall.c: new signature for Process_Start.
3461
3462         * process.[ch]: new signature for Process_Start. If we're on windows
3463         and UseShellExecute is false, we have to search for the program by
3464         ourselves if we don't get a full path.
3465
3466 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
3467
3468         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
3469         marshalling and call CleanUpNativeData if needed. Fixes #58646.
3470
3471 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3472
3473         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
3474         Fixes bug #58373.
3475
3476 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3477
3478         * process.c: use double quotes to quote program name and arguments on
3479         windows. Fixes bug #58575.
3480
3481 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3482
3483         * file-io.c: don't return "." and ".." when using windows Find*File.
3484
3485 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
3486
3487         * marshal.c: Don't pass wrappers to message init because method 
3488         addressed used to lookup metadata. part of remoting[2|3] fix.
3489
3490 2004-05-15  Jackson Harper  <jackson@ximian.com>
3491
3492         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
3493         path is essentially the same as MONO_PATH except that it points to
3494         GACs instead of lib directories.
3495         * loader.h: The user gac is gone so we dont need function to
3496         enable/disable it.
3497         * mono-config.c: user gac option is now gone.
3498         
3499 2004-05-15  Jackson Harper  <jackson@ximian.com>
3500
3501         * culture-info.h: Make defines more consistent, add calendar data
3502         to the culture info table.
3503         * culture-info-tables.h: Add basic calendar data. Basically
3504         everyone gets default gregorian until all the data is
3505         updated.
3506         * locales.c: Use the new consistent defines. Set calendar data for
3507         culture info objects.
3508         * object.h: add a field for calendar data to CultureInfo
3509         
3510 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
3511
3512         * image.c: image->runtime_invoke_cache is keyed on signatures now.
3513         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
3514         a signature.
3515         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
3516         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
3517         an extra param that is the pointer of the method to invoke. The IL for
3518         the invoke method is no longer specific to the method, but to the
3519         signature of the method. Thus, we can share the same code for multiple
3520         methods. This reduces the number of methods that have to be compiled.
3521
3522 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
3523
3524         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
3525
3526         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3527
3528         * icall.c: Optimize Buffer.BlockCopy.
3529
3530 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3531
3532         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
3533         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
3534         quote). Changed them to "MMMM yyyy".
3535
3536 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
3537
3538         * rand.c
3539         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
3540
3541 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
3542
3543         * reflection.h: Updated after changes to managed structures.
3544
3545         * appdomain.c: Bump corlib version.
3546
3547 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3548
3549         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
3550         windows.
3551
3552 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3553
3554         * Makefile.am: link to ../os/libmonoos.la on windows.
3555
3556         * assembly.c:
3557                 -If MONO_DEBUG, warn about non-existing directories in
3558                 MONO_PATH.
3559                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
3560                 compile time variable.
3561                 -Removed init_default_path and call mono_set_rootdir from
3562                 libmonoos.a instead (windows only).
3563
3564         * assembly.h: declare mono_assembly_getrootdir().
3565
3566         * domain.c:
3567         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
3568
3569         * loader.c: s/getenv/g_getenv/
3570
3571 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
3572
3573         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
3574
3575         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
3576
3577         * metadata.h: Add new marshalling conversions.
3578
3579         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
3580         function.
3581
3582         * reflection.c (mono_reflection_get_type): Lookup the type in all
3583         modules of a multi-module assembly. Fixes #58291.
3584
3585 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
3586
3587         * threads.c: Before aborting a background, set the StopRequested
3588         state.  This avoids throwing the Abort exception.
3589         In mono_thread_manage, don't continue with the shutdown until all
3590         aborted threads have actually stopped.
3591
3592 2004-05-10  Jackson Harper  <jackson@ximian.com>
3593
3594         * locales.c: Remove the modifier from culture names.
3595         
3596 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3597
3598         * Makefile.am: monosn is not installed any more. It has been deprecated
3599         in favor of sn.
3600
3601 2004-05-07  Jackson Harper  <jackson@ximian.com>
3602
3603         * locales.c
3604         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
3605         Fix array construction, add bailout if the length is 0.
3606
3607 2004-05-07  Dick Porter  <dick@ximian.com>
3608
3609         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
3610         machine doesn't have a DNS entry.  Patch by Urs Muff
3611         (umuff@quark.com), fixes bug 57928.
3612
3613 2004-05-06  Jackson Harper  <jackson@ximian.com>
3614
3615         * reflection.c: Handle null PublicTokens properly. alloc mem for
3616         assembly names culture so we dont crash when freeing it.
3617         
3618 2004-05-06  Jackson Harper  <jackson@ximian.com>
3619
3620         * assembly.c: Check the usergac when loading with partial names.
3621         
3622 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
3623
3624         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
3625         does nothing for now (not required for Linux/Windows) but the class
3626         library can call it (and a newer or modified runtime could need it).
3627         * icall.c: Registred icall.
3628
3629 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3630
3631         * loader.c: prints a message on module loading error we set MONO_DEBUG
3632         environment variable.
3633
3634 2004-05-05  Jackson Harper  <jackson@ximian.com>
3635
3636         * appdomain.c: Handle PublicKeyToken=null properly.
3637         
3638 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
3639
3640         * environment.c|h: Added icall ves_icall_System_Environment_
3641         GetOSVersionString to get the current OS version as a string.
3642         * icall.c: Registred icall.
3643
3644 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
3645
3646         * object.c: in mono_object_get_virtual_method(), take into account that
3647         non-virtual methods don't have a slot in the vtable. Check needed when
3648         the object is a proxy.
3649
3650 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
3651
3652         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
3653         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
3654
3655         * object.c (mono_class_compute_gc_descriptor): Fix warning.
3656
3657         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
3658         passed when a valuetype is expected.
3659
3660         * object.c (mono_unhandled_exception): Only set the exit code if the
3661         exception happens in the main thread. Fixes thread5.exe.
3662
3663         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
3664         invalid names. Fixes #58047.
3665
3666 2004-05-03  Jackson Harper  <jackson@ximian.com>
3667
3668         * assembly.c: This line was committed accidently and is unneeded.
3669         
3670 2004-05-03  Jackson Harper  <jackson@ximian.com>
3671
3672         * icall.c: Add new icall for Assembly::LoadWithPartialName
3673         * assembly.c/.h: new function that probes the GAC to load partial
3674         assembly names by Paolo Molaro.
3675         
3676 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3677
3678         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
3679         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
3680         (type_get_fully_qualified_name): Added PublicKeyToken when building a
3681         full type name.
3682
3683 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3684
3685         * appdomain.c: fixed check for 'neutral' culture and removed warning.
3686         * reflection.c: fix bug when parsing a full type name and Version is not
3687         the last thing in the string.
3688
3689 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
3690
3691         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
3692         crashes when it is freed.
3693
3694 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3695
3696         * assembly.c: print the compat warning to stderr.
3697
3698 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
3699
3700         * assembly.c (mono_assembly_load_references): Add a compatibility
3701         hack to run old applications that might be still referencing the
3702         3300-based assemblies, only do this for System.xxx.
3703
3704 2004-05-01  Jackson Harper  <jackson@ximian.com>
3705
3706         * appdomain.c: If the culture is neutral we set it to "".
3707         
3708 2004-04-29  Jackson Harper  <jackson@ximian.com>
3709
3710         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
3711
3712 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3713  
3714         * string-icalls.c: added low overhead function for copying chars
3715         * icall.c: added needed icall for the above function
3716  
3717 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3718
3719         * icall.c: fix return value of get_global_assembly_cache.  Implemented
3720         Environment.GetLogicalDrives.
3721
3722 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
3723
3724         * rand.c: try and talk to egd or prngd
3725         for random bytes if opening devices fail.
3726
3727 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
3728
3729         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
3730         alignment for the type using the native alignment of its members 
3731         instead of using klass->min_align.
3732
3733         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
3734
3735 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3736
3737         * file-io.c:
3738         * socket-io.c: added check for sys/aio.h.
3739
3740 2004-04-28  Dick Porter  <dick@ximian.com>
3741
3742         * threads.c: Don't abort a thread thats already aborting, when
3743         terminating everything.
3744
3745 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3746
3747         * icall.c: added 2 new async calls for Socket.
3748
3749         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
3750         IO on *nix systems.
3751
3752         * threadpool.c: removed unused variable.
3753
3754 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
3755
3756         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
3757
3758 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
3759
3760         * locales.c: put back string_invariant_tolower () and
3761         string_invariant_toupper ().
3762
3763 2004-04-26 David Waite <mass@akuma.org>
3764
3765         * file-io.h:
3766         * socket-io.h:
3767         * threads.h:
3768         * unicode.h: remove comma from end of enumeration declarations
3769
3770 2004-04-26 David Waite <mass@akuma.org>
3771
3772         * debug-mono-symfile.h:
3773         * decimal.c:
3774         * mono_debug.h:
3775         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
3776
3777
3778 2004-04-26  Jackson Harper  <jackson@ximian.com>
3779
3780         * appdomain.c: Increment version number.
3781         
3782 2004-04-26  Jackson Harper  <jackson@ximian.com>
3783
3784         * appdomain.c: Set assembly references public token value when
3785         PublicKeyToken is specified, not the hash_value. Free public token
3786         values when free assembly name data. Previously the public key
3787         token was hex decoded, however we are using hex encoded public key
3788         tokens, so this is not neccasary.
3789         * assembly.c: Lookup assemblies in the gac if their public token
3790         value is set. Add function to allow enabling user gac
3791         lookups. Specify whether or not the assembly was loaded from the
3792         GAC. Compare full assembly names when checking the cache for
3793         assemblies (Temporarily disabled see comment in code). Remove
3794         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
3795         specifies trace-loader they get extra info to stdout on the
3796         loading of assemblies.
3797         * image.h: Add a field for an assembly references public token
3798         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
3799         whether an assembly has been loaded from the GAC.
3800         * image.c: Remove a corlib -> mscorlib name mapping.
3801         * loader.h: Add function to enable/disable the user gac.
3802         * mono-config.c: Check if the usergac is enabled in the config
3803         file.
3804         * icall.c: New icall to determine whether or not an assembly has
3805         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
3806         * tabldefs.h: Add constant for assemblyref flag that specifies a
3807         full public key is used instead of a public token.
3808         * reflection.c: Remove mscorlib -> corlib mappings. Set
3809         PublicTokenValue instead of hash value. This value is a hex
3810         string so it does not need to be expanded.
3811
3812 2004-04-26  Martin Baulig  <martin@ximian.com>
3813
3814         * mono-debug-debugger.c (mono_debugger_initialize): Set
3815         `mono_debugger_initialized' before calling mono_debug_lock().
3816
3817 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
3818
3819         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
3820           InternalToUpper/InternalToLower.
3821         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
3822           removed invariant culture shortcut.  This is now done in managed code.
3823         * locales.c: (string_invariant_toupper/tolower) removed.
3824
3825 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3826
3827         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
3828         Added Poll internal call.
3829
3830         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
3831         call for Poll. Select was too heavy for polling a single socket.
3832
3833         * threadpool.[ch]: added mono_threadpool_cleanup.
3834         * threads.c: use it. Don't use Thread_Abort on windows.
3835
3836 2004-04-23  Martin Baulig  <martin@ximian.com>
3837
3838         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
3839
3840 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
3841
3842         * icall.c: Registred new icalls for key pair protection and added an
3843         icall for Environment.GetFolderPath on Windows.
3844         * security.c|h: Added new icalls for key pair protection.
3845
3846 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3847
3848         * socket-io.c: don't display the non-supported family warning for known
3849         families. Now this is not displayed on windows when checking support
3850         for IPv4/IPv6.
3851
3852 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3853
3854         * class.c: don't display the layout warning for static fields.
3855
3856 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
3857
3858         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
3859         * locales.c, locales.h: Added new icalls for culture-specific
3860         Char.ToLower and Char.ToUpper.
3861
3862 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3863
3864         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
3865         by David Waite.
3866
3867 2004-04-20  Martin Baulig  <martin@ximian.com>
3868
3869         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
3870         of the type name before passing it to mono_reflection_type_from_name().
3871
3872 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
3873
3874         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
3875         encodings here. Fixes #56965.
3876
3877 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
3878
3879         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
3880         fix test on strstr result not that I can see anything that
3881         relies on the result.
3882
3883 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
3884
3885         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
3886         Fixes #57081.
3887
3888         * marshal.c (mono_marshal_get_string_encoding): New helper function.
3889
3890         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
3891         function to determine which marshalling to use for strings. Fixes
3892         #56965.
3893
3894         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
3895
3896         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
3897
3898 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
3899
3900         * icall.c: #include mono-config.h
3901
3902 2004-04-15  Jackson Harper  <jackson@ximian.com>
3903
3904         * culture-info-tables.h: Fix date formats for en-US culture.
3905         
3906 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
3907
3908         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
3909         ThreadPool.SetMinThreads.
3910         * threadpool.c: Implemented ThreadPool.GetMinThreads and
3911         ThreadPool.SetMinThreads.
3912
3913 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
3914
3915         * mono-config.c: also load the .config file in the directory
3916         where the assembly was found.
3917
3918 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
3919
3920         * assembly.c: load per-assembly config files.
3921         * icall.c: decrapified code to get the config dir and moved to
3922         mono-config.c.
3923         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
3924         per-assembly config files. When doing a dll map lookup give precedence
3925         to the per-assembly data.
3926
3927 2004-04-14  Martin Baulig  <martin@ximian.com>
3928
3929         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
3930         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
3931         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
3932
3933         * mono-debugger-debugger.c: While the debugger is locked, remember
3934         whether the symbol tables have changes and send one single
3935         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
3936
3937 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
3938
3939         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
3940
3941         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
3942         function.
3943
3944         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
3945         account when marshalling string arrays. Fixes #56965.
3946
3947 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
3948
3949         * icall.c: Add new icalls mapping for security.
3950         * security.c|h: Add internal calls for WindowsIdentity,
3951         WindowsImpersonationContext and WindowsPrincipal.
3952
3953 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
3954
3955         * class.c: Added comment to ensure the System.MonoDummy class
3956         is removed when no longer necessary
3957
3958 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
3959
3960         * appdomain.c: Pass arguments to the bootstraping exceptions to
3961         minimize JITed methods at boot
3962
3963         * metadata.c (mono_exception_from_name_two_strings): Allow for the
3964         second string to be null.
3965
3966         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
3967         Change the protocol to minimize the JIT methods at startup.  Now
3968         it Returns the internal codepage, if the value of "int_code_page"
3969         is 1 at entry, and we can not compute a suitable code page
3970         number, returns the code page as a string.
3971
3972 2004-04-13  Jackson Harper  <jackson@ximian.com>
3973
3974         * culture-info-tables.h: Fix number of decimal digits for all
3975         english locales.
3976
3977 2004-04-13  Jackson Harper  <jackson@ximian.com>
3978
3979         * icall.c: Clairfy out of sync error message. It is not always
3980         your corlib that is out of sync.
3981
3982 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
3983
3984         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
3985         properties when only the set accessor is overriden. Fixes #55874.
3986
3987 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
3988
3989         * assembly.c (mono_assembly_load_references): Make this thread safe.
3990         Fixes #56327.
3991
3992 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
3993
3994         * monosn.c: Add missing initialization calls.
3995
3996 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
3997
3998         * locales.c:
3999         ves_icall_System_Globalization_CultureInfo_construct_number_format
4000         Fix g_assert so it compiles on fussier compilers re int/ptr
4001         mismatch
4002
4003 2004-04-08  Dick Porter  <dick@ximian.com>
4004
4005         * socket-io.h:
4006         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
4007         53992.  Also rearrange the code so that the internal calls return
4008         an error value and exceptions are thrown from managed code.
4009
4010         * icall.c: Add type info to the socket icalls.
4011
4012 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4013
4014         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
4015         owes me a beer.
4016
4017 2004-04-07  Martin Baulig  <martin@ximian.com>
4018
4019         * class.c (mono_class_from_generic_parameter): Don't default
4020         `klass->parent' to `mono_defaults.object_type'.
4021
4022 2004-04-07  Martin Baulig  <martin@ximian.com>
4023
4024         * reflection.c (mono_reflection_initialize_generic_parameter): Set
4025         `param->pklass->reflection_info'.       
4026
4027 2004-04-07  Jackson Harper  <jackson@ximian.com>
4028
4029         * culture-info-tables.h: Fix date separator symbol.
4030         
4031 2004-04-07  Martin Baulig  <martin@ximian.com>
4032
4033         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
4034         from System.Type to System.MonoType.
4035
4036 2004-04-07  Martin Baulig  <martin@ximian.com>
4037
4038         * reflection.h
4039         (MonoReflectionGenericParam): Added `has_reference_type' and
4040         `has_value_type' fields.
4041
4042         * reflection.c (mono_image_get_generic_param_info): Encode the
4043         correct flags if we have the `class' or `struct' constraint.
4044
4045 2004-04-07  Martin Baulig  <martin@ximian.com>
4046
4047         * reflection.h
4048         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
4049
4050 2004-04-07  Jackson Harper  <jackson@ximian.com>
4051
4052         * appdomain.c: Revert extra patches, just wanted to bump the
4053         version number.
4054         
4055 2004-04-07  Jackson Harper  <jackson@ximian.com>
4056
4057         * Makefile.am: Add culture-info private headers.
4058         * icall.c: Add new icalls for contructing locales.
4059         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
4060         * locales.h: Declare new culture info construction methods.
4061         * object.h: Add new fields used to avoid the CultureMap to
4062         MonoCultureInfo.
4063         * culture-info.h: Definition of structs used in the culture info
4064         tables.
4065         * culture-info-tables.h: Autogenerated tables that contain culture
4066         info data. This file was generated with the locale-builder tool.
4067         * appdomain.c: Incement corlib version number.
4068         
4069 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
4070
4071         * appdomain.c: (mono_runtime_init) move mono_thread_init
4072         to before mono_object_new calls so critical sections
4073         are initialized before use.
4074
4075 2004-04-07  Martin Baulig  <martin@ximian.com>
4076
4077         * icall.c
4078         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
4079         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
4080         (ves_icall_MonoGenericParam_initialize): Removed.
4081         (monogenericparam_icalls): Removed.
4082         (generictypeparambuilder_icalls): Added new table for
4083         System.Reflection.Emit.GenericTypeParameterBuilder.
4084
4085         * reflection.c
4086         (mono_reflection_define_generic_parameter): Removed.
4087         (mono_reflection_initialize_generic_parameter): This is now called
4088         from GenericTypeParameterBuilder's .ctor.
4089
4090 2004-04-06  Martin Baulig  <martin@ximian.com>
4091
4092         * class.c (mono_class_init): Don't inflate nested classes in a
4093         generic instance.
4094         (mono_type_get_name_recurse): Include the generic arguments for
4095         generic instances and generic type declarations.
4096         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
4097         (_mono_class_get_instantiation_name): Removed.
4098         (mono_class_create_generic): Always use `gklass->name' as our name.
4099
4100         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
4101
4102         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
4103         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
4104         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
4105         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
4106         closed generic methods here.
4107
4108         * reflection.c
4109         (mono_reflection_generic_inst_get_nested_types): Removed.
4110         (inflate_mono_method): Copy the generic parameters from the
4111         MonoMethodHeader into out MonoGenericMethod.
4112
4113 2004-04-06  Martin Baulig  <martin@ximian.com>
4114
4115         * row-indexes.h
4116         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
4117
4118         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
4119
4120         * reflection.c (build_compressed_metadata): If we have any entries
4121         in the GenericParam, MethodSpec or GenericParamConstraint tables,
4122         set the header version to 1.1.
4123
4124 2004-04-06  Martin Baulig  <martin@ximian.com>
4125
4126         * class.c (mono_class_init): If we're a generic instance,
4127         initialize our nested classes, too.
4128         (_mono_class_get_instantiation_name): Deal with the new `!%d'
4129         suffix. 
4130
4131 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4132
4133         * process.c: quote the argument passed to the shell on windows.
4134
4135 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
4136
4137         * threads.c (mono_alloc_special_static_data): Allow this to be
4138         called during startup.
4139
4140 2004-04-02  Martin Baulig  <martin@ximian.com>
4141
4142         * icall.c
4143         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
4144
4145 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
4146
4147         * icall.c: Fix build.
4148
4149 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
4150
4151         * Makefile.am: Added security.c|h.
4152         * icall.c: Added icall for get_UserName;
4153         * security.c: New file for security related icalls. Added function
4154         get_UserName for System.Environment (fix #56144).
4155         * security.h: New. Header file for security.c
4156
4157 2004-04-02  Dick Porter  <dick@ximian.com>
4158
4159         * icall.c: Deleted the icalls that were obsoleted some time ago
4160         by the ICU string code, and which were mixed into the icall
4161         rearranging.  Fixes bug 55969.
4162
4163         * string-icalls.h: 
4164         * string-icalls.c: Deleted the code that those icalls reference.
4165
4166 2004-04-01  Martin Baulig  <martin@ximian.com>
4167
4168         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
4169
4170         * class.c (mono_class_from_generic_parameter): Don't set 
4171         TYPE_ATTRIBUTE_INTERFACE.
4172         (my_mono_class_from_generic_parameter): Likewise.
4173
4174 2004-04-01  Martin Baulig  <martin@ximian.com>
4175
4176         * loader.c (find_method): Added an optional `MonoClass *ic'
4177         argument to search in a specific interface.
4178         (mono_get_method_constrained): New public function.
4179
4180 2004-04-01  Martin Baulig  <martin@ximian.com>
4181
4182         * reflection.c (mono_image_get_generic_field_token): Use the
4183         `handleref' cache here.
4184
4185 2004-04-01  Martin Baulig  <martin@ximian.com>
4186
4187         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
4188
4189         * reflection.c (create_generic_typespec): Use the `typespec' hash
4190         here, not the `typeref' one.    
4191
4192 2004-04-01  Martin Baulig  <martin@ximian.com>
4193
4194         * class.c (mono_class_inflate_generic_type): Moved the
4195         functionality into a new static inflate_generic_type() which
4196         returns NULL if it didn't do anything.  Only increment the
4197         `mono_stats.inflated_type_count' if we actually inflated
4198         something.
4199         (mono_class_get_full): Check the classes type to see whether we
4200         need to inflate it; also inflate MONO_TYPE_(M)VAR.
4201
4202 2004-04-01  Jackson Harper  <jackson@ximian.com>
4203
4204         * reflection.c: Set culture for assembly references.
4205         
4206 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
4207
4208         * reflection.[ch], icall.[ch], Fix support for pinning variables.
4209
4210 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4211
4212         * assembly.c:
4213         (do_mono_assembly_open): the critical section also covers
4214         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
4215
4216 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4217
4218         * threads.c:
4219         (mono_manage_threads): abort the background threads when finishing.
4220         Fixes bug #47232.
4221
4222 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4223
4224         * gc.c: only close the done_event handle if there was no timeout.
4225         C-ified comments.
4226
4227 2004-03-30  Martin Baulig  <martin@ximian.com>
4228
4229         * icall.c (icall_entries): It's called "System.Activator", not
4230         "System.Activation".    
4231
4232 2004-03-30  Martin Baulig  <martin@ximian.com>
4233
4234         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
4235         (mono_class_create_from_typespec): Likewise.
4236
4237 2004-03-30  Martin Baulig  <martin@ximian.com>
4238
4239         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
4240         `has_ctor_constraint' and `initialized'.
4241
4242 2004-03-30  Martin Baulig  <martin@ximian.com>
4243
4244         * reflection.c (encode_new_constraint): New static function to add
4245         the constructor constraint attribute to a type parameter.
4246         (encode_constraints): Call encode_new_constraint() if necessary.
4247
4248         * reflection.h
4249         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
4250
4251         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
4252         
4253 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
4254
4255         * reflection.c, icall.c: add support for pinning variables. 
4256
4257 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
4258
4259         * marshal.c (mono_marshal_get_managed_wrapper):
4260         init bool local with zero rather than null.
4261
4262 2004-03-29  Martin Baulig  <martin@ximian.com>
4263
4264         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
4265         the "official" behavior here.
4266         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
4267
4268 2004-03-29  Martin Baulig  <martin@ximian.com>
4269
4270         * icall.c: Reflect latest API changes.
4271
4272 2004-03-29  Martin Baulig  <martin@ximian.com>
4273
4274         * loader.c (mono_get_method_from_token): Also call
4275         mono_metadata_load_generic_params () for abstract and interface
4276         methods; replace the type arguments in the method signature with
4277         the ones which are loaded from the metadata.
4278
4279 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
4280
4281         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
4282         of the lock is not the current thread. MS.NET don't do it, in spite of
4283         what the documentation says. See bug #56157.
4284
4285 2004-03-28  Martin Baulig  <martin@ximian.com>
4286
4287         * class.c (mono_class_init): Don't call init_properties() and
4288         init_events() for generic instances; set `prop->parent' when
4289         inflating properties.
4290
4291         * reflection.c (mono_generic_inst_get_object): Call
4292         `mono_class_init (ginst->klass)'.
4293         (mono_type_get_object): Only create a MonoGenericInst if your
4294         generic type is a TypeBuilder.
4295         (do_mono_reflection_bind_generic_parameters): Only set
4296         `ginst->is_dynamic' if our generic type is a TypeBuilder.
4297
4298 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
4299
4300         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
4301         Fixes #56091.
4302
4303 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4304
4305         * icall.c: added Kill_internal icall.
4306         * process.[ch]: added Kill_internal icall.
4307
4308 2004-03-25  Martin Baulig  <martin@ximian.com>
4309
4310         * class.h (MonoStats): Added `generic_instance_count',
4311         `inflated_method_count', `inflated_type_count' and
4312         `generics_metadata_size'.       
4313
4314 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4315
4316         * reflection.c: no warnings now.
4317
4318 2004-03-25  Martin Baulig  <martin@ximian.com>
4319
4320         * class.c (mono_class_get_full): New public function; does a
4321         mono_class_get(), but also takes a `MonoGenericContext *'.
4322
4323         * loader.c (mono_field_from_memberref): Renamed to
4324         `field_from_memberref', made static and added `MonoGenericContext *'
4325         argument.
4326         (mono_field_from_token): Added `MonoGenericInst *' argument.
4327         (method_from_memberef): Likewise.
4328         (mono_get_method_from_token): Likewise.
4329         (mono_get_method_full): New public function; does a
4330         mono_get_method(), but also takes a `MonoGenericContext *'.
4331
4332         * verify.c (mono_method_verify): Get the method's generic context
4333         and pass it to mono_field_from_token(), mono_get_method_full() and
4334         mono_class_get_full().
4335
4336 2004-03-25  Martin Baulig  <martin@ximian.com>
4337
4338         * class.c (mono_class_inflate_generic_type): Take a
4339         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
4340         `MonoGenericMethod *'.
4341
4342 2004-03-25  Martin Baulig  <martin@ximian.com>
4343
4344         * loader.h (MonoMethodInflated): Store the MonoGenericContext
4345         instead of the MonoGenericMethod here.
4346
4347 2004-03-25  Martin Baulig  <martin@ximian.com>
4348
4349         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
4350         each time we create a new MonoGenericInst, we also create a new
4351         context which points back to us.
4352
4353         * class.c (inflate_method): Use `ginst->context' instead of
4354         creating a new context.
4355
4356         * loader.c (method_from_memberref): Use
4357         `klass->generic_inst->context' instead of creating a new context.
4358
4359 2004-03-25  Martin Baulig  <martin@ximian.com>
4360
4361         * class.h (MonoGenericContext): New struct.
4362         (MonoGenericMethod): Removed `generic_inst'.
4363
4364         * class.c (mono_class_inflate_generic_method): Take a
4365         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
4366
4367 2004-03-25  Martin Baulig  <martin@ximian.com>
4368
4369         * loader.h (MonoMethodInflated): New typedef.
4370
4371         * metadata.h (MonoMethodSignature): Removed `gen_method', make
4372         `generic_param_count' consume just 30 bits, added `is_inflated'
4373         and `has_type_parameters' flags (one bit each).
4374
4375         * class.c (mono_class_inflate_generic_method): Create a
4376         MonoMethodInflated instead of a MonoMethodNormal and set
4377         `is_inflated' in the method signature.
4378
4379         * class.h (MonoGenericMethod): Removed `generic_method'.
4380
4381 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
4382
4383         * image.c: Make sure the name of a MonoImage is always an absolute path.
4384           This fixes bug #54415.
4385
4386 2004-03-24  Martin Baulig  <martin@ximian.com>
4387
4388         * class.c (mono_class_setup_vtable): If we're a generic instance,
4389         use our generic type's vtable size.
4390
4391 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
4392
4393         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
4394         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
4395         problems.
4396
4397 2004-03-23  Martin Baulig  <martin@ximian.com>
4398
4399         * class.h (MonoDynamicGenericInst): Added `int count_events' and
4400         `MonoEvent *events'.
4401
4402         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
4403         (typebuilder_icalls): Added "get_event_info"; calls
4404         mono_reflection_event_builder_get_event_info(). 
4405
4406         * reflection.c (mono_reflection_generic_inst_initialize): Added
4407         `MonoArray *events'.
4408         (mono_reflection_event_builder_get_event_info): New function.
4409
4410 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
4411
4412         * object.h: add mono_type_initialization_init
4413
4414         * object.c (mono_runtime_class_init): 
4415         implement class constructor synchronization rules
4416         to cope with threading issues.  
4417         add mono_type_initialization_init
4418
4419         * appdomain.c (mono_runtime_init): call 
4420         mono_type_initialization_init
4421
4422         * class.h: removing initializing field from MonoVTable
4423
4424 2004-03-23  Martin Baulig  <martin@ximian.com>
4425
4426         * class.c (my_mono_class_from_generic_parameter): Use
4427         `param->name' if it's not NULL. 
4428
4429 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
4430
4431         * class.c: do not insert non-virtual methods in the vtable.
4432         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
4433         that means the method is non-virtual. This never would have
4434         happened before.
4435
4436 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
4437
4438         * profiler.c: Added lock for accessing coverage_hash.
4439
4440 2004-03-22  Martin Baulig  <martin@ximian.com>
4441
4442         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
4443         `method->method->signature->generic_param_count != 0' to make it
4444         work for interface methods.
4445
4446 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4447
4448         * process.c: quote the string passed to the shell using g_shell_quote.
4449
4450 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4451
4452         * threads.c:
4453         (mono_threads_manage): don't remove the finalizer thread and self
4454         from the threads hash table so that mono_thread_manage can be called
4455         more than once.
4456
4457 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4458
4459         * process.c: quote the arguments when UseShellExecute is true. Fixes
4460         bug #55790.
4461
4462 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4463
4464         * threads.c: set mono_thread_detach as a cleanup routine for every
4465         thread. This way it's always executed upon thread termination, either
4466         aborted or finished normally. No more xsp hangs!
4467
4468 2004-03-17  Martin Baulig  <martin@ximian.com>
4469
4470         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
4471         `int count_nested' and a `MonoType **nested'.
4472
4473         * reflection.c (mono_reflection_bind_generic_parameters): Moved
4474         most of the functionality into a new static
4475         do_mono_reflection_bind_generic_parameters() and don't take a
4476         `MonoType *nested_in' argument any more.  Don't compute nested
4477         types here.
4478         (mono_reflection_generic_inst_get_nested_types): New public method
4479         to get nested types.
4480
4481         * class.c (mono_class_create_generic): Set `klass->nested_in' if
4482         we're a nested class.
4483
4484         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
4485         mono_reflection_generic_inst_get_nested_types() to compute the
4486         nested types.
4487
4488 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
4489
4490         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
4491         descriptive error message under windows.
4492         
4493 2004-03-17  Martin Baulig  <martin@ximian.com>
4494
4495         * class.c (dup_type): Added `const MonoType *original' argument;
4496         copy the attrs from the original type.
4497
4498 2004-03-17  Martin Baulig  <martin@ximian.com>
4499
4500         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
4501         `m->generic_inst_cache' here.
4502
4503 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
4504
4505         * exception.h exception.c: Add stack_overflow_exception.
4506
4507 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4508
4509         * threadpool.c:
4510         (overlapped_callback): call SetEvent *after* invoking the callback.
4511         No need to call CloseHandle.
4512
4513 2004-03-16  Martin Baulig  <martin@ximian.com>
4514
4515         * reflection.c (mono_image_get_fieldref_token): Take a
4516         `MonoReflectionField *' instead of a `MonoClassField *' and a
4517         `MonoClass *'; store the `MonoReflectionField *' in the hash.
4518
4519 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4520
4521         * appdomain.c: don't add the culture to the filename we're looking for
4522         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
4523
4524 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4525
4526         * locales.c: don't ignore symbols when doing case insensitive compares.
4527         Thanks Dick! Fixes bug #54046.
4528
4529         * threads.c: surround 'threads' usage with enter/leave in
4530         mono_thread_manage.
4531
4532 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
4533
4534         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
4535         implicitly marshalled as [Out]. Fixes #55450.
4536
4537         (mono_marshal_get_runtime_invoke): Zero out the result if there is
4538         an exception.
4539
4540 2004-03-16  Martin Baulig  <martin@ximian.com>
4541
4542         * class.c (mono_class_from_generic_parameter): Use the actual
4543         parameter name. 
4544
4545 2004-03-16  Martin Baulig  <martin@ximian.com>
4546
4547         * reflection.c (type_get_signature_size): New static function.
4548         Compues the size of the type in a method signature.
4549         (method_get_signature_size): New static function; calls
4550         type_get_signature_size() to compute the actual size of the
4551         method's signature.
4552         (method_encode_signature): Use method_get_signature_size() to get
4553         the signature's size rather than using `nparams * 10'.
4554
4555 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4556
4557         * file-io.h: define here WapiOverlapped on windows. I don't want the
4558         regular OVERLAPPED one.
4559
4560         * file-io.c:
4561         * threadpool.c: somehow, BindIoCompletionCallback is not found.
4562         Disabling AIO on windows.
4563
4564 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4565
4566         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
4567         bug #55385.
4568
4569 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4570
4571         * appdomain.c: upgraded corlib version.
4572
4573         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
4574         and BeginWrite. Allow opening files for asynchrnous operations.
4575
4576         * file-io.h: new struct that maps FileStreamAsyncResult.
4577         * icall.c: added new icalls.
4578         * process.[ch]: support setting child process environment variables
4579         and use the SHELL or COMSPEC when UseShellExecute is true.
4580
4581         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
4582         callback for async. IO is here and also BindHandle.
4583
4584         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
4585         from here.
4586
4587 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
4588
4589         * reflection.c (create_custom_attr): Allow len == 0.
4590
4591         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
4592         computation on big-endian machines.
4593
4594 2004-03-13  Martin Baulig  <martin@ximian.com>
4595
4596         * class.h (MonoGenericInst): Added `int count_ifaces'.
4597
4598         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
4599         `ginst->count_ifaces' instead `klass->interface_count' since we
4600         may get called before the vtable is created.
4601
4602         * loader.c (mono_method_get_param_names): If we're a generic
4603         instance, return and don't initialize the class.
4604
4605         * reflection.c (mono_reflection_setup_generic_class): Don't call
4606         ensure_runtime_vtable().
4607         (mono_reflection_bind_generic_parameters): Set
4608         `ginst->count_ifaces'.
4609
4610 2004-03-11  Jackson Harper <jackson@ximian.com>
4611
4612         * icall.c:
4613         * unicode.c:
4614         * unicode.h: Remove unused System.Char icalls.
4615         
4616 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
4617
4618         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
4619         code when we P/Invoke the first library in Windows.Forms, instead
4620         of when we first open the assembly.
4621
4622         * assembly.c: Drop the lookup from here.
4623
4624 2004-03-10  Martin Baulig  <martin@ximian.com>
4625
4626         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
4627         class for properties, fields and events.  Finally fixes #54945.
4628
4629 2004-03-10  Martin Baulig  <martin@ximian.com>
4630
4631         * metadata.c (mono_metadata_class_equal): New static function;
4632         checks whether two generic instances or two generic parameters are
4633         equal.
4634         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
4635         compare classes.        
4636
4637 2004-03-10  Martin Baulig  <martin@ximian.com>
4638
4639         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
4640
4641         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
4642         argument and write it into the `reflection_info' field.
4643
4644         * icall.c
4645         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
4646         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
4647
4648 2004-03-09  Jackson Harper  <jackson@ximian.com>
4649
4650         * char-conversions.h: use 8 bits for numeric data its all we need
4651         * icall.c: numeric data is only 8 bits now.
4652
4653 2004-03-09  Martin Baulig  <martin@ximian.com>
4654
4655         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
4656
4657         * class.c (init_properties, init_events): Initialize the new
4658         `parent' field.
4659
4660         * reflection.c (typebuilder_setup_properties): Likewise.
4661         (typebuilder_setup_events): Likewise.
4662
4663         * reflection.h (MonoEventInfo): Replaced `parent with
4664         `declaring_type' and `reflected_type'.
4665
4666         * icall.c (ves_icall_get_property_info): Distinguish between
4667         declaring and reflected type.
4668         (ves_icall_get_event_info): Likewise.
4669
4670 2004-03-09  Martin Baulig  <martin@ximian.com>
4671
4672         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
4673         (ves_icall_Type_GetField): Correctly set field->klass.
4674
4675 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
4676
4677         * loader.h: Fix warning.
4678
4679 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
4680
4681         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
4682         library routine if present.  Notice that it will still continue
4683         executing even if its missing, for those working on the Gtk#
4684         edition of Windows.Forms.
4685
4686         * assembly.c (do_mono_assembly_open): If loading the
4687         System.Windows.Forms call mono_loader_wini_init.
4688
4689 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
4690
4691         * class.h: Added MonoRemoteClass struct.
4692         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
4693         function for MonoStrings.
4694         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
4695         Added internal call for getting the proxy type.
4696         * marshal.c: Get the type of transparent proxies from its remote_class.
4697         Added methods that generate the IL for type checks and casts:
4698         mono_marshal_get_isinst, mono_marshal_get_castclass, 
4699         mono_marshal_get_proxy_cancast.
4700         * marshal.h: Declaration of the previous new methods.
4701         * object.c: Added new moethods for creating and updating MonoRemoteClass
4702         instances: mono_remote_class, mono_upgrade_remote_class, 
4703         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
4704         * verify.c: FIx transparent_proxy_fields layout.
4705         * appdomain.c: Bump corlib version.
4706
4707 2004-03-04  Jackson Harper  <jackson@ximian.com>
4708
4709         * icall.c: Add icall to access char conversion tables.
4710         * char-conversions.h: Character conversion tables.
4711         * Makefile.am: Add char-conversions.h private header file.
4712         
4713 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
4714
4715         * appdomain.c (unload_thread_main): Increase unloading timeout to
4716         10 sec as a temporary workaround for Nant problems.
4717
4718 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
4719
4720         * gc.c: Add checks for GC_enable and GC_disable.
4721
4722         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
4723         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
4724         (bug #54988).
4725         
4726 2004-02-27  Martin Baulig  <martin@ximian.com>
4727
4728         * reflection.c (mono_reflection_bind_generic_parameters): Take a
4729         `MonoReflectionType *' instead of a `MonoType *'.
4730
4731 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
4732
4733         * gc.c (run_finalize): Avoid finalizing the object representing the
4734         finalizer thread.
4735         (finalizer_thread): Fix warning.
4736
4737 2004-02-25  Martin Baulig  <martin@ximian.com>
4738
4739         * class.c (_mono_class_get_instantiation_name): Added `int offset'
4740         argument for nested types.
4741         (mono_class_create_generic): Added support for nested generictypes.
4742
4743         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
4744         `GList *nested'.
4745
4746         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
4747
4748         * reflection.c (method_encode_signature): Increase the minimum
4749         value of `size' from 10 to 11.
4750         (mono_reflection_bind_generic_parameters): Take `int type_argc'
4751         and `MonoType **types' arguments instead of the `MonoArray
4752         *types'; added `MonoType *nested_in'.  Recursively instantiate
4753         nested classes. 
4754
4755 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
4756
4757         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
4758         stack_overflow_ex members which are used by exception handling.
4759
4760         * appdomain.c (mono_runtime_init): Initialize the new members.
4761
4762         * gc.c (mono_gc_enable): New helper function.
4763         * gc.c (mono_gc_disable): New helper function.
4764
4765 2004-02-23  Martin Baulig  <martin@ximian.com>
4766
4767         * icall.c: I must have been really stupid - make it actually work
4768         this time ;-)
4769
4770 2004-02-23  Martin Baulig  <martin@ximian.com>
4771
4772         * loader.c (method_from_memberref): Only inflate the method if
4773         it's in another klass.
4774
4775 2004-02-23  Martin Baulig  <martin@ximian.com>
4776
4777         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
4778         (mono_class_init): If we're a generic instance and an interface,
4779         compute `class->interface_id'; also create `class->interfaces'
4780         here and inflate them.
4781
4782         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
4783         `ginst->is_open'.
4784         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
4785
4786         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
4787
4788 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
4789
4790         * reflection.c (method_encode_code): Improved the error message
4791         generated by the exception.
4792
4793 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4794
4795         * icall.c: Martin did not do what he said in the ChangeLog for
4796         2004-02-18, but put back the changes for properties and events.
4797         Commenting those changes out again and adding comment to bug #54518.
4798         
4799         * process.c: removed warning.
4800
4801 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
4802
4803         * marshal.c (emit_struct_conv): Print an error message instead of
4804         asserting when a type does not have the StructLayout attribute.
4805
4806 2004-02-20  Martin Baulig  <martin@ximian.com>
4807
4808         * reflection.c (mono_type_get_object): Also use the cache for
4809         generic instances.
4810         (mono_reflection_bind_generic_parameters): Always compute
4811         `ginst->ifaces'.        
4812
4813 2004-02-20  Martin Baulig  <martin@ximian.com>
4814
4815         * class.h (MonoGenericMethod): Removed `klass'.
4816
4817         * class.c (mono_class_inflate_generic_method): Added `MonoClass
4818         *klass' argument.
4819
4820 2004-02-20  Martin Baulig  <martin@ximian.com>
4821
4822         * reflection.c (method_encode_methodspec): Actually use the
4823         uninflated signature for the memberref.
4824
4825 2004-02-20  Martin Baulig  <martin@ximian.com>
4826
4827         * class.h (MonoGenericMethod): Removed `declaring'.
4828
4829         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
4830         is NULL, compute it here.
4831
4832 2004-02-20  Martin Baulig  <martin@ximian.com>
4833
4834         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
4835
4836         * metadata.c (mono_metadata_generic_inst_hash): New method.
4837         (mono_metadata_generic_inst_equal): New method.
4838
4839         * reflection.c (mono_reflection_bind_generic_parameters): Use the
4840         `klass->image->generic_inst_cache' cache to avoid creating
4841         duplicate MonoGenericInst's.
4842
4843         * class.c (mono_class_inflate_generic_type): Use the cache.
4844
4845 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
4846
4847         * object.c: fixed gc descriptor calculation for embedded valuetypes.
4848
4849 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4850
4851         * icall.c: added Socket.WSAIoctl icall.
4852
4853         * socket-io.[ch]: implemented
4854         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
4855
4856 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
4857
4858         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
4859
4860 2004-02-18  Urs C Muff  <umuff@quark.com>
4861
4862         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
4863         this work on PPC and other big-endian architectures.
4864
4865         * debug-mono-symfile.h: Prepended the names of all the `guint32'
4866         fields with an underscore to make sure they're only accessed by
4867         the read32() macro.
4868
4869 2004-02-18  Martin Baulig  <martin@ximian.com>
4870
4871         * icall.c: Put the klass->refclass changes back for methods and
4872         fields, but not for properties and events.  We're currently not
4873         distinguishing between DeclaringType and ReflectedType for
4874         properties and events, that's what caused the regressions.
4875
4876 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4877
4878         * object.c:
4879         (mono_async_result_new): the handle can be NULL.
4880
4881         * threadpool.c: Use an event instead of a semaphore, don't initialize
4882         it until needed. This saves quite a few semaphores from being created
4883         when using the threadpool.
4884
4885 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
4886
4887         * object.c (mono_string_is_interned_lookup): Fix interning of long
4888         strings. Fixes #54473.
4889
4890         * domain.c (ldstr_equal): Optimize if the two strings are equal.
4891
4892         * icall.c: Revert the klass->refclass changes since they introduce
4893         regressions (bug #54518).
4894
4895 2004-02-18  Martin Baulig  <martin@ximian.com>
4896
4897         * class.c (mono_class_init): If we're a generic instance and don't
4898         come from a TypeBuilder, inflate our members here.
4899         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
4900         (mono_class_create_generic): New public method.
4901         (mono_class_initialize_generic): Removed.
4902         (get_instantiation_name): Renamed to
4903         _mono_class_get_instantiation_name() and made it public.
4904
4905 2004-02-18  Martin Baulig  <martin@ximian.com>
4906
4907         * class.c (mono_class_inflate_generic_type): Clear the new
4908         instance's `nginst->klass' when inflating a generic instance.
4909         (mono_class_is_subclass_of): Added (basic) support for generic
4910         instances.
4911
4912 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
4913
4914         * appdomain.h, domain.c: use a MonoCodeManager instead of a
4915         MonoMempool to hold compiled native code.
4916
4917 2004-02-17  Martin Baulig  <martin@ximian.com>
4918
4919         * class.h (MonoDynamicGenericInst): Added `count_properties' and
4920         `properties'.
4921
4922         * reflection.c (mono_reflection_generic_inst_initialize): Added
4923         `MonoArray *properties' argument.
4924
4925         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
4926
4927 2004-02-17  Martin Baulig  <martin@ximian.com>
4928
4929         * icall.c (ves_icall_Type_GetFields): Renamed to
4930         ves_icall_Type_GetFields_internal() and added a
4931         `MonoReflectionType *rtype' argument; pass it to
4932         mono_field_get_object() to set the field's "reflected" type.
4933         (ves_icall_Type_GetConstructors): Likewise.
4934         (ves_icall_Type_GetEvents): Likewise.
4935         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
4936         argument; pass it to mono_method_get_object() to set the method's
4937         "reflected" type.       
4938
4939 2004-02-17  Martin Baulig  <martin@ximian.com>
4940
4941         * class.h (MonoDynamicGenericInst): New type.
4942         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
4943
4944         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
4945         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
4946         (ves_icall_MonoGenericInst_GetFields): New interncall.
4947
4948         * class.c (mono_class_from_generic): Don't call
4949         mono_class_initialize_generic() if this is a dynamic instance;
4950         ie. it's being created from a TypeBuilder.
4951         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
4952         `class->byval_arg.type'.
4953
4954         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
4955         to `inflate_method' and made static.
4956         (mono_reflection_inflate_field): Removed.
4957         (mono_reflection_generic_inst_initialize): New public method.
4958
4959         * reflection.h (MonoReflectionGenericInst): Removed `methods',
4960         `ctors' and `fields'; added `initialized'.
4961
4962 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
4963
4964         * debug-helpers.c (mono_method_full_name): Fix output for empty
4965         namespaces.
4966
4967 2004-02-12  Martin Baulig  <martin@ximian.com>
4968
4969         * class.h (MonoClassField): Added `MonoType *generic_type'.
4970
4971         * reflection.c (mono_image_get_fieldref_token): Added support for
4972         instantiated generic types.
4973         (field_encode_inflated_field): Removed.
4974         (mono_image_get_inflated_field_token): Removed.
4975         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
4976
4977         * reflection.h (MonoReflectionInflatedField): Removed.
4978
4979 2004-02-12  Martin Baulig  <martin@ximian.com>
4980
4981         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
4982         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
4983
4984         * reflection.c (mono_image_get_methodspec_token): Take a
4985         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
4986         (mono_image_create_token): Check whether we have a
4987         `method->signature->gen_method' and call
4988         mono_image_get_methodspec_token() if appropriate.
4989         (inflated_method_get_object): Removed.
4990         (mono_reflection_bind_generic_method_parameters): Return a
4991         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
4992         (mono_reflection_inflate_method_or_ctor): Likewise.
4993
4994         * reflection.h (MonoReflectionInflatedMethod): Removed.
4995
4996 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
4997
4998         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
4999         for custom valuetype marshalling.
5000
5001         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
5002
5003 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5004
5005         * icall.c: fixed WSAGetLastError_internal name.
5006
5007 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
5008
5009         * threads.c (mono_thread_attach): Allow this to be called multiple
5010         times for a thread.
5011         
5012         * threads.c (build_wait_tids): Do not wait for ourselves.
5013
5014         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
5015         appdomain list is empty.
5016
5017         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
5018         memory returned by mono_string_builder_to_utf16, since it points into
5019         managed memory. Thanks to Bernie Solomon for noticing this.
5020
5021         * icall.c: Add AppDomainSetup icalls.
5022
5023         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
5024
5025         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
5026         types.
5027
5028         * reflection.c (reflection_methodbuilder_to_mono_method): Save
5029         custom attributes to the method_aux struct. Also fix array indexes etc.
5030
5031         * loader.c (mono_method_get_param_names): Make dynamic case work again.
5032         
5033 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
5034
5035         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
5036         (both static and runtime) and reduce startup time.
5037
5038 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
5039
5040         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
5041         AsAny marshalling conversion instead of crashing.
5042
5043         * marshal.c: Fix warnings.
5044
5045 2004-02-09  Martin Baulig  <martin@ximian.com>
5046
5047         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
5048
5049         * reflection.h (MonoReflectionInflatedMethod): Removed the
5050         `declaring' field, it's now in the unmanaged MonoGenericMethod.
5051
5052         * reflection.c (method_encode_methodspec): Removed the `method'
5053         argument; we get it from `gmethod->declaring'.
5054         (inflated_method_get_object): Removed the `declaring' argument.
5055
5056 2004-02-09  Martin Baulig  <martin@ximian.com>
5057
5058         * class.h (MonoGenericMethod): New type.
5059         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
5060         `generic_method'.
5061
5062         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
5063         a `MonoGenericMethod *gen_method' one.
5064
5065         * class.c (mono_class_inflate_generic_type): Take an additional
5066         `MonoGenericMethod * argument.  This is only non-NULL if we're
5067         inflating types for a generic method.   
5068         (mono_class_inflate_generic_signature): Renamed to
5069         inflate_generic_signature() and made static; take a
5070         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
5071         (inflate_generic_header): Take a `MonoGenericMethod *' argument
5072         instead of a `MonoGenericInst *' one.
5073         (mono_class_inflate_generic_method): Likewise.
5074
5075         * reflection.c (encode_generic_method_sig): Take a
5076         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
5077         (method_encode_methodspec): Likewise.
5078         (inflated_method_get_object): Likewise. 
5079
5080         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
5081         field with a `MonoGenericMethod *gmethod' one.  
5082
5083 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
5084
5085         * class.h (mono_class_has_parent): add parens to expansion
5086         so you can ! this.
5087
5088 2004-02-08  Martin Baulig  <martin@ximian.com>
5089
5090         * image.h (MonoImage): Removed `generics_cache'.
5091
5092         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
5093         instead of a `MonoType *' argument; removed the `inflate_methods'
5094         argument.  Don't inflate methods here.
5095
5096         * loader.c (find_method): If it's a generic instance, call
5097         mono_class_init() on the `sclass->generic_inst->generic_type'.
5098
5099         * metadata.c (mono_type_size): Make this work on uninitialized
5100         generic instances; call it on the `ginst->generic_type's class.
5101
5102         * reflection.c (mono_reflection_bind_generic_parameters): Call
5103         mono_class_from_generic() to create the `ginst->klass'.
5104
5105 2004-02-08  Martin Baulig  <martin@ximian.com>
5106
5107         * class.h (MonoClass): Changed type of `generic_inst' from
5108         `MonoType *' to `MonoGenericInst *'.
5109
5110 2004-02-08  Martin Baulig  <martin@ximian.com>
5111
5112         * icall.c (ves_icall_Type_BindGenericParameters): Just call
5113         mono_type_get_object(), this is now creating a `MonoGenericInst'
5114         for MONO_TYPE_GENERICINST.
5115         (ves_icall_MonoGenericInst_GetParentType): Likewise.
5116         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
5117
5118         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
5119         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
5120         (inflated_method_get_object): Added `MonoClass *refclass' argument.
5121         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
5122         and reflected type.
5123
5124         * reflection.h (MonoReflectionInflatedMethod): Removed
5125         `declaring_type' and `reflected_type'.
5126
5127 2004-02-08  Martin Baulig  <martin@ximian.com>
5128
5129         * class.h (MonoGenericInst): Added `MonoType *parent' and
5130         `MonoType **ifaces'.
5131
5132         * reflection.h (MonoReflectionGenericInst): Removed `klass',
5133         `parent' and `interfaces'.
5134
5135         * reflection.c (mono_reflection_bind_generic_parameters): Take a
5136         `MonoType *' argument and return a `MonoType *'.
5137
5138         * icall.c
5139         (ves_icall_MonoGenericInst_GetParentType): New interncall.
5140         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
5141
5142 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
5143
5144         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
5145         valuetype marshalling.
5146
5147 2004-02-06  Martin Baulig  <martin@ximian.com>
5148
5149         * class.c
5150         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
5151         (my_mono_class_from_generic_parameter): Likewise.
5152
5153 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
5154
5155         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
5156         contents of the symbol files lazily.
5157
5158         * object.h (MonoThread): Add 'name' and 'name_len' fields.
5159
5160         * threads.h threads.c icall.c: New icalls for getting and setting the
5161         threads name.
5162
5163 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
5164
5165         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
5166         Raise an exception when the domain is not found.
5167
5168 2004-02-03  Martin Baulig  <martin@ximian.com>
5169
5170         * reflection.c (mono_image_get_methodspec_token): Use the
5171         uninflated signature; fixes gen-33.
5172
5173 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
5174
5175         * gc.c threads.c: Make the finalizer thread a normal managed thread so
5176         the finalizer code can use thread functionality.
5177
5178         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
5179         the finalizer thread.
5180
5181         * threads.c: Make some functions more robust.
5182
5183         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
5184
5185         * metadata.h: Add new marshalling conventions.
5186
5187         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
5188         stringbuilder marshalling. Fixes #53700.
5189
5190         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
5191
5192         * reflection.c (mono_image_get_type_info): Save declarative security
5193         info.
5194
5195         * reflection.c (mono_image_get_field_info): Handle uninitialized 
5196         unmanaged fields as well.
5197
5198         * appdomain.c: Bump corlib version.
5199
5200 2004-02-01  Martin Baulig  <martin@ximian.com>
5201
5202         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
5203         method type arguments.  
5204
5205 2004-01-30  Duncan Mak  <duncan@ximian.com>
5206
5207         * marshal.h: Add prototype for
5208         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
5209         and
5210         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
5211         fix the build.
5212
5213 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
5214
5215         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
5216         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
5217
5218 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
5219
5220         * marshal.c (mono_marshal_get_native_wrapper): Add support for
5221         custom marshalling of valuetypes.
5222
5223         * marshal.c: Fix some warnings.
5224
5225 2004-01-29  Martin Baulig  <martin@ximian.com>
5226
5227         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
5228         for generic method parameters.
5229
5230         * reflection.c (method_encode_methodspec): Write the uninflated
5231         signature into the methodspec table.
5232         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
5233         is always the uninflated method.
5234         (reflection_methodbuilder_to_mono_method): Copy the generic
5235         parameters from the MethodBuilder into `header->gen_params'.
5236
5237 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
5238
5239         * class.c (mono_class_from_generic_parameter): Fix warning.
5240
5241 2004-01-27  Martin Baulig  <martin@ximian.com>
5242
5243         * class.c (mono_class_from_generic_parameter): Don't create
5244         `klass->methods' here.  
5245
5246 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
5247
5248         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
5249         extension since it does not work with libraries named lib<FOO>.dll.so.
5250
5251 2004-01-25  Martin Baulig  <martin@ximian.com>
5252
5253         * class.c (mono_class_inflate_generic_type): Added support for
5254         MONO_TYPE_GENERICINST.
5255
5256         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
5257         inflate methods on open constructed types.      
5258
5259 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5260
5261         * object.c: fire ProcessExit event in the root AppDomain after running
5262         Main. Fixes bug #53299.
5263
5264 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
5265
5266         * socket-io.c: include the new socket-wrappers.h header.
5267         Use the wrappers instead of the unix socket functions to make the code
5268         more clear.
5269
5270 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
5271
5272         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
5273
5274         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
5275         Fixes #22532.
5276
5277 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
5278
5279         * reflection.c (mono_image_create_pefile): Handle the case when the
5280         entry point is not a MethodBuilder.
5281
5282         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
5283         field to ReflectionMethod since it is not allways a builder.
5284
5285         * reflection.c (type_get_fully_qualified_name): New helper function to
5286         return the fully qualified name of a type.
5287
5288         * reflection.c (encode_marshal_blob): Always emit the fully qualified
5289         type name for custom marshallers.
5290
5291         * reflection.c (mono_marshal_spec_from_builder): Ditto.
5292
5293         * class.c (mono_class_setup_vtable): If a parent class already 
5294         implements an interface, use the implementing methods from that class.
5295         Fixes #53148.
5296
5297 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5298
5299         * threadpool.c: just return instead of ExitThread to allow for thread
5300         clean up earlier.
5301
5302 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
5303
5304         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
5305         when closing resource modules.
5306
5307         * reflection.c (mono_image_create_pefile): Handle the case when the
5308         entry point is not a MethodBuilder.
5309
5310         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
5311         field to ReflectionMethod since it is not allways a builder.
5312
5313 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
5314
5315         * marshal.c (mono_marshal_get_managed_wrapper): 
5316         mono_marshal_alloc takes native int so CONV_I
5317         the arg for 64bits.
5318
5319 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
5320
5321         * reflection.c (fixup_cattrs): New function to fixup the methoddef
5322         tokens in the cattr table. Fixes #53108.
5323
5324 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5325
5326         * loader.c: don't trim ".dll" before looking up in the config file.
5327         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
5328
5329 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
5330
5331         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
5332         Return the module which contains the resource as well.
5333         (ves_icall_System_Reflection_Module_Close): New icall.
5334
5335         * appdomain.c: Bump corlib version number.
5336
5337         * image.c (mono_image_addref): New public function.
5338
5339         * assembly.c: Call mono_image_addref.
5340
5341         * reflection.c (mono_module_get_object): Increase reference count of 
5342         the image.
5343
5344         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
5345         Fixes #22532.
5346
5347         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
5348         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
5349         proper exceptions on DllImport problems.
5350
5351 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
5352
5353         * class.c, metadata.c: eliminate CSIZE macro.
5354
5355 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
5356
5357         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
5358         * object.h: Added async_callback field in MonoAsyncResult.
5359         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
5360         * verify.c: Added async_callback in MonoAsyncResult layout.
5361
5362 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
5363
5364         * reflection.c (mono_reflection_get_custom_attrs): Add support
5365         for Modules.
5366
5367 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
5368
5369         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
5370         marshalling.
5371         (mono_marshal_method_from_wrapper): Add null pointer check.
5372
5373 2004-01-16  Martin Baulig  <martin@ximian.com>
5374
5375         * debug-mono-symfile.h: Set version number to 36 and reflect
5376         latest symbol writer changes.
5377
5378 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
5379
5380         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
5381         multi-dimensional arrays.
5382         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
5383         (mono_class_from_mono_type): Use bounded_array_class_get.
5384         
5385         * class.c (mono_bounded_array_class_get): New function which takes
5386         a 'bounded' bool argument to distinguish vectors from one dimensional
5387         arrays.
5388
5389         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
5390         bounded_array_class_get if the array has bounds.
5391
5392         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
5393         Search modules loaded using AssemblyBuilder:AddModule as well.
5394
5395 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5396
5397         * appdomain.c: increased corlib version.
5398         * filewatcher.c: removed g_print.
5399         * icall.c:
5400         (get_property_info): only allocate what is actually requested.
5401         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
5402
5403 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5404
5405         * Makefile.am: added filewatcher.[ch]
5406         * filewatcher.[ch]: FileSystemWatcher runtime support.
5407         * icall.c: added new FSW icalls.
5408
5409 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
5410
5411         * string-icalls.c: fix stringbuilder regression as suggested by
5412         Iain McCoy <iain@mccoy.id.au>.
5413
5414 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
5415
5416         * process.c (process_read_stringtable_block): Recognize '007f' as
5417         a language neutral stringtable block.
5418
5419 2004-01-12  Patrik Torstensson
5420
5421         * object.h (MonoStringBuilder) : Changed layout to support our
5422         new stringbuilder class.
5423         * marshal.c: Change marshalling to support the new layout of 
5424         string builder.
5425         * appdomain.c: increased version number because new layout of
5426         string builder.
5427
5428 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
5429
5430         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
5431         assembly name as an string instead of an AssemblyName, since it is
5432         easier to extract info from it.
5433
5434         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
5435         the culture subdirectories too. Fixes #52231.
5436
5437 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5438
5439         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
5440         It takes 2 new parameters with an optional name for the method to look
5441         for and case ignoring info.
5442
5443         * threadpool.c: removed unused variable.
5444
5445 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5446
5447         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
5448         It takes 2 new parameters with an optional name for the property to look
5449         for and case ignoring info.
5450         Fixes bug #52753.
5451
5452 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
5453
5454         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
5455         Fix #52451.
5456
5457 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5458
5459         * appdomain.c:
5460         * assembly.c: escape the uri before passing it to g_filename_from_uri.
5461         Fixes bug #52630.
5462
5463 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
5464
5465         * reflection.c: Add support for more than one unmanaged resource.
5466
5467         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
5468         in field->def_value, as done in all other cases.
5469
5470         * reflection.c (mono_reflection_get_custom_attrs): Add support for
5471         TypeBuilders.
5472
5473         * reflection.c (mono_reflection_create_runtime_class): Remove 
5474         errorneous assignment to klass->element_class, since it is already
5475         done in mono_reflection_setup_internal_class.
5476
5477 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5478
5479         * gc.c: added missing LeaveCriticalSection.
5480         * icall.c: indented a couple of lines.
5481         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
5482         if we call EndInvoke inside a callback. Fixes bug #52601.
5483
5484 2004-01-07  Martin Baulig  <martin@ximian.com>
5485
5486         * mono-debug-debugger.h
5487         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
5488
5489 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
5490
5491         * appdomain.c: Use messages in NotImplementedException.
5492
5493         * exception.c (mono_get_exception_not_implemented): Now this takes
5494         a message argument.
5495
5496         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
5497         exception instead of g_asserting an aborting when something is not
5498         implemented.
5499
5500         Add some inline docs.
5501
5502 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
5503
5504         * reflection.h: Update after changes to object layout.
5505
5506         * reflection.c: Implement saving of unmanaged aka win32 resources.
5507
5508         * appdomain.c: Bump version number.
5509
5510         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
5511         Handle missing domains gracefully.
5512
5513 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
5514
5515         * file-io.c : On Windows, there are much more invalid_path_chars.
5516
5517 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
5518
5519         * class.h, object.c: prepare for GetType () speedup.
5520
5521 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
5522
5523         * profiler.c: workaround for --profile null reference exception on
5524           cygwin. Patch by Patrik Torstensson.
5525
5526 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
5527
5528         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
5529         make work for unaligned access.
5530
5531 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
5532
5533         * class.c: small cleanup (class->fields [i] -> field).
5534         * image.c: check address of metadata is valid.
5535
5536 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
5537
5538         * assembly.h assembly.c (mono_assembly_loaded): New public function to
5539         search the list of loaded assemblies.
5540
5541         * reflection.c (mono_reflection_type_from_name): Use 
5542         mono_assembly_loaded instead of mono_image_loaded.
5543
5544         * reflection.c: Fix warnings.
5545
5546 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
5547
5548         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
5549         is dynamic. This is needed since an assembly can contain both dynamic and
5550         non-dynamic images.
5551
5552         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
5553         assembly->dynamic.
5554
5555         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
5556
5557         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
5558         to store modules loaded using AddModule.
5559
5560         * reflection.c (mono_image_fill_file_table): Generalize this so it works
5561         on Modules.
5562
5563         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
5564
5565         * reflection.c (mono_image_fill_export_table_from_module): New function to
5566         fill out the EXPORTEDTYPES table from a module.
5567
5568         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
5569         into a separate function. Also handle loaded non-dynamic modules.
5570
5571         * reflection.c (mono_image_basic_init): Fix memory allocation.
5572
5573         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5574
5575         * assembly.c (mono_assembly_load_references): Make this public.
5576
5577 2003-12-19  Martin Baulig  <martin@ximian.com>
5578
5579         * class.c (mono_class_initialize_generic): Made this static, take
5580         a `MonoGenericInst *' instead of a `MonoClass *'.
5581         (mono_class_from_generic): Call mono_class_initialize_generic()
5582         unless we're already initialized or being called from
5583         do_mono_metadata_parse_generic_inst().
5584
5585         * class.h (MonoGenericInst): Added `initialized' and
5586         `init_pending' flags.
5587
5588         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
5589         `mono_class_init (gklass)' or mono_class_initialize_generic()
5590         here; set `generic_inst->init_pending' while parsing the
5591         `type_argv'.
5592
5593 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
5594
5595         * locales.c: include string.h for memxxx prototypes
5596
5597 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
5598
5599         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
5600         constructor when accessing literal fields.
5601
5602 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
5603
5604         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5605
5606         * reflection.c (assembly_add_resource_manifest): New function to fill
5607         the MANIFESTRESOURCE table.
5608
5609         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
5610
5611         * reflection.h: Update to changes in class layout.
5612
5613         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
5614         Reenable call to mono_runtime_is_shutting_down ().
5615
5616         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
5617         determine if the runtime is shutting down.
5618
5619 2003-12-16  Jackson Harper <jackson@ximian.com>
5620
5621         * icall.c: comment out call to mono_runtime_is_shutting_down to
5622         fix build.
5623         
5624 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
5625
5626         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
5627         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
5628
5629 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
5630
5631         * reflection.c: move definition of swap_with_size
5632         to before its first call
5633
5634 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
5635
5636         * appdomain.c (mono_runtime_is_shutting_down): New public function.
5637
5638         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
5639         icall.
5640
5641         * object.c: Fix warnings.
5642
5643         * icall.c (ves_icall_Type_Get...): Only consider inherited static
5644         members if FlattenHierarchy is set.
5645
5646         * reflection.c (mono_image_add_decl_security): New function to emit
5647         declarative security.
5648
5649         * reflection.h reflection.c: Add support for declarative security.
5650
5651         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
5652         
5653 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
5654
5655         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
5656         
5657         * appdomain.c verify.c: Moved corlib version checking into its own
5658         function in appdomain.c since it needs to create vtables etc.
5659
5660 2003-12-13  Patrik Torstensson <p@rxc.se>
5661
5662         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
5663         instead of unwrapped server.
5664
5665 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
5666
5667         * verify.c (check_corlib): Fix field index.
5668
5669 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
5670
5671         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
5672         GetGacPath icall.
5673
5674 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
5675
5676         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
5677         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
5678         cope with sizeof(size_t) != sizeof(guint32).
5679
5680 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5681
5682         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
5683         in case of failure.
5684
5685 2003-12-10  Mark Crichton <crichton@gimp.org>
5686
5687         * icall.c: removed the GetNonZeroBytes.  We now handle this case
5688         in managed code.
5689
5690         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
5691
5692 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
5693
5694         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
5695         marked as deleted.
5696
5697 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
5698
5699         * verify.c (check_corlib): Handle the case when the version field is 
5700         initialized by a static constructor.
5701
5702 2003-12-08  Patrik Torstensson  <p@rxc.se>
5703
5704     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
5705
5706 2003-12-08  Martin Baulig  <martin@ximian.com>
5707
5708         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
5709         a MonoReflectionGenericParameter, also take the parameter index
5710         and name as arguments.
5711         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
5712         (ves_icall_MonoGenericParam_initialize): New interncall.
5713         (ves_icall_Type_make_byref_type): New interncall.
5714
5715         * reflection.h (MonoReflectionGenericParam): Derive from
5716         MonoReflectionType, not just from MonoObject.  Added `refobj' and
5717         `index' fields.
5718
5719         * reflection.c (mono_reflection_define_generic_parameter): Create
5720         and return a new MonoReflectionGenericParam; don't initialize the
5721         constraints here.
5722         (mono_reflection_initialize_generic_parameter): New public method;
5723         initializes the constraints and creates the `param->pklass'.
5724
5725 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
5726
5727         * reflection.h reflection.c: Use the new fields 'num_types', 
5728         'num_fields' and 'num_methods' to track the number of types etc.
5729
5730         * verify.c (check_corlib): Check corlib version number.
5731
5732 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
5733
5734         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
5735         function works on all methods.
5736
5737 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
5738
5739         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
5740         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
5741         the custom_type_info flag of the transparent proxy.
5742         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
5743         objects that supports IRemotingTypeInfo.
5744         * object.h: Added custom_type_info field in transparent proxy.
5745
5746 2003-12-06  Martin Baulig  <martin@ximian.com>
5747
5748         * class.c (mono_class_create_from_generic): Removed.
5749         (mono_class_from_generic): Check `ginst->klass' before doing
5750         anything else.  This is important to fully support "recursive"
5751         generic types.
5752
5753         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
5754         empty `generic_inst->klass' before doing anything else.
5755
5756 2003-12-06  Dick Porter  <dick@ximian.com>
5757
5758         * verify.c: 
5759         * object.h:
5760         * icall.c:
5761         * locales.c: Use C structs to access class fields.  Don't do a
5762         conversion between MonoString and UChar because both are
5763         platform-endian UTF-16.  Compare now takes startindex and count
5764         parameters.  Add a char overload for IndexOf.  Speed up the
5765         invariant string IndexOf.
5766
5767 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
5768
5769         * Makefile.am (monosn_LDADD): Fix parallel build.
5770
5771 2003-12-04  Martin Baulig  <martin@ximian.com>
5772
5773         * icall.c
5774         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
5775         (ves_icall_Type_make_array_type): New interncall.       
5776
5777 2003-12-04  Martin Baulig  <martin@ximian.com>
5778
5779         * locales.c: also change it in the !HAVE_ICU case.
5780
5781 2003-12-04  Dick Porter  <dick@ximian.com>
5782
5783         * icall.c:
5784         * locales.c: construct_compareinfo is now in CompareInfo, not
5785         CultureInfo.
5786
5787 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
5788
5789         * image.c (mono_image_load_file_for_image): Cache loaded images in the
5790         image->files array.
5791
5792         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
5793         table as well.
5794
5795         * assembly.c (mono_assembly_load_references): Only load references
5796         once.
5797
5798         * class.c (mono_class_from_name): Avoid linear search of the 
5799         EXPORTEDTYPE table.
5800
5801         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
5802
5803 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
5804
5805         * image.h (MonoImage): Add 'field_cache' field.
5806
5807         * loader.c (mono_field_from_token): Cache field lookups.
5808         
5809         * reflection.c (mono_module_get_object): Fix name property.
5810
5811         * icall.c (ves_icall_get_enum_info): Update after changes to 
5812         mono_metadata_get_constant_index ().
5813
5814         * icall.c: Get rid of get_type_info icall, use a separate icall for
5815         each type property to avoid needless memory allocations. Fixes #51514.
5816
5817         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
5818         to avoid needless binary searches.
5819
5820         * class.c (class_compute_field_layout): Move the initialization of
5821         field->def_value to mono_class_vtable ().
5822
5823         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
5824         non-corlib types.
5825
5826         * object.c (mono_object_allocate): Make it inline.
5827
5828         * object.c (mono_object_allocate_spec): Make it inline.
5829         
5830 2003-12-02  Dick Porter  <dick@ximian.com>
5831
5832         * locales.c (create_NumberFormat): NumberFormatInfo construction.
5833         Patch by Mohammad DAMT (mdamt@cdl2000.com).
5834
5835 2003-12-01  Dick Porter  <dick@ximian.com>
5836
5837         * threads.c: Fix signature and call in CreateMutex and
5838         CreateEvent.
5839
5840 2003-12-01  Dick Porter  <dick@ximian.com>
5841
5842         * icall.c: 
5843         * locales.c: Implement string compares and searching
5844
5845         * object.h: Add extra Thread field
5846
5847 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
5848
5849         * reflection.c (fixup_method): Add support for MonoCMethod.
5850
5851 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
5852
5853         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
5854
5855         * reflection.c (assembly_name_to_aname): Allow extra characters in
5856         assembly names. Fixes #51468.
5857
5858 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
5859
5860         * exception.c (mono_exception_from_name_domain): New helper function.
5861
5862         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
5863         exception object in the correct domain.
5864
5865         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
5866         formatting + make a copy a the input data.
5867
5868         * loader.c (mono_get_method_from_token): Methods which contain
5869         native code do not have entries in the ImplMap.
5870
5871         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
5872         Thanks to Gonzalo for spotting this.
5873         
5874         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
5875         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
5876
5877         * assembly.h (mono_assembly_load_from): Split the second part of 
5878         assembly loading into a new public function.
5879
5880         * exception.h (mono_get_exception_bad_image_format): New function.
5881
5882 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
5883
5884         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
5885         Enumerate all modules inside a dynamic assembly. Fixes #51293.
5886         
5887         * icall.c: Add new icall for creating dynamic methods.
5888
5889         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
5890
5891         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
5892
5893         * reflection.c (mono_reflection_create_dynamic_method): New icall to
5894         create a dynamic method.
5895
5896         * reflection.c (resolve_object): New helper function.
5897
5898         * reflection.c: Generalize ReflectionMethodBuilder and the functions
5899         which manipulate it so they can also work on dynamic methods.
5900
5901         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
5902         creating the MonoReflectionMethodAux structure if it is not needed.
5903         
5904         * reflection.h verify.c: Update after changes to object layout.
5905
5906         * reflection.c (method_builder_encode_signature): Fix compilation on
5907         gcc 2.95.x.
5908
5909 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
5910
5911         * appdomain.h: Added support for context static fields. Added static_data
5912           field to MonoAppContext and renamed thread_static_fields to a more
5913           generic special_static_fields in MonoAppDomain, since it can now contain
5914           context static fields.
5915         * domain.c: Updated hashtable name.
5916         * object.c: Replaced field_is_thread_static() for a more generic
5917           field_is_special_static() which also checks for context static attribute.
5918           In mono_class_vtable(), added support for static context fields.
5919         * threads.c: Changed methods that manage thread static fields to more
5920           generic methods so they can be reused both for thread and context static
5921           data.
5922         * threads.h: Declared some new methods.
5923
5924 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
5925
5926         * reflection.h: Update after changes to the managed types.
5927
5928         * reflection.c (encode_custom_modifiers): New helper function.
5929
5930         * reflection.c (method_encode_signature): Emit custom modifiers.
5931
5932         * reflection.c (field_encode_signature): Emit custom modifiers.
5933
5934 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
5935
5936         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
5937
5938         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
5939         implementation.
5940
5941         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
5942         icall.
5943
5944         * object.c (mono_field_get_value_object): New function.
5945
5946         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
5947         specific.
5948
5949 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
5950
5951         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
5952         return a preallocated out-of-memory exception instance.
5953
5954         * object.c (out_of_memory): Use the new function.
5955
5956         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
5957         flag is before the custom modifiers. Fixes #49802.
5958
5959 2003-11-16  Martin Baulig  <martin@ximian.com>
5960
5961         * class.c (mono_class_is_open_constructed_type): Implemented the
5962         MONO_TYPE_GENERICINST case.
5963
5964 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
5965
5966         * assembly.c (mono_assembly_fill_assembly_name): New function to
5967         fill out the MonoAssemblyName structure.
5968         (mono_assembly_open): Use the new function.
5969
5970         * icall.c (fill_reflection_assembly_name): New helper function.
5971
5972         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
5973         new function.
5974
5975         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
5976
5977 2003-11-15  Martin Baulig  <martin@ximian.com>
5978
5979         * class.c (mono_class_is_open_constructed_type): New public
5980         function; checks whether a type is an open constructed type,
5981         ie. whether it still contains type parameters.
5982         (mono_class_inflate_generic_type): If we're a type parameter and
5983         the inflated type is also a MONO_TYPE_(M)VAR, return the original
5984         type.
5985
5986         * class.h (MonoGenericInst): Added `guint32 is_open'.
5987
5988         * loader.c (method_from_methodspec): Check whether we're an open
5989         or closed constructed type and set `ginst->is_open'.
5990
5991         * reflection.c (mono_reflection_bind_generic_parameters): Check
5992         whether we're an open or closed constructed type and set
5993         `ginst->is_open'.
5994         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
5995         from open constructed types.
5996
5997 2003-11-15  Martin Baulig  <martin@ximian.com>
5998
5999         * reflection.c (mono_reflection_bind_generic_parameters): If we're
6000         a generic instance (instead of a generic type declaration) with
6001         unbound generic parameters, bind them to our actual types.
6002
6003 2003-11-14  Martin Baulig  <martin@ximian.com>
6004
6005         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
6006
6007         * reflection.c (mono_reflection_bind_generic_parameters): If we're
6008         an interface type, populate `res->interfaces' with instantiated
6009         versions of all the interfaces we inherit.
6010
6011 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
6012
6013         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
6014         when MONO_PATH is set but doesn't contain the install dir.
6015
6016 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6017
6018         * icall.c:
6019         (ves_icall_Type_GetInterfaces): don't return an interface twice when
6020         it's also implemented in base classes. Fixes bug #50927.
6021
6022 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
6023
6024         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
6025         if this method is called from a finalizer. Fixes #50913.
6026
6027 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
6028
6029         * threads.c: Implement VolatileRead/VolatileWrite
6030
6031         * icall.c: Add new icalls for VolatileRead/VolatileWrite
6032
6033 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
6034
6035         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
6036         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
6037         2.95.3.
6038
6039         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
6040         from Peter Ross (pro@missioncriticalit.com).
6041         
6042 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
6043
6044         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
6045
6046 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
6047
6048         * assembly.c (mono_assembly_load_references): Disable check because it
6049         triggers on older corlibs which lots of people have.
6050
6051 2003-11-12  Jackson Harper  <jackson@ximian.com>
6052
6053         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
6054         load corlib.dll if mscorlib.dll is not found.
6055         * assembly.h: Remove corlib name define.
6056         * class.c:
6057         * domain.c:
6058         * image.c: Change corlib name to mscorlib.
6059         
6060 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
6061
6062         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
6063
6064 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
6065
6066         * appdomain.h: Added loader_optimization here to sync with the C#
6067         code, and add disallow_binding_redirects field.
6068
6069 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
6070
6071         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
6072
6073         * reflection.c (mono_image_build_metadata): Fix crash on modules
6074         with no types.
6075
6076         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
6077
6078         * icall.c (ves_icall_get_method_info): Return callingConvention as
6079         well.
6080
6081         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
6082         namespaces from the EXPORTEDTYPE table as well.
6083
6084         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
6085         from all modules inside the assembly.
6086         
6087 2003-11-11  Martin Baulig  <martin@ximian.com>
6088
6089         * reflection.c (mono_reflection_bind_generic_parameters): Make
6090         this work for interfaces.
6091
6092 2003-11-11  Martin Baulig  <martin@ximian.com>
6093
6094         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
6095
6096 2003-11-11  Martin Baulig  <martin@ximian.com>
6097
6098         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
6099         "MonoInflatedMethod" and "MonoInflatedCtor".
6100
6101 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
6102
6103         * reflection.c (resolution_scope_from_image): Use the assembly table
6104         from the manifest module, since other modules don't have it.
6105
6106         * debug-helpers.c (mono_type_full_name): New helper function.
6107
6108         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
6109
6110         * image.c (mono_image_load_file_for_image): New public function which
6111         is a replacement for the load_file_for_image in class.c.
6112
6113         * assembly.c (mono_assembly_load_module): A wrapper for the function
6114         above which does assembly association and reference loading too.
6115
6116         * class.c (mono_class_from_name): Call mono_assembly_load_module.
6117
6118 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6119
6120         * appdomain.c: not all of the attributes for the full assembly name
6121         are required and the order doesn't matter. Fixes bug #50787.
6122
6123 2003-11-10  Dick Porter  <dick@ximian.com>
6124
6125         * locales.c: Use platform-endian UTF16
6126
6127 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
6128
6129         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
6130         
6131 2003-11-10  Martin Baulig  <martin@ximian.com>
6132
6133         * metadata.c
6134         (mono_metadata_load_generic_params): Make this actually work.
6135
6136         * reflection.c (mono_reflection_bind_generic_parameters): If our
6137         parent is a generic instance, pass all the `types' to it, no
6138         matter whether it has the same number of type parameters or not.
6139
6140 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
6141
6142         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
6143
6144         * assembly.c (mono_assembly_load_references): Move the image<->assembly
6145         assignment code to this function so it gets called recursively for all
6146         modules.
6147
6148         * image.c (load_modules): Remove the assembly assignment since it is
6149         now done by mono_assembly_load_references.
6150         
6151         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
6152         Add 'module' argument.
6153         (mono_module_get_types): New helper function.
6154         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
6155
6156 2003-11-08  Martin Baulig  <martin@ximian.com>
6157
6158         * class.c (mono_class_inflate_generic_method): Interface method
6159         don't have a header.
6160
6161         * reflection.c (mono_image_get_methodspec_token): Take an
6162         additional `MonoGenericInst *' argument instead of reading it from
6163         the header; this is necessary to support interfaces.
6164         (mono_image_create_token): Pass the `MonoGenericInst *' from the
6165         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
6166         (inflated_method_get_object): Take an additional `MonoGenericInst *'
6167         argument.
6168
6169         * reflection.h (MonoReflectionInflatedMethod): Added
6170         `MonoGenericInst *ginst'.
6171
6172 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
6173
6174         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
6175
6176 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
6177
6178         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
6179
6180 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
6181
6182         * reflection.c 
6183         (reflection_methodbuilder_from_method_builder):
6184         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
6185         initialize a ReflectionMethodBuilder structure.
6186         (mono_image_get_methodbuilder_token):
6187         (mono_image_get_ctorbuilder_token): New functions to emit memberref
6188         tokens which point to types in another module inside the same assembly.
6189
6190         * reflection.c: Use the new helper functions.
6191         
6192         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
6193
6194         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
6195         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
6196
6197         * reflection.c (resolution_scope_from_image): Emit a moduleref if
6198         neccesary.
6199
6200         * reflection.c (mono_image_build_metadata): Emit metadata only for the
6201         current module. Emit the manifest only for the main module.
6202
6203         * reflection.c (mono_image_create_token): Add assertion when a 
6204         memberref needs to be created.
6205
6206         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
6207
6208         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
6209         larger buffer for the custom attribute blob. Fixes #50637.
6210         
6211 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6212
6213         * threadpool.c: notify listener on async processing handles after
6214         invoking the async callback. Thanks to Zoltan.
6215
6216 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
6217
6218         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
6219         avoid code duplication.
6220
6221         * reflection.h (MonoDynamicImage): New type which is currently unused,
6222         but will be used through the ref.emit code in place of 
6223         MonoDynamicAssembly.
6224
6225         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
6226         object layout.
6227
6228         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
6229         a MonoDynamicImage instead of just a MonoImage.
6230         
6231         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
6232         icalls to ModuleBuilder but keep their semantics, so they will work
6233         with moduleb->assemblyb. This will change later.
6234         
6235 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
6236
6237         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
6238         object layout.
6239
6240         * reflection.c (mono_image_build_metadata): Avoid creation of a default
6241         main module, since it is now done by the managed code.
6242
6243 2003-11-03  Martin Baulig  <martin@ximian.com>
6244
6245         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
6246         `ginst->klass' here.
6247         (method_encode_methodspec): Don't use the `ginst->generic_method's
6248         klass if it's a generic instance, use `ginst->klass' in this case.
6249
6250 2003-11-03  Martin Baulig  <martin@ximian.com>
6251
6252         * reflection.c (mono_image_get_generic_method_param_info):
6253         Removed, use mono_image_get_generic_param_info() instead.
6254         (mono_image_get_type_info): Write the GenericParam table before
6255         the Method table.  This is neccessary because in the GenericParam
6256         table, type parameters of the class (ie. '!0' etc.) must come
6257         before the ones from its generic methods (ie. '!!0' etc).
6258
6259 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
6260
6261         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
6262
6263 2003-11-02  Martin Baulig  <martin@ximian.com>
6264
6265         * reflection.c (create_generic_typespec): Take a
6266         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
6267         the generic parameters from it.
6268
6269 2003-11-02  Martin Baulig  <martin@ximian.com>
6270
6271         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
6272         instead of a `MonoClassField *' since we just need the type.
6273         (create_generic_typespec): New static function.  Creates a
6274         TypeSpec token for a generic type declaration.
6275         (mono_image_get_generic_field_token): New static function.
6276         (mono_image_create_token): If we're a FieldBuilder in a generic
6277         type declaration, call mono_image_get_generic_field_token() to get
6278         the token.
6279
6280 2003-11-02  Martin Baulig  <martin@ximian.com>
6281
6282         * reflection.h
6283         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
6284         `MonoReflectionGenericInst *declaring_type' and
6285         `MonoReflectionGenericInst *reflected_type' fields.
6286
6287         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
6288         `MonoReflectionGenericInst *declaring_type' and a
6289         `MonoReflectionGenericInst *reflected_type' argument instead of a
6290         single `MonoReflectionGenericInst *type' one.  Set
6291         `res->declaring_type' and `res->reflected_type' from them.
6292         (mono_reflection_inflate_field): Likewise.      
6293
6294 2003-11-02  Martin Baulig  <martin@ximian.com>
6295
6296         * class.c (mono_class_setup_vtable): Don't store generic methods
6297         in the vtable.  
6298
6299 2003-11-02  Martin Baulig  <martin@ximian.com>
6300
6301         * reflection.h (MonoReflectionGenericInst): Added
6302         `MonoReflectionType *declaring_type'.
6303
6304         * reflection.c (mono_reflection_bind_generic_parameters): Use
6305         `if (tb->parent)' instead of `klass->parent'.
6306
6307 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
6308
6309         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
6310         with an empty ASSEMBLY table.
6311
6312         * reflection.c (mono_image_build_metadata): Avoid using the same loop
6313         variable in the inner and outer loops.
6314
6315 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
6316
6317         * metadata.h (mono_metadata_make_token): Put parentheses around macro
6318         argument.
6319
6320         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
6321         
6322         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
6323         icalls. Instead, do everything in managed code. This is needed since
6324         it is hard to restore the original domain etc. in unmanaged code in the
6325         presence of undeniable exceptions.
6326
6327         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
6328         New icalls to push and pop appdomain refs.
6329
6330 2003-10-31  Martin Baulig  <martin@ximian.com>
6331
6332         * class.c (inflate_generic_type): Renamed to
6333         mono_class_inflate_generic_type() and made it public.
6334
6335         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
6336         New interncall.
6337
6338         * loader.c (mono_field_from_memberref): Also set the retklass for
6339         typespecs.
6340
6341         * fielder.c (mono_image_get_inflated_field_token): New static
6342         method; creates a metadata token for an inflated field.
6343         (mono_image_create_token, fixup_method): Added support for
6344         "MonoInflatedField".
6345         (fieldbuilder_to_mono_class_field): New static function.
6346         (mono_reflection_inflate_field): New public function.
6347
6348         * reflection.h
6349         (MonoReflectionGenericInst): Added `MonoArray *fields'.
6350         (MonoReflectionInflatedField): New typedef.     
6351
6352 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
6353
6354         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
6355         for Solaris and other platforms without s6_addr16
6356
6357 2003-10-30  Martin Baulig  <martin@ximian.com>
6358
6359         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
6360         argument instead of two.
6361         (mono_class_inflate_generic_signature): Likewise.
6362         (inflate_generic_header): Likewise.
6363         (mono_class_inflate_generic_method): Likewise.  In addition, if
6364         `ginst->klass' is set, it becomes the new `method->klass'.
6365
6366         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
6367         field.
6368
6369         * reflection.c (encode_generic_method_sig): Write a 0xa as the
6370         first byte. [FIXME]
6371         (method_encode_methodspec): If we have generic parameters, create
6372         a MethodSpec instead of a MethodRef.
6373         (fixup_method): Added support for "MonoInflatedMethod" and
6374         "MonoInflatedCtor".
6375         (mono_image_create_token): Added support for "MonoInflatedMethod"
6376         and "MonoInflatedCtor".
6377         (inflated_method_get_object): New static function; returns a
6378         managed "System.Reflection.MonoInflatedMethod" object.
6379         (mono_reflection_bind_generic_method_parameters): Return a
6380         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
6381         (mono_reflection_inflate_method_or_ctor): Likewise.
6382         (mono_image_get_generic_method_param_info): Initialize unused
6383         fields to zero.
6384         (mono_image_get_generic_param_info): Likewise.
6385
6386         * reflection.h (MonoReflectionInflatedMethod): New public
6387         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
6388         "S.R.MonoInflatedCtor" classes.
6389
6390         * loader.c (method_from_memberref): If we're a TypeSpec and it
6391         resolves to a generic instance, inflate the method.
6392
6393 2003-10-28  Dick Porter  <dick@ximian.com>
6394
6395         * object.c (mono_runtime_run_main): Convert command-line arguments
6396         into utf8, falling back to the user's locale encoding to do so.
6397
6398 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
6399
6400         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
6401         at this time.
6402
6403         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
6404
6405         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
6406         up icalls at method definition time. Partially fixes #33569.
6407
6408 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
6409
6410         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
6411         marshalling of arrays. Fixes #50116.
6412
6413         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
6414
6415         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
6416         points to a vtable in the dying appdomain.
6417
6418         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
6419         listeners into unmanaged code inside the lock.
6420
6421         * object.c (mono_class_vtable): Turn off typed allocation in non-root
6422         domains and add some comments.
6423
6424 2003-10-25  Martin Baulig  <martin@ximian.com>
6425
6426         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
6427
6428         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
6429
6430         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
6431         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
6432         currently parsing.  Create the generic class and store it in
6433         `generic_inst->klass' before parsing the type arguments.  This is
6434         required to support "recursive" definitions; see mcs/tests/gen-23.cs
6435         for an example.
6436         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
6437         to support recursive typespec entries.
6438
6439         * class.c (mono_class_setup_parent): If our parent is a generic
6440         instance, we may get called before it has its name set.
6441         (mono_class_from_generic): Splitted into
6442         mono_class_create_from_generic() and mono_class_initialize_generic().
6443
6444 2003-10-25  Martin Baulig  <martin@ximian.com>
6445
6446         * icall.c (ves_icall_Type_BindGenericParameters): Return a
6447         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
6448         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
6449         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
6450
6451         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
6452         (create_typespec): Likewise.
6453         (mono_reflection_bind_generic_parameters): Return a
6454         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
6455         (mono_reflection_inflate_method_or_ctor): New public function.
6456
6457         * reflection.h (MonoReflectionGenericInst): New typedef.        
6458
6459 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
6460
6461         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
6462         inside the domain lock. Fixes #49993.
6463         
6464         * object.c (mono_class_vtable): When typed allocation is used, 
6465         allocate vtables in the GC heap instead of in the mempool, since the
6466         vtables contain GC descriptors which are used by the collector even
6467         after the domain owning the mempool is unloaded.
6468
6469         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
6470
6471         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
6472         reflect what it does. Also invalidate mempools instead of freeing
6473         them if a define is set.
6474
6475         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
6476         of the appdomain.
6477         
6478         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
6479         hold the finalizable objects in this domain.
6480
6481         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
6482         appdomain.
6483
6484         * appdomain.c (mono_domain_set): New function to set the current
6485         appdomain, but only if it is not being unloaded.
6486
6487         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
6488         appdomain which is being unloaded.
6489         
6490         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
6491         unloading of the root appdomain.
6492
6493         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
6494         icall to execute a method in another appdomain. Intended as a 
6495         replacement for InternalSetDomain, which can confuse the code 
6496         generation in the JIT.
6497
6498         * appdomain.c (mono_domain_is_unloading): New function to determine
6499         whenever an appdomain is unloading.
6500
6501         * appdomain.c (mono_domain_unload): New function to correctly unload
6502         an appdomain.
6503
6504         * assembly.c (mono_assembly_load_references): Check that an assembly
6505         does not references itself.
6506
6507         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
6508         domain manually, it asks the finalizer thread to do it, then waits for
6509         the result. Also added a timeout.
6510
6511         * icall.c: Register the new icalls.
6512
6513         * threads.h threads.c: Export the mono_gc_stop_world and 
6514         mono_gc_start_world functions.
6515         
6516         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
6517         function to fill out the mempool with 0x2a.
6518
6519 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
6520
6521         * reflection.h (MonoReflectionMethodAux): New structure to store
6522         information which is rarely used, thus is not in the MonoMethod
6523         structure.
6524
6525         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
6526         store the aux info.
6527
6528         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
6529         and marshalling info into the aux structure.
6530
6531         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
6532         from the aux structure.
6533
6534         * loader.c (mono_method_get_param_names): Retrieve the param names from
6535         the aux structure.
6536         
6537 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
6538
6539         * exception.h exception.c: Add AppDomainUnloadedException && fix 
6540         warning.
6541
6542 2003-10-21  Dick Porter  <dick@ximian.com>
6543
6544         * socket-io.c
6545         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
6546         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
6547
6548 2003-10-21  Martin Baulig  <martin@ximian.com>
6549
6550         * reflection.c (mono_reflection_bind_generic_parameters):
6551         `klass->parent' is NULL for interfaces.
6552
6553 2003-10-21  Martin Baulig  <martin@ximian.com>
6554
6555         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
6556
6557 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
6558
6559         * exception.c (mono_exception_from_name_msg): New helper function for
6560         creating exceptions and initializing their message field.
6561
6562         * exception.c: Simplify functions using the new helper.
6563
6564         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
6565         New function.
6566
6567         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
6568         mono_raise_exception, since otherwise gcc doesn't generate the function
6569         epilog for raise_exception, confusing the stack unwinding in the JIT.
6570         Fixes #45043.
6571
6572         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
6573         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
6574         Fixes #49499.
6575
6576 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6577
6578         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
6579         utf8.
6580
6581 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
6582
6583         * icall.c: Removed GetUninitializedObject method because
6584           AllocateUninitializedClassInstance does the same.
6585
6586 2003-10-18  Martin Baulig  <martin@ximian.com>
6587
6588         * class.c (inflate_generic_signature): Renamed to
6589         mono_class_inflate_generic_signature() and made it public.
6590         (my_mono_class_from_generic_parameter): New static function; if we
6591         don't already have the generic parameter's MonoClass, create a
6592         very simple one which is just used internally in the runtime and
6593         not passed back to managed code.
6594
6595         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
6596
6597         * metadata.h (MonoMethodSignature): Moved the
6598         `MonoGenericParam *gen_params' to the MonoMethodHeader.
6599         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
6600
6601         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
6602         ves_icall_MonoMethod_GetGenericArguments(); this is now an
6603         interncall on the MonoMethod class, not on MethodInfo.
6604         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
6605         calling mono_reflection_bind_generic_method_parameters() directly.
6606
6607         * loader.c (mono_method_get_signature): If this is a MethodSpec;
6608         return the already computed `method->signature'.
6609         (method_from_methodspec): New static function to load a method
6610         from a MethodSpec entry.
6611         (mono_get_method_from_token): Call the new method_from_methodspec()
6612         for MethodSpec tokens.  
6613         (mono_get_method_from_token): If we're a generic method, load the
6614         type parameters.
6615
6616         * reflection.c (mono_image_get_memberref_token): Allow
6617         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
6618         table.
6619         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
6620         (mono_image_create_token): First check whether it's a generic
6621         method (so we'd need to create a MethodSpec), then do the other
6622         two alternatives.
6623         (mono_reflection_bind_generic_method_parameters): Return a
6624         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
6625         called directly from the interncall.
6626
6627 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
6628
6629         * reflection.c (load_public_key): Move loading of the public key
6630         into managed code.
6631
6632         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
6633
6634         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
6635         fields.
6636
6637         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
6638         culture, hash_alg and public_key. Fixes #49555.
6639
6640 2003-10-17  Martin Baulig  <martin@ximian.com>
6641
6642         * class.h (MonoGenericInst): Moved this declaration here and added
6643         `MonoMethod *generic_method'.
6644
6645         * icall.c
6646         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
6647         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
6648
6649         * metadata.c (mono_metadata_type_equal): Two types of
6650         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
6651         index; ie. don't compare the address of the `MonoGenericParam'
6652         structure.
6653         (mono_metadata_load_generic_params): Removed the `MonoMethod
6654         *method' argument.
6655
6656         * metadata.h (MonoGenericInst): Moved declaration to class.h.
6657         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
6658
6659         * reflection.c (method_encode_signature): Encode the number of
6660         generic parameters.
6661         (encode_generic_method_sig): New static function.
6662         (method_encode_methodspec): New static function; creates an entry
6663         in the MethodSpec table for a generic method.
6664         (mono_image_get_methodspec_token): New static function.
6665         (mono_image_create_token): Call mono_image_get_methodspec_token()
6666         for generic methods.
6667         (mono_reflection_bind_generic_method_parameters): New public
6668         function.  Instantiates a generic method.
6669
6670 2003-10-16  Martin Baulig  <martin@ximian.com>
6671
6672         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
6673         *gen_params' here from MonoMethodHeader.
6674
6675         * metadata.c (mono_metadata_parse_method_signature): If we have
6676         generic parameters, initialize `method->gen_params' and then set
6677         the correct `type->data.generic_param' in all the parameters.
6678
6679 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
6680
6681         * threads.c (mono_threads_get_default_stacksize): New function to 
6682         return the default stacksize.
6683
6684         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
6685         termination of the finalizer thread, since the previous method had
6686         race conditions. Fixes #49628.
6687
6688         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
6689         as for the other managed threads.
6690
6691 2003-10-16  Martin Baulig  <martin@ximian.com>
6692
6693         * class.c (inflate_generic_signature): Copy `generic_param_count'
6694         and `gen_params'.
6695
6696         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
6697         New interncall.
6698
6699         * metadata.c (mono_metadata_parse_method_signature): Actually set
6700         the `method->generic_param_count' here.
6701         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
6702
6703 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
6704
6705         * object.h: Add a new field to TypedRef to simplify the implementation
6706         of the REFANY opcodes in the JIT.
6707
6708         * icall.c: Make use of the new field.
6709
6710         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
6711         dynamically.
6712
6713 2003-10-15  Martin Baulig  <martin@ximian.com>
6714
6715         * class.c (mono_class_from_gen_param): Renamed to
6716         mono_class_from_generic_parameter() and moved most of the
6717         functionality from mono_reflection_define_generic_parameter()
6718         here; ie. we create a "real" class here.
6719         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
6720         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
6721         previously been called.
6722
6723         * class.h (MonoGenericParam): Moved the declaration of this struct
6724         here from metadata.h and added `MonoMethod *method'.
6725
6726         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
6727         interncall.
6728
6729         * loader.c (mono_get_method_from_token): If we have any generic
6730         parameters, call mono_metadata_load_generic_params() to read them
6731         from the MONO_TABLE_GENERICPAR.
6732
6733         * metadata.c (mono_metadata_load_generic_params): Added
6734         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
6735
6736         * metadata.h (MonoMethodSignature): Replaced
6737         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
6738         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
6739
6740         * reflection.c (mono_reflection_define_generic_parameter): Moved
6741         most of the functionality into the new
6742         mono_class_from_generic_parameter(); set the `method' field if
6743         we're a method parameter.       
6744
6745 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
6746
6747         * marshal.c (emit_struct_conv): if native size is 0
6748         emit no code.
6749
6750 2003-10-14  Martin Baulig  <martin@ximian.com>
6751
6752         * icall.c: The generics API has changed in the spec since it was
6753         added to System.Type; these modifications make it match the spec
6754         again.
6755         (ves_icall_Type_GetGenericParameters): Renamed to
6756         `ves_icall_Type_GetGenericArguments'.
6757         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
6758         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
6759         `ves_icall_MonoType_get_HasGenericArguments'.
6760         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
6761         `ves_icall_MonoType_get_IsGenericParameter'.
6762         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
6763         this is no interncall anymore.
6764         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
6765         `ves_icall_TypeBuilder_get_IsGenericParameter'.
6766
6767 2003-10-14  Martin Baulig  <martin@ximian.com>
6768
6769         * reflection.c (mono_reflection_bind_generic_parameters): Also
6770         inflate generic methods if we're reading the class from IL.
6771
6772 2003-10-13  Martin Baulig  <martin@ximian.com>
6773
6774         * reflection.c (mono_reflection_define_generic_parameter): This
6775         method isn't called directly from the icall anymore; take a
6776         `MonoReflectionAssemblyBuilder *' so we can use this for type and
6777         method generic parameters.
6778         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
6779         (method_builder_encode_signature): Encode generic parameters.
6780         (mono_image_get_method_info): Write generic params to the
6781         MONO_TABLE_GENERICPARAM table.
6782
6783         * reflection.h (MonoReflectionMethodBuilder): Added
6784         `MonoArray *generic_params'.
6785
6786         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
6787
6788         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
6789         wrapper for mono_reflection_define_generic_parameter().
6790         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
6791
6792 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
6793
6794         * marshal.h: Add missing function to fix build.
6795
6796         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
6797         the SetLastError pinvoke attribute.
6798
6799         * marshal.c (mono_marshal_set_last_error): New helper function called
6800         by the generated code.
6801         
6802         * marshal.c (mono_mb_emit_branch): New helper function.
6803
6804         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
6805
6806         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
6807         classes as parameters and return values of delegates. Fixes #29256. 
6808
6809 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
6810
6811         * locales.c: use gint32 in non HAVE_ICU case
6812
6813 2003-10-11  Martin Baulig  <martin@ximian.com>
6814
6815         * mono-debug.c (mono_debug_add_method): Added a workaround for
6816         bug #48591.
6817
6818 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
6819
6820         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
6821         delegates passed to native code must use the STDCALL calling 
6822         convention. Fixes #35987.
6823
6824 2003-10-10  Martin Baulig  <martin@ximian.com>
6825
6826         * class.c (inflate_generic_type): If we're inflating for a generic
6827         type instance (and not for a generic method), return
6828         MONO_TYPE_MVAR unchanged.
6829
6830 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6831
6832         * string-icalls.c: Join ignores null strings in the source array.
6833         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
6834         * threads.c: GetAvailableTheads is slightly more accurate.
6835
6836 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
6837
6838         * threads.h threads.c : add mono_threads_set_default_stacksize
6839         and pass default to CreateThread calls.
6840
6841 2003-10-09  Dick Porter  <dick@ximian.com>
6842
6843         * icall.c:
6844         * locales.h:
6845         * locales.c: Internal calls for constructing CultureInfo and
6846         related objects from libicu (if its available.)
6847
6848 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
6849
6850         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
6851
6852 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6853
6854         * threadpool.c: added an argument to async_invoke_thread that is the
6855         item to process, pass the MonoAsyncResult to the thread start function
6856         when creating a new thread. This way we don't need to acquire any lock
6857         when we're creating a new thread. Readded a semaphore for faster
6858         response times (instead of that Sleep i added).
6859
6860 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
6861
6862         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
6863         get daylight change dates better on Windows, fix handling
6864         of platforms without tm_gmtoff.
6865
6866 2003-10-06  Martin Baulig  <martin@ximian.com>
6867
6868         * class.c (inflate_generic_method): Renamed to
6869         mono_class_inflate_generic_method() and made public.
6870         (mono_class_init): Don't inflate the generic methods here.
6871         (mono_class_from_generic): Added `gboolean inflate_methods'
6872         argument.  Inflate the methods here.
6873
6874         * loader.c (mono_method_get_param_names): Ignore instances of
6875         generic types for the moment.
6876
6877         * reflection.c (fixup_method): Added support for inflated methods.
6878         (mono_image_create_token): Use mono_image_get_methodref_token()
6879         for inflated methods.
6880         (mono_custom_attrs_from_param): Ignore instances of generic types
6881         for the moment.
6882         (mono_reflection_bind_generic_parameters): New public function.
6883         Moved all the functionality from
6884         ves_icall_Type_BindGenericParameters() here and added support for
6885         dynamic types.
6886         (mono_reflection_define_generic_parameter): Initialize
6887         `klass->methods' here.
6888
6889         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
6890         functionality into mono_reflection_define_generic_parameter().
6891         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
6892         TypeBuilder, return that TypeBuilder.
6893
6894 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6895
6896         * appdomain.c: removed mono_delegate_semaphore.
6897
6898         * threadpool.c:
6899         (mono_thread_pool_add): moved hash table creation inside and the thread 
6900         creation outside of the critical region.
6901         (mono_thread_pool_finish): removed obsolete code.
6902         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
6903         continue or exit the thread depending on the queue.
6904
6905 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
6906
6907         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
6908         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
6909         handle more bool marshalling options
6910
6911 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
6912
6913         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
6914         arrays of structs. Also add a more descriptive error message when
6915         a structure member is marshalled as LPArray.
6916
6917 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
6918
6919         * marshal.c (mono_marshal_get_native_wrapper): Add support for
6920         marshalling arrays of complex types. Fixes #29098. Also remove an
6921         usused and incomplete function.
6922
6923 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
6924
6925         * gc.c: report heap_size - free_bytes as total memory allocated
6926         (bug#49362).
6927
6928 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
6929
6930         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
6931         fix timezone handling problems on Windows.
6932         
6933         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
6934         asserts when the year is outside the range handled by ms the functions.
6935
6936         * class.c (setup_interface_offsets): If the class is an interface,
6937         fill out its interface_offsets slot.
6938
6939 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6940
6941         * threadpool.c: mark threadpool threads as background.
6942
6943 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
6944
6945         * decimal.c - define DECINLINE to nothing if not using GCC
6946
6947 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
6948
6949         * assembly.c: More refcount fixes.
6950
6951 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6952
6953         * string-icalls.c: if we're not trimming, return the same string.
6954         When not splitting, don't create a new string.
6955
6956 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6957
6958         * image.c:
6959         (mono_image_open): increment the ref_count inside the critical section.
6960
6961 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
6962
6963         * image.c (mono_image_open): Fix reference counting bug.
6964
6965 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
6966
6967         * marshal.c (mono_marshal_type_size) struct alignment changed for 
6968         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
6969         64bits. Avoid leak in mono_marshal_get_native_wrapper when
6970         mono_lookup_pinvoke_call throws.        
6971
6972 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
6973
6974         * reflection.c (mono_reflection_parse_type): Fix #49114.
6975
6976         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
6977         temporary workaround for cygwin header problem.
6978
6979         * object.c (mono_object_isinst): Synchronize this with the code
6980         generated by the JIT for casts.
6981
6982 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
6983
6984         * reflection.c (encode_type): Fix #38332.
6985
6986 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
6987
6988         * marshal.c (mono_marshal_method_from_wrapper): New function to return
6989         the original method from the wrapper method.
6990
6991 2003-09-25  Martin Baulig  <martin@ximian.com>
6992
6993         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
6994         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
6995         (ves_icall_Type_get_IsGenericInstance): New interncall.
6996
6997 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
6998
6999         * object.c: fix cast warning in big endian code.
7000
7001 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
7002
7003         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
7004         
7005 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7006
7007         * assembly.c: don't call check_env from mono_assembly_load. It's
7008         already done once in mono_assemblies_init and may cause headaches when
7009         multiple threads are loading assemblies.
7010
7011 2003-09-19  Martin Baulig  <martin@ximian.com>
7012
7013         * reflection.c (mono_reflection_define_generic_parameter): Don't
7014         allocate `klass->methods', set `klass->flags' to
7015         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
7016
7017 2003-09-18  Martin Baulig  <martin@ximian.com>
7018
7019         * class.c (mono_class_init): Don't create `class->methods' if it's
7020         already initialized.
7021
7022         * metadata.c (mono_metadata_load_generic_params): Make this
7023         actually work.
7024
7025         * reflection.c (mono_reflection_define_generic_parameter): Set
7026         parent class and interfaces from the constraints.
7027
7028         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
7029         to keep this struct in sync with the declaration in TypeBuilder.cs.
7030
7031 2003-09-17  Martin Baulig  <martin@ximian.com>
7032
7033         * metadata.h (MonoType): Replaced the data's `int type_param'
7034         field with `MonoGenericParam *generic_param'.
7035         (MonoGenericParam): Added `MonoClass *klass'.
7036
7037         * class.c (mono_class_from_gen_param): Removed the
7038         `MonoImage *image' and `int type_num' arguments.
7039
7040         * metadata.c (mono_metadata_parse_generic_param): New static
7041         method; creates a MonoGenericParam which just contains the index.
7042         (do_mono_metadata_parse_type): Call
7043         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
7044         MONO_TYPE_MVAR.
7045
7046         * reflection.c (mono_image_typedef_or_ref): Generic type
7047         parameters may be in the same assembly, but never use a typedef
7048         for them.
7049         (mono_reflection_define_generic_parameter): We're now creating a
7050         "real" class for the type parameter; it's now safe to call
7051         mono_class_from_mono_type() on the class'es type, it'll do the
7052         right thing.
7053
7054 2003-09-16  Martin Baulig  <martin@ximian.com>
7055
7056         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
7057         `symfile->range_entry_size' and `symfile->class_entry_size' here;
7058         the `symfile' data structure must be fully initialized before it
7059         gets added to the table.
7060
7061 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
7062
7063         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
7064
7065         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
7066         class init trampolines.
7067
7068 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
7069
7070         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
7071         to the built-in profiler to turn off time and allocation profiling
7072         respectively.
7073
7074 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
7075
7076         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
7077         g_direct_equal.
7078
7079         * debug-helpers.c (mono_method_full_name): Print the wrapper type
7080         in human readable form.
7081
7082 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
7083
7084         * reflection.c icall.c: Fixed warnings.
7085
7086         * image.c (load_class_names): Use a temporary hash table to hold the
7087         namespaces in order to avoid doing many string comparisons.
7088
7089         * image.h: Fix typo.
7090
7091         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
7092         Pass NULL instead of g_direct_equal to the GHashTable constructor 
7093         since the NULL case is short-circuited inside g_hash_table_lookup, 
7094         leading to better performance.  
7095
7096         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
7097         obtain the first custom attribute for a given index. Depends on the
7098         CustomAttribute table being sorted by the parent field.
7099
7100         * reflection.c (mono_custom_attrs_from_index): Use the new function 
7101         for better performance.
7102
7103 2003-09-07  Martin Baulig  <martin@ximian.com>
7104
7105         * class.c (mono_class_init): If we're a generic instance, inflate
7106         all our methods instead of loading them from the image.
7107         (mono_class_from_generic): Set `class->methods = gklass->methods'.
7108
7109 2003-09-07  Martin Baulig  <martin@ximian.com>
7110
7111         * mono-debug-debugger.c: Added support for constructors.
7112
7113 2003-09-06  Martin Baulig  <martin@ximian.com>
7114
7115         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
7116         New interncall.
7117
7118         * reflection.c (mono_reflection_setup_generic_class): Call
7119         ensure_runtime_vtable() to create the vtable.
7120
7121 2003-09-05  Martin Baulig  <martin@ximian.com>
7122
7123         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
7124         MONO_TYPE_MVAR.
7125
7126 2003-09-04  Martin Baulig  <martin@ximian.com>
7127
7128         * reflection.c (mono_reflection_define_generic_parameter): Generic
7129         parameters start with zero.
7130
7131 2003-09-04  Martin Baulig  <martin@ximian.com>
7132
7133         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
7134
7135         * reflection.h (MonoReflectionGenericParam): New typedef.
7136         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
7137         the generic parameters from the managed TypeBuilder.
7138
7139         * reflection.c (mono_reflection_define_generic_parameter): New function.
7140         (mono_reflection_create_runtime_class): Encode generic parameters.
7141         (mono_reflection_setup_generic_class): New function; this is
7142         called after adding adding all generic params to the TypeBuilder.
7143         (encode_type): Added MONO_TYPE_VAR.
7144
7145 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
7146
7147         * class.h class.c (mono_class_needs_cctor_run): Moved this method
7148         here from the JIT.
7149
7150         * assembly.h assembly.c: Moved the AOT loading code into an assembly
7151         load hook.
7152
7153 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
7154
7155         * reflection.h reflection.c class.h class.c: Delete duplicate 
7156         definition of mono_type_get_name () from reflection.c and export the
7157         one in class.c.
7158
7159         * class.c: Class loading fixes from Bernie Solomon 
7160         (bernard@ugsolutions.com).
7161
7162         * reflection.c: Endianness fixes from Bernie Solomon 
7163         (bernard@ugsolutions.com).
7164         
7165 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
7166
7167         * assembly.h assembly.c: Define a file format version for AOT
7168         libraries.
7169         
7170         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
7171
7172         * appdomain.h (MonoJitInfo): New field to determine whenever the
7173         code is domain neutral.
7174         
7175 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
7176
7177         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
7178
7179 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
7180
7181         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
7182         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
7183         Avoid caching the result since strings must be domain specific. Fixes
7184         #48050.
7185
7186 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
7187
7188         * marshal.c (mono_marshal_init): Make this callable multiple times
7189         since it is hard to find a correct place to call it.
7190
7191         * object.c (mono_runtime_class_init): Execute static constructors in
7192         the correct appdomain.
7193
7194         * image.c (build_guid_table): Handle the case when multiple images have
7195         the same GUID.
7196
7197 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7198
7199         * icall.c: added a couple of icalls for System.Web.
7200
7201 2003-08-28  Martin Baulig  <martin@ximian.com>
7202
7203         * icall.c (ves_icall_Type_BindGenericParameters): Use
7204         `klass->generic_inst' instead of `&klass->byval_arg' in the
7205         mono_type_get_object() call.  The returned type must be
7206         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
7207
7208 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
7209
7210         * NOTES: New file.
7211
7212         * object.c (mono_class_proxy_vtable): Make it thread safe.
7213
7214         * pedump.c: Fix warning.
7215
7216         * object.c appdomain.h: Get rid of metadata_section. 
7217         It is no longer needed and it was causing deadlocks with domain->lock.
7218
7219         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
7220
7221 2003-08-26  Martin Baulig  <martin@ximian.com>
7222
7223         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
7224
7225 2003-08-26  Martin Baulig  <martin@ximian.com>
7226
7227         * pedump.c (main): Call mono_metadata_init(),
7228         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
7229         and mono_loader_init().
7230
7231 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
7232
7233         * loader.h: Add missing include to fix build.
7234
7235         * image.h: mono_image_load_references is no more.
7236
7237         * assembly.c: Reworked assembly loading to make it really thread safe.
7238         After these changes, the assembly returned by mono_assembly_open is
7239         fully initialized, i.e. all its references assemblies are loaded.
7240
7241         * assembly.c (mono_image_load_references): Renamed to 
7242         mono_assembly_load_references, and made private, since clients no
7243         longer need to call it.
7244
7245         * class.c: Removed calls to mono_assembly_load_references, since it was
7246         a source of deadlocks.
7247
7248         * loader.h loader.c class.h class.c: Protect data structures using a 
7249         new lock, the loader lock.
7250
7251         * class.c (mono_class_setup_vtable): Create temporary hash tables and
7252         GPtrArrays only when needed.
7253
7254         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
7255         into empty structures by mcs. Fixes pinvoke7.cs.
7256         
7257         * domain.c (mono_init): Call a new initialization function.
7258
7259         * appdomain.c (mono_runtime_init): Call the new initializer function
7260         of the marshal module.
7261
7262         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
7263         inserted into empty structures by mcs. Fixes pinvoke7.cs.
7264
7265         * marshal.h marshal.c: Added locks around the wrapper caches to make
7266         this module thread safe.
7267
7268         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
7269         this argument. Fixes pinvoke1.exe.
7270
7271 2003-08-25  Lluis Sanchez <lluis@ximian.com>
7272
7273         * object.h: Added call_type field to MonoMethodMessage and the corresponding
7274         enumeration of values. Removed fields to store remote call output values in
7275         MonoAsyncResult. Not needed any more.
7276         * object.c: Initialize call_type and async_result fields in mono_message_init.
7277         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
7278         dispatching the message.
7279         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
7280         async call to finish. To do it use a message with EndInvoke call type.
7281
7282 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
7283
7284         * loader.h loader.c (mono_method_hash_marhal_info): New function which
7285         determines whenever a method has marshalling info.
7286
7287 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7288
7289         * assembly.c: fix the build on windows.
7290
7291 2003-08-22 Lluis Sanchez <lluis@ximian.com>
7292
7293         * object.cs: Fixed bug #47785.
7294
7295 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
7296
7297         * string-icalls.c (StringReplace): If their are no occurances of
7298         the old string found return a reference to the supplied
7299         string. This saves some memory and matches MS behavoir.
7300         
7301 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7302
7303         * socket-io.c: fixed compilation for systems that define AF_INET6
7304         and don't define SOL_IP/SOL_IPV6.
7305
7306 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
7307
7308         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
7309         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
7310
7311         * rawbuffer.c rawbuffer.h: Make this module thread safe.
7312
7313         * domain.c: Make this module thread safe.
7314
7315         * domain.c (mono_init): Call new initialization function.
7316
7317         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
7318         reference types too. Fixes #38812.
7319
7320         * image.c (mono_image_init): Fixed warnings.
7321
7322         * class.c (mono_class_from_typeref): Handle assembly load failure
7323         correctly.
7324
7325         * appdomain.c (add_assemblies_to_domain): Handle the case when
7326         the references of an assembly are not yet loaded.
7327
7328         * metadata.c image.c assembly.c: Moved initialization of global
7329         variables to a separate function called at startup since lazy 
7330         initialization of these variables is not thread safe.
7331         
7332         * image.c assembly.c: Made this module thread safe by adding locks in 
7333         the appropriate places.
7334
7335         * domain.c (mono_init): Call the new initialization functions of the
7336         three modules.
7337
7338 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
7339
7340         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
7341           make a direct call. It is proxy's work to make the call asynchronous.
7342           mono_delegate_end_invoke(): If the targe is a proxy, just collect
7343           the return values.
7344         * object.cs: mono_method_call_message_new(): read AsyncResult and
7345           state object from parameters list, if this info is requested.
7346         * object.h: Added fields to store remote call output values in
7347           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
7348
7349 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
7350
7351         * object.h: add needed fields to MonoThread.
7352         * threads.c, threads.h: allow registering a function to cleanup data
7353         allocated per thread by the JIT.
7354
7355 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
7356
7357         * loader.h: portability fix by Bernie Solomon
7358         * <bernard@ugsolutions.com>.
7359
7360 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
7361
7362         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
7363         return a MonoArray. This simplifies the code and also ensures that
7364         the cache allways contains an object reference as a value.
7365
7366         * icall.c (ves_icall_get_parameter_info): Simplified using the new
7367         function.
7368
7369 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7370
7371         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
7372         fixes a problem with byte ordering when getting the address family for
7373         a socket.
7374
7375 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
7376
7377         * .cvsignore: Added monosn.
7378
7379         * reflection.h reflection.c loader.c: Added support for parameter
7380         marshalling to dynamically created types. Fixes #47295.
7381
7382 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
7383
7384         * rand.c: remove useless warnings.
7385
7386 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
7387
7388         * class.c: implemented ldtoken for methods and fieldrefs.
7389
7390 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7391
7392         * threadpool.c: when mono_async_invoke was called, no one took care of
7393         monitoring the queue. So if the method invoked took some time and we
7394         got new async invoke requests after 500 ms (the thread created waited
7395         that long in WaitForSingleObject), the new async invoke was not called
7396         until the previous one finished.
7397
7398         This is fixed now. Thanks to Totte for helping with it.
7399
7400 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7401
7402         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
7403
7404 2003-08-11  Martin Baulig  <martin@ximian.com>
7405
7406         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
7407
7408 2003-08-06  Martin Baulig  <martin@ximian.com>
7409
7410         * mono-debug-debugger.c: Added support for static fields,
7411         properties and methods.
7412
7413 2003-08-06  Martin Baulig  <martin@ximian.com>
7414
7415         * mono-debug-debugger.c: Don't store the MonoString's vtable to
7416         make this work for applications with multiple application domains.
7417
7418 2003-08-04  Martin Baulig  <martin@ximian.com>
7419
7420         * mono-debug-debugger.c: Completely reworked the type support; the
7421         most important thing is that we're now just using one single
7422         `MonoType' instance per type.
7423
7424 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
7425
7426         * mono-endian.h, mono-endian.c, icall.c: Added icall
7427         ves_icall_System_Double_AssertEndianity to assert double word endianity
7428         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
7429
7430 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
7431
7432         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
7433         support, icalls and fixes.
7434
7435 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
7436
7437         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
7438         classes that are a punctuation character in .NET is not the same a
7439         g_unichar_ispunct.
7440
7441 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
7442
7443         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
7444
7445 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
7446
7447         * icall.c: Add new MemCopy internalcall.
7448         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
7449         Simplified code; It is not necessary to handle all the cases here,
7450         as the C# code takes care of it.  Only handle the case of the name
7451         resource embedded into the assembly.
7452
7453         Changed signature to return the data pointer and the size of the
7454         data. 
7455
7456 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
7457
7458         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
7459         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
7460
7461 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
7462
7463         * socket-io.c: ignore EINTR error in select.
7464
7465 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
7466
7467         * class.h, class.c: removed unused subclasses field in MonoClass.
7468
7469 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
7470
7471         * icall.c: improve fix of get_base_definition(). If the parent class
7472           doesn't have the mehod, look at the parent of the parent.
7473         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
7474           to check if a parameter is an in or out parameter
7475           (PARAM_ATTRIBUTE_IN is not set by default).
7476           mono_method_return_message_restore(): Use mono_class_value_size to
7477           get the size of a value type. mono_type_stack_size (parameterType)
7478           does not return the correct value if parameterType is byRef.
7479           mono_load_remote_field(), mono_load_remote_field_new(),
7480           mono_store_remote_field(), mono_store_remote_field_new():
7481           raise exception if the remote call returns an exception.
7482
7483 2003-07-28  Martin Baulig  <martin@ximian.com>
7484
7485         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
7486         method.  This is a wrapper around mono_runtime_invoke() which
7487         boxes the instance object if neccessary.
7488
7489 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
7490
7491         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
7492         metadata.h, row-indexes.h, verify.c: first cut of generics support.
7493
7494 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
7495
7496         * icall.c: disable mcs bug workaround.
7497
7498 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
7499
7500         * object.c (mono_runtime_class_init): Take the metadata_section
7501         mutex before obtaining the domain mutex.
7502
7503         * appdomain.h: Added definition of metadata_section mutex here. 
7504
7505         * object.c: define metadata_mutex here.
7506
7507 2003-07-24  Ravi Pratap  <ravi@ximian.com>
7508
7509         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
7510         fixed.
7511
7512 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
7513
7514         * reflection.c: Fix bug #46669
7515
7516 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7517
7518         * exception.c:
7519         * exception.h:
7520         * icall.c:
7521         * object.h: fill in the type name for TypeLoadException.
7522
7523 2003-07-23  Ravi Pratap  <ravi@ximian.com>
7524
7525         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
7526         relationship between TypeBuilders while compiling corlib) and bug
7527         45993 (Array types returned from the runtime while compiling
7528         corlib were from the loaded corlib).
7529
7530 2003-07-22  Martin Baulig  <martin@ximian.com>
7531
7532         * mono-debug-debugger.c: Reworked the type support a bit more;
7533         distinguish between types and classes.
7534
7535 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
7536
7537         * icall.c: add IsArrayImpl icall.
7538
7539 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
7540
7541         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
7542         initializing real_size only once. Also fix bug #46602.
7543
7544 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
7545
7546         * object.c: Renamed mono_metadata_section to metadata_section.
7547
7548 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
7549
7550         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
7551           empty array if the type is an array. Fixed.
7552           ves_icall_MonoMethod_get_base_definition: if the base method
7553           is abstract, get the MethodInfo from the list of methods of
7554           the class.
7555         * reflection.c: ParameterInfo.PositionImpl should be zero-based
7556           and it was 1-based. Fixed in mono_param_get_objects.
7557
7558 2003-07-20  Martin Baulig  <martin@ximian.com>
7559
7560         * mono-debug.h: Set version number to 31.
7561         (mono_debug_init): Added `MonoDomain *' argument.
7562
7563         * mono-debug-debugger.c: Reworked the type support; explicitly
7564         tell the debugger about builtin types; pass the `klass' address to
7565         the debugger.
7566
7567 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
7568
7569         * image.c: Allow new metadata tables to be loaded without a
7570         warning. Also update the warning message to give the new constant value.
7571                 
7572 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
7573
7574         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
7575         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
7576         array type representation changes.
7577
7578 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
7579
7580         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
7581         on Environment.Exit () call.
7582
7583 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
7584
7585         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
7586         requires a matching corlib.
7587
7588 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
7589
7590         * Changelog: My editor decided to add a CR to each line. Sorry about that.
7591           Committed again without the CRs.
7592         
7593 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
7594
7595         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
7596           getting it from the "this" socket instance. Did not work
7597           if the socket is a subclass of Socket.
7598           Also fixed bug #35371.
7599
7600 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
7601
7602         * metadata.c: fixed size for TypedByRef.
7603         * loader.c: when searching for a method, consider the vararg amrker.
7604         * unicode.c, decimal.c: constify some arrays.
7605
7606 2003-07-15  Dick Porter  <dick@ximian.com>
7607
7608         * socket-io.c: Fixed compilation for gcc < 3.2.
7609
7610         Fixed compilation for machines that don't have AF_INET6 (thanks to
7611         Bernie Solomon <bernard@ugsolutions.com> for that part.)
7612
7613         Fixed compile warnings.
7614         
7615         Fixed formatting and line endings.
7616
7617 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
7618
7619         * socket-io.h:
7620         * socket-io.c: Added IPv6 support.
7621
7622 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
7623
7624         * class.c (mono_class_is_assignable_from): New function to implement
7625         the is_assignable_from logic. Used by mono_object_isinst, 
7626         Type::IsAssignableFrom () and the interpreter.
7627
7628         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
7629         Object, even interfaces.
7630         
7631         * object.c (mono_object_isinst): Implement in terms of 
7632         is_assignable_from.
7633
7634         * icall.c (ves_icall_type_is_assignable_from): New icall.
7635
7636 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
7637
7638         * domain.c (foreach_domain): fix compiler warning.
7639
7640 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
7641
7642         * image.c (load_metadata_ptrs): use g_strndup because strndup is
7643         not available on all plattforms
7644
7645 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
7646
7647         * image.h image.c: Store the metadata version string in MonoImage.
7648         * icall.c: New icall to retrieve the image version.
7649         * reflection.c (create_dynamic_image): Fill in the image version field
7650         * reflection.c (build_compressed_metadata): Use the image version
7651         from the image structure.
7652
7653 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7654
7655         * appdomain.c: modified comment.
7656         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
7657         That will be its last iteration when mono_gc_cleanup is called from
7658         mono_runtime_cleanup and before the domain is unloaded.
7659
7660         Fixes bug #45962.
7661
7662 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
7663
7664         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
7665         attributes.
7666
7667 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
7668
7669         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
7670         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
7671         Bernie Solomon <bernard@ugsolutions.com>.
7672
7673 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
7674
7675         * object.c, object.h: provide mono_object_new_fast() for faster
7676         allocation in some special cases.
7677
7678 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
7679
7680         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
7681         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
7682
7683 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
7684
7685         * threadpool.c: fix leaks.
7686
7687 2003-07-01  Dick Porter  <dick@ximian.com>
7688
7689         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
7690         using MonoGHashTables.  Fixes threadpool bug posted to list.
7691
7692 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
7693
7694         * image.h, image.c: added support to load an assembly from a byte array.
7695         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
7696         assembly bundle support.
7697
7698 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
7699
7700         * threadpool.c (mono_thread_pool_add): keep a reference to the
7701         AsyncResult to prevent GC
7702
7703 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
7704
7705         * class.c: leak fix.
7706
7707 2003-06-25  Dick Porter  <dick@ximian.com>
7708
7709         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
7710         for the async object, the WaitHandle object will close the handle.
7711         Fixes bug 45321.
7712
7713 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
7714
7715         * class.c: in mono_array_class_get (), lookup from the hash with the
7716         same type we insert: this works around a bug in
7717         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
7718         lluis. The real fix will have to wait for after the release.
7719
7720 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
7721
7722         * icall.c: fix memory leak when getting type members.
7723
7724 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
7725
7726         * reflection.c: added more pubtoken special cases.
7727
7728 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
7729
7730         * class.c: handle field offset correctly when class size
7731         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
7732
7733 2003-06-20  Martin Baulig  <martin@ximian.com>
7734
7735         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
7736         *image' field.
7737
7738 2003-06-20  Martin Baulig  <martin@ximian.com>
7739
7740         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
7741
7742 2003-06-20  Martin Baulig  <martin@ximian.com>
7743
7744         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
7745         just distinguish between variables in registers and variables at
7746         an offset relative to a register.
7747
7748 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7749
7750         * icall.c: #ifdef out latest changes until mcs is fixed.
7751
7752 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
7753
7754         * icall.c: return members in metadata order.
7755
7756 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
7757
7758         * icall.c: avoid infinite loop in GetTimeZoneData.
7759
7760 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
7761
7762         * icall.c: added Marshal.Prelink/All icalls.
7763
7764 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
7765
7766         * object.c, object.h: fix warnings and do some overflow checking
7767         when creating arrays.
7768
7769 2003-06-17  Dick Porter  <dick@ximian.com>
7770
7771         * file-io.h:
7772         * file-io.c: File attributes need to be tweaked slightly when
7773         passed from the managed to the w32 world.
7774
7775 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
7776         * profiler.h profiler-private.h profiler.c: Rework last patch
7777         based on suggestion by Paolo.
7778         
7779 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
7780
7781         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
7782         instruction level coverage data collection.
7783         * profiler.h profiler.c (: Added new callback function which can be
7784         used by the profiler to limit which functions should have coverage
7785         instrumentation.
7786         * profiler.c (mono_profiler_load): Call g_module_build_path to
7787         generate the file name of the profiler library.
7788
7789 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
7790
7791         * profiler.c, profiler.h, profiler-private.h: added basic block 
7792         coverage profiling API.
7793
7794 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
7795
7796         * reflection.c (mono_reflection_create_runtime_class): Add support
7797         for events in dynamically generated code.
7798
7799         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
7800         not allocated.
7801
7802 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
7803
7804         * icall.c: when getting timezone info, return reasonable values if we
7805         can't get the actual data.
7806
7807 2003-06-14  Dick Porter  <dick@ximian.com>
7808
7809         * threads.c (start_wrapper): Remove the reference to the thread
7810         object in the TLS data, so the thread object can be finalized.
7811         This won't be reached if the thread threw an uncaught exception,
7812         so those thread handles will stay referenced :-( (This is due to
7813         missing support for scanning thread-specific data in the Boehm GC
7814         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
7815
7816 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
7817
7818         * reflection.c: ensure streams and tables are first allocated with
7819         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
7820
7821 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
7822
7823         * icall.c: fixed GetElementType for byrefs (bug# 44792).
7824
7825 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
7826
7827         * reflection.c (mono_reflection_create_runtime_class): Add support for
7828         properties to dynamically created classes.
7829         * reflection.c: Fix a few places where non-MonoObjects were inserted
7830         into the tokens hashtable.
7831
7832 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
7833
7834         * object.c: some support to handle out of memory exceptions.
7835
7836 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
7837
7838         * marshal.c (mono_marshal_get_native_wrapper): support reference
7839         return types
7840
7841 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
7842
7843         * object.h, object.c: more portability stuff from Bernie Solomon.
7844         Unexport mono_object_allocate(). Added mono_object_unbox ().
7845         Set exitcode when an unhandled exception is thrown.
7846
7847 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
7848
7849         * marshal.c (mono_marshal_get_native_wrapper): use custom
7850         marshaler for return types.
7851
7852 2003-06-10  Dick Porter  <dick@ximian.com>
7853
7854         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
7855         ip_mreq is available
7856
7857 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
7858
7859         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
7860         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
7861         by Bernie Solomon <bernard@ugsolutions.com>.
7862
7863 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
7864
7865         * gc.c (mono_gc_init): Avoid error message on shutdown when
7866         GC_DONT_GC=1 is used.
7867
7868         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
7869         New icall to return the GUID of a module.
7870
7871 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
7872
7873         * class.c: ensure instance size always includes the parent's size
7874         even whem class size is set explicitly (fixes bug#44294).
7875
7876 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
7877
7878         * profiler.h, profiler.c: made the simple profiler thread-safe,
7879         get more accurate timing info. Allow the loading of an
7880         externally-developed profiler module.
7881
7882 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
7883
7884         * marshal.c (mono_marshal_get_native_wrapper): improved
7885         class/byref arguments.
7886         (mono_marshal_get_native_wrapper): better string marshaling support.
7887
7888 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
7889
7890         * class.c: ensure .pack and .size are handled correctly and
7891         simplified layout of static fields.
7892
7893 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
7894
7895         * appdomain.c
7896         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
7897
7898         * loader.c (mono_lookup_pinvoke_call): look for modules in the
7899         current directory (fix bug 44008)
7900
7901 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
7902
7903         * marshal.c (mono_marshal_get_native_wrapper): started support for
7904         custom marshalers.
7905         (mono_delegate_to_ftnptr): consider marshalling specifications
7906
7907 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
7908
7909         * reflection.c, reflection.h: emit custom marshal info.
7910
7911 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7912
7913         * object.c: free the GError.
7914         * icall.c: added CloseEvent_internal.
7915         * threads.[ch]:
7916         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
7917         call.
7918
7919 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
7920
7921         * loader.c (mono_method_get_signature): Add support for dynamic
7922         assemblies.
7923
7924 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
7925
7926         * reflection.c: fixed bug #43905.
7927
7928 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
7929
7930         * class.c, domain.c, icall.c, metadata.h, object.h: support for
7931         handling TypedReference and ArgIterator.
7932         * loader.c, loader.h: added function to get signature at call site.
7933
7934 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
7935
7936         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
7937         data readonly. Buglets and warning fixes. Some MethodSpec support.
7938
7939 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
7940
7941         * class.h, class.c, object.c: remove relative numbering support.
7942
7943 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
7944
7945         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
7946         free the string, until we get a chance to fix Gtk#
7947
7948 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7949
7950         * marshal.c: revert last patch.
7951
7952 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
7953
7954         * icall.c: updates for new mono_class_vtable() not calling
7955         the type constructor anymore.
7956
7957 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
7958
7959         * object.h, object.c: separate vtable creation from type
7960         initialization. Make running the .cctor thread safe.
7961
7962 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
7963
7964         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
7965
7966 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
7967
7968         * loader.c (mono_get_method): consider calling convention
7969
7970 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
7971
7972         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
7973         to return the invisible global type for a module.
7974
7975         * reflection.c (mono_image_build_metadata): Emit global fields too.
7976
7977 2003-05-20  Peter Williams  <peterw@ximian.com>
7978
7979         * loader.c (mono_lookup_internal_call): Add a few newlines.
7980
7981 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
7982
7983         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
7984         literal strings.
7985
7986         * appdomain.c (set_domain_search_path): Recalculate search path when
7987         AppDomainSetup.PrivateBinPath changes.
7988
7989         * object.c (mono_class_compute_gc_descriptor): It turns out some
7990         parts of the class libs (like System.Thread) holds pointers to
7991         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
7992         to treat native int a pointer type here.
7993         
7994 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
7995
7996         * appdomain.h, domain.c: add hashtable for jump target resolution.
7997
7998 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
7999
8000         * reflection.h reflection.c icall.c: Added new icalls 
8001         GetManifestResourceInfoInternal, GetModulesInternal and support
8002         infrastructure.
8003
8004 2003-05-16  Dick Porter  <dick@ximian.com>
8005
8006         * icall.c:
8007         * file-io.h:
8008         * file-io.c: Implement System.IO.MonoIO::GetTempPath
8009
8010 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
8011
8012         * object.c: mono_store_remote_field: little fix to previous patch.
8013
8014 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
8015
8016         * class.c: add constructors to array classes.
8017         * icall.c: special case array construction for InternalInvoke (),
8018
8019 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
8020
8021         * class.h class.c reflection.c object.c: Added support for field
8022         defaults in dynamically generated classes.
8023
8024 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
8025
8026         * reflection.c: properly encode charset for ddlimport.
8027
8028 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
8029
8030         * threads.c: allow compiling without GC.
8031
8032 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
8033
8034         * appdomain.h, object.c, object.h, threads.c, threads.h: added
8035         handling of thread static data.
8036
8037 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
8038
8039         * reflection.h, reflection.c: added mono_custom_attrs_free ().
8040
8041 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
8042
8043         * class.c (mono_array_class_get): always set the serializable flags
8044         (mono_array_class_get): always set the SEALED attribute for array types
8045
8046 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
8047
8048         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
8049         attributes (fix for bug 42021).
8050
8051 2003-05-12  Dick Porter  <dick@ximian.com>
8052
8053         * gc.c: Don't run finalizers when the finalizer thread is
8054         finishing up, because the default domain has already been
8055         destroyed.
8056
8057 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
8058
8059         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
8060         value is null, we should throw an exception.   This is slightly
8061         different than the other conventions used for the constructor.
8062
8063 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8064
8065         * socket-io.c: fixed windows build.
8066
8067 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8068
8069         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
8070
8071 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
8072
8073         * object.c (mono_string_new_wrapper): Compatibility fix for MS
8074         compilers.
8075
8076 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
8077
8078         * class.c (mono_class_layout_fields): Add experimental GC aware
8079         auto layout facility. Requires class library changes to work correctly.
8080
8081         (mono_class_setup_vtable): Avoid overriding explicit interface
8082         method implementations. Fixes iface3.exe test.
8083
8084         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
8085         object reference.
8086         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
8087         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
8088
8089         * metadata.h: Add new type classification macro which determines
8090         whenever the type holds an object reference.
8091
8092 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
8093
8094         * marshal.c (mono_marshal_get_native_wrapper): cleanups
8095
8096 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
8097
8098         * gc.c (finalizer_thread): Work around a GC bug.
8099
8100 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
8101
8102         * marshal.c (emit_struct_conv): allow unions
8103
8104         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
8105
8106 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
8107
8108         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
8109
8110 2003-05-06  Martin Baulig  <martin@ximian.com>
8111
8112         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
8113
8114 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8115
8116         * socket-io.c:
8117         (Select_internal): allow NULLs, don't create arrays if not needed.
8118         Coupled with Socket.cs changes.
8119
8120         * threadpool.c:
8121         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
8122         register a finalizer for it that will close the semaphore handle. This
8123         fixes the leak and make Lupus' test run with > 4080 loops.
8124
8125 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
8126
8127         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
8128         Jerome Laban (bug #42287)
8129
8130 2003-05-02  Martin Baulig  <martin@ximian.com>
8131
8132         * debug-mono-symfile.h
8133         (MonoSymbolFile): Moved declaration into mono-debug.h.
8134         (MonoDebugMethodJitInfo): Likewise.
8135         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
8136         argument.
8137         (_mono_debug_address_from_il_offset): Take a
8138         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
8139
8140         * mono-debug.h
8141         (MonoDebugDomainData): New struct.
8142         (mono_debug_get_domain_data): New function.
8143         (mono_debug_add_method): Take an additional `MonoDomain *'
8144         argument.
8145         (mono_debug_source_location_from_address): Likewise.
8146         (mono_debug_il_offset_from_address): Likewise.
8147         (mono_debug_address_from_il_offset): Likewise.
8148
8149 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
8150
8151         * reflection.c: one more check for null type in custom attrs.
8152
8153 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8154
8155         * reflection.c: avoid warning (comparison is always false due to limited
8156         range of data type).
8157
8158 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8159
8160         * icall.c: throw an exception in Type.GetField if the argument 'name'
8161         is NULL.
8162
8163 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
8164
8165         * reflection.c: fixed handling of enums in named arguments to custom
8166         attributes (bug #42123).
8167
8168 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
8169
8170         * reflection.c: use the right array element type and handle
8171         a null for a Type argument, too.
8172
8173 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
8174
8175         * reflection.c: handle arrays as arguments to custom attributes.
8176
8177 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
8178
8179         * reflection.c: handle a string value in a custom attr
8180         ctor that takes an object.
8181
8182 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
8183
8184         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
8185         (fix bug #42063)
8186
8187 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
8188
8189         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
8190
8191 2003-04-27  Martin Baulig  <martin@ximian.com>
8192
8193         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
8194         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
8195         MONO_DEBUGGER_EVENT_BREAKPOINT.
8196         (mono_breakpoint_trampoline_code): Removed.
8197         (mono_debugger_event_handler): The last argument is now a
8198         `guint32'.
8199         (mono_debugger_insert_breakpoint_full): Removed the
8200         `use_trampoline' argument.
8201         (mono_debugger_method_has_breakpoint): Likewise.
8202         (mono_debugger_trampoline_breakpoint_callback): Renamed to
8203         mono_debugger_breakpoint_callback(); take the method and
8204         breakpoint number as arguments.
8205
8206 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
8207
8208         * metadata.c: fix off by one when loading parameters attributes.
8209
8210 2003-04-24  Martin Baulig  <martin@ximian.com>
8211
8212         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
8213
8214 2003-04-24  Martin Baulig  <martin@ximian.com>
8215
8216         * mono-debug-debugger.c: Moved all code which interacts with the
8217         Mono Debugger here.
8218
8219         * debug-mono-symfile.c: This code now just deals with the symbol
8220         file itself, the debugger code is now in mono-debug-debugger.c.
8221
8222 2003-04-23  Martin Baulig  <martin@ximian.com>
8223
8224         * mono-debug.c (mono_debug_source_location_from_il_offset):
8225         New method; like mono_debug_source_location_from_address(), but
8226         takes an IL offset instead of a machine address.
8227
8228 2003-04-23  Martin Baulig  <martin@ximian.com>
8229
8230         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
8231         `line' field; this is now computed by the debugger.
8232
8233 2003-04-23  Martin Baulig  <martin@ximian.com>
8234
8235         * mono-debug.[ch]: New files.  This is the new debugging interface.
8236
8237         * mono-debug-debugger.[ch]: New files.  Moved all code which
8238         interacts with the Mono Debugger here.
8239
8240 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
8241
8242         * domain.c (mono_init): initialize mono_defaults.monitor_class
8243
8244 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
8245
8246         * reflection.c (method_encode_code): Add a spicy exception to help
8247         future compiler authors.
8248
8249 2003-04-21  Martin Baulig  <martin@ximian.com>
8250
8251         * icall.c
8252         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
8253         Make this work with relative pathnames; g_filename_to_uri() needs
8254         an absolute filename.
8255
8256 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
8257
8258         * icall.c: Track name changes in Object and ValueType.
8259
8260 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
8261
8262         * metadata.c (mono_type_stack_size): size should be a multiple of
8263         sizeof (gpointer)
8264
8265 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8266
8267         * gc.c:
8268         (internal_domain_finalize): moved into mono_domain_finalize. No need
8269         to create another thread because the finalizers will be run in the
8270         finalizer thread.
8271         
8272         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
8273         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
8274         to be run (MS does this too).
8275
8276 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
8277
8278         * object.c (mono_class_compute_gc_descriptor): Update comment.
8279
8280         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
8281
8282         * image.h: Add synchronized wrapper cache.
8283
8284         * image.c (do_mono_image_open): Initialize cache.
8285
8286         * reflection.c (create_dynamic_mono_image): Initialize cache.
8287
8288 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8289
8290         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
8291         ves_icall_System_Buffer_ByteLengthInternal.
8292
8293 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
8294
8295         * reflection.c: setup klass->nested_in earlier. Allow
8296         a dash in the assembly name.
8297
8298 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
8299
8300         * metadata.c (mono_type_to_unmanaged): dont access
8301         type->data.klass for MONO_TYPE_OBJECT
8302         (mono_type_to_unmanaged): consider System.Delegate class
8303
8304 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
8305
8306         * class.c: just setup supertypes in the proper place instead of
8307         initializing the full element class for arrays.
8308
8309 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
8310
8311         * class.c: ensure the element class of arrays is initialized.
8312         Setup the supertype info for array classes, too.
8313
8314 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
8315
8316         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
8317
8318 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8319
8320         * Makefile.am: re-added -m option when running cygpath. This way,
8321         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
8322         separator.
8323         * mono-config.c: same codepath for locating mono config file for WIN32
8324         and the rest.
8325         * assembly.c: if mono_assembly_setrootdir is called, don't override
8326         the value set.
8327
8328 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8329
8330         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
8331         MONO_ASSEMBLIES variable.
8332
8333 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
8334
8335         * icall.c: added Assembly::GetNamespaces() icall.
8336
8337 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8338
8339         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
8340
8341 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
8342
8343         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
8344         * object.c: fixed bug in the construction of vtable for proxies
8345
8346 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
8347
8348         * object.c (mono_array_new): Mark mono_array_new as an icall.
8349
8350 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8351
8352         * class.c: fixed test for public method when overriding interfaces.
8353         Closes bug #40970.
8354
8355 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
8356
8357         * appdomain.h, domain.c: added mono_domain_foreach() to
8358         be able to access the currently loaded appdomains.
8359         * object.c: make string interning work across sppdomains.
8360         Mark some functions for use as icalls.
8361
8362 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
8363
8364         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
8365
8366         * reflection.h reflection.c: Allocate long living data using 
8367         GC_MALLOC_ATOMIC so the collector does not need to scan it.
8368
8369         * reflection.c: Double the allocation size in streams instead of
8370         increasing it, to prevent unneccesary copying on large assemblies.
8371         
8372         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
8373         creation if the assembly does not have the Run flag set.
8374
8375 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
8376
8377         * class.h: avoid the C++ keywords in header files (Jerome Laban
8378         spotted and fixed this).
8379
8380 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8381
8382         * object.c:
8383         (mono_unhandled_exception): fill in the arguments for the
8384         UnhandledException event. Only trigger that event for the default
8385         domain (as MS does).
8386
8387 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
8388
8389         * object.c: Improve typed allocation stuff based on suggestions from
8390         Paolo. Also turn it on if the GC library supports it.
8391
8392 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
8393
8394         * object.c object.h class.h: Added experimental typed allocation
8395         facility using the interfaces in gc_gcj.h.
8396
8397         * os/gc_wrapper.h: Added new include files.
8398         
8399 2003-04-03  Martin Baulig  <martin@ximian.com>
8400
8401         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
8402         which is not yet enabled by default.
8403
8404         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
8405         functions.
8406         (mono_gc_lock, mono_gc_unlock): New static functions.
8407
8408         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
8409         functions; stop/start the world for the garbage collector.  This
8410         is using the windows API; we need to complete the SuspendThread()/
8411         ResumeThread() implementation in the io-layer to make this work on Unix.
8412         (mono_gc_push_all_stacks): New public function; tells the garbage
8413         collector about the stack pointers from all managed threads.
8414
8415 2003-04-03  Martin Baulig  <martin@ximian.com>
8416
8417         * object.h (MonoThread): Added `gpointer stack_ptr'.
8418
8419         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
8420
8421 2003-04-03  Martin Baulig  <martin@ximian.com>
8422
8423         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
8424
8425 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
8426
8427         * reflection.c (typebuilder_setup_fields): Initialize field.first and
8428         field.last.
8429
8430 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
8431
8432         * loader.c (mono_lookup_internal_call): Report the corlib that is
8433         out of sync.
8434
8435 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
8436
8437         * icall.c (ves_icall_type_GetTypeCode): fixed check for
8438         System.DBNull (it's class not valuetype).
8439
8440 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
8441
8442         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
8443         if the array method was already assigned a token (fixes bug#40646).
8444
8445 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
8446
8447         * reflection.c (mono_reflection_get_type): Attempt type resolve even
8448         if no assembly is given.
8449
8450 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
8451
8452         * metadata.h: Added the new tables.
8453
8454         * row-indexes.h: Added definitions for new tables.
8455
8456         * metadata.c: Add schemas for new tables, and add support for
8457         computing the sizes of them.
8458
8459         * class.c: Update for handling the new type cases.
8460
8461 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
8462
8463         * metadata.h (MONO_TYPE_IS_VOID): new macro
8464
8465 2003-03-31  Martin Baulig  <martin@ximian.com>
8466
8467         * threads.h (MonoThreadCallbacks): Added `thread_created'.
8468
8469         * threads.c (mono_thread_new_init): Call `thread_created' in the
8470         mono_thread_callbacks.
8471
8472 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
8473
8474         * loader.h: added marshalbyrefobject_class to mono_defaults
8475         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
8476         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
8477           generation of output parameters.
8478           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
8479         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
8480           contextbound and the target object belongs to the context of the caller.
8481         * object.h: added context and unwrapped_server variables in MonoRealProxy.
8482         * object.c: Implemented support for interfaces and abstract classes
8483           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
8484           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
8485
8486 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
8487
8488         * class.h class.c (mono_class_is_subclass_of): New function.
8489         
8490         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
8491         routines for most common case (calls from ArrayList::ToArray).
8492
8493         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
8494         routine so programs which call Environment::Exit() can be profiled.
8495
8496         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
8497         Added MONO_ARCH_SAVE_REGS.
8498
8499         * icall.c (ves_icall_type_is_subtype_of): Use new function.
8500
8501 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
8502
8503         * blob.h: Add a couple of new MonoType types definitions.
8504
8505         * tabledefs.h: Add a couple of new call convs.
8506
8507 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
8508
8509         * reflection.h (MonoReflectionDynamicAssembly): track changes in
8510         the layout of the class.
8511
8512         * reflection.c (alloc_table): double the size on overflow to avoid
8513         unnecessary copying.
8514
8515         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
8516         avoid filling out metadata tables and blobs. Also set mb->ilgen to
8517         null so it can be garbage collected.
8518         
8519 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
8520
8521         * reflection.c (mono_reflection_get_type): Return the resolved type
8522         only if it is in the assembly we searched.
8523
8524         * reflection.c (ensure_runtime_vtable): Initialize method slots.
8525
8526         * class.c (mono_class_setup_vtable): Set the slot of the overriding
8527         method.
8528
8529 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8530
8531         * appdomain.c:
8532         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
8533         the right one is 'file:///blah', but MS allows it.
8534         * assembly.c:
8535         (mono_assembly_open): allow 'file://blah'
8536
8537         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
8538
8539 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
8540
8541         * socket-io.c: fixes bug #40310.
8542
8543 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
8544
8545         * reflection.c (mono_reflection_parse_type): handle deeply nested
8546         types correctly.
8547
8548         * reflection.c (mono_image_create_token): Use unique token values
8549         since they will be put into a hash table.
8550
8551         * class.c (mono_class_setup_vtable): If a method occurs in more than
8552         one place in the vtable, and it gets overriden, then change the
8553         other occurances too.
8554
8555         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
8556         object as return type.
8557
8558 2003-03-22  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
8559
8560         * icall.c: Deleted "ToString" implementation for double and float
8561         because they are full implemented in managed code.
8562
8563 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
8564
8565         * reflection.c, reflection.h: implemented and exported functions
8566         to retrieve info about custom attributes.
8567
8568 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8569
8570         * appdomain.c: moved Uri handling to assembly.c
8571         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
8572         work when using a file Uri in *nix and windows.
8573
8574         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
8575         GetReferencedAssemblies.
8576
8577 2003-03-18  Dick Porter  <dick@ximian.com>
8578
8579         * icall.c: Rename a couple of internal calls
8580
8581         * threads.c: Set the thread state to Stopped when a thread exits.
8582         Fixes bug 39377.
8583
8584 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
8585
8586         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
8587         New icall.
8588
8589         * object.c (mono_class_vtable): fix warning.
8590
8591 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
8592
8593         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
8594
8595         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
8596         memory.
8597         (method_encode_clauses): Create exception info structures in the right
8598         order.
8599         (mono_reflection_setup_internal_class): Initialize supertypes field.
8600
8601         * class.c object.c: Handle interfaces which implement other interfaces 
8602         correctly.
8603
8604         * class.h class.c: Move the supertypes array initialization code into 
8605         a separate function so it can be used for dynamic types too. Also call
8606         it earlier, in mono_class_init(), since it can be used before the
8607         type is initialized.
8608
8609 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8610
8611         * Makefile.am:
8612         * assembly.c:
8613         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
8614
8615         * appdomain.c:
8616         * appdomain.h:
8617         * marshal.c:
8618         * object.c: remove warnings.
8619
8620 2003-03-13  Martin Baulig  <martin@ximian.com>
8621
8622         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
8623         (MonoDebugLexicalBlockEntry): New types.
8624
8625         * debug-mono-symfile.c
8626         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
8627
8628 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8629
8630         * process.c: ret can be any non-zero value accroding to MS doc.
8631
8632 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
8633
8634         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
8635         fixing a warning for a miss-used prototype, would have cause
8636         random memory corruption.
8637
8638 2003-03-07  Martin Baulig  <martin@ximian.com>
8639
8640         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
8641         getting really annoying ....
8642
8643 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
8644
8645         * reflection.c (fixup_method): added support for array methods.
8646
8647 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
8648
8649         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
8650         (pointed out by Michael Adams).
8651
8652 2003-03-04  Dick Porter  <dick@ximian.com>
8653
8654         * icall.c: Temporarily reverted the Double and Single ToString()
8655         change, because it broke nunit.
8656
8657 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
8658
8659         * object.h, threads.h: make include files compatible with C++
8660         (patch by Jerome Laban <jlaban@wanadoo.fr>).
8661
8662 2003-03-04  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
8663
8664         * icall.c: Erased ToString helper functions for Double and Single.
8665         Now, that implementations ar all in managed code (Double and Single
8666         Formatters).
8667
8668 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
8669
8670         * appdomain.c: Added method for initializing the default context of
8671         a domain. Added internal call for getting the default context.
8672         * appdomain.h: Added context variable in MonoDomain struct.
8673         * domain.c: mono_domain_set also sets the default context of the domain
8674         * icall.c: Mapped internal method InternalGetDefaultContext.
8675         * object.c: mono_object_get_virtual_method returns always a remoting
8676         wrapper if the object is a transparent proxy.
8677         mono_runtime_invoke_array: when creating an object by calling the
8678         constructor, if the created object is a proxy, then the constructor should
8679         be called using the a remoting wrapper.
8680
8681 2003-03-03  Dick Porter  <dick@ximian.com>
8682
8683         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
8684         variable so it compiles on solaris.  Problem spotted by
8685         Christopher Taylor <ct@cs.clemson.edu>
8686
8687 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8688
8689         * appdomain.c:
8690         (get_info_from_assembly_name): don't leak value.
8691
8692         * icall.c:
8693         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
8694         result.
8695
8696 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
8697
8698         * assembly.c: export mono_image_load_references ().
8699         * class.c: handle function pointers. mono_class_from_name() now
8700         supports nested type names directly.
8701
8702 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
8703
8704         * reflection.h reflection.c: Encode already created dynamic methods 
8705         and fields correctly as a DEF instead of a REF.
8706
8707         * reflection.c: Get rid of the force_ref argument to 
8708         mono_image_typedef_or_ref since it was wrong in the first place.
8709
8710         * string-icalls.c: add error checking to string constructors according
8711         to the MSDN docs.
8712
8713         * reflection.c: Emit types in the order their TypeBuilders were 
8714         created. Previously, a new table index was assigned to each type before
8715         the tables were emitted. This was wrong because the signature blob
8716         might already refer to a type by its original table index.
8717
8718 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
8719
8720         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
8721         change.
8722         
8723 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8724
8725         * Makefile.am: make assemblies dir have \ instead of / on windows.
8726
8727 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
8728
8729         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
8730         iterate over the NESTEDCLASS table using a linear search since the
8731         table is not guaranteed to be sorted by the secondary key.
8732
8733         * class.c (mono_class_create_from_typedef): fixed up call to
8734         mono_metadata_nesting_typedef.
8735         
8736 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
8737
8738         * marshal.c (mono_string_to_byvalstr): clear the memory as
8739         suggested by Jerome Laban <jlaban@wanadoo.fr>
8740
8741 2003-02-26  Dick Porter  <dick@ximian.com>
8742
8743         * process.c: Cope with padding in .rsrc blocks
8744
8745 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
8746
8747         * metadata.h: reverted the filter_len change, it breaks reflection
8748         
8749 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
8750
8751         * metadata.h: added a new field to store the filter_len
8752         
8753
8754 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
8755
8756         * reflection.c: handle custom attributes for types and members
8757         created with Reflection.Emit (bug#38422).
8758
8759 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
8760
8761         * reflection.c: define RTSpecialName automatically for constructors for
8762         compatibility with MS.NET.
8763
8764         * reflection.c (mono_reflection_create_runtime_class): initialize
8765         nested_in field of dynamically created classes.
8766
8767 2003-02-22  Martin Baulig  <martin@ximian.com>
8768
8769         * debug-mono-symfile.h: Incremented version number.
8770
8771 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
8772
8773         * object.h icall.c process.c: fix warnings.
8774
8775 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
8776
8777         * appdomain.h appdomain.c:
8778         (mono_domain_try_type_resolve): split the 
8779         name_or_tb argument into a name and a tb argument.
8780         (mono_domain_has_type_resolve): new function to check whenever the
8781         application has registered a TypeResolve event handler.
8782         
8783         * icall.c reflection.h reflection.c: move the type resolve logic into
8784         mono_reflection_get_type () so it will be invoked when 
8785         Assembly::GetType () is called.
8786
8787         * reflection.c:
8788         (mono_reflection_get_type): renamed to get_type_internal.
8789         (mono_reflection_get_type): fixed type name generation so it works 
8790         for nested types too.
8791         (mono_reflection_get_type): call has_type_resolve () to avoid the 
8792         costly type name generation if there is no resolve event handler.
8793
8794 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
8795
8796         * class.c, image.c: load exported types from file references.
8797
8798 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
8799
8800         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
8801           used to cache the managed methods used to create proxies and make 
8802           remote invocation of methods.
8803         * class.h: Added in MonoVTable a flag to indicate that a class needs 
8804           to be remotely created.
8805         * object.c: Modified the method mono_class_vtable(). It now initializes 
8806           the remote flag of the vtable. Modified mono_object_new_specific(), 
8807           so now it checks the remote flag.
8808         * icall.c: Added a couple of internal methods, one for enabling instance 
8809           creation interception for a type, and one for creating objects bypassing
8810           the remote check.
8811
8812 2003-02-18  Martin Baulig  <martin@ximian.com>
8813
8814         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
8815         New interncall to get a method's metadata token.
8816
8817         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
8818         New interncall for the debugger.
8819
8820 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
8821
8822         * class.c (mono_class_setup_vtable): allocate supertype array
8823
8824 2003-02-18  Martin Baulig  <martin@ximian.com>
8825
8826         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
8827
8828 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8829
8830         * reflection.c:
8831         (assembly_name_to_aname): jump over unknown properties (i've found
8832         something like: 'type, assembly, version=xxx, custom=null, public...',
8833         so now will ignore custom=null and still get the rest of the values).
8834
8835 2003-02-17  Dick Porter  <dick@ximian.com>
8836
8837         * threads.c: Have Thread.Start() wait for a semaphore to signal
8838         that the thread has set up all its local data.  This fixes bug
8839         34323, where Abort() raced the new thread's TLS data.
8840
8841         Also removes the handle_store() call from start_wrapper, because
8842         threads are now always created suspended and there is no longer a
8843         race between the parent and child threads to store the info.
8844
8845 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
8846
8847         * image.c: explain the #- heap issue in a message, hopefully
8848         avoiding FAQs on mono-list.
8849
8850 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8851
8852         * icall.c:
8853         (GetEntryAssembly): if the domain has not invoked
8854         AppDomain.ExecuteAssembly yet, return the assembly of the default
8855         AppDomain.
8856
8857 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
8858
8859         * class.c (mono_ldtoken): make it work in dynamic assemblies.
8860
8861 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
8862
8863         * metadata.c, reflection.c: simple speedup to type hash
8864         and equals code.
8865
8866 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
8867
8868         * image.c, image.h, class.c, assembly.c: move module loading
8869         to MonoImage. When loading metadata, consider alignemnet from
8870         the start of metadata, not from the metadata address in memory.
8871
8872 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
8873
8874         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
8875         AssemblyBuilder objects. Factored out custom attribute creation into
8876         a separate function.
8877         (create_custom_attr): new function to create custom attributes.
8878
8879 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
8880
8881         * Makefile.am: Got tired of typing the full pathname to pedump.
8882         Until there is another option, am installing this.
8883
8884 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
8885
8886         * class.c (class_compute_field_layout): always set field->parent 
8887         (mono_ldtoken): use mono_defaults.fieldhandle_class;
8888
8889 2003-02-11  Dick Porter  <dick@ximian.com>
8890
8891         * threads-types.h:
8892         * monitor.c: Rewrote Monitor, making lock much faster and
8893         Pulse/Wait work as specified.  Also uses much fewer handles, and only
8894         creates them as needed.
8895
8896         * exception.c: Added SynchronizationLockException
8897
8898         * threads.c: Deleted old Monitor implementation.  The new one is
8899         in a new file.
8900
8901 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
8902
8903         * class.c: handled TypedReference type code. Set the correct size for
8904         class data. Setup interface_offsets for interface classes, too.
8905
8906 2003-02-09  Martin Baulig  <martin@ximian.com>
8907
8908         * debug-mono-symfile.h: Reflect latest symbol writer changes.
8909
8910 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
8911
8912         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
8913         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
8914         * object.c: fixed mono_object_get_virtual_method () for interfaces.
8915         * verify.c: check for code that runs after the end of the method.
8916
8917 2003-02-08  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
8918
8919         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
8920         "System.Math::Round2".
8921         * sysmath.h: Added Floor, Round and Round2 definitions.
8922         * sysmath.c: Modified certain functions that were not 100% compliant
8923         with MS.NET (math precision) and added the implementation of Floor,
8924         Round and Round2.
8925
8926 2003-02-07  Martin Baulig  <martin@ximian.com>
8927
8928         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
8929
8930 2003-02-07  Martin Baulig  <martin@ximian.com>
8931
8932         * debug-mono-symfile.c: Reflected latest symwriter changes.
8933         (mono_debug_create_mono_symbol_file): Removed.
8934         (mono_debug_open_mono_symbol_file): Take an argument which
8935         specifies whether to create a dynamic symbol file.
8936
8937 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
8938
8939         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
8940
8941 2003-02-05  Martin Baulig  <martin@ximian.com>
8942
8943         * reflection.c (mono_image_build_metadata): Make this public,
8944         protect it against being called multiple times, don't create
8945         resources and don't build the compressed metadata here.
8946         (mono_image_create_pefile): Do this here.
8947
8948         * icall.c
8949         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
8950
8951 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8952
8953         * socket-io.c: fixed bug #36322.
8954
8955 2003-02-06  Piers Haken <piersh@friskit.com>
8956
8957         * appdomain.[ch]:
8958         * class.h:
8959         * debug-mono-symfile.c:
8960         * icall.c:
8961         * loader.c:
8962         * mono-config.c:
8963         * monosn.c:
8964         * reflection.c:
8965         * socket-io.c: warning cleanups
8966
8967 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
8968
8969         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
8970         function. works like remoting invoke, but does a check for the Proxy first.
8971
8972 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
8973
8974         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
8975
8976 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
8977
8978         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
8979         array of pointers.
8980         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
8981         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
8982
8983         * object.c (mono_store_remote_field_new): used by the new jit
8984         instead of mono_store_remote_field
8985         (mono_load_remote_field_new): used by the new jit
8986         instead of mono_load_remote_field
8987
8988 2003-02-05  Patrik Torstensson
8989
8990         * appdomain.c: changed unload to take the domain id instead
8991         of domain
8992         
8993         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
8994
8995
8996 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8997
8998         * appdomain.c: don't look for assemblies in ApplicationBase if
8999         PrivateBinPathProbe is set.
9000
9001 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9002
9003         * object.c: make the first argument in main_args contain the absolute
9004         path to the assembly. Fixes bug #37511.
9005
9006 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9007
9008         * icall.c: get correct UTC offset for countries not using daylight
9009         time saving. Fixes bug #30030.
9010
9011 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9012
9013         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
9014         and 1 are the family).
9015
9016 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
9017
9018         * icall.c (ves_icall_InternalExecute): removed wrong assertion
9019
9020         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
9021
9022 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
9023
9024         * reflection.c: added support for SignatureHelper tokens, which is
9025         needed by the Calli opcode.
9026
9027         * reflection.h: track changes to SignatureHelper class.
9028
9029         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
9030
9031 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9032
9033         * appdomain.c: fixed loading assemblies from PrivateBinPath.
9034
9035 2003-02-03  Patrik Torstensson
9036         * appdomain.[c|h], domain.c : 
9037          - Added support for getting a domain via domain id
9038          - Support for setting and getting domain from System.AppDomain 
9039            (used in cross appdomain channel)
9040          - Added support for get/set for a MonoAppContext on a thread 
9041            (Context class in System.Runtime.Remoting.Contexts),
9042          - Removed hack in Get/SetData and ExecuteAssembly.
9043         
9044         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
9045         the managed world to get control when a proxy is created.
9046
9047         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
9048         
9049 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
9050
9051         * icall.c
9052         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
9053         Populate the codebase field as well.
9054
9055 2003-02-02  Martin Baulig  <martin@ximian.com>
9056
9057         * debug-mono-symfile.c
9058         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
9059         (mono_debug_symfile_add_method): Allow interncalls.
9060
9061 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9062
9063         * icall.c: throw parse exception if strtod fails or the string is empty.
9064
9065 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
9066
9067         * marshal.c: handle object type separately from defined
9068         class types.
9069
9070 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
9071
9072         * marshal.c: handle NATIVE_LPSTR for strings when it's
9073         explicitly specified.
9074
9075 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
9076
9077         * reflection.c, reflection.h, icall.c: setup the reflection
9078         handle cache for ModuleBuilders and AssemblyBuilders.
9079
9080 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
9081
9082         * reflection.c (reflection_methodbuilder_to_mono_method): set
9083         pinvoke flag
9084
9085 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9086
9087         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
9088
9089 2003-01-29  Dick Porter  <dick@ximian.com>
9090
9091         * threads.c: No need for the fake_thread kludge now that Thread
9092         doesn't run a class constructor
9093         
9094 2003-01-29  Dick Porter  <dick@ximian.com>
9095
9096         * threads.c: Use g_direct_hash instead of the rather bogus
9097         g_int_hash
9098
9099 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
9100
9101         * marshal.c (mono_marshal_get_native_wrapper): add check for null
9102         (fix pinvoke12.exe)
9103         (mono_marshal_get_struct_to_ptr): generate valid IL code
9104         (mono_marshal_get_ptr_to_struct): generate valid IL code
9105         (*): correctly set sig->pinvoke, we need to memdup the signature
9106         to do that
9107
9108 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
9109
9110         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
9111         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
9112
9113 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
9114
9115         * profiler.c: provide more callers information.
9116
9117 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
9118
9119         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
9120
9121         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
9122
9123         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
9124
9125 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9126
9127         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
9128         exception instead of going into an infinite loop on dates which it 
9129         can't yet handle.
9130
9131         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
9132         out-of-range exception if needed.
9133
9134         * class.c (mono_class_setup_vtable): allow a virtual method to provide
9135         an implementation for an interface method and to override an inherited
9136         method at the same time. 
9137         Imagine a scenario when a virtual method is used to override a
9138         virtual abstract method in a parent class, and this same method 
9139         provides an implementation for an method inherited from an interface. 
9140         In this case, the interface resolution code will set im->slot, which 
9141         means that the virtual method override pass will skip this method 
9142         which means a pointer to the abstract method inherited from the parent
9143         will remain in the vtable of this non-abstract class.
9144
9145         * class.c: (mono_class_setup_vtable): continue search for a real 
9146         method if only an abstract method is found.     
9147
9148 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
9149
9150         * reflection.c: add size to encoding for ByValStr and ByValArray
9151         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
9152
9153 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9154
9155         * class.c (mono_class_setup_vtable): pass the override info as an
9156         argument.
9157
9158         * class.c (mono_class_setup_vtable): set the slot of overriding methods
9159         correctly.
9160         
9161         * reflection.c (ensure_runtime_vtable); add support for method 
9162         overrides.
9163         
9164 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9165
9166         * reflection.c (resolution_scope_from_image): Hack to work to work with
9167         dynamic assemblies.
9168
9169         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
9170         added a 'force_ref' argument to force this function to allways return 
9171         a TypeRef. This is needed by mono_image_get_memberref_token ().
9172         
9173 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9174
9175         * reflection.c (mono_image_get_type_info): interfaces really don't have
9176         a parent.
9177
9178         * reflection.c (mono_image_basic_init): fill out missing fields of
9179         image structure.
9180
9181         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
9182         dynamic assemblies. This is required so dynamic assemblies show up in
9183         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
9184         Type::GetType() etc. This is consistent with MS behaviour.
9185
9186         * image.c image.h reflection.c: add newly created classes to the name 
9187         cache so mono_class_get () will find them.      
9188
9189 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9190
9191         First part of changes to get IKVM.NET running under mono.
9192         
9193         * appdomain.h, appdomain.c: added new function 
9194         mono_domain_try_type_resolve() which will emit TypeResolve events. 
9195         This function will call AppDomain::DoTypeResolve to do the actual work.
9196
9197         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
9198         moved existing code dealing with dynamic tokens to a new function 
9199         called mono_reflection_lookup_dynamic_token (). This function will 
9200         raise TypeResolve events when appropriate. Since reflection.c is not 
9201         part of libmetadata, a new hook function called 
9202         mono_lookup_dynamic_token() is added to class.c which will call this.
9203
9204         * assembly.h assembly.c: make the invoke_load_hook function public,
9205         so it can be called for dynamic assemblies.
9206
9207         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
9208
9209         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
9210         type isn't found.
9211
9212         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
9213         MonoGHashTable, since it contains pointers to objects which the GC 
9214         needs to track.
9215
9216         * assembly.c (search_loaded): remove unused variable.
9217         
9218 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
9219
9220         * object.c: fixed issue exposed by gcc-generated IL programs
9221         that use RVA data for pointers.
9222
9223 2003-01-25  Martin Baulig  <martin@ximian.com>
9224
9225         * threads.c (start_wrapper): Moved the initialization of
9226         `start_func' above the mono_new_thread_init() call to which we
9227         pass it as argument.
9228
9229 2003-01-24  Martin Baulig  <martin@ximian.com>
9230
9231         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
9232         the MonoThread pointer.
9233
9234 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
9235
9236         * icall.c: Rename `PowImpl' to Pow.
9237
9238 2003-01-23  Dick Porter  <dick@ximian.com>
9239
9240         * threads.c (start_wrapper): Create a Thread object if needed, so
9241         the Main() thread can do the class initialisation in a subthread
9242         that has been set up to allow managed code execution.
9243
9244         Pass the thread ID instead of the MonoThread pointer to the thread
9245         start and attach callbacks.  This change is required, because the
9246         jit thread start callback must be called _before_ the Thread
9247         object can be created.
9248         
9249         (mono_thread_init): Removed much object creation code that is no
9250         longer needed.  No managed code is called from here now.
9251
9252         * object.c (mono_runtime_exec_managed_code): Create a subthread
9253         for Main, and call back to the runtime to use it.
9254         Set the exit code when Main exits.
9255
9256         * gc.c: Make sure domain finalisation happens in a subthread.
9257         Re-enable threaded GC, fixing bug 31333 (again).
9258
9259         * environment.c: System.Environment internall calls (so far just
9260         ExitCode is here, the others are still in icall.c)
9261
9262         * appdomain.c (mono_runtime_cleanup): All threads running managed
9263         code should have finished before mono_runtime_cleanup() is
9264         reached, so no need to clean up threads.
9265
9266 2003-01-22  Martin Baulig  <martin@ximian.com>
9267
9268         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
9269         `gpointer func' arguments.      
9270         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
9271         but added `MonoThread *thread' argument.
9272         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
9273
9274         * threads.c (mono_new_thread_init): Added `gpointer func' argument
9275         and pass it to the mono_thread_start_cb callback.
9276         (mono_install_thread_callbacks): New public function to install a
9277         set of callbacks which are set by the debugger.
9278         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
9279
9280 2003-01-22  Martin Baulig  <martin@ximian.com>
9281
9282         * Makefile.am: Install debug-mono-symfile.h.
9283
9284 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
9285
9286         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
9287
9288 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
9289
9290         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
9291         * class.c (mono_ptr_class_get): correctly set access levels of pointers
9292         (mono_array_class_get): correctly set access levels of arrays
9293
9294 2003-01-20      Patrik Torstensson
9295         * image.h (MonoAssemblyName): changed major, minor, build, revision
9296         from signed to unsigned.
9297
9298 2003-01-20  sean kasun <skasun@azstarnet.com>
9299
9300         * reflection.c (load_cattr_value): Now this handles
9301         MONO_TYPE_SZARRAY.  Fixes bug #35629
9302
9303 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
9304
9305         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
9306         integer value
9307
9308 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9309
9310         * decimal.c: fixed bug #26056.
9311
9312 2003-01-17  Martin Baulig  <martin@ximian.com>
9313
9314         * gc.c: Raise an ExecutionEngineException instead of using g_error().
9315
9316 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9317
9318         * exception.[ch]:
9319         (mono_get_exception_type_initialization): new function.
9320
9321         * object.c: throw a TypeInitializationException when an exception is
9322         thrown invoking the class constructor.
9323
9324 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9325
9326         * reflection.c: fixed attribute reading.
9327
9328 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9329
9330         * icall.c:
9331         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
9332         provided, look for the type in the calling assembly and then in
9333         mscorlib; if the assembly name is provided, only try that one.
9334
9335 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
9336
9337         * object.c: register the vtable before there is a chance it's
9338         queried again recursively.
9339
9340 2003-01-13  Duncan Mak  <duncan@ximian.com>
9341
9342         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
9343         gc-internal.h. 
9344         
9345 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
9346
9347         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
9348
9349 2003-01-11  Martin Baulig  <martin@ximian.com>
9350
9351         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
9352         this to 20 for the release.
9353
9354 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
9355
9356         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
9357
9358         * loader.c (mono_method_get_marshal_info): bug fix
9359
9360         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
9361         structures with explicit layout
9362
9363 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
9364
9365         * profiler.c: made the output more readable (and sorted). 
9366         Added caller information for the allocation profiler.
9367
9368 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
9369
9370         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
9371
9372 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9373
9374         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
9375         to get value types.
9376         
9377 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
9378
9379         * object.c, profiler.h, profiler.c, profiler-private.h:
9380         Added object allocation profiler.
9381
9382 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
9383
9384         * reflection.h, reflection.c: handle global methods.
9385         Compress blob entries.
9386
9387 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
9388
9389         * marshal.c: fix compilation.
9390
9391 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
9392
9393         * loader.c (mono_method_get_marshal_info): impl.
9394
9395         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
9396
9397 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9398
9399         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
9400         for reference types.
9401
9402 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
9403
9404         * loader.c: fixed off by one error in loaded parameter names.
9405
9406 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
9407
9408         * marshal.c (mono_marshal_get_icall_wrapper): like
9409         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
9410         instead of a MonoMethod.
9411
9412 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9413
9414         * decimal.c: fixed bug #36537.
9415
9416 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
9417
9418         * marshal.c: throw a missing method exception if a
9419         P/Invoke method is not found.
9420
9421 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
9422
9423         * icall.c: allow a null this for constructors.
9424
9425 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
9426
9427         * icall.c: raise the proper exceptions if the arguments to the
9428         internal Invoke are incorrect.
9429
9430 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
9431
9432         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
9433
9434 2003-01-03  Martin Baulig  <martin@ximian.com>
9435
9436         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
9437
9438 2002-12-31  Martin Baulig  <martin@ximian.com>
9439
9440         * debug-mono-symfile.c: Completely rewrote the type section.
9441         Instead of using individual malloc()ed fields, we use one big
9442         continuous memory area and offsets into this area.
9443         See the comments in the source code for details.
9444
9445 2002-12-30  Martin Baulig  <martin@ximian.com>
9446
9447         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
9448
9449 2002-12-30  Martin Baulig  <martin@ximian.com>
9450
9451         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
9452         line number table in this data blob instead of using an external
9453         pointer.
9454
9455 2002-12-28  Martin Baulig  <martin@ximian.com>
9456
9457         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
9458
9459 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
9460
9461         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
9462         as a boxed return type.
9463
9464 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
9465
9466         * appdomain.c
9467         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
9468         g_build_filename to properly get separators on the filename created.
9469
9470         * object.h: Small change, introduce MonoMarshalByRefObject to
9471         track the layout of that structure in the C# universe as we make
9472         changes there.
9473
9474 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
9475
9476         * object.c: removed assert to allow static fields on interfaces.
9477         * loader.c: a TypeSpec may be used for any type, not just arrays.
9478
9479 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
9480
9481         * class.c, class.h: added mono_class_array_element_size ().
9482         Ignore static methods in interfaces.
9483
9484 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9485
9486         * threads.c: fixed the build under cygwin.
9487
9488 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
9489
9490         * reflection.c: handle nullref constants. Allocate keys for
9491         reflection handles with the GC.
9492
9493 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
9494
9495         * threads.c, threads.h: added mono_thread_get_abort_signal()
9496         to get a suitable signal for thread abort.
9497
9498 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
9499
9500         * metadata.c: fix handling of ExportedType table.
9501
9502 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9503
9504         * icall.c: added WriteWindowsDebugString internal call.
9505
9506 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9507
9508         * reflection.h: added fields to match C# implementation.
9509
9510 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9511
9512         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
9513
9514 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
9515
9516         * gc.h, gc-internal.h: Rename header for GC internal calls to
9517         gc-internal.h from gc.h as to not clash with Boehm GC having its
9518         header installed as <gc.h> in outside include paths.
9519         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
9520         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
9521
9522 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9523
9524         * icall.c: assign minor, build and revision in FillName.
9525
9526 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
9527
9528         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
9529         Added support for running code generated by Reflection.Emit.
9530
9531 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9532
9533         * appdomain.c: check for NULL argument in LoadFrom.
9534
9535 2002-12-10  Dick Porter  <dick@ximian.com>
9536
9537         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
9538
9539 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9540
9541         * appdomain.c: fix buglet when building exe file name.  Handle full
9542         assembly name (needed after latest changes to AssemblyName).
9543         * image.c:
9544         (mono_image_close): free some hashtables.
9545
9546 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
9547
9548         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
9549         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
9550         on some systems (redhat 7.3) 
9551
9552 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
9553
9554         * threads.c: delete the critical section of a sync block,
9555         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
9556
9557 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
9558
9559         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
9560
9561 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9562
9563         * appdomain.[ch]: handle the assembly preload event to try loading the
9564         assemblies using the paths we have in the current domain.
9565
9566         * assembly.[ch]: created an assembly preload hook that is called to try
9567         loading the assembly by other means that the ones provided here.
9568
9569         * domain.c: initialize the domain search path.
9570
9571         From now on, assemblies (TODO: except corlib and System) are loaded
9572         according to these rules when using mono_assembly_load ():
9573
9574                 1. It tries to load the assembly from the ApplicationBase
9575                 of the current domain appending .dll and .exe (TODO: have to
9576                 try loading from name/name.dll and name/name.exe).
9577
9578                 2. It tries the search path specified in PrivateBinPath for the
9579                 current domain (if any).
9580
9581                 3. Previous behavior.
9582
9583 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
9584
9585         * icall.c: implemented GetInterfaceMap() related icall.
9586         * domain.c, loader.h: load MethodInfo in mono_defaults.
9587
9588 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
9589
9590         * gc.c: disable the finalizer thread for now, untill all the issues
9591         with it are resolved.
9592
9593 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
9594
9595         * string-icalls.c: handle embedded nulls in string ctor when the
9596         length is specified.
9597
9598 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
9599
9600         * class.c: look for explicit interface implementation in parent
9601         classes, too.
9602
9603 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
9604
9605         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
9606
9607 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
9608
9609         * gc.c: protect handles with a critical section.
9610
9611 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9612
9613         * icall.c:
9614         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
9615         parameters. If no assembly specified, try getting the type from all
9616         the assemblies in the current domain, else, load the assembly and get
9617         the type from it.
9618
9619 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9620
9621         * marshal.c: applied patch from Aleksey Demakov that fixes
9622         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
9623
9624 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9625
9626         * icall.c: fixed get_location.
9627
9628 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
9629
9630         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
9631         declarations to make it work with older gcc. 
9632
9633         * loader.c (mono_get_method): set signature->pinvoke for native calls
9634
9635 2002-11-20  Dick Porter  <dick@ximian.com>
9636
9637         * threads.c (mono_thread_init): Set the main thread's handle
9638
9639 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
9640
9641         * gc.c: allow compilation without GC support. Changed to match the
9642         mono coding style.
9643
9644 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
9645
9646         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
9647
9648 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
9649
9650         * reflection.c: set a public key token on the core assemblies.
9651
9652 2002-11-18  Dick Porter  <dick@ximian.com>
9653
9654         * threads.c: Split out some thread initialisation so that other
9655         files can set the start callback function.
9656
9657         * gc.c: Run finalisers in a separate thread, to avoid stack
9658         overflow.  Fixes bug 31333.
9659
9660         * appdomain.c: Set up GC finalisation thread.
9661
9662         * reflection.c: 
9663         * object.c: 
9664         * domain.c: Use gc.h macros for GC_malloc
9665         
9666 2002-11-15  Dick Porter  <dick@ximian.com>
9667
9668         * threadpool.c: 
9669         * threads.c:
9670         * appdomain.c: Removed mono_runtime_init_with_attach(),
9671         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
9672         merging the extra parameter with the existing function.  Removed
9673         unneeded code in mono_thread_attach().
9674
9675 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
9676
9677         * image.c (mono_image_loaded_by_guid): a method to get loaded
9678         images by guid. 
9679         (load_metadata_ptrs): we store the guid as string.
9680
9681 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
9682
9683         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
9684
9685         * metadata.c (mono_guid_to_string): imported method form Zoltan
9686         Varga (slightly modified)
9687
9688         * assembly.c (mono_assembly_open): load precompiled code
9689
9690         * loader.h (MonoMethod): we store the method token for use in the
9691         aot compiler. 
9692
9693 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9694
9695         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
9696         the hook function called when an assembly is loaded.
9697         
9698         * domain.c: Modified file.
9699         (mono_domain_assembly_load): removed hash table insertion of assemblies.
9700
9701         Fixes bug #33196.
9702
9703 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
9704
9705         * reflection.c: Map PEFileKind to the value expected by the WinNT
9706         image loader. 
9707
9708 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9709
9710         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
9711         Read until the buffer is filled completely.
9712
9713 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9714
9715         * icall.c: implemented MonoType.InternalGetEvent ().
9716
9717 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9718
9719         * appdomain.c: implemented InitAppDomainSetup. Delayed
9720         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
9721         the entry_assembly.
9722
9723         * assembly.c: base_dir is now an absolute path ending with
9724         G_DIR_SEPARATOR.
9725
9726         * icall.c: modified get_location according to the above changes.
9727
9728         * object.c: init AppDomain.SetupInformation for the default domain after
9729         we have the entry assembly.
9730
9731         * domain.c: when unloading a domain, setup = NULL.
9732
9733 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
9734
9735         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
9736
9737 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
9738
9739         * object.h, object.c: introduced mono_object_get_virtual_method ()
9740         to lookup the method invoked on an object when a callvirt is done on
9741         a method.
9742         * icall.c: make MethodInfo::Invoke() always do a virtual call.
9743
9744 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9745
9746         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
9747         current domain when loaded an assembly and failed to load it.
9748
9749         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
9750
9751 2002-10-31  Dick Porter  <dick@ximian.com>
9752
9753         * icall.c: 
9754         * file-io.h: 
9755         * file-io.c: Return the error status in a parameter, as the
9756         GetLastError() value has long since been blown away if we try and
9757         look it up in a subsequent internal call invocation.  Delete the
9758         GetLastError() internal call, because it's useless.
9759
9760 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
9761
9762         * class.[ch]: added cast_class to fix bug 29517
9763
9764 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
9765
9766         * marshal.c: create valid IL code in the filter clause:
9767         the new JIT is less forgiving:-)
9768
9769 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9770
9771         * icall.c: removed get_property internal call.
9772
9773 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
9774
9775         * appdomain.h domain.c: Added an ID to appdomains.
9776         
9777         * threads.c threads.h icall.c: Implement icall
9778         Thread:GetDomainID(), and remove unused icall 
9779         CurrentThreadDomain_internal.
9780
9781 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9782
9783         * icall.c: Don't recurse through the base types in GetConstructor.
9784         Fixes bug #32063. 
9785
9786 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
9787
9788         * mempool.h, mempool.c: added mono_mempool_empty() and
9789         mono_mempool_stats().
9790
9791 2002-10-23  Dick Porter  <dick@ximian.com>
9792
9793         * file-io.c: 
9794         * file-io.h: 
9795         * icall.c: Added MonoIO.GetFileType internal call
9796
9797 2002-10-17  Dick Porter  <dick@ximian.com>
9798
9799         * appdomain.c (mono_runtime_cleanup): Don't signal the async
9800         delegate semaphore before waiting for all threads to finish,
9801         because new threads can also call async delegates.  Fixes bug
9802         32004.
9803
9804         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
9805         of 3 seconds, in case another async job is queued.  (This part is
9806         needed because the bug fix reintroduced the 3s exit lag.)  This
9807         makes the mono_runtime_shutdown flag superfluous.
9808
9809 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
9810
9811         * reflection.c: include ehader size in method section headers.
9812         Really check for suplicated modules entries.
9813
9814 2002-10-17  Martin Baulig  <martin@gnome.org>
9815
9816         * debug-mono-symfile.c: Added back support for locals.
9817
9818 2002-10-14  Martin Baulig  <martin@gnome.org>
9819
9820         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
9821         MONO_TYPE_VOID.
9822
9823 2002-10-14  Martin Baulig  <martin@gnome.org>
9824
9825         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
9826         mono_class_get() instead of looking in the class cache. 
9827
9828 2002-10-13  Martin Baulig  <martin@gnome.org>
9829
9830         * debug-mono-symfile.c: Set version number to 28, include the
9831         signature in method names.
9832
9833 2002-10-13  Martin Baulig  <martin@gnome.org>
9834
9835         * debug-mono-symfile.h: Set version number to 27.
9836
9837 2002-10-11  Martin Baulig  <martin@gnome.org>
9838
9839         * gc.c: Don't register/unregister NULL pointers as disappearing links.
9840
9841 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
9842
9843         * metadata.c, metadata.h: added helper function to allocate signatures.
9844
9845 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9846
9847         * icall.c: added internal call to get the location of machine.config.
9848
9849 2002-10-08  Martin Baulig  <martin@gnome.org>
9850
9851         * debug-mono-symfile.c: Ignore classes with a pending init for the
9852         moment.
9853
9854 2002-10-03  Dick Porter  <dick@ximian.com>
9855
9856         * threads.c: Freebsd pthread_t is a pointer
9857
9858 2002-10-03  Dick Porter  <dick@ximian.com>
9859
9860         * socket-io.c: Implemented GetHostName_internal
9861
9862 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9863
9864         * mono-config.c:
9865         (mono_config_parse_file): don't leak the text.
9866
9867 2002-10-02  Martin Baulig  <martin@gnome.org>
9868
9869         * debug-mono-symfile.c: Added support for methods.
9870
9871 2002-10-01  Martin Baulig  <martin@gnome.org>
9872
9873         * debug-mono-symfile.c: Don't emit methods and line numbers for
9874         the dynamic symbol file, just write the type table.  We can easily
9875         have an external helper program which creates a symbol file for an
9876         IL file.        
9877
9878 2002-10-01  Dick Porter  <dick@ximian.com>
9879
9880         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
9881         Only add the handle to the cleanup array when we're about to
9882         launch the thread.  Bug 31425 deadlocked when the test was run on
9883         mono under w32.
9884
9885 2002-10-01  Martin Baulig  <martin@gnome.org>
9886
9887         * debug-mono-symfile.c: Added support for properties.
9888
9889 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
9890
9891         * reflection.c: unaligned store fix from Mark Crichton
9892         <crichton@gimp.org>.
9893
9894 2002-09-27  Martin Baulig  <martin@gnome.org>
9895
9896         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
9897         New interncall.
9898
9899 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
9900
9901         * assembly.h, assembly.c: use a sane API to hook into the assembly
9902         loading process instead of a useless special-purpouse hack
9903         (ngen needs a hook, too, for example).
9904
9905 2002-09-27  Dick Porter  <dick@ximian.com>
9906
9907         * threads.c (mono_thread_init): Call GetCurrentProcess() so
9908         io-layer can set up some process handle info.  Not needed on w32,
9909         but doesn't hurt either.
9910
9911         * process.c: Pass the program name in the second parameter to
9912         CreateProcess, so the path is searched.  Include the working
9913         directory. Implemented process name, process enumeration, and some
9914         process detail internal calls.
9915         
9916         * icall.c: Added internal calls for process lookup, and some
9917         process details
9918
9919 2002-09-26  Martin Baulig  <martin@gnome.org>
9920
9921         * assembly.c (mono_install_open_assembly_hook): New global
9922         function to install a function to be invoked each time a new
9923         assembly is loaded.
9924         (mono_assembly_open): Run this callback function if set.
9925
9926         * debug-mono-symfile.c: Put back line numbers for the dynamic
9927         symbol file and also record the .il file as source file.  This
9928         allows us to install the temporary symbol file as `file.dbg' just
9929         like a compiler-generated one.
9930
9931 2002-09-26  Nick Zigarovich <nick@chemlab.org>
9932
9933         * Corrected typo in gc.c (BOHEM vs BOEHM).
9934
9935 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9936
9937         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
9938         GetProperties. Also avoid calling g_slist_length in GetProperties and
9939         GetMethods.
9940
9941 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
9942
9943         * reflection.c: avoid unaligned stores (bug spotted by
9944         Mark Crichton  <crichton@gimp.org>).
9945
9946 2002-09-25  Martin Baulig  <martin@gnome.org>
9947
9948         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
9949         instead of guint64 for addresses and added prologue/epilogue info.
9950
9951 2002-09-25  Martin Baulig  <martin@gnome.org>
9952
9953         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
9954         store line number info.  For the dynamic symbol file, we only need
9955         to provide the JIT generated dynamic line number info for the dynamic
9956         symbol file.
9957
9958 2002-09-25  Martin Baulig  <martin@gnome.org>
9959
9960         * debug-mono-symfile.h: Incremented version number.
9961
9962 2002-09-24  Martin Baulig  <martin@gnome.org>
9963
9964         * class.c (mono_debugger_class_init_func): New global function
9965         pointer variable.
9966         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
9967         call it.
9968
9969         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
9970         function.  This is called via the mono_debugger_class_init_func
9971         hook to add all types to the dynamic type table.
9972         (ves_icall_MonoDebugger_GetType): New interncall to get a class
9973         from its metadata token.
9974
9975         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
9976         New interncall for the debugger.
9977
9978 2002-09-24  Nick Drochak <ndrochak@gol.com>
9979
9980         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
9981         before using it in case it is null.
9982         
9983 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9984
9985         * metadata.c: allow custom modifiers in local var signatures
9986         (bug spotted by Zoltan Varga).
9987
9988 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
9989
9990         * class.c: deal with the <Module> class that may have a NULL vtable.
9991         Eliminate warnings.
9992
9993 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
9994
9995         * image.c, image.h: more strong name helpers.
9996         * monosn.c: more work: convert pem keys to cryptoapi format.
9997
9998 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
9999
10000         * string-icalls.c: speedup IndexOf.
10001
10002 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
10003
10004         * icall.c: updates from Zoltan.2.Varga@nokia.com.
10005
10006 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
10007
10008         * icall.c: cleanup: use mono_object_domain ().
10009
10010 2002-09-23  Martin Baulig  <martin@gnome.org>
10011
10012         * debug-mono-symfile.c: Improved type support.
10013
10014 2002-09-22  Martin Baulig  <martin@gnome.org>
10015
10016         * debug-mono-symfile.c: Added support for reference types and strings.
10017
10018 2002-09-22  Martin Baulig  <martin@gnome.org>
10019
10020         * debug-mono-symfile.c: Started to work on the type table.
10021
10022 2002-09-21  Martin Baulig  <martin@gnome.org>
10023
10024         * debug-mono-symfile.c: Largely reworked the symbol table format.
10025         The symbol table is now incrementally updated each time a new
10026         method is added.  We're now also using our own magic and version
10027         so that you don't need to recompile all your classes if the
10028         dynamic table changes.
10029         (mono_debug_update_mono_symbol_file): Removed.
10030         (mono_debug_symfile_add_method): New function to add a method.
10031
10032 2002-09-21  Martin Baulig  <martin@gnome.org>
10033
10034         * icall.c
10035         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
10036         New interncall.
10037
10038         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
10039         New interncall to get a method from its metadata token.
10040
10041 2002-09-21  Martin Baulig  <martin@gnome.org>
10042
10043         * debug-mono-symfile.c: Create type table.
10044
10045 2002-09-20  Martin Baulig  <martin@gnome.org>
10046
10047         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
10048
10049 2002-09-20  Martin Baulig  <martin@gnome.org>
10050
10051         * debug-mono-symfile.c: Provide information about params and locals.
10052
10053 2002-09-20  Martin Baulig  <martin@gnome.org>
10054
10055         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
10056         New interncall.
10057
10058         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
10059         interncall to get a method from its metadata token.
10060
10061 2002-09-20  Martin Baulig  <martin@gnome.org>
10062
10063         * debug-mono-symfile.c: Added a few checks for method->header
10064         being non-NULL.  This should never happen, but for the moment
10065         let's use a g_warning() rather than a g_assert().
10066
10067 2002-09-19  Mark Crichton  <crichton@gimp.org>
10068
10069         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
10070         even if support for it isn't present.  Added an #ifdef to fix this.
10071
10072         * socket-io.c: Added checks back for Solaris support.
10073
10074 2002-09-19  Martin Baulig  <martin@gnome.org>
10075
10076         * debug-mono-symfile.c (read_string, write_string): Reflect latest
10077         changes in the symbol file format.
10078
10079 2002-09-18  Martin Baulig  <martin@gnome.org>
10080
10081         * debug-mono-symfile.c: Set version number to 21.
10082
10083 2002-09-18  Dick Porter  <dick@ximian.com>
10084
10085         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
10086         on netbsd.  Fixes bug 30051.
10087
10088 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10089
10090         * reflection.c:
10091         (set_version_from_string): little fix.
10092
10093 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
10094
10095         * monosn.c, Makefile.am: added strong name utility.
10096         * reflection.h, reflection.c: implemented delayed signing,
10097         locale, version and hash id assembly attributes.
10098
10099 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
10100
10101         * loader.c, metadata.c: load param attributes in signatures.
10102
10103 2002-09-16  Martin Baulig  <martin@gnome.org>
10104
10105         * debug-mono-symfile.c: Added string table with all method names.
10106
10107 2002-09-14  Martin Baulig  <martin@gnome.org>
10108
10109         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
10110         fast method lookup.
10111
10112 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
10113
10114         * reflection.c: record the public key token of referenced assemblies.
10115
10116 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
10117
10118         * image.c, image.h: added functions to get the strong name and the
10119         public key of an assembly.
10120         * pedump.c: use them.
10121
10122 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
10123
10124         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
10125
10126 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
10127
10128         * marshal.c (mono_marshal_get_managed_wrapper): Added
10129         MONO_TYPE_BOOLEAN 
10130
10131 2002-09-11  Martin Baulig  <martin@gnome.org>
10132
10133         * gc.c: Call GC_unregister_disappearing_link() on all links when
10134         finalizing them, this is necessary to aviod a crash in boehm's
10135         finalize handler.
10136
10137 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10138
10139         * gc.c: handle GetTarget for finalized objects spotted and fixed by
10140         nick@chemlab.org.
10141
10142 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
10143
10144         * icall.c: implemented MonoType::Module.
10145         * reflection.c, reflection.h: mono_module_get_object () from
10146         Tomi Pakarinen <tomi.pakarinen@welho.com>.
10147
10148 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
10149
10150         * icall.c: ignore overridden methods in GetMethods ().
10151         Fix for FieldInfo::SetValue().
10152         * object.c: handle float/double in runtime invoke.
10153
10154 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
10155
10156         * object.c: allow a constructor to be called again on an object.
10157
10158 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
10159
10160         * class.h, class.c: move field layout code to it's own function and
10161         export it. Get an interface id earlier. Move fields in MonoClass
10162         so they are more cache friendly and align the bitfields.
10163         * loader.c: temporary handle get_param_names() for a runtime method.
10164         * reflection.c, reflection.h: more code to handle runtime creation of
10165         types.
10166
10167 2002-09-09  Martin Baulig  <martin@gnome.org>
10168
10169         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
10170         signature with the pinvoke field being set for the actual call.
10171
10172 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10173
10174         * icall.c: removed some unused icalls. Start of map of glib charsets
10175         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
10176
10177 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
10178
10179         * debug-helpers.c: break infinite loop (found and fixed by
10180         Holger Arnold <harnold@gmx.de>).
10181
10182 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
10183
10184         * icall.c: target may be null in create_delegate.
10185
10186 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
10187
10188         * marshal.c: handle a boolean return type.
10189
10190 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
10191
10192         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
10193
10194 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
10195
10196         * gc.c: fix weakreferences.
10197
10198 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
10199
10200         * icall.c: added icall to get default codepage.
10201
10202 2002-09-03  Dick Porter  <dick@ximian.com>
10203
10204         * threads.h: 
10205         * threads.c: Use MonoThread instead of MonoObject where
10206         apropriate.
10207
10208         Store running thread objects in a hash table, so that we have all
10209         the info to hand when waiting for them to finish
10210         (means we don't need OpenThread() any more, so mingw builds should
10211         be fully functional again.)
10212
10213         * verify.c:
10214         * object.h: Added thread ID to MonoThread
10215
10216 2002-09-03  Martin Baulig  <martin@gnome.org>
10217
10218         * icall.c (System.Reflection.Assembly::get_location): New interncall.
10219
10220 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10221
10222         * icall.c: fixed leak in get_temp_path. Thanks lupus.
10223
10224 2002-09-03  Martin Baulig  <martin@gnome.org>
10225
10226         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
10227         argument to store the end address of the disassembled instruction.
10228
10229         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
10230         here from debug-symfile.h.
10231         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
10232         JIT into this struct.
10233         (MonoSymbolFile): Added `char *image_file' field.
10234         (MonoDebugGetMethodFunc): Removed.
10235         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
10236         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
10237         (mono_debug_find_method): New method.
10238
10239         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
10240         create a full symbol file.
10241         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
10242         and static symbol files.
10243         (mono_debug_find_method): The symbol file keeps an internal method hash,
10244         call this to get a MonoDebugMethodInfo from a MonoMethod.
10245
10246         * debug-symfile.[ch]: Removed.
10247
10248 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
10249
10250         * image.c (do_mono_image_open): Remove linker version check.
10251
10252 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
10253
10254         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
10255         wrappers for instance methods.
10256         
10257 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10258
10259         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
10260
10261 2002-08-28  Dick Porter  <dick@ximian.com>
10262
10263         * Makefile.am: Export HOST_CC for w32 builds
10264
10265 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
10266
10267         * file-io.c process.c: MonoString are null terminated, no
10268         need for mono_string_to_utf16() anymore.
10269
10270 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10271
10272         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
10273
10274 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
10275
10276         * icall.c, reflection.h: speedup System.MonoType.
10277
10278 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
10279
10280         * reflection.c: allow null as the value of a string argument in
10281         custom attributes constructors.
10282
10283 2002-08-27  Martin Baulig  <martin@gnome.org>
10284
10285         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
10286         `trampoline_address' field.
10287
10288 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
10289
10290         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
10291         check (fixes bug #29486) 
10292
10293 2002-08-27  Martin Baulig  <martin@gnome.org>
10294
10295         * debug-mono-symfile.c: Changed the file format in a way that allows us
10296         open it read-only and to use a specially malloced area for all the
10297         dynamic data.  We can now also generate a symbol file on-the-fly if we're
10298         debugging IL code and there is no MCS generated symbol file for it.
10299
10300 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
10301
10302         * object.c: added a define for a good string and array
10303         creation speedup (not enabled by default because we need to deal with
10304         the synch stuff).
10305
10306 2002-08-26  Martin Baulig  <martin@gnome.org>
10307
10308         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
10309         function to create a dynamic symbol file.  This is used by the
10310         debugger to create a symbol file for IL code on-the-fly.
10311
10312 2002-08-26  Martin Baulig  <martin@gnome.org>
10313
10314         * loader.c (mono_lookup_pinvoke_call): Include the error message
10315         from g_module_error() in the error message.
10316
10317 2002-08-24  Martin Baulig  <martin@gnome.org>
10318
10319         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
10320         function to update the symbol file.  The symbol file is mmap()ed
10321         writable, but private.  This allows us to install the symbol file
10322         together with the assembly.
10323
10324 2002-08-24  Martin Baulig  <martin@gnome.org>
10325
10326         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
10327         but they can read the new symbol file format which mcs is now creating.
10328
10329         * debug-symfile.c (mono_debug_find_source_location): Moved to
10330         debug-mono-symfile.c; this is now operating on the new symbol file.
10331
10332 2002-08-23  Martin Baulig  <martin@gnome.org>
10333
10334         * debug-helpers.c (mono_method_desc_from_method): New function to get
10335         a MonoMethodDesc from a MonoMethod.
10336
10337 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
10338
10339         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
10340         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
10341
10342 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
10343
10344         * string-icalls.[ch]: make helper methods static.
10345
10346 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10347
10348         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
10349         types to it and to SetValueInternal.
10350
10351         * object.c: Moved handle_enum label to its proper place. This was the
10352         f... bug! ;-)
10353
10354         This time i compiled mcs and gtk-sharp and they both work.
10355
10356 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10357
10358         * icall.c: reverted partially my previous patch until 
10359         object.c:set_value handles enums correcly.
10360
10361 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10362
10363         * icall.c:
10364         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
10365         (ves_icall_System_Environment_get_MachineName): removed warning when
10366         compiling under cygwin.
10367
10368 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
10369
10370         * object.c: fixed field_get_value() for reference types.
10371
10372 2002-08-22  Dick Porter  <dick@ximian.com>
10373
10374         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
10375         Don't free a buffer while it's still needed.  Patch from Jonathan
10376         Liger <Jonathan.liger@wanadoo.fr>
10377
10378 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
10379
10380         * icall.c (ves_icall_System_Environment_get_Platform): Add new
10381         internal call.
10382
10383 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
10384
10385         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
10386         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
10387
10388         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
10389         we call unmanaged code which throws exceptions.
10390
10391 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10392
10393         * appdomain.h: added per-domain entry_assembly.
10394         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
10395         arguments.
10396         * icall.c: Assembly::GetEntryAssembly icall.
10397         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
10398         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
10399
10400 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10401
10402         * appdomain.h, gc.c: added mono_domain_finalize ().
10403
10404 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10405
10406         * object.c:
10407         (mono_print_unhandled_exception): changed g_warning by g_printerr
10408         because g_log has a 1024 characters limit (yeah, i got a big stack
10409         trace). Don't print exception name, that should be in ToString 
10410         returned string.
10411
10412 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10413
10414         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
10415         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
10416
10417 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10418
10419         * object.c:
10420         (mono_print_unhandled_exception): after previous commit, i realized
10421         that MS calls ToString on the exception. I changed this function to
10422         do that. This way we get stack_trace for free.
10423
10424 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10425
10426         * object.c:
10427         (mono_print_unhandled_exception): invoke Message property instead of
10428         getting 'message' field from Exception. Don't allocate memory for
10429         'trace' and 'message' if not needed.
10430
10431 2002-08-18  Dick Porter  <dick@ximian.com>
10432
10433         * unicode.c: Fix asserts to match Encoder.cs checks
10434
10435 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10436
10437         * marshal.c: fix unaligned store issue and a few wrong
10438         opcode argument types.
10439
10440 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10441
10442         * icall.c: added GetUninitializedObjectInternal internal call.
10443
10444 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
10445
10446         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
10447         to the right domain.
10448
10449 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
10450
10451         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
10452
10453         * class.c (class_compute_field_layout): set blittable to false for Strings
10454
10455         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
10456
10457 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10458
10459         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
10460         first chunk of code to create types at runtime. Code to
10461         handle ReflectedType/DeclaringType. Make reflection handles
10462         domain specific.
10463
10464 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
10465
10466         * class.c: set correct name in arrays.
10467
10468 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
10469
10470         * appdomain.c (mono_domain_transfer_object): make it work with
10471         valuetypes. bug fixes.
10472
10473 2002-08-12  Dick Porter  <dick@ximian.com>
10474
10475         * object.h: Rename some parameters to avoid c++ keywords (Patch
10476         from Joseph Wenninger <kde@jowenn.at>)
10477
10478 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
10479
10480         * icall.c: added icall to implement Assembly.GetFile*.
10481
10482 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
10483
10484         * reflection.h, reflection.c: code to embed managed resources.
10485
10486 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
10487
10488         * class.c: move all the type size stuff into
10489         class_compute_field_layout().
10490
10491 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10492
10493         * class.c: ensure enums have always the correct instance size.
10494         * unicode.c: remove wrong assert.
10495
10496 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
10497
10498         * assembly.c: fix mem corruption issue.
10499         * image.h, image.c: added mono_image_get_resource () to access
10500         managed resources.
10501         * icall.c: implemented Assembly.EntryPoint property and some
10502         Managed Resources related internalcalls.
10503
10504
10505 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
10506
10507         * image.c, image.h: impemented mono_image_get_entry_point ().
10508         * appdomain.c: use mono_image_get_entry_point.
10509
10510 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10511
10512         * reflection.c: support the object type argument when loading
10513         custom attributes.
10514
10515 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
10516
10517         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
10518         String as return type.
10519
10520 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
10521
10522         * reflection.c: fix encoding of named args for custom attrs to match
10523         the ms implementation. Read them back when instantiating custom
10524         attributes.
10525
10526 2002-08-02  Radek Doulik  <rodo@ximian.com>
10527
10528         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
10529         by Dietmar as quick fix
10530         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
10531         16 as stack size, used on more places as quick fix before Dietmar
10532         will fix it properly
10533
10534 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
10535
10536         * object.h, object.c: added accessors for fields and properties.
10537
10538 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10539
10540         * class.c, class.h: made mono_class_get_field_from_name ()
10541         loop on parent types.
10542         Added mono_class_get_property_from_name ().
10543
10544 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
10545
10546         * class.c, class.h: move the code to setup the type vtable in its own
10547         function so that it can be reused also for types created at runtime.
10548         Eliminate the "class" identifier from the header file.
10549         * reflection.c: setup the vtable for enums so that we can create
10550         objects for use in SetConstant ().
10551
10552 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
10553
10554         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
10555         instead of the delegate itself as this pointer (bug #28383)
10556
10557 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
10558
10559         * marshal.c (mono_marshal_get_managed_wrapper): added return type
10560         conversions.
10561
10562 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10563
10564         * loader.c: don't set the pinvoke bit on icalls.
10565
10566 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
10567
10568         * debug-helpers.c (mono_method_full_name): only print a number to
10569         indicate wrapper type (so that the output is more readable in traces).
10570
10571 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
10572
10573         * class.c (mono_class_init): include method override patch from Paolo
10574
10575 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
10576
10577         * icall.c: fixed GetTypeCode().
10578
10579 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
10580
10581         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
10582         use real delegate invoke function to make it work with multicast
10583         delegates (fix bug# 28291).
10584
10585 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
10586
10587         * object.c: load constant strings.
10588
10589 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10590
10591         * reflection.c: no magic numbers.
10592         * tabledefs.h: security action enum.
10593
10594 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
10595
10596         * assembly.c: fix possible memory corruption.
10597
10598 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
10599
10600         * reflection.h, reflection.c: added support for linking resources.
10601         * verify.c: check we have an updated corlib.
10602
10603 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
10604
10605         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
10606         string arrays.
10607         (mono_marshal_string_array): null terminate unmanaged string arrays.
10608         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
10609
10610 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
10611
10612         * icall.c: Type.GetType () can now return also types from the
10613         calling assembly.
10614
10615 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
10616
10617         * loader.h, loader.c: stack walking support.
10618         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
10619         GetCallingAssembly.
10620
10621 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
10622
10623         * marshal.c: added optimisations for blittable types 
10624
10625         * class.c (mono_array_class_get): do not set blittable attribute on arrays
10626         (mono_class_setup_mono_type): set blittable attribute for single
10627         and double.
10628
10629         * marshal.c (mono_string_utf8_to_builder): impl.
10630         (mono_string_builder_to_utf8): impl.
10631         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
10632
10633 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
10634
10635         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
10636         (mono_marshal_get_managed_wrapper): impl. byref types
10637
10638 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10639
10640         * icall.c:
10641         (search_method): don't display debug message. 
10642
10643 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
10644
10645         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
10646
10647 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
10648
10649         * appdomain.c: set the missing filename when throwing exception.
10650
10651 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
10652
10653         * metadata.c (mono_type_size): code cleanup
10654         (mono_type_stack_size): removed some test code
10655
10656 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
10657
10658         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
10659         mono_get_exception_file_not_found now.
10660
10661         * exception.c (mono_exception_from_name_two_strings): New version
10662         that will call a constructor with two string arguments. 
10663         (mono_get_exception_file_not_found): New helper routine, used to
10664         report file-not-found errors.
10665
10666 2002-07-20  Dick Porter  <dick@ximian.com>
10667
10668         * process.h:
10669         * process.c: Pass file handles to CreateProcess
10670         
10671         * icall.c:
10672         * file-io.h:
10673         * file-io.c: Implemented CreatePipe
10674
10675 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
10676
10677         * metadata.c (mono_get_param_info): set alignment for value types
10678
10679 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10680
10681         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
10682         Constify mono_domain_assembly_open().
10683         * loader.c: handle null namespace in icalls.
10684
10685 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
10686
10687         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
10688         (emit_str_to_ptr_conv): marshal object as structs
10689
10690         * metadata.c (mono_type_to_unmanaged): marshal object as structs
10691
10692         * marshal.c (mono_marshal_get_runtime_invoke): support value types
10693
10694 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
10695
10696         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
10697         (mono_marshal_get_native_wrapper): we an now return value types
10698
10699 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10700
10701         * verify.c: more checks implemented.
10702
10703 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
10704
10705         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
10706         (fix bug #27695)
10707         (mono_marshal_get_native_wrapper): allow byref arguments
10708         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
10709         impl. PtrToStringXXX methods
10710         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
10711         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
10712         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
10713         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
10714         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
10715
10716 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10717
10718         * reflection.c: fix buglet in parsing an assembly name.
10719
10720 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
10721
10722         * marshal.c (emit_ptr_to_str_conv): first impl.
10723
10724 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
10725
10726         * object.c, class.h: cache the vtable in the class as suggested by
10727         vargaz@freemail.hu (Zoltan Varga).
10728
10729 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10730
10731         * class.h, loader.c: added mono_field_from_token().
10732         * verify.c: first cut of type checking code.
10733
10734 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
10735
10736         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
10737
10738 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
10739
10740         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
10741         (fix bug #27782)
10742         (mono_marshal_get_remoting_invoke): impl.
10743         (mono_delegate_begin_invoke): impl.
10744         (mono_mb_emit_save_args): impl.
10745         (mono_delegate_end_invoke): impl.
10746         (mono_marshal_get_delegate_begin_invoke):
10747         (mono_marshal_get_delegate_end_invoke):
10748         (mono_marshal_get_delegate_invoke): generate a special name for
10749         those methods (including the signature) and associate them whith
10750         the delegate class. 
10751
10752 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
10753
10754         * reflection.[ch]: 
10755         (mono_reflection_type_from_name): now it has a MonoImage parameter
10756         which is used as the default image to search the type in. If the image
10757         is NULL or getting the type from it fails, it defaults to corlib.
10758
10759         * icall.c: changed 1 call to mono_reflection_type_from_name to match
10760         new parameter.
10761
10762 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10763
10764         * reflection.c: update the parameter table index.
10765
10766 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
10767
10768         * domain.c: don't include the mark byte in the string hash.
10769
10770 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
10771
10772         * icall.cs: icall for Type.GetTypeCode ().
10773         * verify: a couple of fixes and disabled local initialization checks.
10774
10775 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
10776
10777         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
10778
10779         * debug-helpers.c (mono_method_full_name): print the type of the
10780         runtime wrapper
10781
10782         * metadata.c (mono_signature_hash): a hash function for signatures
10783         (mono_signature_hash): better hash algorithm
10784
10785         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
10786
10787         * debug-helpers.c (mono_method_full_name): this can now generate
10788         method names with signatures
10789
10790         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
10791         method dont have this pointers.
10792
10793 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
10794
10795         * reflection.c: fixup typebuilder tokens.
10796         * image.c: fix buglet.
10797         * marshal.h: remove whitespace.
10798         * metadata.h, metadata.c: reinstate code that was removed.
10799         * verify.c: handle catch directives and fix another couple of bugs.
10800
10801 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
10802
10803         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
10804         (mono_marshal_get_native_wrapper): make it comp. with the old code
10805         (mono_marshal_get_native_wrapper): support boolean
10806         (mono_marshal_get_managed_wrapper): support more types
10807
10808 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
10809
10810         * class.c (class_compute_field_layout): compute class->blittable attribute.
10811
10812 2002-07-09  Dick Porter  <dick@ximian.com>
10813
10814         * threads.c: Make the thread cleaning up cope with threads that
10815         call ExitThread()
10816
10817 2002-07-08  Radek Doulik  <rodo@ximian.com>
10818
10819         * reflection.c (method_encode_code): use non-translated values to
10820         compute finally_start, this fixes exception handling on ppc, yay!
10821
10822         * decimal.h (struct signscale): fix endianess
10823
10824 2002-07-07  Radek Doulik  <rodo@ximian.com>
10825
10826         * reflection.c: swap box_val and not val
10827
10828 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
10829
10830         * reflection.c, reflection.h: handle full assembly info in type name.
10831         Handle Type arguments when loading custom attributes.
10832         * icall.c: updated to use new mono_reflection_type_from_name () method.
10833
10834 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10835
10836         * loader.c:
10837         (method_from_memberref): also print assembly name when method not found.
10838
10839 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10840
10841         * icall.c:
10842         (ves_icall_TypeGetProperties): fixed bug #27473. 
10843
10844 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10845
10846         * reflection.c: display image name and token when cannot find the
10847         .ctor for an attribute.
10848
10849 2002-07-05  Martin Baulig  <martin@gnome.org>
10850
10851         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
10852
10853 2002-07-04  Dick Porter  <dick@ximian.com>
10854
10855         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
10856         compile on mingw.  This will cause mingw builds to not wait for
10857         subthreads to terminate after the main thread does.  I've lodged a
10858         bug with the mingw developers for them to wrap OpenThread().
10859
10860 2002-07-03  Dick Porter  <dick@ximian.com>
10861
10862         * threads.c: Store thread IDs instead of handles, because
10863         GetCurrentThread() returns a pseudohandle and therefore stores
10864         useless values.  mono_thread_cleanup() continues checking the
10865         array of threads until it is empty, to cope with subthreads
10866         spawning new threads after the main thread has finished.
10867
10868         * profiler.h:
10869         * profiler.c:
10870         * profiler-private.h: Pass the thread ID to thread profiler
10871         functions, instead of a handle
10872
10873 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
10874
10875         * verify.c: fixes to make it more usable.
10876         * pedump.c: added --verify code to verify IL code in an assembly.
10877
10878 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10879
10880         * reflection.c: turn errors into warnings to allow compiling corlib.
10881
10882 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
10883
10884         * reflection.c: add special cases to compile corlib.
10885
10886 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
10887
10888         * reflection.c: handle properties with only a set method.
10889
10890 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
10891
10892         * opcodes.h: add enum with opcodes in opval order.
10893
10894 2002-07-01  Dick Porter  <dick@ximian.com>
10895         
10896         * object.h:
10897         * object.c (mono_runtime_run_main): Removed unneeded argument
10898
10899 2002-06-28  Martin Baulig  <martin@gnome.org>
10900
10901         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
10902
10903 2002-06-27  Dick Porter  <dick@ximian.com>
10904
10905         * threads.c: Store the handle in both the parent thread and in the
10906         subthread, to minimise the time between starting a new thread and
10907         storing its ID.
10908
10909 2002-06-26  Dick Porter  <dick@ximian.com>
10910
10911         * appdomain.c (mono_runtime_cleanup): Close the socket library
10912         after all the threads have finished, not before
10913
10914 2002-06-26  Martin Baulig  <martin@gnome.org>
10915
10916         * debug-symfile.c (mono_debug_find_source_location): Added
10917         `guint32 *line_number' argument.  If it's not NULL, store the line number
10918         there and return the file name without the line number.
10919
10920 2002-06-25  Dick Porter  <dick@ximian.com>
10921
10922         * icall.c:
10923         * process.h:
10924         * process.c: Process forking and other support functions
10925
10926 2002-06-25  Dick Porter  <dick@ximian.com>
10927
10928         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
10929         things dont happen when the image is closed.
10930         (mono_image_lookup_resource): Walk the resource section looking
10931         for a particular entry
10932
10933         * cil-coff.h: PE resource section decoding
10934
10935 2002-06-25  Dick Porter  <dick@ximian.com>
10936         
10937         * assembly.h:
10938         * assembly.c: 
10939         (mono_assembly_foreach): Accessor functions to walk the list of
10940         loaded assemblies
10941         (mono_assembly_set_main):
10942         (mono_assembly_get_main): Process methods need to know which
10943         assembly is the "main" one
10944
10945         * object.c (mono_runtime_run_main): Record the main assembly
10946
10947         * debug-helpers.c: Fix typo
10948
10949 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
10950
10951         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
10952         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
10953
10954 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
10955
10956         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
10957
10958 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
10959
10960         * image.c (do_mono_image_open): Initialize reference count,
10961         otherwise we leak the MonoImage.
10962
10963 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
10964
10965         * reflection.c: small tweak to handle self-hosting.
10966
10967 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
10968
10969         * reflection.c: fix type name parse code.
10970
10971 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
10972
10973         * reflection.c: break out of the loop.
10974         * image.c: special case corlib.
10975
10976 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10977
10978         * reflection.c: add all the custom attrs at the end to ensure the
10979         ctors have been properly initialized when the attributes are defined
10980         in the current assembly.
10981
10982 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
10983
10984         * reflection.c: handle correctly multiple-nested types.
10985
10986 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
10987
10988         * row-indexes.h: fix typos.
10989         * reflection.c: adjust for typos and fix method_def_or_ref
10990         encoding in MethodImpl table.
10991
10992 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
10993
10994         * reflection.c: fix entry point patching (thanks Serge!).
10995
10996 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
10997
10998         * verify.c: add check for System.Exception
10999
11000 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
11001
11002         * image.c, class.c: minifix for code just c&p'ed.
11003         * reflection.c: warning fix.
11004         * object.h, loader.h, domain.c: load also StringBuilder.
11005
11006 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
11007
11008         * marshal.h, marshal.c: some support code to handle complex marshaling.
11009
11010 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11011
11012         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
11013         Better signatures with vtable error dump.
11014
11015 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
11016
11017         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
11018
11019 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
11020
11021         * icall.c (ves_icall_Type_GetField): impl.
11022
11023 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11024
11025         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
11026         to retrieve a marshal description blob for a field or param.
11027
11028 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
11029
11030         * reflection.h, reflection.c: change order of nested type emission
11031         to avoid table corruption. The NestedTypes table is sorted.
11032         * icall.c: change order of GetConstructor results to workaround mcs bug.
11033
11034 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
11035
11036         * reflection.h, reflection.c: handle field and param marshal
11037         information.
11038
11039 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
11040
11041         * icall.c, marshal.c marshal.h: more Marshal class implementation.
11042
11043 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
11044
11045         * reflection.c: fix call convention.
11046
11047 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
11048
11049         * reflection.h, reflection.c: mono_image_get_memberref_token()
11050         takes a type instead of a class, now. Added
11051         mono_image_get_array_token() to create tokens for the special
11052         multi-dim array methods.
11053
11054 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
11055
11056         * assembly.c: handle modules (no assembly table). Split
11057         loading references in its own function.
11058         * class.c: handle moduleref resolution scope.
11059         * image.c, image.h: cache module name in image.
11060
11061 2002-06-07  Martin Baulig  <martin@gnome.org>
11062
11063         * reflection.c (mono_image_get_type_info): Only add a class layout entry
11064         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
11065
11066 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
11067
11068         * icall.c: more signature fixes that used uint instead of int.
11069
11070 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11071
11072         * reflection.c: fixed signature of field refs.
11073
11074 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11075
11076         * class.c, reflection.c: handle typerefs of nested types
11077         (both on read and when writing files).
11078
11079 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
11080
11081         * icall.c: fix method signatures that tried to workaround the previous
11082         typo, d'oh!
11083
11084 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
11085
11086         * debug-helpers.c: fix typo.
11087
11088 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
11089
11090         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
11091         rewrote the PE/COFF writing code (our programs are understood by the
11092         ms runtime, now).
11093
11094 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
11095
11096         * gc.c, gc.h, icall.c: weakreference support.
11097
11098 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
11099
11100         * Makefile.am, mono-config.c: use $(sysconfdir).
11101
11102 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
11103
11104         * icall.c: changed default precision of Double.ToString() to 15.
11105         Fixed memory leak. Unified with Single.ToString.
11106
11107 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
11108
11109         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
11110
11111 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
11112
11113         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
11114         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
11115         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
11116         and myself.
11117
11118 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11119
11120         * debug-symfile.c, sysmath.c: yet more compilation fixes.
11121
11122 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11123
11124         * reflection.c, socket-io.c: more compilation fixes.
11125
11126 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
11127
11128         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
11129         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
11130         unicode.c: warning and compiler compatibility fixes.
11131
11132 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
11133
11134         * class.h, metadata.c: fixed warnings/compilation errors.
11135
11136 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
11137
11138         * Makefile.am, mono-config.c, mono-config.h: configuration file
11139         support routines.
11140         * loader.c, loader.h: make Dll mapping configurable at runtime in the
11141         config file. Export methods to insert and lookup mappings.
11142
11143 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
11144
11145         * reflection.c: handle types and boxed objects in custom attr
11146         constructors.
11147
11148 2002-05-30  Martin Baulig  <martin@gnome.org>
11149
11150         * debug-symfile.c
11151         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
11152
11153 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
11154
11155         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
11156         to lookup the implmap row for a P/Invoke method.
11157         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
11158         P/Invoke method from the runtime on an as needed basis.
11159
11160 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
11161
11162         * metadata.c (mono_metadata_parse_signature): impl.
11163
11164 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11165
11166         * class.c: handle .pack directive.
11167
11168 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
11169
11170         * object.c: initialize static fields with RVA data.
11171
11172 2002-05-25  Martin Baulig  <martin@gnome.org>
11173
11174         * debug-symfile.c
11175         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
11176
11177 2002-05-24  Martin Baulig  <martin@gnome.org>
11178
11179         * debug-symfile.c
11180         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
11181         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
11182         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
11183
11184 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
11185
11186         * object.c: special case string ctros in invoke.
11187         * gc.c: silly whitespace changes.
11188
11189 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
11190
11191         * threadpool.[ch]: impl. a threadpool that can
11192         be used by mint and mono.
11193
11194 2002-05-22  Martin Baulig  <martin@gnome.org>
11195
11196         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
11197         The first argument is now a `MonoReflectionModuleBuilder *', the return
11198         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
11199         `methods' field to get the method builder.  The `token' argument is the
11200         unfixed token.
11201
11202         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
11203         invalid characters instead of g_assert_not_reached()ing.  This seems
11204         to be the behaviour of mscorlib.
11205
11206 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
11207
11208         * object.c (mono_runtime_invoke_array): applied patch from Rachel
11209         Hestilow to fix bug #25104
11210
11211 2002-05-21  Martin Baulig  <martin@gnome.org>
11212
11213         * debug-symfile.c (mono_debug_find_source_location): New function.
11214         Looks up an IL offset in the line number table and returns the source
11215         location as a string.
11216
11217 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11218
11219         * icall.c:
11220         (mono_double_ToStringImpl): changed %f by %g until we have something
11221         better.
11222
11223 2002-05-21  Nick Drochak  <ndrochak@gol.com>
11224
11225         * icall.c : Use different name for Math.Pow's icall.  Needed to check
11226         parameters first in C#.
11227
11228 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11229
11230         * icall.c, reflection.h: added icall to get info about an event.
11231
11232 2002-05-20  Radek Doulik  <rodo@ximian.com>
11233
11234         * object.c (mono_value_box): don't use memcpy for boxing on BIG
11235         endian
11236         (mono_value_box): don't use memcpy for small sizes on
11237         architectures with unaligned access
11238
11239 2002-05-20  Martin Baulig  <martin@gnome.org>
11240
11241         * reflection.c (mono_reflection_setup_internal_class): Don't crash
11242         if `tb->parent == NULL'.
11243         (mono_reflection_create_internal_class): New function.  This is
11244         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
11245         for enum types.
11246
11247         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
11248         New interncall.
11249
11250 2002-05-19  Martin Baulig  <martin@gnome.org>
11251
11252         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
11253         argument to get the length, don't default to the array length.
11254
11255 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
11256
11257         * assembly.c (mono_assembly_setrootdir): New function used to
11258         override the MONO_ASSEMBLIES directory.
11259
11260 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
11261
11262         * icall.c: ValueType_GetHashCode() initialize local var.
11263
11264 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
11265
11266         * reflection.c: sort custom attributes table.
11267
11268 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
11269
11270         * reflection.c: support named args in custom attributes (write support).
11271
11272 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
11273
11274         * reflection.c: fix finally position calculation.
11275
11276 2002-05-15  Radek Doulik  <rodo@ximian.com>
11277
11278         * reflection.c: fixed endianess at many places
11279
11280         * icall.c (ves_icall_InitializeArray): comment out debug msg
11281
11282 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
11283
11284         * object.c (mono_unhandled_exception): new function to handle
11285         unhandled exceptions.
11286         (mono_unhandled_exception): call the UnhandledException event.
11287         (mono_runtime_delegate_invoke): impl.
11288
11289 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
11290
11291         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
11292         returns the RVA, not the direct pointer to the data. Handle the case
11293         when the class size is fixed.
11294
11295 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
11296
11297         * reflection.c: fix some endianess issues.
11298
11299 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
11300
11301         * object.c (mono_runtime_invoke): is now able to catch exceptions.
11302
11303         * threads.c (mono_thread_init): added a callback which is invoked
11304         at thread start.
11305
11306 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
11307         
11308         * icall.c: make GetHashCode return non-negative values.
11309
11310 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
11311
11312         * object.c, icall.c, gc.c: revert to address-based hashcode.
11313
11314 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
11315
11316         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
11317
11318 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
11319
11320         * icall.c, class.c: special case <Module>.
11321
11322 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
11323
11324         * icall.c: fix bug in GetNow().
11325
11326 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
11327
11328         * object.c (mono_runtime_class_init): make sure that we call all
11329         static class constructors.
11330
11331 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
11332
11333         * reflection.c: sort methodsemantics table.
11334
11335 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
11336
11337         * reflection.h, reflection.c: honour init locals setting.
11338
11339 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
11340
11341         * icall.c: copied Double ToStringImpl for Single ToStringImpl
11342
11343 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
11344
11345         * reflection.c: support ContructorBuilders in attribute blob creation.
11346
11347 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11348
11349         * reflection.c: some changes to build a binary that can be run
11350         directly in windows.
11351
11352 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
11353
11354         * loader.c: print a big message when an icall can't be found.
11355
11356 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11357
11358         * string-icalls.c: fix bug 24248.
11359
11360 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
11361
11362         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
11363         icall.c, reflection.h: separate assembly loading by pathname and by
11364         assembly name. Use the MONO_PATH env var to search for assemblies.
11365
11366 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
11367
11368         * assembly.c, image.h: add some support for assemblies
11369         with multiple modules.
11370         * class.c, class.h: export mono_class_from_typeref().
11371         * loader.c: remove duplicated code and use mono_class_from_typeref(),
11372         instead.
11373
11374 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
11375
11376         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
11377         documentation says (the ECMA one is correct).
11378
11379 2002-05-02  Dick Porter  <dick@ximian.com>
11380
11381         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
11382         Don't name the synchronisation mutex.
11383
11384 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
11385
11386         * rand.c
11387         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
11388         Make the prototypes match.
11389         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
11390         Same.
11391
11392         * icall.c
11393         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
11394         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
11395         all systems have tm.tm_zone, so use strftime() with %Z to print
11396         the timezone abreviation into a temp string.
11397
11398         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
11399         rather than mono_array_addr() on a MonoString on Big Endian
11400         machines.
11401
11402 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
11403
11404         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
11405         fix bug 24041
11406
11407 2002-04-30  Dick Porter  <dick@ximian.com>
11408
11409         * socket-io.c: Cope with SOCKET being an integer rather than a
11410         pointer now.
11411
11412         * threads.c: Added Thread_free_internal, to deal with thread
11413         handle cleanup.  Moved calls to handle_store() and handle_remove()
11414         to start_wrapper(), so each can only be called once.  Allocate
11415         synchronisation blocks with GC_malloc(), and use GC finalisation
11416         to close the handles.
11417
11418         * icall.c: added System.Threading.Thread::Thread_free_internal
11419
11420 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
11421
11422         * icall.c: support Environment.Exit, CommandLineArgs().
11423
11424 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
11425
11426         * object.c, object.h: added mono_runtime_run_main () and
11427         mono_runtime_get_main_args () for use in System.Environment.
11428
11429 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
11430
11431         * gc.c: fix thinko, enable actual finalization since the jit is now
11432         fixed.
11433
11434 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11435
11436         * gc.c, object.c: take into account that an object may be offset wrt the address
11437         returned by GC_malloc().
11438
11439 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
11440
11441         * image.c: handle files without entries in the assembly table (modules).
11442
11443 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
11444
11445         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
11446         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
11447         allowed to be null when it's System.Object class setup.
11448
11449 2002-04-27  Martin Baulig  <martin@gnome.org>
11450
11451         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
11452         if `tb->parent == NULL' rather than crashing.
11453
11454 2002-04-28  Nick Drochak  <ndrochak@gol.com>
11455
11456         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
11457         calling acos() where asin() should have been called.
11458
11459 2002-04-26  Martin Baulig  <martin@gnome.org>
11460
11461         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
11462         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
11463         there's a subdirectory called `System', but we don't want to read that
11464         subdirectory as an assembly.
11465
11466 2002-04-25  Martin Baulig  <martin@gnome.org>
11467
11468         * debug-symfile.c: Reflect latest MonoString changes.
11469
11470 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
11471
11472         * rand.c, rand.h: instance method icalls need to have an explicit
11473         this pointer as first argument in the C implementation.
11474
11475 2002-04-25  Nick Drochak <ndrochak@gol.com>
11476
11477         * icall.c: Fix typo in map for GetNonZeroBytes
11478
11479 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11480
11481         * string-icalls.c : String does now passes unit tests without any 
11482         errors, the following changes has been made:
11483         
11484         Implemented replace methods.
11485         Renaming of methods to (try) follow the standard.
11486         Fixed compare ordinal
11487         Made all memory allocated directly to function instead of via icall function.
11488         Small performance fix in is_in_array function
11489                         
11490  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
11491
11492         c (mono_string_Internal_ctor_charp_int_int):
11493         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
11494         sindex < 0, throw ArgumentOutOfRangeException instead of
11495         ArgumentNullException.
11496
11497         Added new check for length == 0, however
11498         I need to make it return String.Empty from the C code.
11499         
11500         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
11501         that calculate the length for us here.
11502         
11503         (mono_string_Internal_ctor_sbytep_int_int): Replaced
11504         mono_string_new_utf16 with mono_string_new, since value is utf8.
11505
11506 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11507
11508         * object.c: register the object for finalization if needed.
11509         Allocate one more char in the string for the terminating 0 char.
11510
11511 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
11512
11513         * class.c, class.h, image.c: check if a type implemenst a destructor.
11514         Use the proper key for array class lookups.
11515         * icall.c: register the icalls in the System.GC class.
11516         * gc.c, gc.h: GC-related functions and icalls.
11517
11518 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11519
11520         * icall.c:
11521         * socket-io.c:
11522         * unicode.c: free some strings gotten from mono_string_to_utf8 and
11523         changed a couple of free () by g_free ().
11524
11525         * decimal.c: one-liner in the comments for decimal2string ().
11526
11527 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11528
11529         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
11530
11531 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11532
11533         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
11534         * object.c (mono_runtime_invoke_array) : handle null in params
11535
11536 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11537
11538         * string-icalls.c: fixed bug in split (one off bug)
11539
11540 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11541
11542         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
11543         * icalls.c: added String::Equals as internal method
11544
11545 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11546
11547         * threads.c: fixed bug in the double interlocked functions
11548
11549 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
11550
11551         * threads.c: implemented all of the new interlocked icalls.
11552         * string-icalls.c: fix a bug in insert.
11553         * icalls.c: added the icalls for interlocked, removed old string functions.
11554         
11555 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
11556
11557         * loader.c: fix off-by-one error when reading argument names.
11558
11559 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11560
11561         * profiler.c: win32 counter implementation (untested).
11562         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
11563         (the latter needs testing and more complete impl. from win32 folks).
11564
11565 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
11566
11567         * object.c: mono_array_new_full workaround mono_array_class_get
11568         problem.
11569
11570 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11571
11572         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
11573         * object.h (mono_string_chars): Changed casting type.
11574
11575 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11576
11577         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
11578                            method signatures to use gunichar2 instead of gint16.
11579
11580 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
11581
11582         * object.h, object.c: domain-specific versions of mono_object_new and
11583         mono_array_new.
11584
11585 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
11586
11587         * object.c: changed String layout
11588
11589         * string-icalls.c (mono_string_Internal_ctor_chara): added
11590         internal string constructors.
11591
11592 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
11593
11594         * threads.c: pass 'this' to the thread start routine.
11595
11596 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11597
11598         * string-icalls.c: fix IndexOf and LastIndexOf. Now
11599         InternalCompareStr don't call twice mono_string_cmp_char for the last
11600         character. Improved performance in mono_string_cmp_char.
11601
11602 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
11603
11604         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
11605         code into its own library: libmonoruntime.
11606
11607 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
11608
11609         * object.h, object.c: changed array format so that szarrays do not
11610         require a bounds structure.
11611         * icall.c, appdomain.c: support for new szarray format.
11612
11613 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
11614
11615         * metadata.c: compare also the retuns type when comparing signatures:
11616         we didn't do this as an optimization since really overloaded methods
11617         must differ also in the arguments, but this doesn't work with
11618         low-level IL code (or when using explicit conversion operators: see
11619         bug#23498 for an example).
11620
11621 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
11622
11623         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
11624
11625 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
11626
11627         * icall.c: make MonoType::GetElementType its own icall.
11628
11629 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
11630
11631         * icall.c: remove MonoMethod_get_Name().
11632         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
11633         object.
11634
11635 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11636
11637         * string-icalls.c: optimized a few methods.
11638
11639 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11640
11641         * icall.c: added all new string internal calls
11642         * string-icalls.c: added, new string internal call implementation.
11643         * object.c: added mono_string_new_size for allocating a string a size
11644
11645 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
11646
11647         * object.c (mono_object_isinst): use the same code as in the
11648         optimized x86 version.
11649
11650 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11651
11652         * profiler.c: TSC-based timer code (faster and more accurate).
11653         Not hooked up in configure, yet (set USE_X86TSC to 1).
11654
11655 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
11656
11657         * profiler.c, profiler.h: track time spent compiling methods.
11658         * threads.c: track thread creation/destruction.
11659
11660 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
11661
11662         * profiler.c, profiler.h, profiler-private.h: profiling interface
11663         and sample implementation. Moved here so that it can be used also by
11664         the jit.
11665
11666 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
11667
11668         * reflection.c, reflection.h: keep types and other handles separate in
11669         the hash tables for referred tokens. Add guid for modules.
11670
11671 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
11672
11673         * assembly.c: fix bugs found with valgrind.
11674         * metadata.h, metadata.c: added mono_metadata_guid_heap().
11675
11676 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
11677
11678         * threads: added icall support for getting current domain for
11679                    the thread.
11680  
11681 2002-04-13  Martin Baulig  <martin@gnome.org>
11682
11683         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
11684         (MonoDebugVarInfo): Added `index' field for register based addresses.
11685         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
11686         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
11687         `MonoDebugVarInfo *params' and `guint32 this_offset' with
11688         `MonoDebugVarInfo *this_var'.
11689
11690         * debug-symfile.c (relocate_variable): New static function to write
11691         a location description for a local variable or method parameter.
11692
11693 2002-04-12  Martin Baulig  <martin@gnome.org>
11694
11695         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
11696         stack offset and begin/end scope address of a local variable.
11697         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
11698         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
11699         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
11700
11701         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
11702         Added new relocation types for start/end scope of a local variable.
11703
11704 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11705
11706         * object.h: add mono_object_domain() macro.
11707         * reflection.c: handle typespecs.
11708         * icall.c: MonoMethod::get_Name() implementation.
11709
11710 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11711
11712         * icall.c: String::GetHashCode() icall implementation.
11713
11714 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11715
11716         * icall.c: String::IndexOfAny icall.
11717         * object.c, object.h: make array->max_length more useful.
11718         Intrduced mono_object_class() and mono_string_length() macros.
11719
11720 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11721
11722         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
11723         instead of g_unichar_isdigit.
11724
11725 2002-04-11  Nick Drochak  <ndrochak@gol.com>
11726
11727         * icall.c: Implement a simple Double.ToString().
11728
11729 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
11730
11731         * appdomain.h: only io-layer.h is supposed to be included.
11732         * icall.c: explicitly import environ. Fix warning.
11733
11734 2002-04-10  Nick Drochak  <ndrochak@gol.com>
11735
11736         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
11737                 return true even if it's not Daylight Savings time.
11738                 Only return false for the case where the function isn't
11739                 implemented for a plaform (read Windows).
11740
11741 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11742
11743         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
11744         data with a mutex.
11745
11746 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
11747
11748         * mempool.c (mono_mempool_alloc): only use g_malloc when
11749         absolutely necessary.
11750
11751 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
11752
11753         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
11754
11755         * class.c (mono_class_vtable): use domain mempool to allocate vtable
11756         (mono_class_proxy_vtable): use domain mempool
11757
11758 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
11759
11760         * appdomain.h, appdomain.c: split initialization that requires the
11761         execution engine support into mono_runtime_init().
11762
11763 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
11764
11765         * class.c (mono_class_init): don't include vtable inside MonoClass
11766         to save some memory, gather some statistics.
11767         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
11768
11769 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
11770
11771         * icall.c: internalcall implementation for ValueType.Equals().
11772
11773 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
11774
11775         * object.c (mono_message_init): moved 
11776         (mono_runtime_exec_main): new arch. independent impl.
11777         (mono_runtime_invoke_array): new method - like
11778         mono_runtime_invoke, but you can pass an array of objects.
11779         (mono_remoting_invoke): new arch. independent impl.
11780         (mono_message_invoke): new arch. independent impl.
11781         (mono_runtime_class_init): new arch. independent impl.
11782         (mono_runtime_object_init): new arch. independent impl.
11783
11784 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11785
11786         * metadata.c, object.c, reflection.c: documented the exported
11787         functions.
11788
11789 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
11790
11791         * icall.c: simpler code to pass the assembly builder data to corlib.
11792         Implement GetNestedTypes() internalcall.
11793
11794 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
11795
11796         * class.c: warn if a type can't be loaded.
11797
11798 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
11799
11800         * image.h: typedef MonoImageOpenStatus
11801         * types.h: removed unused file
11802         
11803 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
11804
11805         * icall.c: Enum_ToObject accepts enum value arguments.
11806
11807 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
11808
11809         * class.c: move initialization of properties, events and nested
11810         classes, so that they happen for interfaces, too.
11811
11812 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
11813
11814         * icall.c: cleanup some ugly casts in Array_SetValue*.
11815
11816 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
11817
11818         * icall.c: the values array fro enums is of the correct type, now.
11819         Implement (correctly) getFullName instead of assQualifiedName for
11820         MonoType.
11821         * reflection.h, reflection.c: added mono_type_get_name ().
11822
11823 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
11824
11825         * assembly.c, image.h: for each MonoImage, record from wich assembly
11826         it was loaded.
11827         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
11828         Make Type.Assembly work.
11829
11830 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
11831
11832         * debug-symfile.h: use char* instead of gpointer to avoid
11833         unnecessary casts.
11834
11835         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
11836
11837         * icall.c (ves_icall_InternalExecute): impl. FielSetter
11838         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
11839
11840 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
11841
11842         * icall.c (mono_message_init): impl. (code cleanup)
11843         (ves_icall_InternalExecute): impl. FieldGetter
11844
11845         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
11846         defined we call all (non-static)methods through the vtable. 
11847
11848 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
11849
11850         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
11851         finalizer even though the memory is still referenced (and the chunk of
11852         memory is not freed).
11853
11854 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
11855
11856         * assembly.c: fix brokeness.
11857
11858 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
11859
11860         * class.c: kill some warnings. Check explicit interface method
11861         implementation also without considering the namespace.
11862         Load also literal strings in static class data.
11863
11864 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
11865
11866         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
11867         (default_assembly_name_resolver): Make the resolver take the
11868         "base" directory where the assembly was originally defined, so we
11869         can load DLLs that are in the same directory as the assembly that
11870         is being referenced.
11871
11872 2002-03-28  Dick Porter  <dick@ximian.com>
11873
11874         * file-io.h: 
11875         * file-io.c:
11876         * socket-io.c: 
11877         * unicode.h: 
11878         * unicode.c: Warning cleanups
11879
11880 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
11881
11882         * object.h, reflection.h: use the correct type instead of MonoObject.
11883
11884 2002-03-28  Martin Baulig  <martin@gnome.org>
11885
11886         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
11887         (mono_debug_update_symbol_file): Initialize classes if necessary.
11888
11889 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
11890
11891         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
11892         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
11893
11894 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
11895
11896         * assembly.h: fix function prototype.
11897         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
11898         * mono-endian.h: use const cast.
11899
11900 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
11901
11902         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
11903
11904 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
11905
11906         * loader.c: don't assert when a typeref can't be loaded, give
11907         a chance to the runtime to trow an exception instead.
11908         * loader.h: fix warning.
11909
11910 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
11911
11912         * class.c (mono_class_proxy_vtable): added proxy support
11913
11914 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
11915
11916         * icall.c: removed last of PAL calls, added System.Environment
11917         * file-io.h, file-io.c: MonoIO implementation
11918         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
11919
11920 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
11921
11922         * appdomain.c: do not use the byte marker in ldstr table lookup.
11923         * debug-helpers.c: allow two ':' to separate class and method name.
11924         * object.c: allocate arrays bounds with the GC, too.
11925         * verify: add a few more checks.
11926
11927 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
11928
11929         * reflection.c: output also literal strings. Allocate parameter data
11930         with GC_malloc() (thanks, Martin, for catching this!).
11931
11932 2002-03-26  Martin Baulig  <martin@gnome.org>
11933
11934         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
11935         include the `this' offset in the `param_offsets'.
11936
11937 2002-03-25  Martin Baulig  <martin@gnome.org>
11938
11939         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
11940         mono_debug_get_class() function to get the classes. Added new
11941         relocation types for arrays and strings.
11942         (mono_debug_get_class): New static function to search in all
11943         referenced assemblies for a metadata token.
11944
11945         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
11946
11947 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
11948
11949         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
11950         hold gc-allocated objects. Make the string heap a stream like the
11951         others. Removed duplicated code when writing stream info.
11952         Added asserts to catch possible buffer overflows. Set the sorted map
11953         for tables that need sorting. Added some documentation.
11954
11955 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
11956
11957         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
11958         for interned strings and vtables.
11959
11960 2002-03-24  Martin Baulig  <martin@gnome.org>
11961
11962         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
11963         it in the array since it was created with g_slist_prepend().
11964
11965 2002-03-24  Martin Baulig  <martin@gnome.org>
11966
11967         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
11968         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
11969         (mono_debug_method_from_token): Renamed to
11970         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
11971         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
11972
11973         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
11974         relocation types.
11975
11976         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
11977
11978 2002-03-24  Martin Baulig  <martin@gnome.org>
11979
11980         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
11981         (mono_debug_method_from_token): New func.
11982
11983         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
11984         New interncall, calls mono_debug_local_type_from_signature().
11985         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
11986         calls mono_debug_method_from_token().
11987
11988 2002-03-23  Martin Baulig  <martin@gnome.org>
11989
11990         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
11991         specifies the number of bytes to be converted, not the array size.
11992         Return the number of chars, not the number of bytes.
11993         (ves_icall_iconv_get_chars): The `byteCount' argument
11994         specifies the number of bytes to be converted, not the array size.
11995
11996 2002-03-23  Martin Baulig  <martin@gnome.org>
11997
11998         * reflection.h (MonoReflectionSigHelper): New type.
11999
12000         * reflection.c (mono_reflection_sighelper_get_signature_local),
12001         (mono_reflection_sighelper_get_signature_local): New functions.
12002
12003         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
12004         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
12005         interncalls.
12006
12007 2002-03-23  Martin Baulig  <martin@gnome.org>
12008
12009         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
12010         is_writeable is set.
12011         (mono_raw_buffer_update): New function to write the modified map
12012         back to disk.
12013
12014         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
12015
12016         * debug-symfile.c (mono_debug_update_symbol_file): Call
12017         mono_raw_buffer_update() when done writing.
12018
12019 2002-03-23  Martin Baulig  <martin@gnome.org>
12020
12021         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
12022
12023         * debug-symfile.c: Added support for arguments and local variables.
12024
12025 2002-03-23  Dick Porter  <dick@ximian.com>
12026
12027         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
12028         protected by ifdefs, hence breaking the w32 build.
12029
12030 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12031
12032         * object.c: implement is_interned() the right way.
12033
12034 2002-03-21  Martin Baulig  <martin@gnome.org>
12035
12036         * debug-symfile.[ch]: New files to handle debugging information
12037         files. There's also support to dynamically update these symbol
12038         files to include machine dependent information.
12039
12040 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
12041
12042         * threads.c (mono_thread_create): new function to create thread
12043         from C
12044
12045 2002-03-20  Martin Baulig  <martin@gnome.org>
12046
12047         * icall.c (ves_icall_InternalInvoke): Create a new object if the
12048         method is a constructor.
12049         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
12050         points to ves_icall_InternalInvoke().
12051
12052 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
12053
12054         * file-io.c: Flush shouldn't throw exceptions.
12055
12056 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
12057
12058         * file-io.c: FileStream flush support; FileSetLength now
12059         restores file pointer.
12060
12061 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
12062
12063         * class.c: set image for pointer classes.
12064
12065 2002/03/19  Nick Drochak <ndrochak@gol.com>
12066
12067         * sysmath.c: Forgot one.
12068
12069 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
12070
12071         * sysmath.c: Avoid redefining existing names.
12072
12073 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
12074
12075         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
12076         handled by runtime as icall rather than dllimport from libm.so
12077         * file-io.c, file-io.h: fixed handle argument type.
12078
12079 2002-03-18  Dick Porter  <dick@ximian.com>
12080
12081         * reflection.c (mono_image_get_type_info): rename interface to
12082         iface, because of "#define interface struct" on windows.
12083
12084 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
12085
12086         * class.c, class.h: rename and export mono_ptr_class_get().
12087         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
12088         * reflection.c, reflection.h, icall.c: better/saner type name
12089         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
12090         method signatures.
12091
12092 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
12093
12094         * class.c (mono_class_init): removed hardcoded GHC_SLOT
12095
12096         * icall.c (ves_icall_InternalInvoke): impl.
12097
12098 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
12099
12100         * reflection.c: output the interface map table, too.
12101
12102 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
12103
12104         * class.c (class_compute_field_layout): separate computation of 
12105         static field layout
12106
12107 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
12108
12109         * icall.c: added System.Buffer support.
12110         * file-io.c: moved file icalls from PAL to FileStream.
12111
12112 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
12113
12114         * icall.c (ves_icall_System_Object_GetHashCode): impl.
12115
12116 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
12117
12118         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
12119
12120 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
12121
12122         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
12123
12124 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
12125
12126         * debug-helpers.{c,h}: moved here from monograph some useful functions
12127         to locate a method by name/signature in a class or image. Included
12128         also a small and flexible IL disassembler.
12129
12130 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
12131
12132         * reflection.c: fixup tokens in methods with small header size, too.
12133
12134 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
12135
12136         * object.c (mono_string_to_utf8): remove assert(!error), instead
12137         print a warning. 
12138
12139 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
12140
12141         * icall.c: update to the new mono_Array_class_get interface.
12142
12143 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
12144
12145         * appdomain.c, object.c: Boehm-GC enable.
12146         * icall.c: make get_data_chunk() support split data requests.
12147         Ensure a class is initialized in more cases. Return only the first
12148         property found in GetProperties() or the compiler gets confused. 
12149         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
12150         * reflection.h, reflection.c: add fixup mechanism for field and method
12151         tokens. Initialize assembly->typeref in a single place. Output
12152         properties after events. Support custom attributes for events, too.
12153         Typo fix for paramter custom attrs.
12154
12155 2002-03-07  Martin Baulig  <martin@gnome.org>
12156
12157         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
12158
12159 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
12160
12161         * class.c (mono_array_class_get): fix. for multi. dim. arrays
12162
12163 2002-03-06  Martin Baulig  <martin@gnome.org>
12164
12165         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
12166         non-zero lower bounds. See testcases #F10-#F13.
12167
12168 2002-03-05  Martin Baulig  <martin@gnome.org>
12169
12170         * exception.c (mono_get_exception_argument_out_of_range): New exception.
12171
12172         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
12173         ves_icall_System_Array_GetValue(), only calculate the absolute array position
12174         here.
12175         (ves_icall_System_Array_SetValue): Likewise.
12176         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
12177         as argument and does the actual work. This function is used when copying a
12178         multi-dimensional array.
12179         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
12180         now do all the widening conversions of value types.
12181         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
12182
12183 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12184
12185         * class.c: remove some magic numbers and use the smbolic names,
12186         instead. Added init_events() to load event info at class init time.
12187         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
12188         and mono_metadata_methods_from_event().
12189         * reflection.h, reflection.c: added support for writing out the evnets
12190         related information.
12191
12192 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
12193
12194         * reflection.h, icall.c: use a different method (GetInterfaces)
12195         to gather interface info and add isbyref, isprimitive and
12196         ispointer to the ves_icall_get_type_info() return value.
12197
12198 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
12199
12200         * class.h: stared adding support for events.
12201         * icall.c: split find_members implementation. Added debug icall to get
12202         the address of an object.
12203         * reflection.c: handle TypeBuilders in mono_type_get_object().
12204
12205 2002-03-01  Martin Baulig  <martin@gnome.org>
12206
12207         * icall.c (ves_icall_System_Array_GetLength): This must throw an
12208         ArgumentOutOfRangeException(), not an ArgumentException().
12209         (ves_icall_System_Array_GetLowerBound): Likewise.
12210         (ves_icall_System_Array_GetValue): Improved argument checking.
12211         (ves_icall_System_Array_SetValue): Improved argument checking.
12212
12213 2002-03-01  Martin Baulig  <martin@gnome.org>
12214
12215         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
12216         called with invalid arguments rather than just dying with g_assert().
12217         (ves_icall_System_Array_SetValue): Likewise.
12218         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
12219         raise a NotImplementedException instead.
12220         (ves_icall_System_Array_GetLength): Added argument checking.
12221         (ves_icall_System_Array_GetLowerBound): Added argument checking.
12222
12223 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
12224
12225         * object.h (mono_assert): new macros mono_assert and
12226         mono_assert_not_reached
12227
12228 2002-02-28  Martin Baulig  <martin@gnome.org>
12229
12230         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
12231         and "System::String::IsInterned" to "System::String::_IsInterned".
12232
12233 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
12234
12235         * icall.c: remove hacks for typebuilder. Added icall to create a
12236         modified type from a tybebuilder.
12237         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
12238         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
12239         to create a backing MonoClass for a TypeBuilder.
12240
12241 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12242
12243         * class.c, class.h: more refactoring of class init.
12244         Export mono_class_setup_mono_type() and mono_class_setup_parent().
12245
12246 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
12247
12248         * marshal.c, marshal.h: start of marshaling interface.
12249
12250 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
12251
12252         * icall.c: fix order in assembly qualified name icall.
12253
12254 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
12255
12256         * class.c: do not free str, since we store it in the hash table.
12257         * reflection.h: add label field to MonoILExceptionInfo.
12258         * reflection.c: handle references to more than one assembly. Handle
12259         case when there isn't a module created in the assembly.
12260
12261 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
12262
12263         * class.c: Fix typo. Start refactoring of class init code.
12264
12265 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
12266
12267         * appdomain.c: exit with 1 on error.
12268         * class.c: we already have the name in MonoClassField.
12269         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
12270         MonoStreamHeader instead of an offset of image->raw_metadata.
12271
12272 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
12273
12274         * appdomain.c (mono_init): Be even more descriptive about the error.
12275
12276 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
12277
12278         * appdomain.c: give the user an informative message when corlib can't
12279         be loaded.
12280
12281 2002-02-26  Martin Baulig  <martin@gnome.org>
12282
12283         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
12284         New icall to get the time zone data.
12285
12286 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12287
12288         * reflection.c: set virtual and raw size of section correctly.
12289         * threads.c: transfer domain information to newly created threads.
12290
12291 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
12292
12293         * class.c: when instancing a class in a domain, load the default
12294         vaules for static fields from the constant table. Fix System.Enum to
12295         not be an enum.
12296         * icall.c: implement Object::GetType() internalcall. Implemented
12297         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
12298         Fixed checking of binding flags in find_members().
12299         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
12300         * reflection.c: handle enumerations when writing to the constant
12301         table. Use a different object cache for types.
12302
12303
12304 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
12305
12306         * object.c (mono_object_isinst): fix for arrays
12307
12308         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
12309
12310 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
12311
12312         * object.c: don't use mprotect ()  and fix intern pool hash table
12313         lookup for big endian systems.
12314
12315 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
12316
12317         * icall.c: change type_is_subtype_of () signature.
12318
12319 2002-02-21  Mark Crichton  <crichton@gimp.org>
12320
12321         * rand.c, rand.h: Added random number generator for
12322         System.Security.Cryptography classes.
12323
12324         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
12325
12326         * icall.c: Added System.Security.Cryptography calls.
12327
12328 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
12329
12330         * class.c, icall.c, metadata.c: better support for pointer types.
12331         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
12332         * reflection.c: Add support for getting custom attrs for properties
12333         and simplify some code.
12334
12335 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
12336
12337         * icall.c: change getToken () and add custom attribute GetBlob()helper
12338         method.
12339         * reflection.h: add custom attrs array to the reflection builder structures.
12340         * reflection.c: encode and emit custom attributes for all the relevant
12341         reflection objects. Cache fieldref and methodref tokens. Change
12342         mono_image_create_token() interface to take a MonoDynamicAssembly.
12343         More complete custom attributes decoder. Load custom attributes for
12344         Assembly, Field, Method and Constructor objects, too. Make the
12345         returned array an Attribute[] one, not object[]. Added
12346         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
12347         custom attribute constructor.
12348
12349 2002-02-20  Dick Porter  <dick@ximian.com>
12350
12351         * icall.c:
12352         * rawbuffer.c:
12353         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
12354         problem code out for now).
12355
12356 2002-02-19  Radek Doulik  <rodo@ximian.com>
12357
12358         * object.c (mono_ldstr): use hash table to avoid multiple swapping
12359
12360 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
12361
12362         * icall.c: register the GetCustomAttributes method.
12363         * object.c, object.h: add mono_string_new_len ().
12364         * reflection.h, reflection.c: added mono_runtime_invoke(),
12365         mono_install_runtime_invoke(). Added
12366         mono_reflection_get_custom_attrs () to load custom attributes and
12367         create the attribute objects.
12368
12369 2002-02-19  Dick Porter  <dick@ximian.com>
12370         * threads-dummy-types.c:
12371         * threads-dummy-types.h:
12372         * threads-dummy.c:
12373         * threads-dummy.h:
12374         * threads-pthread-types.c:
12375         * threads-pthread-types.h:
12376         * threads-pthread.c:
12377         * threads-pthread.h:  Deleted obsolete files
12378
12379 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
12380
12381         * class.c (mono_class_vtable): runtime init the class when we
12382         allocate static class data.
12383
12384         * icall.c (ves_icall_System_Array_SetValue): check for null values.
12385
12386         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
12387         and String - but we will need generic marshalling support in the
12388         future. 
12389         (mono_init): set the domain name in a ms compatible way
12390
12391         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
12392         String[].
12393
12394 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
12395
12396         * object.c (mono_array_clone): use alloca() instead of g_malloc  
12397         for sizes
12398
12399         * appdomain.c (mono_domain_unload): impl.
12400
12401 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
12402
12403         * appdomain.c, object.c: fix intern pool implementation.
12404         * class.c: fix alignment code.
12405
12406 2002-02-16  Radek Doulik  <rodo@ximian.com>
12407
12408         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
12409         and s2 > s1, just copy lower bytes to be compatible with little
12410         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
12411         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
12412
12413         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
12414         force big_endian to be 1 for big endian machines 
12415         (ves_icall_iconv_new_decoder): ditto
12416
12417 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
12418
12419         * socket-io.c (convert_sockopt_level_and_name): If the system
12420         doesn't define SOL_IP or SOL_TCP, get them by hand using
12421         getprotobyname() and caching the values (because this could be a
12422         slow operation).
12423         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
12424         Use the appropriate struct when the system does support it. Ie,
12425         not all systems have struct ip_mreqn so use struct ip_mreq when
12426         appropriate.
12427
12428 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
12429
12430         * reflection.c: handle finally clauses.
12431
12432 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
12433
12434         * socket-io.c: use g_snprintf() instead of snprintf.
12435
12436 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
12437
12438         * reflection.c (mono_param_get_objects): Cast second argument to
12439         mono_method_get_param_names to a const char** to silence the
12440         compiler warning.
12441
12442         * appdomain.c (mono_domain_assembly_open): Put parens around the
12443         truth statement in the for-loop.
12444
12445         * unicode.c (iconv_convert): Got rid of a compiler warning about
12446         int i being unused when the system has a new iconv.
12447         (iconv_get_length): Same.
12448
12449         * image.c (load_class_names): Cast the second argument to
12450         g_hash_table_insert() to char* to hush compiler warnings about the
12451         arg being a const.
12452         (mono_image_open): Same here.
12453
12454         * socket-io.c: Don't conditionally include sys/filio.h or
12455         sys/sockio.h here anymore since we now get them from
12456         io-layer/io-layer.h
12457         (inet_pton): If the system doesn't support inet_aton, implement
12458         using inet_addr and also #define INADDR_NONE if it isn't defined
12459         by the system.
12460
12461 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
12462
12463         * metadata.c, metadata.h: added function to get packing and size info
12464         of a typedef.
12465         * reflection.h, reflection.c: handle field RVA data. Save info about
12466         the table layout if needed. Assign typedef indexes to all the types
12467         before dumping the info about them to avoid forward reference problems.
12468
12469 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
12470
12471         * socket-io.c (convert_sockopt_level_and_name): ifdef
12472         SO_ACCEPTCONN because it is not defined on my system (old debian)
12473
12474 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
12475
12476         * opcode.c: use stddef.h to get NULL.
12477
12478 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
12479
12480         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
12481         for FIONBIO, FIONREAD and SIOCATMARK.
12482         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
12483         define INADDR_NONE and besides, inet_addr() is deprecated and
12484         should not be used. Use inet_pton() instead - it also has the
12485         added bonus that it can easily handle IPv6 addresses as well.
12486         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
12487
12488 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
12489
12490         * decimal.c: remove _MSC_VER conditional.
12491
12492 2002-02-13  Dick Porter  <dick@ximian.com>
12493
12494         * socket-io.c: 
12495         * icall.c: Internal calls for Blocking, Select, Shutdown,
12496         GetSocketOption and SetSocketOption
12497
12498 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12499
12500         * assembly.cs: better resolver: use it instead of some kludgy
12501         code.
12502
12503 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
12504
12505         * reflection.c: the best way to speed-up the compiler is to avoid
12506         infinite loops.
12507
12508 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
12509
12510         * class.c (mono_class_vtable): changed the object layout
12511         (obj->vtable->class). 
12512         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
12513
12514 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12515
12516         * assembly.c: look for assemblies in the assembly dir, too.
12517
12518 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
12519
12520         * class.c: fix thinko in mono_class_from_type().
12521
12522 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12523
12524         * exception.h, exception.c: added TypeLoadException.
12525         * object.h, object.c: added mono_array_clone ().
12526         * icall.c: handle throwOnError in AssemblyGetType().
12527         Added Array.Clone().
12528         * opcode.h, opcode.c: use a single value for the opcode val.
12529         Compile fix for non-gcc compilers.
12530
12531 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
12532
12533         * opcodes.c, opcodes.h: export interesting info about opcodes.
12534
12535 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
12536
12537         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
12538         icalls. 
12539
12540         * class.c (class_compute_field_layout): set element_class for enums
12541         (mono_class_create_from_typedef): set element_class for normal classes
12542
12543         * icall.c (ves_icall_System_Enum_get_value): impl.
12544
12545         * class.c (mono_class_create_from_typedef): do not set valuetype
12546         flag for System.ValueType and System.Enum
12547
12548 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
12549
12550         * unicode.c (iconv_convert): fix big endian problem.
12551
12552 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
12553
12554         * class.c: add asserts if we are ever going to scribble over memory.
12555         * socket-io.c: not all systems have AF_IRDA defined.
12556
12557 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
12558
12559         * class.c (class_compute_field_layout): do not consider static
12560         fields to compute alignment
12561
12562 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
12563
12564         * appdomain.c (mono_appdomain_get): impl.
12565         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
12566
12567 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
12568
12569         * icall.c: ignore "file://" prefix when loading an assembly.
12570
12571 2002-01-23  Dick Porter  <dick@ximian.com>
12572
12573         * socket-io.c:
12574         * icall.c:
12575         * Makefile.am: Added socket support
12576
12577 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
12578
12579         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
12580         code back.  This should return the assemblies that are loaded by
12581         the runtime on behalf of an application domain. 
12582
12583         The current implementation is still broken, it just returns every
12584         assembly loaded, but until we get real applications domain this
12585         will do.
12586
12587 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
12588
12589         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
12590         AppDomain object.
12591
12592 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
12593
12594         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
12595         the mono_class_from_name lookup.
12596         (ves_icall_get_parameter_info): ditto.
12597         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
12598         method.
12599         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
12600
12601 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
12602
12603         * class.c: load also nested classes on class init.
12604         System.ValueType instance methods gets passed boxed
12605         values, unless methods in derived classed that get a pointer to the
12606         data.
12607         * icall.c: use better name parsing code in GetType().
12608         * image.c, image.h: add mono_image_loaded ().
12609         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
12610         * reflection.c, reflection.h: added mono_reflection_parse_type().
12611
12612 2002-01-22  Veronica De Santis <veron78@interfree.it>
12613
12614         * icall.c : Added mapping of internal calls for Manual and Auto reset events
12615         * threads.c : Added the implementation of internal calls for events
12616         * threads.h : Added prototypes of internal calls for events
12617         
12618 2002-01-21  Radek Doulik  <rodo@ximian.com>
12619
12620         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
12621
12622 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
12623
12624         * class.c (mono_class_init): set min_align to 1 (instead of 0)
12625         (mono_class_value_size): use min_align
12626
12627 2002-01-20  Dick Porter  <dick@ximian.com>
12628
12629         * threads.h:
12630         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
12631         so it compiles on w32.
12632
12633 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
12634
12635         * metadata.c (mono_type_stack_size): impl.
12636
12637         * class.c (mono_class_get_field): impl. memberref token
12638
12639 2002-01-16 Veronica De Santis <veron78@@interfree.it>
12640
12641         * icall.h : Added the internal calls mapping for CreateMutex_internal
12642                     and ReleaseMutex_internal.
12643         * threads.h : Added the prototype of mutexes internal calls.
12644         * threads.c : Added the implementations of mutexes internal calls.
12645
12646 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
12647
12648         * metaparse.h: removed unused file.
12649         * reflection.c, reflection.h: added stream_data_align () function 
12650         to align data in streams and keep stream aligned. Add support for
12651         exception support in method headers.
12652
12653 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
12654
12655         * unicode.c: make iconv_convert () return the number of bytess written
12656         in the output buffer.
12657
12658 2002-01-15  Dick Porter  <dick@ximian.com>
12659         * threads.c: Make the runtime's idea of infinite timeouts coincide
12660         with the class library's
12661
12662         Fix a particularly egregious bug in mono_thread_cleanup(). That
12663         code was so utterly bogus it must have been written on a Monday.
12664
12665 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
12666
12667         * reflection.h: add subtypes field to TypeBuilder.
12668         * reflection.c: encode constants for literal fields.
12669         Handle subtypes. Fix user string token (and add a zero byte)
12670         at the end.
12671         
12672 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
12673
12674         * class.c (mono_class_init): bug fix: assign slot numbers for
12675         abstract methods.
12676
12677 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
12678
12679         * reflection.c: don't try to output a code RVA for abstract methods.
12680         Small fixes for method header format. Output parameter info to the
12681         ParamDef table. Save method overriding info to MethodImpl table.
12682         Fix property support. Allow typedef.extends to be a type in the
12683         building assembly.
12684         * verify.c: fix off-by-one error.
12685
12686 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
12687
12688         * class.c: fix mono_class_from_mono_type () for szarray types.
12689         Remove unused cache check in mono_class_from_type_spec().
12690         * icall.c: *type_from_name () functions handle simple arrays and byref.
12691         * reflection.c: handle byref and szarray types. Handle methods without
12692         body (gets P/Invoke compilation working). Handle types and fields in
12693         get_token ().
12694         * reflection.h: add rank to MonoTypeInfo.
12695
12696 2002-01-10  Dick Porter  <dick@ximian.com>
12697
12698         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
12699         internal calls
12700
12701 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
12702
12703         * icall.c: initialize class in type_from_handle ().
12704         Loop also in parent classes for get_method ().
12705         * reflection.c: properly encode class and valuetype types.
12706         Start on encoding TypeBuilder types. Handle fieldrefs.
12707         Use correct length when registering a user string.
12708         Handle ConstructorBuilder and MonoMethod in get_token ().
12709         Make mono_type_get_object () aware of cached types.
12710         * object.c: back out change to mono_string_new ().
12711
12712 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
12713         * object.c: mono_string_new should return a NULL when the string 
12714         passed in is NULL -- not try to deference it.
12715         
12716 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
12717
12718         * icall.c: hack to make IsSubType work for TypeBuilders.
12719         * reflection.c: emit constructors before methods.
12720         Retrieve param names in mono_param_get_objects().
12721
12722 2002/01/05  Nick Drochak  <ndrochak@gol.com>
12723
12724         * Makefile.am: fix list of headers and sources so automake 1.5
12725         doesn't complain. Removed \# at end of list.
12726
12727 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
12728
12729         * reflection.c: get token for a method ref. Set return type of
12730         constructor to void.
12731         * loader.c: debug message.
12732         * class.c: typo fix.
12733
12734 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
12735
12736         * icall.c: fix array init with rank > 1. FindMembers
12737         loops in parent class as well.
12738         * image.c: do not insert nested types in name cache.
12739         * reflection.c: warning fix.
12740         * reflection.h: add override method (for interface impl).
12741
12742 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
12743
12744         * metadata.c: fix customattr decoding.
12745
12746 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
12747
12748         * rawbuffer.cs: Added native Win32 implementation, avoids using
12749         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
12750
12751 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
12752
12753         * class.c: make the low-level routines handle the cache.
12754
12755 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
12756
12757         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
12758
12759 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
12760
12761         * class.c: fix mono_array_element_size() for objects.
12762         * class.h, class.c: add properties to MonoClass and load them
12763         at init time.
12764         * icall.c: check with isinst() when assigning a value to an array
12765         instead of requiring the classes to match exactly.
12766         Implemented icall for System.Type::GetType().
12767         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
12768         enums. Handle bindingflags when looking for methods and fields.
12769         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
12770         and mono_metadata_methods_from_property().
12771         * reflection.h, reflection.c: added structures for propreties,
12772         parameters and enums. Implemented mono_property_get_object() and
12773         mono_param_get_objects().
12774
12775 2001-12-18  Dick Porter  <dick@ximian.com>
12776
12777         * file-io.c: Use mono_string_to_utf16() instead of
12778         mono_string_chars()
12779
12780         * object.c: Added mono_string_to_utf16(), which copies the non
12781         NULL-terminated MonoString into a new double-null-terminated
12782         buffer.
12783
12784 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
12785
12786         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
12787
12788 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
12789
12790         * file-io.c: raise exceptions if handle is invalid.
12791
12792 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
12793
12794         * assembly.c: yet another check for mscorlib.
12795         * class.c, class.h: load nesting info for classes.
12796         * icall.c: many new functions to support the Reflection classes.
12797         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
12798         * reflection.h, reflection.c: mono_image_create_token(),
12799         mono_assembly_get_object(), mono_type_get_object(),
12800         mono_method_get_object(), mono_field_get_object(): methods to return
12801         objects that parallel the C representation of assemblies, types,
12802         methods, fields.
12803
12804 2001-12-11  Dick Porter  <dick@ximian.com>
12805
12806         * icall.c:
12807         * file-io.c: Internal calls for file IO.
12808
12809 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
12810
12811         * tabledefs.h: missing FileAttributes.
12812         * verify.h, verify.c: use is_valid_string () to simplify and check for
12813         valid strings more correctly. Fix warnings and speeling.
12814         Check more tables: Filed, File, ModuleRef, StandAloneSig.
12815         Check code: branches, maxstack, method calls.
12816
12817 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
12818
12819         * object.c (mono_object_allocate): removed static, so that the jit
12820         can allocate value types.
12821
12822         * icall.c (ves_icall_System_DateTime_GetNow): impl.
12823
12824 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
12825
12826         * class.c: init enum types right away and register the
12827         token->MonoClass map in mono_class_create_from_typedef ().
12828         * verify.h, verify.c: first cut of the verifier.
12829         * pedump.c: add --verify switch to verify metadata tables.
12830         * tabledefs.h: add some missing enums.
12831
12832 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
12833
12834         * class.c (mono_install_runtime_class_init): impl.
12835         (mono_class_init): renamed mono_class_metadata_init to
12836         mono_class_init, also removed the metadata_inited flag
12837
12838         * object.c (mono_object_isinst): use faster algorithm
12839
12840 2001-11-30  Radek Doulik  <rodo@ximian.com>
12841
12842         * mono-endian.h: reverted last change
12843         added function prototypes
12844
12845         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
12846         add mono-endian.c back
12847
12848         * mono-endian.c: returned back, as Paolo pointed out, it's needed
12849         for unaligned access, I've mistaked it with endianess. I am
12850         sorry.
12851         (mono_read16): fix reverted endianess
12852         (mono_read64): ditto
12853         (mono_read32): ditto
12854
12855 2001-11-30  Dick Porter  <dick@ximian.com>
12856
12857         * exception.c: Implement mono_exception_from_name()
12858
12859 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
12860
12861         * metadata.h, metadata.c: remove params_size and locals_size and their
12862         calculation from the metadata code: they are only usefult to the
12863         interp.
12864
12865 2001-11-29  Radek Doulik  <rodo@ximian.com>
12866
12867         * object.c (mono_ldstr): swap bytes here, it's probably not the
12868         best place, but works for me now, I'll redo it once I know mono
12869         better, also note that I add PROT_WRITE and don't reset back, also
12870         note that it's only affects big endians, so x86 should be OK
12871
12872         * mono-endian.h (read16): use just glib macros for both endians
12873
12874         * mono-endian.c: removed as glib macros are used in in
12875         mono-endian.h so we don't need to care about endianess for read
12876         macros as glib does that for us already
12877
12878 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
12879
12880         * class.h, class.h: take minimum alignment into consideration so
12881         that the fields of a class remain aligned also when in an array.
12882
12883 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
12884
12885         * loader.h, loader.c: add mono_method_get_param_names().
12886         * class.c: 0-init class fields.
12887
12888 2001-11-26  Dick Porter  <dick@ximian.com>
12889
12890         * icall.c:
12891         * threads-types.h:
12892         * threads.c: New file that handles System.Threading on all platforms
12893
12894         * object.c: 
12895         * object.h: Remove the synchronisation struct from MonoObject,
12896         replace it with a pointer that gets initialised on demand
12897
12898         * Makefile.am: Replace all the system-specific threading code with
12899         a single file that uses the new wrapper library
12900
12901 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
12902
12903         * class.c, class.h: add mono_install_trampoline() so that the runtime
12904         can register a function to create a trampoline: removes the ugly
12905         requirement that a runtime needed to export arch_create_jit_trampoline.
12906         * object.h, object.c: added mono_install_handler() so that the runtime
12907         can install an handler for exceptions generated in C code (with
12908         mono_raise_exception()). Added C struct for System.Delegate.
12909         * pedump.c: removed arch_create_jit_trampoline.
12910         * reflection.c: some cleanups to allow registering user strings and
12911         later getting a token for methodrefs and fieldrefs before the assembly
12912         is built.
12913         * row-indexes.h: updates and fixes from the new ECMA specs.
12914
12915 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
12916
12917         * class.h, class.c: add enum_basetype field to MonoClass.
12918         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
12919         to get index in the constant table reated to a field, param or
12920         property.
12921         * reflection.h, reflection.c: handle constructors. Set public-key and
12922         version number of the built assembly to 0.
12923         * row-indexes.h: update from new ECMA spec.
12924
12925 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
12926
12927         * class.h, class.c: add a max_interface_id to MonoClass.
12928         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
12929         since it's used to do that. Added mono_type_type_from_obj().
12930         Make GetType() return NULL instead of segfaulting if the type was not
12931         found. Handle simple arrays in assQualifiedName.
12932         * object.h: add a struct to represent an Exception.
12933         * reflection.c: output call convention in method signature.
12934         Add code to support P/Invoke methods and fixed offsets for fields.
12935
12936 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
12937
12938         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
12939         the value.
12940         * icall.c: use mono_array_addr instead of array->vector: fixes the
12941         reflection image writing.
12942         * reflection.c: init call convention byte to 0 in method signature.
12943         Encode the property signature. Don't output property-related methods
12944         twice. Really process the properties for a type (don't cast a field to
12945         a property, my mom always told me that).
12946         Fix 64 bit issues in pointer alignment in a different and more
12947         readable way.
12948
12949 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
12950
12951         * loader.h: Removed type class from MonoDefaults, added monotype
12952
12953         * loader.c: Loaded MonoType, removed loading of Type
12954
12955         * icall.c (my_mono_new_object): Now returns a System.MonoType,
12956         and fills in System.Type._impl with a RuntimeTypeHandle rather
12957         than the actual MonoClass *
12958
12959         (ves_icall_type_from_handle): change from type_class to
12960         monotype_class
12961
12962         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
12963         implemented
12964
12965         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
12966         implemented
12967
12968         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
12969
12970         (ves_icall_System_Reflection_Assembly_GetType): implemented
12971
12972         (ves_icall_System_MonoType_assQualifiedName): implemented
12973
12974         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
12975
12976 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
12977
12978         * assembly.c (mono_assembly_open): Implement a cache for the
12979         assemblies. 
12980
12981         (mono_assembly_close): only destroy the assembly when the last
12982         reference is gone.
12983         
12984 2001-11-09  Dick Porter  <dick@ximian.com>
12985
12986         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
12987
12988 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
12989
12990         * class.c (mono_class_metadata_init): bug fix: compute the right slot
12991
12992 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
12993
12994         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
12995         from Martin Weindel.
12996         * object.h: add mono_string_chars ().
12997
12998 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
12999
13000         * reflection.c (build_compressed_metadata): Eliminates warnings
13001         and uses 64-bit clean code.
13002
13003         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
13004         (mono_type_equal): Change signature to eliminate warnings.
13005
13006 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
13007
13008         * icall.c, loader.c: remove the internalcall array constructors.
13009         Changes to match the new MonoArray structure.
13010         * object.h, object.c: an array object doesn't allocate an extra
13011         vector. Add mono_array_new_full () to create jagged arrays easily.
13012
13013 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
13014
13015         * metadata.h, metadata.c: add mono_metadata_field_info () to
13016         retreive all the info about a field from vairous tables.
13017         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
13018         * class.h, class.c: augment MonoClassField with more info.
13019         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
13020         policy and load a field's RVA if needed.
13021
13022 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
13023
13024         * class.c (mono_class_metadata_init): create a trampoline for all
13025         virtual functions instead of actually compiling them.
13026
13027 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
13028
13029         * class.h, class.c: include name in MonoClassField.
13030         * class.c: fix fundamental type of System.Object and System.String.
13031         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
13032         tokens in ldtoken.
13033         * icall.c: remove internalcalls for the Reflection stuff that is now
13034         done in C# code.
13035         * loader.c: mono_field_from_memberref () implementation.
13036         * mono-endian.c: thinko (s/struct/union/g).
13037         * object.c, object.h: make the mono_string_* prototypes actually use
13038         MonoString instead of MonoObject.
13039         * reflection.c, reflection.h: updates for changes in the reflection
13040         code in corlib: we use C structures that map to the actual C# classes.
13041         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
13042         fat method header if needed and use the info from the ILGenerator for
13043         methods. Handle fields in types. Misc fixes.
13044
13045 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
13046
13047         * class.c (mono_class_metadata_init): bug fix: always allocate
13048         space for static class data
13049
13050 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
13051
13052         * class.c (mono_compute_relative_numbering): use relative
13053         numbering to support fast runtime type checks.
13054
13055 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
13056
13057         * class.c (mono_class_create_from_typeref): added debugging output
13058         to print class name when MonoDummy is returned instead of real class
13059
13060 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
13061
13062         * class.c (mono_class_metadata_init): interface offset table now
13063         contains pointers into the vtable - this is more efficient for the jit
13064
13065 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
13066
13067         * class.c (mono_class_metadata_init): use a temporary vtable (the
13068         old algorithm only worked for the interpreter, but not for the jit)
13069
13070 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
13071
13072         * loader.c (method_from_memberref): use mono_class_get to get the
13073         class of an array instead of using System.Array directly.
13074         (mono_get_method): also add MEMBERREF methods to the method cache
13075         which usefull for arrays.
13076
13077 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
13078
13079         * pedump.c (arch_compile_method): added to compute vtable entry
13080
13081         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
13082         number of interfaces.
13083         
13084         * class.h: merged MonoArrayClass into MonoClass
13085
13086         * class.c (mono_class_create_from_typedef): compute the vtable size and
13087         allocate space to include the vtable inside MonoClass
13088         (mono_class_metadata_init): initialize the vtable
13089
13090 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
13091
13092         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
13093         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
13094         * image.c: endian fixes by Laurent Rioux.
13095         * object.h, object.c: rename MonoStringObject to MonoString and
13096         MonoArrayObject to MonoArray. Change some function names to conform to
13097         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
13098         guint16* as first argument, so don't use char*.
13099         Provide macros to do the interesting things on arrays in a portable way.
13100         * threads-pthread.c: updates for the API changes and #include <sched.h>
13101         (required for sched_yield()).
13102         * icall.c: updates for the API changes above.
13103         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
13104         platforms that need them.
13105
13106 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
13107
13108         * class.c: set the correct type for all the fundamental
13109         type when loading the class.
13110
13111 2001-10-05  Dick Porter  <dick@ximian.com>
13112
13113         * threads-pthread.c (pthread_mutex_timedlock): Simple
13114         compatibility version for C libraries that lack this call.
13115
13116 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
13117
13118         * class.c: MonoTypes stored in MonoClass are stored as
13119         fundamental MonoTypes when the class represents a
13120         fundamental type (System.Int32, ...).
13121         The TypeHandle return by ldtoken is a MonoType*.
13122         * icall.c: ves_icall_get_data_chunk () write out all the
13123         PE/COFF stuff. Implement ves_icall_define_method (),
13124         ves_icall_set_method_body (), ves_icall_type_from_handle ().
13125         * image.c: properly skip unknown streams.
13126         * loader.h, loader.c: add type_class to mono_defaults.
13127         * metadata.c, metadata.h: export compute_size () as
13128         mono_metadata_compute_size () with a better interface.
13129         Typo and C&P fixes.
13130         * pedump.c: don't try to print the entry point RVA if there is no entry point.
13131         * reflection.c, reflection.h: many cleanups, fixes, output method
13132         signatures and headers, typedef and typeref info, compress the metadata
13133         tables, output all the heap streams, cli header etc.
13134         * row-indexes.h: typo fixes.
13135
13136 2001-10-04  Dick Porter  <dick@ximian.com>
13137
13138         * object.h: Add a synchronisation mutex struct to MonoObject
13139
13140         * object.c (mono_new_object): Initialise the object
13141         synchronisation mutexes
13142
13143         * icall.c: System.Threading.Monitor internal calls
13144         
13145         * threads-pthread.h:
13146         * threads-pthread.c: System.Threading.Monitor internal calls
13147
13148         * threads-types.h: New file, includes the system-specific thread
13149         structures
13150         
13151         * threads-pthread-types.h:
13152         * threads-pthread-types.c: New files, handle pthread-specific
13153         synchronisation types
13154
13155         * threads-dummy-types.h: 
13156         * threads-dummy-types.c: New files of dummy support for
13157         thread-specific types
13158
13159         * metadata.c:
13160         * image.c:
13161         * pedump.c: include mono-endian.h not endian.h
13162         
13163         * Makefile.am: More threads files.
13164         Name mono-endian.h not endian.h
13165
13166 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
13167
13168         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
13169         stuff and implement a few more bits.
13170         * icall.c: a field needs to be dereferenced twice. Do not use the same
13171         name for two variables in the same scope.
13172         * image.c, image.h: cleanups.
13173
13174 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
13175
13176         * class.c (mono_class_metadata_init): bug fix: compute the right size
13177
13178 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
13179
13180         * icall.c: implemented some of the Reflection internalcalls.
13181         * image.c, image.h: start writing out the PE/COFF image.
13182         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
13183         that does the reverse than decode_blob_size ().
13184         * object.c: use mono_metadata_encode_value (). Move here
13185         temporary implementation of mono_string_to_utf8 ().
13186         * rawbuffer.c: make malloc_map static.
13187
13188 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
13189
13190         * metadata.c: fix type comparison for arrays.
13191         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
13192         Added a couple of new classes to monodefaults.
13193         * icall.c: added a couple of Reflection-related internalcalls.
13194         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
13195         Added a byval_arg MonoType to MonoClass.
13196
13197 2001-09-28  Dick Porter  <dick@ximian.com>
13198
13199         * icall.c:
13200         * threads-pthread.h: 
13201         * threads-pthread.c: Implemented internal calls for
13202         LocalDataStoreSlot operations.  Applied mutexes around all shared
13203         data.  Reworked the thread creation and Start() operations to
13204         avoid a race condition.
13205         
13206         * threads-dummy.h:
13207         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
13208
13209 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
13210
13211         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
13212
13213 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
13214
13215         * class.c, loader.c: warn and return NULL instead of erroring out.
13216         * icall.c: added System.AppDomain::getCurDomain().
13217         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
13218
13219 2001-09-25  Dick Porter  <dick@ximian.com>
13220
13221         * threads-pthread.h:
13222         * threads-pthread.c: Implemented timed thread joining and added
13223         System.Threading.Thread::Join_internal internal call
13224
13225         * icall.c: Added System.Threading.Thread::Join_internal internal call
13226
13227         * threads-dummy.h:
13228         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
13229
13230 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
13231
13232         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
13233         mono_string_intern () to implement the semantics of the ldstr opcode
13234         and the interning of System.Strings.
13235         * icall.c: provide hooks to make String::IsIntern and String::Intern
13236         internalcalls.
13237
13238 2001-09-23  Dick Porter  <dick@ximian.com>
13239
13240         * threads-dummy.c: 
13241         * threads-dummy.h: New files of dummy threading routines
13242
13243         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
13244         support code based on system specifics
13245
13246         Rename PTHREAD_LIBS to THREAD_LIBS
13247         
13248 2001-09-23  Dick Porter  <dick@ximian.com>
13249
13250         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
13251         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
13252         internal calls.
13253         (mono_thread_init): Set up a Thread object instance to return when
13254         the main thread calls Thread.CurrentThread
13255         (mono_thread_cleanup): Wait for all subthreads to exit
13256
13257         * icall.c: New internal calls for System.Threading.Thread::Sleep
13258         (including Schedule) and CurrentThread
13259
13260         * threads.h: New file, to insulate thread-specific stuff from the
13261         rest of the code
13262
13263 2001-09-21  Dick Porter  <dick@ximian.com>
13264
13265         * threads-pthread.h: 
13266         * threads-pthread.c: New file, for handling pthreads-style
13267         threading support.  Start() now starts a new thread and executes
13268         the ThreadStart delegate instance.
13269
13270         * icall.c: Added the internalcall for
13271         System.Threading.Thread::Start_internal
13272
13273         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
13274
13275 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
13276
13277         * loader.c: work around the different signatures for delegates
13278         constructors csc generates in compiled code vs the ones compiled in mscorlib.
13279
13280 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
13281
13282         * class.h, class.c: add mono_class_get_field_from_name ().
13283         * *: Fix C comments and other ANSI C issues.
13284
13285 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
13286
13287         * endian.h, assembly.c: fix some endianness issues.
13288
13289 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
13290
13291         * loader.h, load.c: add delegate_class to mono_defaults.
13292         Handle runtime provided methods in mono_get_method ().
13293
13294 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
13295
13296         * loader.c (mono_get_method): use pinvoke for internal call
13297
13298         * icall.c: use pinvoke for internal call
13299
13300         * loader.c (method_from_memberref): set the method name
13301
13302 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
13303
13304         * metadata.c: help the compiler generate better code for
13305         mono_class_from_mono_type ().
13306
13307 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
13308
13309         * class.c (mono_class_metadata_init): delayed computing of the
13310         class size to mono_class_metadata_init ()
13311
13312 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
13313
13314         * class.c, class.h: add an interfaces member to MonoClass.
13315         * image.c, image.h: add assembly_name field to MonoImage
13316         from the assembly table.
13317         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
13318
13319 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
13320
13321         * class.c: Handle Array in mono_class_from_mono_type ().
13322         * metadata.c, pedump.c: some endian fixes.
13323
13324 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
13325
13326         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
13327         * metadata.c: fix small problem introduced with the latest commit.
13328
13329 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
13330
13331         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
13332         We don't need a MonoMetadata pointer anymore to compare signatures in
13333         mono_metadata_signature_equal (), update callers.
13334         Reduced memory usage an number of allocations for MonoMethodHeader and
13335         MonoMethodSignature.
13336
13337 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
13338
13339         * metadata.c: added compare for szarray.
13340
13341 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
13342
13343         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
13344         and add a couple more types to it and mono_defaults. Give an hint on
13345         classes that need implementing in our corlib and are referenced
13346         in mscorlib.
13347
13348 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
13349
13350         * class.h, class.c: keep track if a class is also an Enum.
13351         * loader.c: Implement a couple more types for use in libffi
13352         marshalling. Gives better diagnostics when failing to dlopen
13353         a library. Set method->klass for P/Invoke methods, too.
13354
13355 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
13356
13357         * class.c, class.h: add a MonoType this_arg to MonoClass that
13358         represents a pointer to an object of the class' type that
13359         can be used by the interpreter and later the type cache.
13360         Add best guess alignment info for valuetype objects.
13361
13362 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
13363
13364         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
13365         into MonoType: one less level of indirection and allocation and
13366         simplifies quite a bit of code. Added cache for MonoTypes that are
13367         used frequently, so that we don't need to allocate them all the time.
13368
13369 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
13370
13371         * class.c (mono_class_create_from_typedef): System.Enum is also a
13372         value type, although it does not derive from System.ValueType
13373         (maybe a bug in the ms compiler?)
13374
13375         * metadata.c (mono_type_size): return the right size for value types
13376
13377         * loader.c (mono_get_method): only initialize method header if not abstract
13378
13379         * class.c (mono_class_from_mono_type): use mono_default values. 
13380
13381 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
13382
13383         * *: use MonoClass pointers instead of <type_tokens>
13384         
13385         * class.h: new flag: metadata_inited.
13386
13387         * class.c (mono_class_metadata_init): impl.
13388         (mono_class_instance_size): impl.
13389         (mono_class_data_size): impl.
13390
13391 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
13392
13393         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
13394         MonoClass now has the name and name_space fields. 
13395         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
13396         mono_get_method () takes and optional MonoClass as argument.
13397         Removed mono_typedef_from_name() and added mono_class_token_from_name()
13398         instead that takes advantage of a map from class names to typedef
13399         tokens in MonoImage.
13400
13401 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
13402
13403         * metadata.c: zero is not a valid alignment boundary.
13404         Merge MONO_TYPE_VOID in default decoding code.
13405
13406 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
13407
13408         * image.h: merged MonoMetadata into MonoImage
13409
13410         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
13411         identify the type of elements.
13412
13413 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
13414
13415         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
13416         * cil-coff.h: split MonoMSDOSHeader and add size info.
13417         * image.c: add some consistency checks.
13418         * metadata.c: fix row size computation: one programmer
13419         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
13420         add explanation for the locator routine.
13421         Fix decoding of size in method header.
13422         
13423 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
13424
13425         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
13426         (g_concat_dir_and_file): Bring g_concat_dir_and_file
13427         function from gnome-libs.  This uses the right path separator
13428         based on the OS, and also works around a bug in some systems where
13429         a double slash is not allowed. 
13430         (default_assembly_name_resolver): Use g_concat_dir_and_file
13431         (mono_assembly_open): ditto.
13432
13433 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
13434
13435         * metadata.c (mono_metadata_signature_equal): impl.
13436
13437         * *: void is now a realy MonoType (instead of using NULL)
13438         
13439         * metadata.c (do_mono_metadata_parse_type): use
13440         mono_metadata_parse_type to parse void value.
13441
13442 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
13443
13444         * metadata.c, metadata.h: in the signature and method header store
13445         only the space required for holding the loca vars and incoming arguments.
13446
13447 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
13448
13449         * metadata.c (do_mono_metadata_parse_type): treat void like any
13450         other type (instead of assigning NULL);
13451
13452 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
13453
13454         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
13455
13456 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
13457
13458         * image.c (do_mono_image_open): added a cache for arrays.
13459
13460 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
13461
13462         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
13463         decode a single column from a row in a metadata table and changes
13464         to take advantage of it in the typedef locator (gives a nice speed up).
13465         Store offset info for function params.
13466
13467 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
13468
13469         * image.h (MONO_IMAGE_IS_CORLIB): removed 
13470
13471 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
13472
13473         * assembly.c: how could mono_assembly_close () had ever worked?
13474         * metadata.c, metadata.h: provide offset info for local vars.
13475         Implement mono_type_size () to take care of alignment as well
13476         as size (it was mono_field_type_size in cli/class.c before).
13477
13478 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
13479
13480         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
13481
13482         * assembly.h (CORLIB_NAME): set to corlib.dll
13483
13484         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
13485
13486 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
13487
13488         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
13489         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
13490         tokentype.h: massive namespace cleanup.
13491
13492 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
13493
13494         * metadata.h, metadata.c: decode exception clauses when parsing method header.
13495
13496 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
13497
13498         * metadata.c (mono_metadata_free_type): added check for type !=
13499         NULL (void) before calling mono_metadata_free_type()
13500
13501 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
13502
13503         * metadata.h, row_indexes.h: added header with enumerations to use
13504         to index in the columns from tables in metadata and to decode coded
13505         tokens: we should start using this instead of embedding magic numbers
13506         all over the code.
13507
13508 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
13509
13510         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
13511         Move metadata_t info from cli_image_info_t to MonoImage, where
13512         it's easily accessible. Changed all the uses accordingly.
13513         Added the method and class caches to MonoImage.
13514         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
13515         and mono_metadata_decode_value () signature to be more consistent
13516         with the other parse functions (and simplify code). Taken advantage
13517         of zero-length array allocation with GCC. Removed reduntant (and
13518         wrong) MonoFieldType struct and use MonoParam instead. Changed
13519         mono_metadata_parse_field_type () to use common code for parsing.
13520         Added mono_metadata_typedef_from_field () and
13521         mono_metadata_typedef_from_method () to lookup a typedef index from a
13522         field or method token.
13523         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
13524
13525 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
13526
13527         * metadata.c (mono_metadata_parse_field_type): Implement. 
13528         (do_mono_metadata_parse_type): Split engine from
13529         mono_metadata_parse_type, so that we can create smaller structures
13530         for things that just have one pointer to the MonoType (look at
13531         the MonoFieldType)
13532
13533 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
13534
13535         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
13536         as Jan Gray found out, it is incorrect. 
13537
13538 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
13539
13540         * assembly.c: Implement asssembly loading.  This loads an image
13541         and loads all the referenced assemblies.  Come to think of it, we
13542         could always do lazy loading of the assemblies. 
13543
13544         * image.c (mono_image_open): Keep loaded images in a hashtable.
13545
13546         * image.h (MonoImage): Add reference count.
13547
13548 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
13549
13550         * assembly.c (mono_assembly_open): Keep track of the file name in
13551         case the assembly has no ASSEMBLY table.
13552
13553         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
13554         from get.c here.
13555
13556 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
13557
13558         * metadata.c, metadata.h: decode local vars in method header
13559         parse function. Change callers accordingly.
13560
13561 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
13562
13563         * metadata.h, cil-coff.h: protect against multiple inclusion.
13564         Added some new structures to hold information decoded from metadata:
13565         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
13566         and relevant decoding/free functions.
13567         * metadata.c: implement decoding functions. Add warning for out of bounds
13568         index in mono_metadata_locate(). Implement mono_get_method () to retreive
13569         all the info about a method signature and invocation. Remove check on
13570         uninitialized local var in parse_mh() and fix memory leak.
13571
13572 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
13573
13574         * metadata.h: More macros.
13575
13576         * tokentype.h: New file.
13577
13578 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
13579
13580         * assembly.c: added a consistency check and initialize
13581         some structures with g_new0().
13582         * metadata.c: fixed a couple more bugs in table size computation
13583         and add other checks for out-of bound access to metadata.
13584
13585 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
13586
13587         * metatada.c: fix bugs computing table sizes. Spew a
13588         warning when index in string heap is out of bounds.
13589
13590 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
13591
13592         * metadata.h: Add a couple of macros to manipulate tokens. 
13593
13594 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
13595
13596         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
13597         cli_section_tables).
13598
13599 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
13600
13601         * metadata.c (mono_metadata_user_string): New function, provides
13602         access to the UserString heap. 
13603
13604 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
13605
13606         * metadata.c: Add inline documentation.
13607
13608 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
13609
13610         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
13611         files. 
13612
13613 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
13614
13615         * typeattr.h: New file, TypeAttribute flags. 
13616
13617 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
13618
13619         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
13620         mono_assembly_ensure_section): Section loading code.
13621         (load_section_tables): Load the sections.
13622
13623         * mono/metadata/metadata.c (mono_metadata_locate_token,
13624         mono_metadata_locate): Functions to locate the information
13625         definition given a token or a table and an index.
13626         (mono_metadata_compute_table_bases): New.
13627         (compute_size): New function to compute the sizes of the various
13628         tables.
13629
13630         * mono/metadata/metadata.h: Finish listing the different index
13631         types. 
13632
13633         * mono/metadata/pedump.c: Improve to dump new information.
13634
13635 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
13636
13637         * mono/metadata/metadata.c: Entered all the tables matching
13638         Beta2. 
13639
13640         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
13641