6c93ae0f075a22b4900f266ae58a70aed00d6c1c
[mono.git] / mono / metadata / ChangeLog
1 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
2
3         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
4         values.
5
6         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
7         
8 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
9
10         * domain-internals.h: add the hashtable here.
11
12         * class-internals.h: Remove `info' from MonoMethod
13
14         * domain.c: Add a new hashtable, jit_trampoline_hash
15
16 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
17
18         * object.c: don't set the value of static fields
19         (fixes bug#72494).
20
21 2005-02-11  Martin Baulig  <martin@ximian.com>
22
23         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
24         (mono_debug_add_method): Silently ignore the method if it's too big.
25         (mono_debug_add_type): Likewise.
26
27 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
28
29         * threads.c, appdomain.c: remove #ifdefs from the code.
30
31 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
32
33         * metadata-internals.h: Added flags to MonoAssembly to cache the most
34         common security informations. This allows us to stay in unmanaged code
35         when doing LinkDemand and it's special cases (except for the first 
36         time for initialization). The flags a very much used with --security.
37         * reflection.c|h: Added code to get declarative security attributes 
38         for LinkDemand and InheritanceDemand. This required to refactor the
39         existing code for Demand.
40         * security-manager.c|h: Added new method fields for the special cases
41         of LinkDemand.
42
43 2005-02-10  Martin Baulig  <martin@ximian.com>
44
45         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
46         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
47
48 2005-02-10  Martin Baulig  <martin@ximian.com>
49
50         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
51         debugging code; this is almost a complete rewrite.
52
53         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
54
55 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
56
57         * domain.c, object.h: expose mono_string_equal () and 
58         mono_string_hash ().
59         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
60         it's implemented in managed code.
61
62 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
63
64         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
65         lo leak objects between appdomains.
66
67 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
68
69         * assembly.c: old compilers compilation fix from 
70         robertj@gmx.net (Robert Jordan).
71
72 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
73
74         * class-internals.h: Little reminder for the future.
75
76         * debug-helpers.c: Fix up wrapper_type_names
77
78 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
79
80         * image.c, metadata-internals.h: when loading an image from a file,
81         mmap all of it and use the same codepaths as when using a
82         in-memory image: the code is simpler and we use less memory
83         (both writable and readonly).
84
85 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
86
87         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
88         API to alloc runtime data structures that need to be tracked by the
89         GC and contain pointers.
90         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
91         make the code more readable and eventually use a different GC.
92
93 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
94
95         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
96         for out arguments.
97         
98 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
99
100         * object.c: In release_type_locks(), don't release the cctor lock
101         if it has already been released. This fixes a crash in the
102         thread5 test.
103
104 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
105
106         * gc.c, marshal.c, icall.c: register a delegate for finalization
107         only when the native function pointer has been allocated for it.
108
109 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
110
111         * object.c: cleaned up some code, allocate objects that are
112         pointer free with the atomic malloc variant. Allocate memory
113         for static data from the mempool if it's pointer-free.
114         Allocate the bounds array at the end of the array data, when needed.
115         * object-internals.h, object.h: move a private function in a private
116         header.
117         * class.c: handle missing case in tracking references in fields.
118
119 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
120
121         * class.c, class-internals.h: keep track if a type has
122         reference fields in either the instance or static fields.
123
124 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
125
126         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
127         and renamed to MonoRuntimeInfo. Added fields to store the expected
128         framework assembly version. Changed mono_get_framework_version and
129         mono_get_runtime_version for a single mono_get_runtime_info method.
130         
131         * assembly.c: Added method to remap system assembly versions to the
132         current executing runtime version. Removed old mapping code.
133         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
134         
135         * icall.c, reflection.c: Track api changes.
136
137 2005-02-06  Miguel de Icaza  <miguel@novell.com>
138
139         * loader.c (method_from_memberref): Improve error reporting,
140         produce the class name instead of the typeref/typedef index. 
141
142 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
143
144         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
145
146 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
147
148         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
149         stdcall and charset name mangling.  Reorganize the code and add
150         some tracing stuff.
151
152 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
153
154         * monodiet.c: More iters!
155
156         * marshal.c: Iter usage.
157
158         * icall.c: Iter usage.
159
160         * object.c: Use iters.
161
162         * debug-helpers.c: More iters
163
164 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
165
166         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
167         under win32.
168
169 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
170
171         * mono-debug-debugger.c: use iters
172
173         * class.c, class-internals.h: mono_class_setup_events is static
174         now
175
176         * All callers: use iters
177
178 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
179
180         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
181         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
182
183 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
184
185         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
186
187         * marshal.h: Add prototypes for ldfld/stfld_remote.
188
189         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
190         this is called during startup.
191         
192 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
193
194         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
195         MonoThreadsSync struct private in monitor.c. Changed the way
196         MonoThreadsSync is allocated so it's faster and there is no
197         need to keep track of it with a finalizer and it uses less memory.
198         This also finally allows us to allocate mono objects as ptrfree when
199         there are no reference fields.
200
201 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
202
203         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
204         disappearing link to the GC interface and use them to simplify
205         the gchandles code.
206
207 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
208
209         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
210         stfld_remote which call mono_load/store_field_new. This allows methods
211         calling ldfld/stfld wrappers to be AOTed.
212
213         * console-io.c: Include sys/filio.h under solaris.
214         
215         * console-io.c: Include curses.h if needed correctly.
216
217 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
218         
219         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
220         method->klass as well.
221
222         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
223
224         * class.c (mono_class_init): Switch on lazy initialization of 
225         methods.
226
227         * class.c (mono_class_get_finalizer): Handle the case when the 
228         finalizer is inherited.
229
230 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
231
232         * console-io.c: <curses.h> is needed by term.h on solaris.
233
234 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
235
236         * icall.c, class-internals.h, monodiet.c, class.c: Remove
237         mono_class_setup_properties where possible. Remove this ftn from
238         the header file, and make it static.
239
240 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
241
242         * loader.c: Add missing setup_... call.
243
244         * class.c: Add missing setup_... calls.
245
246         * class.c (mono_class_init): Switch on lazy initialization of 
247         the generic vtable.
248         
249         * class.c (mono_class_init): Fix generics broken by the recent changes.
250
251         * monodiet.c (handle_type): Add missing setup_... calls.
252
253         * class.c: Back out garbage in previous patch.
254         
255         * class.c: Add missing setup_... calls.
256
257         * class.c (mono_class_get_method_from_name_flags): Avoid calling
258         mono_class_setup_methods () if possible.
259
260         * class-internals.h (MonoClass): Add 'has_cctor' flag.
261
262         * class-internals.h (MonoCachedClassInfo): New structure.
263
264         * class.c: Initialize properties and events fields of MonoClass lazily.
265
266         * class.c: Add infrastructure for lazily initializing the methods and
267         vtable fields of MonoClass. Not yet used.
268
269         * class.c (mono_class_get_finalizer): New helper function.
270
271         * class.c: Add infrastructure for loading some class related data from
272         an AOT file.
273
274         * object.c: Add infrastructure for initializing the vtable from data
275         in the AOT file.
276
277         * gc.c (run_finalize): Use mono_class_get_finalizer ().
278
279         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
280         appropriate initialization function before accessing parts of the
281         MonoClass structure.
282
283         * marshal.c: Fix warnings.
284         
285         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
286
287         * mono-debug-debugger.c (get_exception_message): Use 
288         mono_class_get_method_from_name_flags ().
289
290 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
291
292         * reflection.c, appdomain.c: Replace a few manual searches that
293         Zoltan missed. (Paolo approved this part of my initial patch).
294
295 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
296
297         * profiler.c: disable recording statistical events at report time.
298
299 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
300
301         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
302         to byteswap arrays of enum values, too (bug #72080).
303
304 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
305
306         * appdomain.c (set_domain_search_path): Allow this to be called if
307         domain->setup is not yet set.
308
309         * loader.c (mono_method_get_index): New helper function.
310
311         * loader.c reflection.c: Use mono_method_get_index ().
312
313         * class.c (mono_class_get_method_from_name_flags): New helper method.
314
315         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
316         this.
317
318         * class.c (mono_class_get_cctor): New helper method.
319
320         * string-icalls.c object.c class.c marshal.c reflection.c: Use
321         mono_class_get_method () to look up methods.
322
323 2005-02-01  Miguel de Icaza  <miguel@novell.com>
324
325         * console-io.c: Fix the build, this should work on Windows.
326
327 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
328
329         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
330         be set to null to keep things valid
331
332 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
333
334         * icall.c: added Console 2.0 icalls.
335         * Makefile.am: added console-io.[ch]
336         * console-io.[ch]: internal calls for Console 2.0 API.
337
338 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
339
340         * class.c: make sure we consider all the interfaces
341         when calculating max_interface_id (bug found by
342         Jeroen Frijters running ikvm).
343
344 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
345
346         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
347         valuetype fields to null.
348
349         * object.c (set_value): Ditto. Fixes #71669.    
350
351 2005-01-31  Martin Baulig  <martin@ximian.com>
352
353         * metadata.c (mono_metadata_has_generic_params): New public
354         function; checks whether something is a generic method.
355
356 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
357
358         * appdomain.c: fix infinite recursion when adding assemblies.
359
360 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
361
362         * object.c: Fix small typo to return all items for Environment.
363         GetCommandLineArgs.
364
365 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
366
367         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
368         reflection.c: more domain and assembly-unload related fixes
369         and memory leaks plugs.
370
371 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
372
373         * class.c loader.c security.c loader.h process.c threads.c mono-debug-debugger.c profiler.c marshal.c rand.cpedump.c: Fix 64 bit warnings.
374
375 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
376
377         * loader.c (mono_method_signature): Make this method lazy
378         (mono_get_method_from_token): Don't computate the signature here.
379
380         Doing this saves quite a bit of memory. I got 90 kb on starting up
381         monodoc. It should also save some disk reads on startup.
382
383         * *: MonoMethod->signature might be NULL now. You *MUST* use
384         mono_method_signature.
385
386 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
387
388         * object.c (mono_runtime_get_main_args): Return an array from the
389         current domain here. Fixes #71938.
390
391 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
392
393         * monitor.c: formatting changes to comply with the
394         mono coding style and remove #ifdefs from the code.
395
396 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
397
398         * metadata.c, private.h: remove some unneeded data
399         and use a more compact representation for table schemas.
400
401 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
402
403         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
404         to get a better distribution in hash tables.
405         * *.c: use mono_aligned_addr_hash() where appropriate.
406         * assembly.c: make var static.
407
408 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
409
410         * domain-internals.h: Put MonoJitInfo on a diet.
411
412         * domain.c: Fix a warning.
413
414 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
415
416         * gc.c: rework the gc handles code to reuse handles
417         when freed.
418
419 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
420
421         * domain.c: fixed long standing bug in mono_string_equal() which
422         was brought to light with the ldstr changes.
423
424 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
425
426         * reflection.c: Remove warning by adding missing include for marshal.h
427
428 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
429
430         * domain.c, object.c: change the ldstr_table to hold
431         MonoString* as keys: makes the runtime isinterned lookup
432         faster and simplifies memory management.
433
434 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
435  
436         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
437         possible to add imperative security checks before calling the icall.
438         * reflection.c: Return security attributes on the original MonoMethod
439         (and not the wrapped one). This fix permissions on icalls.
440
441 2005-01-25  Dick Porter  <dick@ximian.com>
442
443         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
444         the check for mktime() support actually test the mktime() return
445         value.  "Fixes" bug 71682, though the output is still different to
446         MS.
447
448 2005-01-25  Martin Baulig  <martin@ximian.com>
449
450         * class.c (mono_class_is_assignable_from): Make this work for
451         generic instances.
452
453 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
454
455         * marshal.c (mono_string_utf8_to_builder)
456         (mono_string_builder_to_utf16): We might not have ownership of the
457         string. In thise case, we need to create a new buffer.
458
459         * object-internals.h (mono_stringbuilder_capacity): sb->str might
460         be null, in which case, use the default capacity.
461
462 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
463
464         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
465         GC events to the profiler.
466
467 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
468
469         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
470         if you don't want the GC to run.
471
472 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
473
474         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
475         start providing a GC API and keeping different implementations in
476         their own file.
477         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
478
479 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
480
481         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
482         mmap rather than allocating a huge buffer.
483         (mono_debug_close_mono_symbol_file): Free the buffer allocated
484         above.
485
486 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
487
488         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
489         and CheckExecutionRights.
490         * reflection.c|h: Keep the index of the declarative security to be 
491         used, instead of the pointer, when AOT compiler is used. Also add 
492         class initialization when requesting demands.
493         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
494         CheckExecutionRights. Both properties are now FALSE by default, and
495         unmodifiable, unless the --security option is used.
496
497 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
498
499         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
500         reflection.c: properly refcount images and assemblies, many leaks fixed.
501
502 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
503
504         * threadpool.c: increase the timeout for threads in the thread pool to
505         10s.  Fixes bug #67159.
506
507 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
508
509         * class-internals.h: Sun's compiler insists on explicit
510         signed on bit fields to handle then correctly.
511
512 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
513
514         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
515         Make the size of the array fit only the number of invalid path
516         chars that we have.
517
518         * class.c (_mono_class_get): Improve the error reporting when a
519         class referenced is not found, to assist debugging. 
520
521 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
522
523         * threads.c: fix off-by-one error.
524         * domain.c: free data allocated in the domain.
525
526 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
527
528         * reflection.c (mono_method_body_get_object): Fill out exception info
529         as well.
530
531         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
532         structure.
533         
534 2005-01-19  Martin Baulig  <martin@ximian.com>
535
536         * loader.c (mono_get_method_constrained): Make this work again.
537
538 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
539
540         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
541         guint16 to match the managed side.
542
543         * reflection.c (mono_reflection_body_get_object): Fill out local
544         variables array.
545
546         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
547         as well.
548
549         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
550         'local_var_sig_token'.
551
552 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
553
554         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
555         System.Drawing.
556
557         * reflection.c (mono_method_body_get_object): Handle abstract and
558         runtime methods.
559
560 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
561
562         * marshal.c, loader.c, class-internals.h, reflection.c:
563         store the emthod data for a wrapper in an array instead of a list.
564
565 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
566
567         * marshal.c: change the code to allocate memory more
568         conservatively for method wrappers.
569
570 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
571
572         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
573         fields from MonoClass to the marshal info structure where they belong.
574
575 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
576
577         * class.c, object.c, class-internals.h, marshal.c: rearrange
578         some fields and tweak some types to lower memory usage.
579
580 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
581
582         * threads.c (signal_thread_state_change): Handle the case when the
583         target thread is the current thread.
584
585         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
586
587         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
588         emit_ptr_to_object_conv. 
589
590         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
591         marshalling. Fixes #71352.
592
593 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
594
595         * metadata.h, blob.h: move table enum to blob.h so it can be included
596         in any header.
597         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
598         cut the size of MonoImage/MonoDynamicImage.
599
600 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
601
602         * profiler.c (mono_profiler_install_simple): Fix default arguments.
603
604 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
605
606         * reflection.c, reflection.h, icall.c: add a function to check
607         if an attribute type is defined for a metadata object.
608
609 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
610
611         * object-internals.h: Added some needed fields from StringBuilder class.
612         * marshal.c: Set the maxCapacity when creating a StringBuilder.
613
614 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
615
616         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
617         threads before shutting down the runtime.
618
619         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
620
621 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
622
623         * object-internal.h, threads.c: implement stacksize and 
624         parameterized thread start functionality (requires
625         matching corlib). Marked broken code for later removal.
626
627 2005-01-12  Martin Baulig  <martin@ximian.com>
628
629         * class-internals.h (MonoGenericClass): Moved the `initialized'
630         flag to MonoDynamicGenericClass, removed `init_pending'.
631         (MonoGenericInst): Added `is_reference' flag.
632
633 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
634
635         * reflection.c (mono_image_create_pefile): Only set the pe_offset
636         inside the MSDOS header. Fixes #71201.
637
638         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
639         gc thread.
640         (mono_domain_finalize): Ditto.
641
642 2005-01-12  Martin Baulig  <martin@ximian.com>
643
644         * class.c (mono_get_shared_generic_class): Use the cache for
645         non-dynamic generic classes.
646
647         * class-internals.h (mono_class_create_generic_2): Removed
648         function prototype, this function is now static inside class.c.
649
650         * class.c (mono_class_create_generic_2): Made this static, only
651         call it from mono_class_init() and mono_class_setup_parent().
652         (collect_implemented_interfaces_aux): Call mono_class_init() on
653         the interfaces we collect.
654         (mono_class_setup_vtable): Call mono_class_init (class->parent).
655
656 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
657
658         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
659         it a real thread handle.
660
661         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
662         MonoJitExceptionInfo, since each catch clause needs its own variable.
663         
664 2005-01-11  Dick Porter  <dick@ximian.com>
665
666         * image.c (mono_pe_file_open): New variant on mono_image_open()
667         that does not set up the CLI metadata; used for FileVersionInfo so
668         it can get the data for windows binaries too.
669         
670         * process.c (process_read_string_block): Don't read off the end of
671         the StringTable block.
672
673         These both fix bug 70766.
674
675 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
676
677         * gc.c: set some fields to NULL at GC cleanup time.
678         * threads.c: if we quit the main thread, call exit ().
679
680 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
681
682         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
683
684 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
685
686         * threads.h, threads.c, object.c: added accessor and settor for
687         main_thread. Handle it specially when exiting from it: wait
688         for other foreground threads to exit.
689
690 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
691
692         * process.c, verify.c: remove some bloat.
693
694 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
695
696         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
697         the calling convention to cdecl under win32.
698
699 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
700
701         * object.c (mono_object_get_size): New function to get the size of
702         an object instance.
703
704         * profiler.c (simple_allocation): Use above.
705
706 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
707
708         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
709         ves_icall_System_AppDomain_getRootDomain (as it's not required to
710         get an appdomain by it's id and we can't assume the root's id is 0).
711         * domain-internals.h: Change the function prototype to match.
712         * icall.c: Change the icall table for AppDomain.
713
714 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
715
716         * locales.c (string_invariant_compare_char): Only compute
717         GUnicodeTypes in the case where we need them.  Test for ordinality
718         first and return if so.
719
720         From the commit:
721
722                 /*
723                  * FIXME: here we must use the information from c1type and c2type
724                  * to find out the proper collation, even on the InvariantCulture, the
725                  * sorting is not done by computing the unicode values, but their
726                  * actual sort order.
727                  */
728
729 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
730
731         * loader.c: for P/Invoke methods, allow the "Internal" shared
732         library name to refer to the calling process symbol namespace.
733
734 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
735
736         * Makefile.am: Add the security manager to the build.
737         * security-manager.c|h: New. Initialization of the security manager.
738
739 2005-01-07  Dick Porter  <dick@ximian.com>
740
741         * threads.c: 
742         * monitor.c: Update thread state during Monitor and WaitHandle
743         waits.  Fixes bug 71031.
744
745 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
746
747         * reflection.c (property_encode_signature): Correctly handle when the
748         property has no methods.
749
750 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
751
752         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
753         
754         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
755         fields from mb, not rmb. Fixes #71017.
756
757         * marshal.c (emit_ptr_to_str_conv): Add support for 
758         ByValTStr -> string conversion. Fixes #71015.
759
760         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
761
762         * mempool.c (mono_mempool_contains_addr): New helper function.
763
764 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
765
766         * metadata.c (mono_metadata_compute_size): Fix size calculation of
767         HasSematics encoded fields.
768         
769         * metadata.c (mono_type_to_unmanaged): Improve error message for 
770         invalid string marshalling.
771
772         * metadata.c: Fix warnings.
773         
774 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
775
776         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
777         profiler support.
778
779 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
780
781         * domain.c object.c domain-internals.h: Revert part of r38077 since the
782         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
783         tests.
784
785 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
786
787         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
788         so methods containing these can be AOTed.
789
790 2005-01-03  Martin Baulig  <martin@ximian.com>
791
792         * loader.c (find_method): Removed the hack for generic instances.
793         (method_from_memberref): If our parent is a generic instance, pass
794         its generic type definition to find_method() and then inflate the
795         method.
796         (mono_get_method_constrained): Pass the generic type definition to
797         find_method() and inflate the method later.
798
799         * class-internals.h (MonoStats): Added `generic_class_count'.
800
801         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
802         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
803
804         * reflection.c (mono_custom_attrs_from_params): Don't ignore
805         generic type definitions.
806
807 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
808
809         * loader.c icall.c: Fix warnings.
810
811 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
812
813         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
814         blittable types. Fixes #70864.
815
816 2004-12-29  Martin Baulig  <martin@ximian.com>
817
818         * icall.c
819         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
820
821         * reflection.c (mono_method_get_object): Create a
822         "System.Reflection.MonoGenericMethod" for inflated methods; don't
823         call mono_get_inflated_method().
824
825         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
826
827 2004-12-27  Martin Baulig  <martin@ximian.com>
828
829         * class-internals.h (MonoMethod): Added `is_inflated' flag.
830         (MonoMethodInflated): Added `inflated' field.
831
832         * class.c (mono_class_inflate_generic_method): Don't really
833         inflate the method here; just set the `is_inflated' flag in the
834         MonoMethod.
835         (mono_class_get_inflated_method): Actually inflate the method here
836         if it's not already inflated; we use the MonoMethodInflated's new
837         `inflated' field as a cache.
838
839 2004-12-26  Martin Baulig  <martin@ximian.com>
840
841         * class.c
842         (inflate_generic_class): Moved some code out of inflate_generic_type().
843         (mono_class_inflate_generic_method): If we're already inflated,
844         inflate the context and use the declaring method; ie. make sure
845         the declaring method of an inflated method is always the generic
846         method definition.
847         (mono_class_create_from_typedef): Create
848         `class->generic_container->context->gclass'.
849
850 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
851
852         * metadata-internals.h, marshal.c, reflection.c: More
853         MonoGHashTable->GHashTable.
854
855         * domain-internals.h, class.c: Change MonoGHashTable's into
856         GHashTables for some cases where no gc stuff is used
857
858         All users: update apis
859
860 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
861
862         * metadata.c (builtin_types): Make this `const'. Makes this get
863         put into the shareable section.
864         (mono_metadata_init): Casts to make gcc happy.
865
866 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
867
868         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
869
870 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
871
872         * icall.c: Added an internal call to retrieve the position and length
873         of assembly-level declarative security attributes (RequestMinimum, 
874         RequestOptional and RequestRefuse). This is used by the Assembly class
875         to re-create the corresponding permission sets.
876
877 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
878
879         * marshal.c: fix the stelemref wrapper to be type correct
880         (and faster).
881
882 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
883
884         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
885         to do key & 0x7fffffff. Hashtable already does this. It just
886         results in longer code.
887
888 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
889
890         * appdomain.c: Bump corlib version.
891         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
892         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
893         * reflection.c|h: Add functions to get declarative security infos
894         (blob position and length) for assemblies, classes and methods.
895
896 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
897
898         * reflection.c: sort the constant table (bug #70693).
899
900 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
901
902         * object-internals.h, threads.c, domain.c: add accessors for
903         the MonoThread and MonoDomain tls keys.
904
905 2004-12-18  Martin Baulig  <martin@ximian.com>
906
907         * class.c (inflate_generic_type): If we're inflating a generic
908         instance, set `ngclass->context->container = context->container';
909         ie. the container we inflated into.
910
911         * metadata.c (mono_metadata_parse_generic_param): Reflect above
912         inflate_generic_type() changes.
913
914 2004-12-17  Martin Baulig  <martin@ximian.com>
915
916         * class-internals.h
917         (MonoGenericClass): Replaced `MonoType *generic_type' with
918         `MonoClass *generic_class'.  Removed `dynamic_info'; if
919         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
920         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
921
922 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
923
924         * exception.c (mono_exception_from_token): New helper function.
925
926 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
927
928         * assembly.c (mono_assembly_load_with_partial_name): Call 
929         mono_assembly_loaded before invoking the preload hooks. Fixes
930         #70564.
931
932         * object-internals.h (MonoThread): Change culture_info and 
933         ui_culture_info into an array.
934
935         * threads.c: Cache culture info objects from more than one appdomain.
936
937         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
938         current UI culture.
939
940 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
941
942         * threads.h threads.c appdomain.c: Clear the culture_info field of
943         all threads during unloading if they point to an object in the dying
944         appdomain.
945
946 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
947
948         * culture-info.h (TextInfoEntry): New struct
949         * object-internals.h: sync with managed
950         * locales.c: fill the `text_info_data' field
951         * culture-info-tables.h: update
952
953 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
954
955         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
956         collector.
957
958 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
959
960         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
961         (ves_icall_ModuleBuilder_getMethodToken): Ditto
962
963 2004-12-12  Martin Baulig  <martin@ximian.com>
964
965         * mono-debug-debugger.c (write_type): If we're an enum and the
966         builtin types have already been initialized, call mono_class_init().
967
968 2004-12-11  Martin Baulig  <martin@ximian.com>
969
970         * metadata.c (mono_metadata_load_generic_params): Added
971         `MonoGenericContainer *parent_container' argument; automatically
972         compute `container->is_method'; pass the correct owner to
973         get_constraints().      
974
975         * reflection.c (compare_genericparam): Sort the GenericParam table
976         according to increasing owners. 
977
978 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
979
980         * profiler.c: allow disabling the default profiler.
981
982 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
983
984         * decimal.c, icall.c: allow disabling System.Decimal support.
985
986 2004-12-09  Marek Safar <marek.safar@seznam.cz>
987
988         * reflection.c: Add support for null attribute arguments.
989
990 2004-12-09  Martin Baulig  <martin@ximian.com>
991
992         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
993         names to get rid of compiler warnings.
994
995 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
996
997         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
998         mono_marshal_load_type_info (). Fixes #69625.
999         (mono_marshal_get_ptr_to_struct): Likewise.
1000
1001 2004-12-08  Martin Baulig  <martin@ximian.com>
1002
1003         * mono-debug.h: Bumped version number to 47.
1004
1005         * mono-debug-debugger.c
1006         (mono_debugger_event_handler, mono_debugger_event): Take two
1007         guint64 arguments insteed of a gpointer and a guint32.  
1008
1009 2004-12-08  Martin Baulig  <martin@ximian.com>
1010
1011         * debug-mono-symfile.h
1012         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
1013         `address' to `native_offset'.
1014
1015 2004-12-08  Martin Baulig  <martin@ximian.com>
1016
1017         * class.c (mono_class_create_from_typespec): Only inflate if we
1018         either have `context->gclass' or `context->gmethod'.
1019
1020 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
1021
1022         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
1023
1024         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
1025
1026         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
1027
1028         * reflection.c (mono_assembly_get_object): Remove the workaround put
1029         in for the release.
1030         
1031         * appdomain.c: Use the corlib_internal field from MonoAssembly.
1032
1033         * appdomain.c: Bump corlib version.
1034
1035         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
1036         be visible in other appdomains.
1037
1038 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
1039
1040         * threads.c: Interlocked inc and dec for longs were messed up,
1041         use a KISS based impl for this. Fixes 70234
1042
1043 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
1044
1045         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
1046
1047 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
1048
1049         * icall.c: fix to follow policy not to allow struct
1050         arguments in icalls.
1051
1052 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1053
1054         * process.c: make the patch that handles spaces in file paths work
1055         on mono/windows too.
1056
1057 2004-12-06  Martin Baulig  <martin@ximian.com>
1058
1059         * class.c (mono_class_create_generic): Call
1060         mono_class_setup_supertypes() if we're dynamic.
1061         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
1062
1063 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
1064
1065         * object-internals.h: Add new fields to MonoThread.
1066
1067         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1068
1069         * icall.c threads-types.h threads.c: Add new icalls.
1070
1071         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
1072
1073         * object-internals.h (MonoReflectionAssembly): Sync object layout with
1074         managed side.
1075
1076         * appdomain.c: Bump corlib version.
1077
1078         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
1079         internal assemblies. Fixes #69181.
1080
1081 2004-12-05  Martin Baulig  <martin@ximian.com>
1082
1083         * class.c (mono_class_inflate_generic_signature): Make this a
1084         no-op if `context' is NULL or we don't have any type parameters;
1085         also copy `sentinelpos'.        
1086
1087 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
1088
1089         * image.c: Add unbox_wrapper_cache.
1090
1091         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
1092
1093         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
1094         function generator.
1095         
1096         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
1097         Fixes #70173.
1098
1099         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
1100         
1101 2004-12-04  Martin Baulig  <martin@ximian.com>
1102
1103         * loader.c (mono_method_get_signature_full): New public function;
1104         like mono_method_get_signature(), but with an additional
1105         `MonoGenericContext *' argument.
1106
1107         * class.c (mono_class_inflate_generic_signature): Formerly known
1108         as inflate_generic_signature(); make this public.
1109
1110 2004-12-04  Martin Baulig  <martin@ximian.com>
1111
1112         * metadata.c
1113         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
1114         instead of a `MonoGenericContainer *'.  
1115         (mono_metadata_parse_array_full): Likewise.
1116         (mono_metadata_parse_signature_full): Likewise.
1117         (mono_metadata_parse_method_signature_full): Likewise.
1118         (mono_metadata_parse_generic_inst): Likewise.
1119         (mono_metadata_parse_generic_param): Likewise.
1120         (mono_metadata_parse_mh_full): Likewise.
1121         (mono_type_create_from_typespec_full): Likewise.
1122
1123 2004-12-03  Martin Baulig  <martin@ximian.com>
1124
1125         * class-internals.h (MonoGenericContainer): Replaced the
1126         `MonoGenericContext * pointer with a `MonoGenericContext'
1127         structure and made it the first element.
1128
1129 2004-12-03  Martin Baulig  <martin@ximian.com>
1130
1131         * class.c
1132         (inflate_generic_type): Set the `context->container' when creating
1133         a new MonoGenericContext.
1134         (mono_class_inflate_generic_method): Likewise.
1135         (mono_class_create_from_typespec): Just use `context->container'
1136         to get the container.
1137
1138         * loader.c (method_from_methodspec): Set `context->parent' from
1139         `context->container' - and if that's a method container, use its
1140         parent.  Also set the `context->container' when creating a new
1141         MonoGenericContext.
1142         (mono_get_method_from_token): Use just `context->container' to get
1143         the container.
1144
1145         * metadata.c (do_mono_metadata_parse_generic_class): Also set
1146         `gclass->context->container'.
1147
1148         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
1149         the `context->container' when creating a new MonoGenericContext.
1150
1151 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
1152
1153         * reflection.c (compare_genericparam): Sort params with identical
1154         owner by their number. Fixes gen-111 on sparc.
1155
1156 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
1157
1158         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
1159         around the domain changes.
1160
1161         * appdomain.c (mono_domain_unload): Handle the case when the thread
1162         calling Unload is itself being aborted during unloading. Fixes #70022.
1163
1164         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
1165
1166         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
1167         checkpoint_func as an icall so it gets a wrapper.
1168         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
1169         in the cross-appdomain wrappers too.
1170
1171         * threads.c (mono_thread_has_appdomain_ref): Make this public.
1172
1173         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
1174
1175         * reflection.c: Fix some memory leaks.
1176         
1177 2004-12-02  Martin Baulig  <martin@ximian.com>
1178
1179         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
1180
1181         * metadata.c (generic_class_cache): New static hashtable.
1182         (mono_metadata_lookup_generic_class): New public method.
1183
1184 2004-12-02  Martin Baulig  <martin@ximian.com>
1185
1186         * class.c (mono_class_create_from_typedef): Call
1187         mono_class_setup_parent() and mono_class_create_mono_type() before
1188         parsing the interfaces.
1189
1190 2004-12-02  Martin Baulig  <martin@ximian.com>
1191
1192         * metadata.c (generic_inst_cache): New static hashtable.
1193         (mono_metadata_lookup_generic_inst): New public function.
1194         (mono_metadata_inflate_generic_inst): New public function.
1195         (mono_metadata_parse_generic_inst): New public function.
1196         (do_mono_metadata_parse_generic_class): Use the new
1197         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
1198         since this'll also use the cache.
1199
1200         * reflection.c (mono_reflection_bind_generic_method_parameters):
1201         Use mono_metadata_lookup_generic_inst() to use the new cache.
1202
1203         * class.c (inflate_mono_type): Use
1204         mono_metadata_inflate_generic_inst() to inflate a generic
1205         instance; this'll also use the new cache.
1206
1207         * loader.c (method_from_methodspec): Use
1208         mono_metadata_parse_generic_inst() and
1209         mono_metadata_inflate_generic_inst() rather than parsing it
1210         manually, so we can use the new cache.
1211
1212 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
1213
1214         * threads.c (wait_for_tids): Do not incorrectly free threads when 
1215         the wait times out.
1216
1217 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
1218
1219         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
1220         iter->args based on whether parameters are passed in registers (i.e.
1221         MONO_ARCH_REGPARMS is defined)
1222
1223 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
1224
1225         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
1226         the exception message. Fixes #70070.
1227         (method_from_methodspec): Fix warnings.
1228
1229 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1230
1231         * process.c: (complete_path) return the path quoted
1232
1233 2004-12-01  Martin Baulig  <martin@ximian.com>
1234
1235         * class-internals.h (MonoGenericInst): New structure.
1236         (MonoGenericClass): Replaced `type_argc', `type_argv' and
1237         `is_open' with `MonoGenericInst *inst'.
1238         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
1239         `is_open' with `MonoGenericInst *inst'.
1240
1241 2004-11-30  Martin Baulig  <martin@ximian.com>
1242
1243         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
1244
1245         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
1246         to `generic_class_cache'.
1247
1248         * metadata.c
1249         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
1250         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
1251         (mono_generic_inst_is_valuetype): Renamed to
1252         mono_generic_class_is_valuetype().
1253
1254         * class-internals.h
1255         (MonoGenericInst): Renamed to MonoGenericClass.
1256         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
1257         (MonoClass): Renamed `generic_inst' to `generic_class'.
1258         (MonoGenericContext): Renamed `ginst' to `gclass'.
1259
1260         * object-internals.h
1261         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
1262
1263         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
1264         mono_reflection_generic_class_initialize().
1265
1266         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
1267         now known as "System.Reflection.MonoGenericClass".
1268         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
1269
1270 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
1271
1272         * class-internals.h: Added a flag field to MonoClass to cache the
1273         declarative security attributes actions associated with the class.
1274         * domain-internals.h: Added booleans to MonoJitInfo to cache the
1275         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
1276         applicable to the JITted method.
1277         * reflection.c|h: Added functions to extract (as flags) which security
1278         actions are available (declaratively) for a method, class or assembly.
1279         * metadata.c|h: Added functions to search the declarative security
1280         table in the metadata.
1281         
1282 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
1283
1284         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
1285         EXPORTEDTYPES are already in the class name cache, so there is no
1286         need to add extra code here to look at them. Just removes a bit of
1287         cruft.
1288
1289         (ves_icall_System_Environment_get_TickCount): No need for #if
1290         WINDOWS. We already have the code in io-layer.
1291
1292 2004-11-28  Martin Baulig  <martin@ximian.com>
1293
1294         * loader.c
1295         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
1296         Fixes gen-112.cs.
1297
1298 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
1299
1300         * assembly.c (do_mono_assembly_open): Instead of having a
1301         conditional WITH_BUNDLE, incorporate support for bundles here, by
1302         having a global `bundles' variable holding a pointer to the actual
1303         bundles. 
1304
1305         (mono_register_bundled_assemblies): New API call used by the
1306         bundle code. 
1307
1308         See mkbundle.1 for details.
1309         
1310 2004-11-27  Martin Baulig  <martin@ximian.com>
1311
1312         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
1313         the vtable for generic methods.
1314
1315 2004-11-26  Martin Baulig  <martin@ximian.com>
1316
1317         * metadata.c
1318         (mono_metadata_generic_method_hash): New public function.
1319         (mono_metadata_generic_method_equal): Likewise.
1320
1321         * class-internals.h
1322         (MonoGenericContainer): Added `GHashTable *method_hash'.
1323
1324         * reflection.c (ReflectionMethodBuilder): Added
1325         `MonoGenericContainer *generic_container'.
1326         (reflection_methodbuilder_to_mono_method): Don't create a new
1327         MonoGenericContainer each time we're called.
1328         (mono_reflection_bind_generic_method_parameters): Use
1329         `container->method_hash' to cache the results so we don't create a
1330         different method if we're called several times with the same
1331         arguments.
1332
1333         * loader.c (method_from_methodspec): Use the new
1334         `container->method_hash' here, too.
1335
1336 2004-11-26  Martin Baulig  <martin@ximian.com>
1337
1338         * class.c (inflate_generic_signature): Correctly compute
1339         `res->has_type_parameters'.
1340         (mono_class_vtable): Use the `has_type_parameters' flag to
1341         determine whether we're a generic method.
1342
1343         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
1344
1345 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
1346
1347         * object.c (mono_runtime_run_main): Fix a small memory leak.
1348
1349 2004-11-25  Martin Baulig  <martin@ximian.com>
1350
1351         * class.c (set_generic_param_owner): Fixed the loop.
1352
1353 2004-11-25  Martin Baulig  <martin@ximian.com>
1354
1355         * object.c (mono_class_vtable): Don't create any JIT wrappers for
1356         generic methods.
1357
1358 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
1359
1360         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
1361         names. Fixes #69787.
1362
1363 2004-11-24  Martin Baulig  <martin@ximian.com>
1364
1365         * class.c (mono_class_create_generic_2): If we don't have a
1366         `ginst->parent', inflate `gklass->parent' to get our parent.
1367
1368 2004-11-24  Martin Baulig  <martin@ximian.com>
1369
1370         * reflection.c (compare_genericparam): Correctly sort the
1371         GenericParam table; fixes #69779.
1372
1373 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
1374
1375         * reflection.c: When writing a PE file, don't create a huge
1376         buffer in memory. Just write the arrays we have to the file.
1377         This reduces memory usage.
1378
1379         * metadata-internals.h: MonoDynamicStream pefile is no longer used
1380         globally.
1381
1382 2004-11-17  Martin Baulig  <martin@ximian.com>
1383
1384         * class.c (mono_class_init): Don't setup `class->parent' for
1385         dynamic instances; moved this to mono_class_generic_2().
1386         (mono_class_create_generic): Also set `klass->inited' for dynamic
1387         generic instances.
1388         (mono_class_create_generic_2): Don't do anything for dynamic
1389         generic instances.  Set `klass->parent' here and also call
1390         mono_class_setup_parent() here. 
1391
1392         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
1393         `MonoType *parent' argument; set `ginst->parent' before calling
1394         mono_class_create_generic_2(), so we set the correct parent.
1395
1396 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
1397
1398         * reflection.c: allow getting attributes from ModuleBuilder
1399         (used by ikvm).
1400
1401 2004-11-17  Martin Baulig  <martin@ximian.com>
1402
1403         * class.c (mono_class_create_from_typedef): If a type parameter is
1404         inherited from an outer class, set its owner to that class.
1405
1406 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
1407
1408         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
1409           for (int*) written size. This fixes bug #69592.
1410
1411 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
1412
1413         * icall.c: Added IsAuthenticodePresnet internal call.
1414         * image.c|h: New function that check a MonoImage for an Authenticode
1415         signature in the certificate PE data directory.
1416         * security.c|h: New internal call to ask the runtime if an 
1417         Authenticode signature seems referenced in the PE header.
1418
1419 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
1420
1421         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
1422
1423         * reflection.c (mono_image_create_pefile): Free the assembly streams
1424         after writing out the assembly file.
1425
1426         * object.c (mono_runtime_run_main): Fix small memory leak.
1427
1428         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
1429         property access modifiers. Fixes #69389.
1430
1431 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
1432
1433         * domain.c, object.c, object-internals.h, domain-internals.h,
1434         object.h, marshal.c: keep dynamic code info per domain.
1435
1436 2004-11-15  Martin Baulig  <martin@ximian.com>
1437
1438         * class.c (mono_type_get_name_recurse): Put type arguments in
1439         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
1440         see bug #68387.
1441
1442 2004-11-15  Martin Baulig  <martin@ximian.com>
1443
1444         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
1445         (mono_class_setup_vtable): When computing `the_cname' for a
1446         generic instance, don't include the namespace since we'd otherwise
1447         add it twice.
1448
1449 2004-11-15  Martin Baulig  <martin@ximian.com>
1450
1451         * class.c (mono_class_create_generic): Changed return type to void.
1452         (mono_class_create_generic_2): New public function; setup
1453         `class->method', `class->field' and `class->interfaces' here
1454         instead of in mono_class_init().
1455
1456         * class.h (mono_class_create_generic): Moved to class-internals.h.
1457
1458 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
1459
1460         * reflection.c (mono_image_create_pefile): take a file HANDLE.
1461         rather than writing to memory, write to this file. Right now,
1462         we are just writting into a buffer, and copying that. However
1463         we can avoid the buffer later.
1464
1465         (mono_dynamic_stream_reset): new function
1466
1467         * icall.c, object-internals.h: update for the above.
1468
1469 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
1470
1471         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
1472         have been using gc'd memory. First it is slower, unlikely
1473         the comment in the source code said, secondly, it increases
1474         our footprint to do it in the gc.
1475
1476         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
1477         the method so that it does not have to copy to managed code.
1478
1479 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
1480
1481         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
1482
1483 2004-11-12  Martin Baulig  <martin@localhost>
1484
1485         * reflection.c (mono_image_create_token): Allow generic method
1486         definitions here, since they may appear in an `.override'; see
1487         gen-98/gen-99 for an example.
1488
1489 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
1490
1491         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
1492         #69365.
1493
1494         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
1495         descriptive.
1496
1497 2004-11-11  Martin Baulig  <martin@ximian.com>
1498
1499         * class.c (mono_class_setup_vtable): In an explicit interface
1500         implementation, the method name now includes the arity.
1501
1502 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
1503
1504         * object.c (mono_array_full_copy): Fix warning.
1505
1506 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
1507
1508         * appdomain.c: Removed look_for_method_by_name(). Use the new method
1509         mono_class_get_method_from_name() instead.
1510         
1511         * class-internals.h: Added two new types of wrappers. 
1512         Added MonoRemotingTarget enum. Added new trampoline function type, which
1513         takes an additional MonoRemotingTarget value as parameter, so it is
1514         possible to request a trampoline for a specific target.
1515         
1516         * class.c: Added new mono_class_get_method_from_name() method.
1517         
1518         * class.h: In MonoRemoteClass, we can have now to vtables, one for
1519         general remoting sinks and one specific for cross domain calls.
1520         
1521         * debug-helpers.c: Added new wrapper names.
1522         
1523         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
1524         of a remote class.
1525         
1526         * image.c: Porperly delete value objects form the remoting invoke hashtable.
1527         
1528         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
1529         with several other methods (mono_marshal_get_xappdomain_dispatch,
1530         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
1531         and others) can generate a fast remoting wrapper for cross domain calls.
1532         More information can be found in docs/remoting.
1533         Other changes: Removed mono_find_method_by_name, and used
1534         mono_class_get_method_from_name instead.
1535         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
1536         is stored in the remoting invoke hashtable.
1537         
1538         * marshal.h: published the new method for getting the xdomain wrapper,
1539         and also added a method for getting the adequate wrapper for a given
1540         method and target.
1541         
1542         * object-internals.h, object.c: Added a couple of methods for capying and
1543         cloning arrays.
1544         Modified mono_install_remoting_trampoline, which takes the new remoting
1545         trampoline that has a remoting target as parameter.
1546         mono_class_proxy_vtable now also takes a remoting target as parameter, and
1547         will return the most suitable vtable for the target.
1548         Added mono_remote_class_vtable, which returns the vtable of a remote class
1549         (which can be the normal remoting vtable or the xdomain vtable).
1550         
1551         * threads.c: the xdomain invoke and dispatch wrappers must also be
1552         protected against interruptions.
1553
1554 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1555
1556         * icall.c: use memmove in BlockCopyInternal when the source and
1557         destination arrays are the same.
1558
1559 2004-11-09  Martin Baulig  <martin@ximian.com>
1560
1561         * class-internals.h (MonoGenericContainer): Removed `method' and
1562         `signature', replaced them with `is_method' and `is_signature'
1563         flags.  Added `context'.
1564
1565         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
1566         instead of a `MonoGenericContainer *'.
1567
1568         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
1569         for dynamic type parameters.
1570         (mono_metadata_load_generic_params): Setup `container->context'.
1571
1572         * reflection.c (mono_reflection_setup_generic_class): Setup
1573         `tb->generic_container->context'.
1574         (do_mono_reflection_bind_generic_parameters): Use
1575         mono_class_inflate_generic_type() to correctly inflate types,
1576         rather than using our own hack just for MONO_TYPE_VAR.
1577
1578 2004-11-09  Martin Baulig  <martin@ximian.com>
1579
1580         * class.c (mono_class_inflate_generic_method): Small fix; don't
1581         crash here.
1582
1583         * icall.c
1584         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
1585         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
1586         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
1587         (ves_icall_Type_BindGenericParameters): Likewise.
1588         (ves_icall_Type_get_IsGenericInstance): Likewise.
1589         (ves_icall_Type_GetGenericParameterPosition): Likewise.
1590         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
1591         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
1592         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
1593
1594 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
1595
1596         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
1597         assembly versions and public key tokens. Fixes #69113.
1598
1599 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
1600
1601         * metadata.c: fix bug introduced with the type cache changes
1602         on 2004-11-06.
1603
1604 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
1605
1606         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
1607         the MonoClass pointer instead of the token in exception clauses.
1608         * reflection.c: updates for the above and make the code not depend
1609         on the structure of MonoExceptionClause.
1610
1611 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
1612
1613         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
1614         Add support for dynamic assemblies. Fixes #69114.
1615
1616         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
1617
1618 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
1619
1620         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
1621         since most only those methods use it. the code member of
1622         MonoMethodPInvoke was dead, so that can be removed too. Also,
1623         remove inline_count (again, not used), and move slot so that it
1624         can share bits with some other flags. This saves 8 bytes in the
1625         structure and gives us about 50 kb back for mcs helloworld.cs
1626
1627         * *.[ch]: Do naming changes for the above.
1628
1629         * loader.c (mono_method_get_header): Lazily init the header
1630         on first access.
1631         (mono_get_method_from_token): don't init the header here
1632         (mono_free_method): the header may never be allocated
1633
1634         Overall, this saves 150 kb of unmanaged allocations
1635         for mcs helloworld.cs. That accounts for 10% of the unmanaged
1636         memory at runtime.
1637         
1638         * loader.c, loader.h (mono_method_get_header): new accessor.
1639
1640         * *.[ch]: use the above method. Prepares us to lazily load
1641         the header.
1642
1643         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
1644         three warnings, which are actual bugs (see 69206).
1645
1646         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
1647         unused. Saves a cool 4 bytes / method.
1648
1649 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
1650
1651         * metadata.c (builtin_types): Add types for System.Object here.
1652         (mono_metadata_parse_type_full): Cache MonoType*'s that are
1653         for a class or valuetype from klass->this_arg or klass->byval_arg.
1654
1655         On mcs for a hello world, this gets us down from 21836 MonoType's
1656         to 14560.
1657
1658         (mono_metadata_free_type): Account for the above change.
1659
1660 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
1661
1662         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
1663         exception instead of asserting if name is null.
1664         (ves_icall_System_AppDomain_GetData): Ditto.
1665
1666 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
1667
1668         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
1669         EnumBuilder.
1670
1671         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
1672         Return NULL when the domain does not have entry_assembly set.
1673
1674         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
1675         Add a 'resource_modules' argument.
1676         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
1677
1678         * reflection.c (mono_reflection_create_runtime_class): Move setting
1679         of wastypebuilder here, so mono_get_type_object () returns a MonoType
1680         for enums too.
1681
1682         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
1683         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
1684         Throw an ArgumentNullException if 'ptr' is null.
1685
1686         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
1687         assemblies here. Fixes #69020.
1688
1689 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
1690
1691         * reflection.c (build_compressed_metadata): Fix the previous patch for
1692         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
1693         the stack.
1694
1695 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
1696
1697         * assembly.c (mono_assembly_names_equal): Allow a match if one of
1698         the cultures is false. Fixes #69090.
1699
1700         * reflection.c (build_compressed_metadata): Fix invalid memory read 
1701         detected by valgrind.
1702         
1703         * reflection.c (mono_reflection_get_type): Avoid triggering a 
1704         TypeResolve multiple times for the same type. Fixes #65577.
1705
1706 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
1707
1708         * marshal.c: Avoid using ldftn to call managed functions. It is
1709         much slower than just a call.
1710
1711         * reflection.c (mono_module_get_object): free the basename we
1712         allocate here from glib.
1713         
1714         * reflection.c (ensure_runtime_vtable): make sure to free
1715         overrides.  Also, we were allocating an array of MonoMethod not an
1716         array of MonoMethod*.
1717
1718         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
1719
1720         * image.c (mono_image_close): free image->guid here.
1721
1722 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
1723
1724         * reflection.c: Fix some spec conformance issues with the PE file
1725         structures so mcs compiled apps run on the Net 2.0 beta.
1726
1727 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
1728
1729         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
1730         Implement this. Fixes #67264.
1731
1732         * debug-helpers.h debug-helpers.c marshal.c: Move 
1733         mono_find_method_by_name to debug-helpers.c.
1734
1735 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
1736
1737         * object.c (mono_release_type_locks): type_initialization_hash is
1738         a GHashTable.
1739
1740         * reflection.c object.c object-internals.h: Fix warnings.
1741
1742         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
1743         without accessors. Fixes #61561.
1744
1745         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
1746         application base from the root domain if not set. Fixes #65641.
1747         (mono_runtime_init): Fix warning.
1748
1749 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1750
1751         * appdomain.c: call mono_thread_pool_init.
1752         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
1753         of worker threads based on the number of CPUs and the environment
1754         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
1755         for non-windows (windows) systems.
1756
1757 2004-10-27  Chris Toshok  <toshok@ximian.com>
1758
1759         * mono-debug-debugger.c (write_class): don't call mono_class_init
1760         here, as even with the check for (!klass->init_pending), we get
1761         into a situation where we're hitting cycles in class
1762         initialization.  Fixes #68816.
1763
1764 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
1765
1766         * image.c: Avoid overwriting values in the loaded_images_hash when an
1767         assembly is loaded multiple times. Fixes #61152.
1768
1769         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
1770         so multiple satellite assemblies for the same name can be loaded.
1771         Fixes #68259.
1772
1773         * mono_domain_assembly_preload: Actually return the loaded assembly, 
1774         not NULL.
1775
1776         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
1777         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
1778
1779         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
1780         pending finalizers are not invoked after the appdomain has been 
1781         unloaded. Fixes #67862.
1782
1783 2004-10-22  Martin Baulig  <martin@ximian.com>
1784
1785         * mono-debug-debugger.c
1786         (mono_debugger_runtime_invoke): Don't box valuetypes.
1787
1788 2004-10-22  Chris Toshok  <toshok@ximian.com>
1789
1790         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
1791         don't hide private methods.
1792
1793 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
1794
1795         * icall.c: Allows the runtime to "share" (when known) the public key
1796         token of an assembly. This avoid the need to recalculate the token 
1797         (from the public key) in managed code.
1798
1799 2004-10-21  Chris Toshok  <toshok@ximian.com>
1800
1801         * debug-helpers.c (append_class_name): argh, revert last patch.
1802         
1803 2004-10-21  Chris Toshok  <toshok@ximian.com>
1804
1805         * debug-helpers.c (append_class_name): use '+' as the delimiter,
1806         not '/', so that it matches what the debugger uses to look up
1807         methods.
1808
1809 2004-10-21  Martin Baulig  <martin@ximian.com>
1810
1811         * mono-debug-debugger.c (mono_debugger_throw_exception): New
1812         public method; this is called each time an exception is thrown and
1813         allows the debugger to use exception catch points.
1814
1815 2004-10-21  Martin Baulig  <martin@ximian.com>
1816
1817         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
1818         the stack pointer and the exception object in some struct and pass
1819         that to the debugger.
1820
1821 2004-10-21  Chris Toshok  <toshok@ximian.com>
1822
1823         * mono-debug-debugger.c (do_write_class): add instance/static
1824         event support.  We don't expose "raise" or "other" yet.
1825         (event_is_static): new method.
1826
1827 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
1828
1829         * mono-debug-debugger.c
1830         (mono_debugger_handle_exception): Remove
1831         bogus return value for fussy compilers.
1832
1833 2004-10-20  Martin Baulig  <martin@ximian.com>
1834
1835         * mono-debug-debugger.c
1836         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
1837         (mono_debugger_handled_exception): Likewise.
1838
1839 2004-10-20  Martin Baulig  <martin@ximian.com>
1840
1841         * mono-debug-debugger.h (MonoDebuggerEvent): Added
1842         MONO_DEBUGGER_EVENT_EXCEPTION.
1843
1844         * mono-debug-debugger.c (mono_debugger_handle_exception): New
1845         public function to send the debugger a notification for an
1846         exception and inform it about a catch/finally clause.
1847
1848 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
1849
1850         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
1851         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
1852         fix 2.95 build. 
1853
1854         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
1855
1856 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
1857
1858         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
1859         marshalled as [In,Out]. Fixes #58325.
1860
1861 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
1862
1863         * reflection.c (mono_method_body_get_object): Implement some fields.
1864
1865 2004-10-12  Martin Baulig  <martin@ximian.com>
1866
1867         * reflection.c (mono_reflection_bind_generic_parameters): Small
1868         fix, correctly retrieve our parent from a generic instance.
1869
1870 2004-10-12  Martin Baulig  <martin@ximian.com>
1871
1872         * metadata.c (mono_metadata_generic_param_equal): We always have
1873         an owner.
1874
1875         * class.c
1876         (mono_class_from_generic_parameter): We need to have an owner.
1877         (my_mono_class_from_generic_parameter): Likewise.
1878
1879         * reflection.c (mono_reflection_setup_generic_class): Renamed to
1880         mono_reflection_create_generic_class() and added a new
1881         mono_reflection_setup_generic_class().  
1882         (mono_reflection_initialize_generic_param): If we're a nested
1883         generic type and inherited from the containing class, set our
1884         owner to the outer class.
1885
1886 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
1887
1888         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
1889
1890         * reflection.c (mono_method_body_get_object): New function to create
1891         a MethodBody object.
1892
1893         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
1894
1895 2004-10-11  Martin Baulig  <martin@ximian.com>
1896
1897         * metadata.c (_mono_metadata_type_equal): Renamed to
1898         do_mono_metadata_type_equal() and made static.
1899
1900 2004-10-11  Martin Baulig  <martin@ximian.com>
1901
1902         * appdomain.c: Bump corlib version number to 28.
1903
1904 2004-10-10  Martin Baulig  <martin@ximian.com>
1905
1906         * class-internals.h
1907         (MonoGenericInst): Added `MonoGenericContainer *container'.
1908         (MonoGenericMethod): Likewise.
1909         (MonoGenericContext): Likewise.
1910         (MonoGenericParam): Added `MonoGenericContainer *owner'.
1911
1912         * metadata.c
1913         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
1914         (do_mono_metadata_parse_generic_inst): Likewise.
1915         (mono_metadata_parse_type_full): New public method.  This is the actual
1916         mono_metadata_parse_type() implementation - with an additional
1917         `MonoGenericContainer *' argument.
1918         (mono_metadata_parse_array_full): Likewise.
1919         (mono_metadata_parse_signature_full): Likewise.
1920         (mono_metadata_parse_method_signature_full): Likewise.
1921         (mono_metadata_parse_mh_full): Likewise.
1922         (mono_type_create_from_typespec): Likewise.
1923         (mono_metadata_interfaces_from_typedef_full): New public method;
1924         this is similar to the other _full() methods, but we take a
1925         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
1926         (mono_metadata_parse_generic_param): Take an additional
1927         `MonoGenericContainer *' argument and lookup the MonoGenericParam
1928         from that container.
1929         (mono_metadata_generic_param_equal): New static method to compare
1930         two type parameters.
1931         (_mono_metadata_type_equal): New static method; takes an
1932         additional `gboolean signature_only' argument - if true, we don't
1933         compare the owners of generic parameters.
1934         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
1935         with a TRUE argument - do a signature-only comparision.
1936
1937         * loader.c: Use the new _full() methods and pass the
1938         MonoGenericContainer to them.
1939
1940         * object-internals.h (MonoReflectionTypeBuilder): Added
1941         `MonoGenericContainer *generic_container' field.
1942         (MonoReflectionMethodBuilder): Likewise.
1943
1944 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
1945
1946         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
1947         case initial images of dynamic assemblies.
1948
1949         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
1950
1951         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
1952
1953         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
1954         length of event->other array.
1955         (typebuilder_setup_events): Ditto.
1956
1957         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
1958         'assembly_by_name' and add an 'assemblies' list.
1959
1960         * assembly.h assembly.c: Add a new search hook for determining whenever
1961         an assembly is already loaded. Use this instead of searching in the
1962         loaded_assemblies list.
1963
1964         * domain.c appdomain.c: Implement the new search hook so loaded 
1965         assemblies are now scoped by appdomain. Fixes #67727.
1966
1967 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
1968
1969         * threads.c (mono_thread_attach): Initialize synch_lock field so
1970         mono_thread_detach works again.
1971
1972         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
1973         'lib' too. Fixes #63130.
1974
1975 2004-10-06  Jackson Harper  <jackson@ximian.com>
1976
1977         * culture-info-tables.h: regenerated.
1978
1979 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
1980
1981         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
1982         implemented by other interfaces in the result. Fixes #65764.
1983         
1984         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
1985         Handle unloadable modules without crashing.
1986
1987         * image.c (load_modules): Revert the previous patch since modules must
1988         have a fixed index inside the array.
1989         
1990         * image.c (load_modules): Don't include native modules in the modules
1991         array.
1992
1993 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
1994
1995         * reflection.h: Add param_defaults field.
1996
1997         * reflection.c: Add support for parameter defaults in dynamic methods.
1998         Fixes #64595.
1999
2000         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
2001         an empty string when a type has no namespace. Fixes #64230.
2002
2003 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
2004
2005         * tabledefs.h: Added "internal" security actions to support non-CAS
2006         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
2007         Note: they do not seems to be used anymore in 2.0 (new metadata format)
2008
2009 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
2010
2011         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
2012         constructor of abstract class. Fixes #61689.
2013
2014 2004-10-04  Martin Baulig  <martin@ximian.com>
2015
2016         * class-internals.h (MonoGenericContainer): New type.
2017         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
2018         `MonoGenericContainer *generic_container'.
2019         (MonoClass): Replaced `gen_params' and `num_gen_params' with
2020         `MonoGenericContainer *generic_container'.
2021
2022         * metadata.c (mono_metadata_load_generic_params): Return a
2023         `MonoGenericContainer *' instead of a `MonoGenericParam *';
2024         removed the `num' argument.
2025
2026 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
2027
2028         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
2029         for dynamic images.
2030
2031         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
2032         machine fields.
2033
2034         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
2035
2036         * reflection.c: Save pe_kind and machine values into the generated
2037         image file.
2038
2039         * appdomain.c: Bump corlib version number.
2040
2041         * object-internals.h: Reorganize layout of LocalBuilder.
2042
2043         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
2044         New helper function.
2045
2046         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
2047         created MonoType for dynamic types. Fixes #66180.
2048
2049 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
2050
2051         * threadpool.c: the ares hashtable needs a critical section around it.
2052         this prevents some nasty segfaults
2053
2054 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
2055
2056         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
2057         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
2058         bug 67324).
2059         
2060 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
2061
2062         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
2063         
2064 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
2065
2066         * image.c: Always canonicalize image file names, to avoid loading
2067         the same assembly twice when referenced using a relative path.
2068
2069 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
2070
2071         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
2072
2073         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
2074
2075         * marshal.c: Fix warnings.
2076
2077 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
2078
2079         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
2080         attempting to marshal the delegate_trampoline as the method_addr.
2081         This patch has a static hashtable of marshalled delegates so that 
2082         we can map delegate_trampoline addresses back to delegates.  This
2083         allows a delegate passed to managed code to be passed back into native
2084         code.  Fixes #67039
2085
2086 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
2087
2088         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
2089
2090         * reflection.c (method_encode_code): Align method headers properly.
2091         Fixes #66025.
2092
2093 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
2094
2095         * marshal.c: In the runtime invoke wrapper, reset the abort
2096         exception if it is cached. This avoids the automatic rethrowal of 
2097         the exception after the catch of the wrapper. Also check for pending
2098         interruptions before calling the managed method. This is done using
2099         the new method emit_thread_force_interrupt_checkpoint, since the
2100         normal checkpoint method is ignored when running the invoke wrapper.
2101         * object.c: If the abort exception is rethrown, set the abort_exc
2102         field of the thread, so it will be rethrown aftere every catch.
2103         * threadpool.c: Only run an interruption checkpoint if what has been
2104         requested is a stop of the thread (aborts will be ignored).
2105         * threads.c: By default, a thread will now never be interrumped while
2106         running the runtime invoke wrapper (this ensures that runtime_invoke
2107         will always return to the caller if an exception pointer is provided).
2108         There is a new special method mono_thread_force_interruption_checkpoint()
2109         to force an interruption checkpoint even if running a protected
2110         wrapper, which is used by the same runtime invoke wrapper to do a check
2111         at a safe point.
2112
2113 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
2114
2115         * object.c, object-internals.h: Implemented mono_release_type_locks,
2116         which releases the cctor locks held by a thread.
2117         * threads.c, threads.h: In thread_cleanup, release cctor locks held
2118         by a thread. Added mono_thread_exit() method to be used to safely stop
2119         a thread.
2120
2121 2004-09-28  Raja R Harinath  <rharinath@novell.com>
2122
2123         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
2124         Move null check before dereference.  Avoid indexing beyond the end
2125         of the 'modules' array.
2126
2127 2004-09-28  Raja R Harinath  <rharinath@novell.com>
2128
2129         * metadata-internals.h (MonoImage): Add module_count field.
2130         * image.c (load_modules): Set image->module_count.
2131         (mono_image_load_file_for_image): Use image->module_count.
2132         * reflection.c (mono_image_load_module): Append to image->modules array 
2133         of dynamic assembly.
2134         (mono_module_get_object): Fix loop to actually increment index.
2135         Use image->module_count.
2136         * assembly.c (mono_assembly_load_references): Use image->module_count.
2137         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
2138         Likewise.
2139
2140 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
2141
2142         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
2143         Avoid assert on generic types.
2144
2145 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
2146
2147         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
2148
2149         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
2150
2151         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
2152         function to convert a MarshalSpec structure to its managed counterpart.
2153
2154         * reflection.c: Fix warnings.
2155         
2156         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
2157         field.
2158
2159         * icall.c (mono_create_icall_signature): Fix build.
2160
2161 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
2162
2163         * icall.c: Add MakePointType icall.
2164
2165         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
2166         warnings.
2167
2168 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2169
2170         * threadpool.c: reuse allocated slots in the queue.
2171
2172 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
2173
2174         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
2175
2176         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
2177
2178         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
2179         previous change.
2180
2181         * tabledefs.h: Add constants for pinvoke attributes BestFit and
2182         ThrowOnUnmappableChar.
2183
2184         * icall.c (ves_icall_Type_GetPacking): New icall.
2185
2186 2004-09-24  Martin Baulig  <martin@ximian.com>
2187
2188         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
2189
2190 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2191
2192         * appdomain.c:
2193         (mono_domain_set): allow setting a domain that is being unloaded.
2194         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
2195         being unloaded.
2196
2197 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
2198
2199         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
2200         the GetCustomAttributes icall.
2201
2202 2004-09-23  Martin Baulig  <martin@ximian.com>
2203
2204         * object-internals.h (MonoReflectionGenericParam): Replaced
2205         'has_ctor_constraint', `has_reference_type' and `has_value_type'
2206         with `guint32 attrs'.
2207
2208 2004-09-23  Martin Baulig  <martin@ximian.com>
2209
2210         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
2211
2212 2004-09-23  Martin Baulig  <martin@ximian.com>
2213
2214         * object-internals.h (GenericParameterAttributes): New enum.
2215
2216 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
2217
2218         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
2219         
2220         * class.c (init_events): Fill out event->other field.
2221
2222         * class.c: Fix warnings.
2223
2224         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
2225
2226 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
2227
2228         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
2229         walk which doesn't supply the IL offset.
2230
2231 2004-09-22  Martin Baulig  <martin@ximian.com>
2232
2233         * reflection.c (mono_reflection_setup_internal_class): If we're
2234         System.ValueType, System.Object or System.Enum, set
2235         `klass->instance_size' and create the vtable.
2236         (mono_reflection_create_internal_class): If we're an enum type,
2237         get the base class from our current corlib.
2238
2239 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
2240
2241         * reflection.h (MonoResolveTokenError): New type.
2242
2243         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
2244         icall.
2245
2246         * icall.c: Add an 'error' argument to the ResolveToken icalls.
2247
2248 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
2249
2250         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
2251         Support also calling constructors, but only for already allocated objects.
2252
2253 2004-09-17  Geoff Norton <gnorton@customerdna.com>
2254
2255         * reflection.c (type_get_qualified_name): If the klass is null
2256         return the typename to avoid a NullRefEx.
2257         (encode_cattr_value): Get the qualified name of the boxed type,
2258         not the underlying enumtype.  Fixes #62984.
2259
2260 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
2261
2262         * marshal.c: Fix problems with previous checkin.
2263
2264 2004-09-21    <vargaz@freemail.hu>
2265
2266         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
2267         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
2268
2269         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
2270
2271 2004-09-21  Geoff Norton <gnorton@customerdna.com>
2272
2273         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
2274         should only return a type for pointers, arrays, and passbyref types.
2275         Fixes bug #63841.
2276
2277 2004-09-21  Martin Baulig  <martin@ximian.com>
2278
2279         * domain.c (mono_debugger_check_runtime_version): New public
2280         function.
2281
2282         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
2283
2284 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
2285
2286         * reflection.c: Added missing sort to the declarative security 
2287         attributes table. MS implementation stops seeing the attributes if the
2288         token number regress in the table (as shown by ildasm and permview).
2289
2290 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
2291
2292         * object-internals.h (MonoReflectionModule): Add 'token' field.
2293         
2294         * reflection.c (mono_reflection_get_token): Add support for Module
2295         and Assembly.
2296         (mono_module_get_object): Set 'token' field.
2297         (mono_module_file_get_object): Set 'token' field.
2298
2299         * icall.c: Add new Assembly and Module icalls.
2300
2301         * appdomain.c: Bump corlib version.
2302
2303 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
2304
2305         * loader.h loader.c class.h class.c: Add helper functions for obtaining
2306         tokens of metadata objects.
2307
2308         * reflection.h reflection.c (mono_reflection_get_token): New function
2309         to obtain the token of a metadata object.
2310
2311         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
2312
2313 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
2314
2315         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
2316         
2317         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
2318
2319 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
2320
2321         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
2322         * object-internals.h: Added 3 MonoArray* members to MonoReflection
2323         AssemblyBuilder to access the permissions set in the class lib.
2324         * reflection.c: Added security attributes encoding step in 
2325         mono_image_build_metadata.
2326         * tabledefs.h: Added new security actions defined in 2.0:
2327         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
2328
2329 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
2330
2331         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
2332         macro parameter.
2333
2334 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
2335  
2336         * locales.c: nullify the ICU_collator member of CompareInfo when it is
2337           finalized. There where random SIGSEVs at program termination, when
2338           an object being finalized was trying to do a string comparison and
2339           the current culture was already finalized.
2340  
2341 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2342
2343         * threads.c: call thread_cleanup before finishing the thread if we get
2344         there.
2345
2346 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
2347
2348         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
2349         assemblies from the parent. Fixes #65665.
2350
2351 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
2352
2353         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
2354         modifiers.
2355
2356 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
2357
2358         * reflection.h: add prototype for mono_get_dbnull_object
2359         * reflection.c: add prototypes for get_default_param_value_blobs 
2360         and mono_get_object_from_blob for fussier compilers
2361
2362 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
2363  
2364         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
2365         false deadlock checks in class initialization.
2366  
2367 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
2368
2369         * image.c (mono_image_addref): Fix comment.
2370
2371         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
2372         possible.
2373
2374 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
2375
2376         * reflection.c (mono_param_get_objects): Modified to return
2377         ParameterInfo.DefaultValue object.
2378
2379         (get_default_param_value_blobs):
2380         (mono_get_object_from_blob):
2381         (mono_get_dbnull_object): New helper routines. 
2382
2383         * object.c (mono_get_constant_value_from_blob): New helper routine
2384         carved out from get_default_field_value ()
2385
2386         * object-internals.h (mono_get_constant_value_from_blob): Added
2387         function declaration.
2388
2389 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
2390
2391         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
2392         referenced assemblies. Fixes #62135.
2393
2394         * exception.h exception.c (mono_get_exception_file_not_found2): New
2395         helper function.
2396
2397 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
2398
2399         * class.h class.c: Add mono_type_get_underlying_type ().
2400
2401 2004-09-09  Geoff Norton <gnorton@customerndna.com>
2402
2403         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
2404         Fix GetTypes() to support dynamically created assemblies.
2405
2406 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
2407
2408         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
2409         
2410         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
2411         previous patch.
2412
2413         * reflection.h reflection.c loader.c: Allow dynamic construction of
2414         pinvoke methods. Fixes #65571.
2415         
2416         * reflection.c (mono_reflection_get_type): Revert previous change since
2417         it causes regressions.
2418
2419 2004-09-08  Martin Baulig  <martin@ximian.com>
2420
2421         * class.c (class_compute_field_layout): Don't call
2422         mono_class_layout_fields() for open generic instances.
2423
2424 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
2425         * threads.c appdomain.c: fix typo in GC macro
2426
2427 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2428
2429         * threads.c: don't call mono_thread_detach() in start_wrapper(),
2430         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
2431
2432 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
2433
2434         * image.c (mono_image_close): Applied patch from 
2435         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
2436         assembly is loaded multiple times from data.
2437         
2438         * image.c (mono_image_open): Fix warning.
2439
2440 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
2441
2442         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
2443         once. Fixes #58334.
2444         
2445         * reflection.c (mono_reflection_create_runtime_class): Initialize
2446         klass->nested_classes. Fixes #61224.
2447
2448 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
2449
2450         * threads.c: sched_yield() on exit, to allow threads to quit.
2451
2452 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
2453
2454         * object.c (mono_unhandled_exception): Remove leftover debug code.
2455
2456 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
2457
2458         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
2459
2460 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
2461
2462         * marshal.c (emit_marshal_array): Really null terminate string arrays.
2463         
2464         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
2465
2466 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
2467
2468         * marshal.c (emit_marshal_array): Null terminate string arrays.
2469         
2470         * marshal.c (raise_auto_layout_exception): Fix warning.
2471
2472         * reflection.c (mono_param_get_objects): Initialize the default value
2473         with DBNull.Value, not null. Fixes #62123.
2474
2475 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
2476
2477         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
2478         throw an exception with a cute explanation.
2479
2480 2004-09-06  Dick Porter  <dick@ximian.com>
2481
2482         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
2483         Close the new process's thread handle, as we don't use it.  The
2484         handle stays around forever otherwise.
2485
2486 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
2487
2488         * object.c (arith_overflow): Fix warning.
2489
2490         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
2491         calling conventions in method refs. Fixes #65352.
2492
2493         * reflection.c: Fix warnings.
2494
2495 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
2496
2497         * icall.c: Add a new icall for Array.Clear
2498
2499 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
2500
2501         * object.c: When allocating an array, we have to throw
2502         an overflow exception if any of the lengths are < 0.
2503
2504 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
2505
2506         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
2507         properly. Also move implementation of string array marshalling to 
2508         managed code. Fixes #42316.
2509
2510 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2511
2512         * assembly.c: provide more information when loading an assembly fails.
2513
2514 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2515
2516         * filewatcher.c: don't expect the development fam package to be
2517         installed.
2518
2519 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
2520
2521         * marshal.c: Make a copy of the signature cookie since it will be
2522         freed by the caller.
2523         
2524         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
2525
2526         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
2527
2528         * metadata.c (mono_metadata_free_marshal_spec): New function to free
2529         marshal specs.
2530
2531         * marshal.c: More refactoring.
2532         
2533         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
2534         smaller functions.
2535
2536 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
2537
2538         * object.c: In mono_message_invoke, fill the output parameter array after
2539           calling the managed method (it was done before the call). This fixes
2540           bug #59299.
2541
2542 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
2543
2544         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
2545         as well.
2546
2547 2004-09-02  Martin Baulig  <martin@ximian.com>
2548
2549         * class.c (mono_class_instance_size): Don't allow generic type
2550         definitions or open generic instances.
2551         (mono_class_array_element_size): If we're a value type, call
2552         mono_class_instance_size() on the original class.
2553
2554         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
2555         handle generic instances.
2556
2557         * mono-debug-debugger.c (write_type): Handle generic instances
2558         like classes.
2559
2560 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
2561
2562         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
2563         the allocation request fails. Fixes #65089.
2564
2565         * object.c (mono_runtime_free_method): Do not call mono_free_method.
2566         
2567         * object.c (mono_runtime_free_method): New function to free a dynamic
2568         method.
2569
2570         * marshal.c (mono_delegate_free_ftnptr): New function to free the
2571         delegate trampoline.
2572
2573         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
2574         with hasthis as dynamic,
2575
2576         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
2577
2578         * domain.c (mono_jit_info_table_remove): New function to remove an
2579         entry from the jit info table.
2580
2581         * class-internals.h (MonoMethod): Add 'dynamic' field.
2582
2583         * loader.c: Fix warnings.
2584
2585 2004-09-01  Martin Baulig  <martin@ximian.com>
2586
2587         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
2588         instead of mono_debugger_lock() because the latter one is a no-op
2589         unless running in the debugger.
2590
2591 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
2592
2593         * class.c (class_compute_field_layout): Classes with auto-layout or
2594         reference fields are not blittable.
2595         
2596 2004-09-01  Dick Porter  <dick@ximian.com>
2597
2598         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
2599         mono_image_get_filename() to get the assembly location.
2600
2601         * icall.c:
2602         * metadata.h: Fix compile warnings
2603
2604 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
2605
2606         * class.c (class_compute_field_layout): System.Object is blittable.
2607
2608         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
2609         as in/out. Fixes #59909.
2610
2611 2004-09-01  Martin Baulig  <martin@ximian.com>
2612
2613         * metadata.h (MONO_TYPE_ISREFERENCE): Call
2614         mono_metadata_generic_inst_is_valuetype() if we're a generic
2615         instance to check whether our underlying type is a reference type.
2616
2617 2004-09-01  Martin Baulig  <martin@ximian.com>
2618
2619         * metadata.c (mono_type_size): If we're a generic instance, call
2620         mono_class_value_size() for value types.
2621
2622 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
2623
2624         * marshal.c: Implement more custom marshalling functionality. Fixes
2625         #64915.
2626
2627 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
2628
2629         * mono-debug.c, debug-mono-symfile.c: add some locking love.
2630
2631 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
2632
2633         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
2634
2635         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
2636
2637         * icall.c: Fix some warnings.
2638
2639         * threads.c (abort_appdomain_thread): Fix unref errors.
2640         (mono_thread_current): Fix THREAD_DEBUG define.
2641
2642 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
2643
2644         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
2645
2646         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
2647
2648 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
2649
2650         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
2651         string arrays.
2652
2653 2004-08-28  Martin Baulig  <martin@ximian.com>
2654
2655         * metadata.c
2656         (mono_metadata_generic_inst_is_valuetype): New public function.
2657
2658         * metadata.h (MONO_TYPE_ISSTRUCT): Call
2659         mono_metadata_generic_inst_is_valuetype() if we're a generic
2660         instance to check whether our underlying type is a valuetype.
2661
2662 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
2663
2664         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
2665         #63768.
2666
2667 2004-08-25  Martin Baulig  <martin@ximian.com>
2668
2669         * loader.c (mono_get_method_from_token): Abstract methods can also
2670         be generic and thus have type parameters.
2671
2672         * metadata-internals.h
2673         (MonoDynamicImage): Added `GPtrArray *gen_params'.
2674
2675         * reflection.c (mono_image_get_generic_param_info): Don't create a
2676         metadata row, just add an entry to the `gen_params' array.
2677         (build_compressed_metadata): Sort the `gen_params' array and then
2678         actually create the metadata.
2679
2680 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2681
2682         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
2683
2684 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
2685
2686         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
2687
2688 2004-08-24  Martin Baulig  <martin@ximian.com>
2689
2690         * class.cs (mono_class_is_subclass_of): Like an interface, a
2691         generic instance also derives from System.Object.
2692
2693 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
2694
2695         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
2696         custom modifiers to be in any order. Fixes #61990.
2697
2698 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
2699
2700         * object.c: Register mono_object_new_fast icall.
2701         
2702         * object.c (mono_class_get_allocation_ftn): Return to calling
2703         mono_object_new_fast, since it seems faster to compute the object 
2704         size in unmanaged code than passing it as a parameter.
2705
2706         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
2707
2708         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
2709         this function with Boehm as the oom handler, so we don't have to check
2710         the result of GC_malloc.
2711
2712         * object.c: Remove checks for oom.
2713
2714         * object.h object.c (mono_class_get_allocation_ftn): New function to
2715         return the icall which can be used to allocate an instance of a given
2716         class. 
2717
2718         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
2719
2720         * class-internals.h: Add 'enabled' field.
2721
2722 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
2723
2724         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
2725
2726 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
2727         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
2728         value 0x0010.
2729
2730 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
2731
2732         * appdomain.c: use the Tls function for appdomain too,
2733         at Zoltan's request. Actually return in mono_context_get
2734
2735         * appdomain.c, profiler.c, threads.c: use __thread
2736
2737 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
2738
2739         * appdomain.c threads.c: Call GC_CreateThread on windows.
2740
2741         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
2742         multiple libraries since this don't work on windows.
2743
2744 2004-08-18  Martin Baulig  <martin@ximian.com>
2745
2746         * class-internals.h
2747         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
2748         MonoMethodHeader.
2749
2750         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
2751         MonoMethodNormal since we also need it for abstract and interface
2752         methods.
2753
2754         * reflection.c
2755         (build_compressed_metadata): Sort the GenericParam table.
2756         (mono_image_create_token): Added `gboolean create_methodspec'
2757         argument; this is false when generating a MethodImpl token.
2758         (reflection_methodbuilder_to_mono_method): Abstract and interface
2759         methods may also have generic parameters.
2760
2761 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
2762
2763         * appdomain.c: thread local alloc
2764
2765 2004-08-17  Martin Baulig  <martin@ximian.com>
2766
2767         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
2768
2769         * icall.c
2770         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
2771         argument.
2772
2773         * class.c (mono_type_get_full_name): New public function.
2774         (mono_type_get_name): Don't include the type arguments.
2775
2776 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
2777
2778         * Makefile.am: Build static versions of libmetadata and libmonoruntime
2779         for inclusion into the mono executable.
2780
2781 2004-08-16  Martin Baulig  <martin@ximian.com>
2782
2783         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
2784         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
2785
2786 2004-08-14  Martin Baulig  <martin@ximian.com>
2787
2788         * class.c (dup_type): Also copy the `byref' field.
2789
2790 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
2791
2792         * reflection.c (create_dynamic_mono_image): Revert the last change 
2793         since it breaks bootstrap.
2794
2795 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
2796
2797         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
2798
2799         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
2800         not free them with g_free.
2801
2802 2004-08-11  Martin Baulig  <martin@ximian.com>
2803
2804         * reflection.c (mono_reflection_setup_internal_class): Also call
2805         mono_class_setup_mono_type() if we already have a `tb->type.type'.
2806
2807 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
2808
2809         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
2810         called during default (first) AppDomain creation. Keep track of
2811         Evidence when loading assemblies.
2812
2813 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
2814
2815         * opcodes.c, opcodes.h: reduce runtime relocations.
2816
2817 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
2818
2819         * culture-info.h, locales.c: fixes and chages to sue the new
2820         optimized format of the locale data.
2821         * culture-info-tables.h: regenerated.
2822
2823 2004-08-06  Geoff Norton <gnorton@customerdna.com>
2824         
2825         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
2826
2827 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
2828
2829         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
2830         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
2831         * domain-internals.h: icall declaration.
2832         * icall.c: icall registration.
2833         * object-internals.h: New fields in MonoAssembly for CAS.
2834
2835 2004-08-05  Duncan Mak  <duncan@ximian.com>
2836
2837         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
2838         CEE_LDELEM_ANY.
2839
2840 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
2841
2842         * reflection.c: fix to deal with object[] arrays in custom ctors
2843         (bug #62550).
2844
2845 2004-08-05  Martin Baulig  <martin@ximian.com>
2846
2847         * class.c (mono_class_array_element_size): Added support for
2848         generic instances and correctly handle "recursive" types.
2849
2850 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
2851
2852         * assembly.c: Fix warnings.
2853
2854 2004-08-04  Martin Baulig  <martin@ximian.com>
2855
2856         * class.c
2857         (mono_type_get_name_recurse): Added `gboolean include_arity'
2858         argument specifying whether or not we should include the generic
2859         arity in the type name.
2860         (_mono_type_get_name): New static function.
2861         (mono_class_setup_vtable): If we're a generic instance, don't
2862         include the generic arity in the names of explicit method
2863         implementations.        
2864
2865 2004-08-03  Martin Baulig  <martin@ximian.com>
2866
2867         * class.c (mono_type_get_name_recurse): Enclose the generic type
2868         arguments in `<', '>'.
2869
2870 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
2871
2872         * gc.c: make GC warning messages use the trace API, they are just
2873         noise to most of the users.
2874
2875 2004-08-03  Martin Baulig  <martin@ximian.com>
2876
2877         * debug-mono-symfile.c (read_string): Correctly read the string.
2878
2879 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
2880
2881         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
2882         
2883         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
2884         icalls.
2885         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
2886
2887 2004-07-30  Martin Baulig  <martin@ximian.com>
2888
2889         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
2890         Reflect latest symbol writer changes.   
2891
2892 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
2893
2894         * object.c: always create an object if null is passed
2895         to Invoke() where a valuetype is expected.
2896
2897 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
2898
2899         * marshal.c (mono_marshal_init): make managed
2900         signatures match native ones better for 64bits.
2901
2902 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2903
2904         * appdomain.c: hack to build correctly the private bin path on windows.
2905         Fixes bug #61991.
2906
2907 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
2908
2909         * assembly.c: Load mscorlib from the correct framework directory
2910           (mono/<version>/mscorlib.dll).
2911         * appdomain.h: Added prototypes for new functions.
2912         * internals.h: Added some prototypes.
2913         * domain.c: When initializing the runtime, get from the executable and
2914           the configuration files the runtime version that the app supports.
2915           Added support methods for reading app.exe.config. Added list of versions
2916           supported by the JIT. Added two new methods: mono_init_from_assembly,
2917           which initializes the runtime and determines the required version from
2918           the provided exe file, and mono_init_version, which initializes
2919           the runtime using the provided version.
2920         * icall.c: Get machine.config from version-specific directory.
2921         * reflection.c: When generating an image, embed the version number
2922           of the current runtime.
2923
2924 2004-07-28  Dick Porter  <dick@ximian.com>
2925
2926         * socket-io.c
2927         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
2928         returned sockaddr size before creating the remote address object.
2929         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
2930         61608.
2931
2932 2004-07-28  Dick Porter  <dick@ximian.com>
2933
2934         * locales.c (string_invariant_compare_char): Fix invariant char
2935         compares between upper and lower cases.  Fixes bug 61458.
2936
2937 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
2938         
2939         * marshal.c: actually cache stelem.ref wrappers.
2940         
2941 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
2942
2943         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
2944         sections and remove the mono_cli_rva_map () function.
2945
2946 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
2947
2948         * debug-mono-symfile.c: fix one more endianess issue, from a patch
2949         by Geoff Norton (<gnorton@customerdna.com>).
2950
2951 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
2952
2953         * class.c: fix class loads for pointer types (typeof(int) !=
2954         typeof(int*)).
2955
2956 2004-07-27  Martin Baulig  <martin@ximian.com>
2957
2958         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
2959         reading the debugging information from an external ".mdb" file.
2960
2961 2004-07-24  Martin Baulig  <martin@ximian.com>
2962
2963         * reflection.c (mono_image_get_type_info): Only write a class
2964         layout entry if we actually have a size or a packing size.
2965
2966 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
2967
2968         * reflection.c (type_get_fully_qualified_name): 
2969         insert cast to get type checking of ?: with non-gcc compilers
2970
2971 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
2972
2973         * rand.c: use g_getenv for both lookups of
2974         MONO_EGD_SOCKET
2975
2976 2004-07-17  Martin Baulig  <martin@ximian.com>
2977
2978         * reflection.c (mono_reflection_bind_generic_method_parameters):
2979         Set `gmethod->reflection_info'.
2980
2981 2004-07-17  Martin Baulig  <martin@ximian.com>
2982
2983         * class.c (mono_class_create_from_typedef): Insert the newly
2984         created class into the hash table before computing the interfaces
2985         since we could be called recursively.
2986
2987 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
2988
2989         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
2990         function to implement stelem.ref in managed code
2991         * class-internals.h, debug-helpers.c: a new wrapper type
2992         for the above.
2993
2994 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
2995
2996         * gc.c: allow GC handles to work even when no GC is compiled in.
2997         Fix part of bug #61134 (GetAddrOfPinnedObject).
2998
2999 2004-07-13  Peter Williams  <peter@newton.cx>
3000  
3001         * process.c (complete_path): Make sure we don't attempt to execute
3002         directories.
3003  
3004 2004-07-12  Geoff Norton <gnorton@customerdna.com>
3005
3006         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
3007           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
3008           and will add/subtract the hour if needed
3009
3010 2004-07-12  Martin Baulig  <martin@ximian.com>
3011
3012         * reflection.c (mono_field_get_object): If we have
3013         `field->generic_info', take the attributes from
3014         `field->generic_info->generic_type'.    
3015
3016 2004-07-12  Martin Baulig  <martin@ximian.com>
3017
3018         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
3019         This function must be called before initializing the runtime.
3020         (mono_debug_init_1): New function; call this after initializing
3021         the runtime, but before loading the assembly.  It tells the
3022         debugger to load corlib and the builtin types.
3023
3024         * mono-debug-debugger.c: Did some larger changes in the debugging
3025         code; support recursive class declarations, make sure we actually
3026         add all classes.
3027
3028 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3029
3030         * debug-helpers.c: undo my previous patch and fixed the real issue in
3031         ../mini/exceptions-x86.c
3032
3033 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3034
3035         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
3036         when no HOME env. variable was set and a NullRef was thrown in a .cctor
3037         called from other .cctors.
3038
3039 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
3040
3041         * loader.c: Removed the mono_loader_wine_init hack now that we are
3042         doing a managed version of Windows.Forms.
3043
3044 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
3045
3046         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
3047         threadpool.c, threads.c: remove static data from rootset.
3048
3049 2004-07-09  Dick Porter  <dick@ximian.com>
3050
3051         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
3052         Don't do any more processing if the matched length was 0.  It was
3053         increasing the size of the string before.  Fixes bug 61167.
3054
3055 2004-07-09  Dick Porter  <dick@ximian.com>
3056
3057         * socket-io.h:
3058         * socket-io.c
3059         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
3060         Add support for SO_PEERCRED if its available.
3061
3062 2004-07-09  Peter Bartok <pbartok@novell.com>
3063         * loader.c: winelib.exe.so error message is now only displayed if
3064         MONO_DEBUG is set. To help us avoid questions when people are trying
3065         out the new Managed.Windows.Forms.
3066
3067 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
3068
3069         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
3070         for isinst and castclass wrappers.
3071
3072         * class-internals.h icall.c: Move registration and lookup of JIT icalls
3073         to libmetadata from the JIT, so they could be used by the marshalling
3074         code and the interpreter.
3075
3076         * marshal.c: Register marshalling related JIT icalls here instead of
3077         in mini.c. Use CEE_MONO_ICALL instead of the family of 
3078         CEE_MONO_PROC<x> opcodes to call marshalling functions.
3079
3080         * metadata.h: Remove unneeded marshalling conversions.
3081
3082         * opcodes.c: Update for new opcodes.
3083         
3084 2004-07-08  Martin Baulig  <martin@ximian.com>
3085
3086         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
3087         (mono_debug_get_domain_data): Make this function static.
3088
3089 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
3090
3091         * gc.c, object.h: add nice GC handle API for embedders.
3092
3093 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
3094
3095         * reflection.c: more changes for the new api
3096
3097         * object.c: When we reflect on a field w/ a constant value, it
3098         will not have a memory location, so we must access metadata. Also,
3099         allow easier reading of strings so that we can read them from
3100         the constant data.
3101
3102         * class.c (mono_class_layout_fields): no need for literal fields here.
3103
3104         * class-internals.h: api changes for const fields
3105
3106         * icall.c (ves_icall_get_enum_info): use new apis for const fields
3107
3108 2004-07-06  Martin Baulig  <martin@ximian.com>
3109
3110         * mono-debug.h: Increment version number to 44.
3111
3112         * mono-debug.c (mono_debug_add_wrapper): The second argument is
3113         now a gpointer, rewrote this whole method.
3114
3115         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
3116         function.  Add information about the wrapper in a new "misc table".
3117
3118         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
3119         for the new misc table.
3120
3121 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
3122
3123         * metadata-internals.h image.c: Add a cache for helper signatures.
3124
3125         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
3126
3127 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
3128
3129         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
3130         delegates from a delegate. Fixes #61033.
3131         
3132         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
3133         marshalling of stringbuilder arrays. Fixes #59900.
3134
3135 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
3136
3137         * icall.c: Add EnumBuilder:setup_enum_type icall.
3138
3139 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
3140
3141         * icall.c: Added a new icall for the property version of
3142         OffsetOfStringData.
3143
3144 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
3145
3146         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
3147         it has a constant size across platforms.
3148
3149         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
3150         stack trace.
3151
3152 2004-06-29  Martin Baulig  <martin@ximian.com>
3153
3154         * mono-debug.c (mono_debug_add_method): Protect the whole function
3155         in mono_debugger_lock(), not just parts of it.
3156
3157 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
3158
3159         * reflection.c: make sure padding bytes in heaps are zeroed.
3160
3161 2004-06-24  David Waite  <mass@akuma.org>
3162
3163         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
3164         image.c, loader.c, locales.c, marshal.c, metadata.c,
3165         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
3166         string-icalls.c, threads.c: change to C90-style comments from C99 /
3167         C++ -style
3168
3169 2004-06-24  Dick Porter  <dick@ximian.com>
3170
3171         * threads.c
3172         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
3173         return createdNew.  Fixes bug 60412.
3174
3175         * threads-types.h: 
3176         * icall.c: Add createdNew parameter to CreateMutex icall
3177
3178 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
3179
3180         * reflection.c, object-internals.h: save default value in params.
3181
3182 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3183
3184         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
3185         no need to build a new path combining that with the application base.
3186         Fixes bug #60442.
3187
3188 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
3189
3190         * reflection.c: fixed minor standard compliance issues.
3191
3192 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
3193
3194         * reflection.c: fixed issue with encoding some custom attributes
3195         (arrays in properties and fields, bug #60411).
3196
3197 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3198
3199         * reflection.c: fix start address when copying the public key token.
3200
3201 2004-06-23  Martin Baulig  <martin@ximian.com>
3202
3203         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
3204         the `exc' object in a static object to put it into the GC's root set.
3205
3206 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
3207
3208         * reflection.c: make mono_reflection_setup_internal_class ()
3209         callable a second time to setup a new parent class.
3210
3211 2004-06-23  Dick Porter  <dick@ximian.com>
3212
3213         * threads.c: Check for WAIT_IO_COMPLETION return values.
3214
3215 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
3216
3217         * appdomain.c: Removed the g_free on the public key token. Now copy 
3218         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
3219         * assembly.c: Added public key token string value when loading 
3220         assemblies. Fix bug #60439.
3221         * icall.c: Added missing informations (like public key) in 
3222         GetReferencedAssemblies. Fix #60519.
3223         * image.h: Changed definition for public key token from const char*
3224         public_tok_value to guchar public_key_token [17];
3225         * reflection.c: Updated for changes to public key token.
3226
3227 2004-06-22  Lluis Sanchez Gual
3228
3229         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
3230         for the field in base classes.
3231
3232 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
3233
3234         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
3235         mark headers as not supported, they are installed only for use by the
3236         debugger.
3237
3238 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
3239
3240         * *.c, *.h: avoid namespace pollution in public headers.
3241
3242 2004-06-21  Martin Baulig  <martin@ximian.com>
3243
3244         * exception.c (mono_get_exception_security): It's in
3245         "System.Security", not in "System".
3246
3247         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
3248         the exception classes.
3249
3250 2004-06-21  Martin Baulig  <martin@ximian.com>
3251
3252         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
3253         Protect the exception object from being finalized.
3254
3255 2004-06-21  Martin Baulig  <martin@ximian.com>
3256
3257         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
3258         public function.
3259
3260 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
3261
3262         * reflection.c: Load the assembly in mono_reflection_type_from_name,
3263         if it was not loaded before. Fix parts of #60439.
3264
3265 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
3266
3267         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
3268         code that was broken since Ben's change: wrappers are now
3269         dependent on the method signature only again.
3270
3271 2004-06-21  Martin Baulig  <martin@ximian.com>
3272
3273         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
3274         added interface support.
3275
3276 2004-06-21  Martin Baulig  <martin@ximian.com>
3277
3278         * class.c (mono_vtable_get_static_field_data): New public method.
3279
3280 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
3281
3282         * filewatcher.c : Windows build fix to be compliant with API changes.
3283
3284 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
3285
3286         * class.h, class.c: more accessors.
3287         * metadata.h, metadata.c: prepare for hiding MonoType and
3288         MonoMethodSignature: people should use the accessors from now on
3289         outside of the tree.
3290
3291 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
3292
3293         * *.c, *.h: more API cleanups.
3294
3295 2004-06-18  Jackson Harper  <jackson@ximian.com>
3296
3297         * assembly.c: Trace loading assemblies.
3298         * loader.c: Trace loading native libraries.
3299         * mono-config.c: Trace loading config files.
3300         
3301 2004-06-18  Dick Porter  <dick@ximian.com>
3302
3303         * locales.c: Tell ICU the lengths of strings, it can cope with
3304         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
3305
3306 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
3307
3308         * image.c: swapped name/filename;
3309
3310 2004-06-18  Martin Baulig  <martin@ximian.com>
3311
3312         * mono-debug-debugger.c (write_class): Write the parent class at
3313         the end of the header.
3314
3315 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
3316
3317         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
3318
3319 2004-06-17  Raja R Harinath  <rharinath@novell.com>
3320
3321         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
3322         (bundle_obj): New conditional define.
3323         (BUILT_SOURCES): Remove.
3324         ($(bundle_srcs)): Make parallel-make safe.
3325         (libmonoruntime_la_LIBADD): Make unconditional.
3326         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
3327         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
3328
3329 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
3330
3331         * culture-info-tables.h: It was inconsistent with the latest
3332           supp info files.
3333
3334 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
3335
3336         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
3337         be loaded.
3338
3339         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
3340         with gcc 2.95.
3341
3342 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
3343
3344         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
3345         cleaned up public header threads.h.
3346
3347 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
3348
3349         * Makefile.am, *.c, *.h: more API cleanups.
3350
3351 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
3352
3353         * Makefile.am: removed monosn from compilation.
3354         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
3355         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
3356         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
3357         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
3358         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
3359         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
3360
3361 2004-06-15  Jackson Harper  <jackson@ximian.com>
3362
3363         * assembly.c: Make locales lower case when searching the GAC for
3364         assemblies. gacutil will always make locales lowercase when
3365         installing so this effectively makes them case insensitive.
3366         
3367 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
3368
3369         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
3370         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
3371           parameter which allows to choose whether the wait can be interrupted or 
3372           not. Also added the method mono_monitor_enter(), which locks the monitor
3373           using an infinite wait and without allowing interruption.
3374           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
3375           interrupted.
3376         * object.h: Added new fields in MonoThread. suspend_event holds the event
3377           used to susped/resume the thread. synch_lock is the lock object to use for
3378           modifying the thread state.
3379         * threads.c: Use the new synch_lock object for locking, instead of "this",
3380           which can generate deadlocks.
3381           Moved thread state change in Thread.Sleep and Thread.Join from managed
3382           to unmanaged code. This avoids a deadlock when the thread was suspended
3383           just after acquiring the thread lock.
3384           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
3385           Implemented Thread.Suspend using an event instead of ThreadSuspend,
3386           which is not fully implemented in the io-layer.
3387         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
3388
3389 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
3390
3391         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
3392         threads-types.h: more API cleanups.
3393
3394 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
3395
3396         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
3397         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
3398         threadpool.c, threads.c: first pass at the exported API cleanup.
3399
3400 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
3401
3402         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
3403
3404 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3405
3406         * icall.c: added internalGetHome.
3407
3408 2004-06-14  Dick Porter  <dick@ximian.com>
3409
3410         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
3411         possible to return successfully when '.' or '..' were the only
3412         entries in a directory, but were skipped.  The MonoIOStat was not
3413         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
3414         Fixes bug 59574.
3415
3416 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
3417
3418         * reflection.c: make binaries run on .Net 1.1 by default.
3419
3420 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
3421
3422         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
3423
3424 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
3425
3426         * marshal.c: keep track of struct size with explicit layout
3427         (bug #59979).
3428
3429 2004-06-12  Martin Baulig  <martin@ximian.com>
3430
3431         * mono-debug-debugger.c: Comment out a debugging g_message().
3432
3433 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
3434
3435         * reflection.c, reflection.h: do not free custom attrs that are cached.
3436         * icall.c: use braces to make code clearer.
3437
3438 2004-06-11  Martin Baulig  <martin@ximian.com>
3439
3440         * class.h (MonoInflatedField): New type.
3441         (MonoClassField): Replaced `MonoType *generic_type' with
3442         `MonoInflatedField *generic_info'.
3443
3444         * icall.c
3445         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
3446
3447 2004-06-11  Martin Baulig  <martin@ximian.com>
3448
3449         * reflection.c (mono_image_create_method_token): Correctly encode
3450         varargs methods.
3451
3452 2004-06-11  Martin Baulig  <martin@ximian.com>
3453
3454         * metadata.c (mono_metadata_parse_method_signature): When parsing
3455         a MethodDef which has VarArgs, also set sentinelpos if we don't
3456         have any parameters.
3457
3458 2004-06-11  Martin Baulig  <martin@ximian.com>
3459
3460         * verify.c (mono_method_verify): In CEE_CALL, use
3461         mono_method_get_signature() to get the method's signature, unless
3462         we're a PInvoke method.
3463
3464 2004-06-10  Jackson Harper  <jackson@ximian.com>
3465
3466         * assembly.c: Use <path>/lib/mono/gac for the extra paths
3467         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
3468         logical name as the supplied path is just a prefix to the gac not
3469         the direct path to it.
3470         
3471 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
3472
3473         * reflection.c: make the token for a created method match
3474         the token of the MethodBuilder it was created from
3475         (IKVM requires this behaviour now).
3476
3477 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
3478
3479         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
3480         reflection.c, socket-io.c: leak fixes.
3481
3482 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
3483
3484         * icall.c: handle sentinel pos in vararg methods in position different
3485         from 0.
3486
3487 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3488
3489         * culture-info-tables.h: freshly generated.
3490
3491 2004-06-09  Martin Baulig  <martin@ximian.com>
3492
3493         * loader.c (mono_get_method_constrained): Call `mono_class_init
3494         (constrained_class)'.   
3495
3496 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
3497
3498         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
3499         any methods. Fixes #59629.
3500
3501 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
3502
3503         * culture-info-tables.h: reflecting locale-builder updates.
3504
3505 2004-06-08  Dick Porter  <dick@ximian.com>
3506
3507         * object.h:
3508         * locales.c: Fixed compile warnings, including a real bug in
3509         CompareInfo_internal_compare.
3510         
3511 2004-06-08  Dick Porter  <dick@ximian.com>
3512
3513         * locales.c
3514         (ves_icall_System_Globalization_CompareInfo_internal_index):
3515         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
3516         Double-check the resuls of usearches, because ICU currently
3517         ignores most of the collator settings here.  Fixes bug 59720.
3518         
3519 2004-06-08  Dick Porter  <dick@ximian.com>
3520
3521         * locales.c
3522         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
3523         Fix memory leak and segfault-causing typo.  No idea how this one
3524         lasted so long without being noticed.
3525
3526 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
3527
3528         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
3529         any methods. Fixes #59629.
3530
3531 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3532
3533         * assembly.c:
3534         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
3535         own the critical section before). Removed dead code (that's done
3536         in the preload hook).
3537
3538         (mono_assembly_load_with_partial_name): call the preload hook.
3539
3540 2004-06-08  Martin Baulig  <martin@ximian.com>
3541
3542         * metadata.c (mono_metadata_signature_alloc): Default
3543         `sentinelpos' to -1.
3544
3545         * reflection.c (mono_image_get_array_token): Likewise.
3546
3547 2004-06-08  Martin Baulig  <martin@ximian.com>
3548
3549         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
3550
3551         * metadata.c (mono_metadata_parse_method_signature): When parsing
3552         a MethodDef which has VarArgs, set sentinelpos.
3553
3554         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
3555         `gint16' since we're using -1 for non-varargs methods.
3556
3557         * reflection.c
3558         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
3559         (method_encode_signature): Added varargs support.
3560         (method_builder_encode_signature): Likewise.
3561         (mono_image_get_varargs_method_token): New static method.
3562         (mono_image_create_method_token): New public method; this is
3563         called via an icall instead of mono_image_create_token() when
3564         calling a varargs method.       
3565
3566 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
3567
3568         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
3569
3570 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
3571
3572         * culture-info-tables.h : Reflecting the latest locale-builder that
3573           fixed empty array representation ({} to {0}).
3574
3575 2004-06-07  Jackson Harper  <jackson@ximian.com>
3576
3577         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
3578         looking up extra gac paths. This allows MONO_GAC_PATH to act
3579         exactly like a prefix.
3580         
3581 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
3582
3583         * reflection.c (mono_reflection_type_from_name): Make a copy of the
3584         type name before modifying it. Fixes #59405.
3585
3586 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
3587
3588         * culture-info.h: added fields for "all datetime patterns".
3589         * locales.c: (  ves_icall_System_Globalization_CultureInfo
3590           _construct_datetime_format ()): fill xxx_patterns fields.
3591         * object.h: added fields for "all datetime patterns" to
3592           MonoDateTimeFormatInfo.
3593         * culture-info-tables.h: reflecting locale-builder updates.
3594
3595 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
3596
3597         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
3598         the event has no add and remove methods. Fixes #59629.
3599
3600 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
3601
3602         * object.c: Fixed possible integer overflow when allocating large
3603         strings.
3604
3605 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
3606
3607         * culture-info-tables.h: reflecting locale-builder updates.
3608
3609 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
3610
3611         * culture-info-tables.h: reflecting locale-builder updates.
3612
3613 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
3614
3615         * culture-info-tables.h: reflecting locale-builder updates.
3616
3617 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
3618
3619         * threads.c: Made Thread.Sleep abortable.
3620
3621 2004-06-02  Martin Baulig  <martin@ximian.com>
3622
3623         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
3624
3625         * debug-mono-symfile.h: Bumped symbol file version number to 37.
3626
3627 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
3628
3629         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
3630
3631 2004-05-30  Jackson Harper  <jackson@ximian.com>
3632
3633         * reflection.c: Do not hardcode assembly versions or public key
3634         tokens anymore. All of this except the corlib section was dead
3635         code anyways.
3636         
3637 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
3638
3639         * object.c (mono_runtime_invoke_array): Automatically create boxed
3640         objects for byref valuetypes if needed. Fixes #59300.
3641         
3642         * object.c (mono_method_return_message_restore): Handle 
3643         MONO_TYPE_OBJECT as well.
3644
3645 2004-05-28  Jackson Harper  <jackson@ximian.com>
3646
3647         * reflection.c: The modified type encoding was causing build
3648         problems. Reverted for now.
3649         
3650 2004-05-28  Jackson Harper  <jackson@ximian.com>
3651
3652         * reflection.c/h: Take an assembly ref so that we dont create
3653         fully qualified names when encoding types in the same assembly as
3654         the custom attribute being emitted.
3655         * appdomain.c: Increment version number.
3656         
3657 2004-05-26  Duncan Mak  <duncan@ximian.com>
3658
3659         * icall.c
3660         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
3661         Set the full version number (major, minor, build, revision).
3662
3663 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
3664
3665         * marshal.c (emit_struct_conv): increment src/dst after blit
3666         (mono_marshal_get_managed_wrapper,
3667         mono_marshal_get_native_wrapper): make sure we have marshalling
3668         info before marshalling params (info computation affects
3669         blittable)
3670
3671         * class.c (class_compute_field_layout): correctly deal with
3672         blittable
3673         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
3674         value types (as per what windows dows by default)
3675         (mono_class_setup_mono_type): System.ValueType is blittable
3676         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
3677         blittable
3678
3679         * marshal.c (mono_marshal_load_type_info): flag types  as
3680         non-blittable if the native layout doesn't match the managed
3681         layout
3682
3683 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3684
3685         * appdomain.c: don't add stuff in the private search path that is
3686         above the application base. If application base is not set, there's
3687         no private search path.
3688
3689 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
3690
3691         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
3692         byref struct arguments in native->managed marshalling.
3693
3694 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
3695
3696         * marshal.c (mono_marshal_get_runtime_invoke): correctly
3697         cache methods using signature (special case for methods
3698         that are value type or string class)
3699         
3700         * image.c (mono_image_close): clean up allocated GSList's
3701         in runtime_invoke_cache.
3702
3703 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3704
3705         * mono-config.c: set the correct path for mono_cfg_dir on windows when
3706         there's no MONO_CFG_DIR environment variable defined.
3707
3708 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3709
3710         * threads.c: windows version must be >= 0x0500 to include OpenThread.
3711
3712 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
3713
3714         * threadpool.c: Really wait for 500ms after the async call, even if the wait
3715           is interrumped.
3716         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
3717           before waiting for it, and call CloseHandle after the wait to unref it.
3718           This will make sure that handles are not disposed too early.
3719
3720 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3721
3722         * appdomain.c:
3723         * appdomain.h:
3724         * icall.c: removed
3725         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
3726         needed now.
3727
3728         * object.c: se the application_base only for the domain that runs
3729         Main. Fixes bug #59216,
3730
3731 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3732
3733         * appdomain.c:
3734         * object.c: only the domain in which Main is run have
3735         SetupInformation.ConfigurationFile set, so moved a few lines from
3736         appdomain.c to object.c.
3737
3738 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3739
3740         * appdomain.c: we tried to load [name].(dll|exe), but according
3741         to bug #57710, we must also try [culture]/[name].(dll|exe) and
3742         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
3743         There's a test case attached to bug #58922.
3744
3745 2004-05-27  Dick Porter  <dick@ximian.com>
3746
3747         * icall.c:
3748         * file-io.c: Implemented icalls for locking and unlocking regions
3749         in a file.
3750         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
3751         FALSE on error (fixes both compiler warning and real bug.)
3752
3753 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
3754
3755         * culture-info-tables.h: reflecting locale-builder updates.
3756
3757           (Added missing ChangeLog entry for 05/26)
3758
3759 2004-05-27  Jackson Harper  <jackson@ximian.com>
3760
3761         * locales.c: Fix some cut and paste errors.
3762         
3763 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3764
3765         * mono-config.c: set the correct path for config. directory on windows.
3766
3767 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
3768
3769         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
3770           on win32.
3771
3772 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
3773
3774         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
3775         from pinvoke functions.
3776         
3777         * marshal.c (mono_ftnptr_to_delegate): Implement this.
3778
3779 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
3780
3781         * culture-info-tables.h: reflecting locale-builder updates.
3782
3783 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
3784
3785         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
3786         #59086.
3787
3788 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
3789
3790         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
3791         * icall.c: Modified icalls for RNG.
3792         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
3793         Windows (CryptoAPI).
3794
3795 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
3796
3797         * locales.c: Fix build.
3798
3799 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
3800
3801         * culture-info-tables.h: reflecting locale-builder updates.
3802
3803 2004-05-25  Jackson Harper  <jackson@ximian.com>
3804
3805         * locales.c: When creating the current culture use the $LANGs
3806         specific culture. So DateTimeFormat and NumberFormat entries are created.
3807         
3808 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
3809
3810         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
3811         a char array as parameter.
3812
3813 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
3814
3815         * image.c: In mono_image_open(), always use an absolute path name to
3816           look for already loaded images.
3817
3818 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
3819
3820         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
3821         missing in the windows build (like older cygwin include files).
3822
3823 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
3824
3825         * icall.c: Fixed check for possible integer overflow in Buffer_
3826         BlockCopy icall. Replaced comments style // by /* */.
3827
3828 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
3829
3830         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
3831         
3832         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
3833         check after MONO_VTADDR. Fixes pinvoke2.exe.
3834
3835         * marshal.h marshal.c metadata.h: Add beginnings of support for
3836         ftnptr -> delegate marshalling.
3837
3838 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
3839
3840         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
3841         * threads.c: Fix warnings.
3842
3843 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
3844
3845         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
3846         * icall.c: Registered icalls for Suspend and Resume.
3847         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
3848           Thread.Abort.
3849         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
3850         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
3851         * process.c: Use WaitForSingleObjectEx.
3852         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
3853           checkpoints.
3854         * threads.c, threads.h: Make use of new Ex wait methods. Improved
3855           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
3856           for Suspend and Resume. Added new mono_thread_stop, used for stoping
3857           background threads. Added basic support for Abort in Windows.
3858           Start new threads using a managed delegate invoke wrapper. This wrapper
3859           has an interruption checkpoint that is needed since an interruption
3860           can be requested before the thread leaves the unmanaged code that starts 
3861           the thread.
3862         * marshal.c: Added interruption checkpoint after every native call, and
3863           also before managed calls for wrappers called from unmanaged code to
3864           go into managed code.
3865         * object.h: Added new field in MonoThread to keep track of interruption
3866           requests.
3867
3868 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
3869
3870         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
3871         calls.
3872
3873 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3874
3875         * appdomain.c:
3876         * assembly.c:
3877         * gc.c:
3878         * locales.c:
3879         * mono-config.c:
3880         * rand.c: getenv -> g_getenv (windows!)
3881
3882         * process.c: complete_path is also used on non-windows platforms.
3883
3884 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3885
3886         * icall.c: new signature for Process_Start.
3887
3888         * process.[ch]: new signature for Process_Start. If we're on windows
3889         and UseShellExecute is false, we have to search for the program by
3890         ourselves if we don't get a full path.
3891
3892 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
3893
3894         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
3895         marshalling and call CleanUpNativeData if needed. Fixes #58646.
3896
3897 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3898
3899         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
3900         Fixes bug #58373.
3901
3902 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3903
3904         * process.c: use double quotes to quote program name and arguments on
3905         windows. Fixes bug #58575.
3906
3907 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3908
3909         * file-io.c: don't return "." and ".." when using windows Find*File.
3910
3911 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
3912
3913         * marshal.c: Don't pass wrappers to message init because method 
3914         addressed used to lookup metadata. part of remoting[2|3] fix.
3915
3916 2004-05-15  Jackson Harper  <jackson@ximian.com>
3917
3918         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
3919         path is essentially the same as MONO_PATH except that it points to
3920         GACs instead of lib directories.
3921         * loader.h: The user gac is gone so we dont need function to
3922         enable/disable it.
3923         * mono-config.c: user gac option is now gone.
3924         
3925 2004-05-15  Jackson Harper  <jackson@ximian.com>
3926
3927         * culture-info.h: Make defines more consistent, add calendar data
3928         to the culture info table.
3929         * culture-info-tables.h: Add basic calendar data. Basically
3930         everyone gets default gregorian until all the data is
3931         updated.
3932         * locales.c: Use the new consistent defines. Set calendar data for
3933         culture info objects.
3934         * object.h: add a field for calendar data to CultureInfo
3935         
3936 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
3937
3938         * image.c: image->runtime_invoke_cache is keyed on signatures now.
3939         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
3940         a signature.
3941         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
3942         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
3943         an extra param that is the pointer of the method to invoke. The IL for
3944         the invoke method is no longer specific to the method, but to the
3945         signature of the method. Thus, we can share the same code for multiple
3946         methods. This reduces the number of methods that have to be compiled.
3947
3948 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
3949
3950         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
3951
3952         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3953
3954         * icall.c: Optimize Buffer.BlockCopy.
3955
3956 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3957
3958         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
3959         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
3960         quote). Changed them to "MMMM yyyy".
3961
3962 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
3963
3964         * rand.c
3965         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
3966
3967 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
3968
3969         * reflection.h: Updated after changes to managed structures.
3970
3971         * appdomain.c: Bump corlib version.
3972
3973 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3974
3975         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
3976         windows.
3977
3978 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3979
3980         * Makefile.am: link to ../os/libmonoos.la on windows.
3981
3982         * assembly.c:
3983                 -If MONO_DEBUG, warn about non-existing directories in
3984                 MONO_PATH.
3985                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
3986                 compile time variable.
3987                 -Removed init_default_path and call mono_set_rootdir from
3988                 libmonoos.a instead (windows only).
3989
3990         * assembly.h: declare mono_assembly_getrootdir().
3991
3992         * domain.c:
3993         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
3994
3995         * loader.c: s/getenv/g_getenv/
3996
3997 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
3998
3999         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
4000
4001         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
4002
4003         * metadata.h: Add new marshalling conversions.
4004
4005         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
4006         function.
4007
4008         * reflection.c (mono_reflection_get_type): Lookup the type in all
4009         modules of a multi-module assembly. Fixes #58291.
4010
4011 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
4012
4013         * threads.c: Before aborting a background, set the StopRequested
4014         state.  This avoids throwing the Abort exception.
4015         In mono_thread_manage, don't continue with the shutdown until all
4016         aborted threads have actually stopped.
4017
4018 2004-05-10  Jackson Harper  <jackson@ximian.com>
4019
4020         * locales.c: Remove the modifier from culture names.
4021         
4022 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4023
4024         * Makefile.am: monosn is not installed any more. It has been deprecated
4025         in favor of sn.
4026
4027 2004-05-07  Jackson Harper  <jackson@ximian.com>
4028
4029         * locales.c
4030         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
4031         Fix array construction, add bailout if the length is 0.
4032
4033 2004-05-07  Dick Porter  <dick@ximian.com>
4034
4035         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
4036         machine doesn't have a DNS entry.  Patch by Urs Muff
4037         (umuff@quark.com), fixes bug 57928.
4038
4039 2004-05-06  Jackson Harper  <jackson@ximian.com>
4040
4041         * reflection.c: Handle null PublicTokens properly. alloc mem for
4042         assembly names culture so we dont crash when freeing it.
4043         
4044 2004-05-06  Jackson Harper  <jackson@ximian.com>
4045
4046         * assembly.c: Check the usergac when loading with partial names.
4047         
4048 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
4049
4050         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
4051         does nothing for now (not required for Linux/Windows) but the class
4052         library can call it (and a newer or modified runtime could need it).
4053         * icall.c: Registred icall.
4054
4055 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4056
4057         * loader.c: prints a message on module loading error we set MONO_DEBUG
4058         environment variable.
4059
4060 2004-05-05  Jackson Harper  <jackson@ximian.com>
4061
4062         * appdomain.c: Handle PublicKeyToken=null properly.
4063         
4064 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
4065
4066         * environment.c|h: Added icall ves_icall_System_Environment_
4067         GetOSVersionString to get the current OS version as a string.
4068         * icall.c: Registred icall.
4069
4070 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
4071
4072         * object.c: in mono_object_get_virtual_method(), take into account that
4073         non-virtual methods don't have a slot in the vtable. Check needed when
4074         the object is a proxy.
4075
4076 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
4077
4078         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
4079         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
4080
4081         * object.c (mono_class_compute_gc_descriptor): Fix warning.
4082
4083         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
4084         passed when a valuetype is expected.
4085
4086         * object.c (mono_unhandled_exception): Only set the exit code if the
4087         exception happens in the main thread. Fixes thread5.exe.
4088
4089         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
4090         invalid names. Fixes #58047.
4091
4092 2004-05-03  Jackson Harper  <jackson@ximian.com>
4093
4094         * assembly.c: This line was committed accidently and is unneeded.
4095         
4096 2004-05-03  Jackson Harper  <jackson@ximian.com>
4097
4098         * icall.c: Add new icall for Assembly::LoadWithPartialName
4099         * assembly.c/.h: new function that probes the GAC to load partial
4100         assembly names by Paolo Molaro.
4101         
4102 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4103
4104         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
4105         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
4106         (type_get_fully_qualified_name): Added PublicKeyToken when building a
4107         full type name.
4108
4109 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4110
4111         * appdomain.c: fixed check for 'neutral' culture and removed warning.
4112         * reflection.c: fix bug when parsing a full type name and Version is not
4113         the last thing in the string.
4114
4115 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
4116
4117         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
4118         crashes when it is freed.
4119
4120 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4121
4122         * assembly.c: print the compat warning to stderr.
4123
4124 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
4125
4126         * assembly.c (mono_assembly_load_references): Add a compatibility
4127         hack to run old applications that might be still referencing the
4128         3300-based assemblies, only do this for System.xxx.
4129
4130 2004-05-01  Jackson Harper  <jackson@ximian.com>
4131
4132         * appdomain.c: If the culture is neutral we set it to "".
4133         
4134 2004-04-29  Jackson Harper  <jackson@ximian.com>
4135
4136         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
4137
4138 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
4139  
4140         * string-icalls.c: added low overhead function for copying chars
4141         * icall.c: added needed icall for the above function
4142  
4143 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4144
4145         * icall.c: fix return value of get_global_assembly_cache.  Implemented
4146         Environment.GetLogicalDrives.
4147
4148 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
4149
4150         * rand.c: try and talk to egd or prngd
4151         for random bytes if opening devices fail.
4152
4153 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
4154
4155         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
4156         alignment for the type using the native alignment of its members 
4157         instead of using klass->min_align.
4158
4159         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
4160
4161 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4162
4163         * file-io.c:
4164         * socket-io.c: added check for sys/aio.h.
4165
4166 2004-04-28  Dick Porter  <dick@ximian.com>
4167
4168         * threads.c: Don't abort a thread thats already aborting, when
4169         terminating everything.
4170
4171 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4172
4173         * icall.c: added 2 new async calls for Socket.
4174
4175         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
4176         IO on *nix systems.
4177
4178         * threadpool.c: removed unused variable.
4179
4180 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
4181
4182         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
4183
4184 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
4185
4186         * locales.c: put back string_invariant_tolower () and
4187         string_invariant_toupper ().
4188
4189 2004-04-26 David Waite <mass@akuma.org>
4190
4191         * file-io.h:
4192         * socket-io.h:
4193         * threads.h:
4194         * unicode.h: remove comma from end of enumeration declarations
4195
4196 2004-04-26 David Waite <mass@akuma.org>
4197
4198         * debug-mono-symfile.h:
4199         * decimal.c:
4200         * mono_debug.h:
4201         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
4202
4203
4204 2004-04-26  Jackson Harper  <jackson@ximian.com>
4205
4206         * appdomain.c: Increment version number.
4207         
4208 2004-04-26  Jackson Harper  <jackson@ximian.com>
4209
4210         * appdomain.c: Set assembly references public token value when
4211         PublicKeyToken is specified, not the hash_value. Free public token
4212         values when free assembly name data. Previously the public key
4213         token was hex decoded, however we are using hex encoded public key
4214         tokens, so this is not neccasary.
4215         * assembly.c: Lookup assemblies in the gac if their public token
4216         value is set. Add function to allow enabling user gac
4217         lookups. Specify whether or not the assembly was loaded from the
4218         GAC. Compare full assembly names when checking the cache for
4219         assemblies (Temporarily disabled see comment in code). Remove
4220         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
4221         specifies trace-loader they get extra info to stdout on the
4222         loading of assemblies.
4223         * image.h: Add a field for an assembly references public token
4224         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
4225         whether an assembly has been loaded from the GAC.
4226         * image.c: Remove a corlib -> mscorlib name mapping.
4227         * loader.h: Add function to enable/disable the user gac.
4228         * mono-config.c: Check if the usergac is enabled in the config
4229         file.
4230         * icall.c: New icall to determine whether or not an assembly has
4231         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
4232         * tabldefs.h: Add constant for assemblyref flag that specifies a
4233         full public key is used instead of a public token.
4234         * reflection.c: Remove mscorlib -> corlib mappings. Set
4235         PublicTokenValue instead of hash value. This value is a hex
4236         string so it does not need to be expanded.
4237
4238 2004-04-26  Martin Baulig  <martin@ximian.com>
4239
4240         * mono-debug-debugger.c (mono_debugger_initialize): Set
4241         `mono_debugger_initialized' before calling mono_debug_lock().
4242
4243 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
4244
4245         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
4246           InternalToUpper/InternalToLower.
4247         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
4248           removed invariant culture shortcut.  This is now done in managed code.
4249         * locales.c: (string_invariant_toupper/tolower) removed.
4250
4251 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4252
4253         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
4254         Added Poll internal call.
4255
4256         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
4257         call for Poll. Select was too heavy for polling a single socket.
4258
4259         * threadpool.[ch]: added mono_threadpool_cleanup.
4260         * threads.c: use it. Don't use Thread_Abort on windows.
4261
4262 2004-04-23  Martin Baulig  <martin@ximian.com>
4263
4264         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
4265
4266 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
4267
4268         * icall.c: Registred new icalls for key pair protection and added an
4269         icall for Environment.GetFolderPath on Windows.
4270         * security.c|h: Added new icalls for key pair protection.
4271
4272 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4273
4274         * socket-io.c: don't display the non-supported family warning for known
4275         families. Now this is not displayed on windows when checking support
4276         for IPv4/IPv6.
4277
4278 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4279
4280         * class.c: don't display the layout warning for static fields.
4281
4282 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
4283
4284         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
4285         * locales.c, locales.h: Added new icalls for culture-specific
4286         Char.ToLower and Char.ToUpper.
4287
4288 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4289
4290         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
4291         by David Waite.
4292
4293 2004-04-20  Martin Baulig  <martin@ximian.com>
4294
4295         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
4296         of the type name before passing it to mono_reflection_type_from_name().
4297
4298 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
4299
4300         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
4301         encodings here. Fixes #56965.
4302
4303 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
4304
4305         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
4306         fix test on strstr result not that I can see anything that
4307         relies on the result.
4308
4309 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
4310
4311         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
4312         Fixes #57081.
4313
4314         * marshal.c (mono_marshal_get_string_encoding): New helper function.
4315
4316         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
4317         function to determine which marshalling to use for strings. Fixes
4318         #56965.
4319
4320         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
4321
4322         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
4323
4324 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
4325
4326         * icall.c: #include mono-config.h
4327
4328 2004-04-15  Jackson Harper  <jackson@ximian.com>
4329
4330         * culture-info-tables.h: Fix date formats for en-US culture.
4331         
4332 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
4333
4334         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
4335         ThreadPool.SetMinThreads.
4336         * threadpool.c: Implemented ThreadPool.GetMinThreads and
4337         ThreadPool.SetMinThreads.
4338
4339 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
4340
4341         * mono-config.c: also load the .config file in the directory
4342         where the assembly was found.
4343
4344 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
4345
4346         * assembly.c: load per-assembly config files.
4347         * icall.c: decrapified code to get the config dir and moved to
4348         mono-config.c.
4349         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
4350         per-assembly config files. When doing a dll map lookup give precedence
4351         to the per-assembly data.
4352
4353 2004-04-14  Martin Baulig  <martin@ximian.com>
4354
4355         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
4356         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
4357         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
4358
4359         * mono-debugger-debugger.c: While the debugger is locked, remember
4360         whether the symbol tables have changes and send one single
4361         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
4362
4363 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
4364
4365         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
4366
4367         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
4368         function.
4369
4370         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
4371         account when marshalling string arrays. Fixes #56965.
4372
4373 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
4374
4375         * icall.c: Add new icalls mapping for security.
4376         * security.c|h: Add internal calls for WindowsIdentity,
4377         WindowsImpersonationContext and WindowsPrincipal.
4378
4379 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
4380
4381         * class.c: Added comment to ensure the System.MonoDummy class
4382         is removed when no longer necessary
4383
4384 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
4385
4386         * appdomain.c: Pass arguments to the bootstraping exceptions to
4387         minimize JITed methods at boot
4388
4389         * metadata.c (mono_exception_from_name_two_strings): Allow for the
4390         second string to be null.
4391
4392         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
4393         Change the protocol to minimize the JIT methods at startup.  Now
4394         it Returns the internal codepage, if the value of "int_code_page"
4395         is 1 at entry, and we can not compute a suitable code page
4396         number, returns the code page as a string.
4397
4398 2004-04-13  Jackson Harper  <jackson@ximian.com>
4399
4400         * culture-info-tables.h: Fix number of decimal digits for all
4401         english locales.
4402
4403 2004-04-13  Jackson Harper  <jackson@ximian.com>
4404
4405         * icall.c: Clairfy out of sync error message. It is not always
4406         your corlib that is out of sync.
4407
4408 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
4409
4410         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
4411         properties when only the set accessor is overriden. Fixes #55874.
4412
4413 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
4414
4415         * assembly.c (mono_assembly_load_references): Make this thread safe.
4416         Fixes #56327.
4417
4418 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
4419
4420         * monosn.c: Add missing initialization calls.
4421
4422 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
4423
4424         * locales.c:
4425         ves_icall_System_Globalization_CultureInfo_construct_number_format
4426         Fix g_assert so it compiles on fussier compilers re int/ptr
4427         mismatch
4428
4429 2004-04-08  Dick Porter  <dick@ximian.com>
4430
4431         * socket-io.h:
4432         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
4433         53992.  Also rearrange the code so that the internal calls return
4434         an error value and exceptions are thrown from managed code.
4435
4436         * icall.c: Add type info to the socket icalls.
4437
4438 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4439
4440         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
4441         owes me a beer.
4442
4443 2004-04-07  Martin Baulig  <martin@ximian.com>
4444
4445         * class.c (mono_class_from_generic_parameter): Don't default
4446         `klass->parent' to `mono_defaults.object_type'.
4447
4448 2004-04-07  Martin Baulig  <martin@ximian.com>
4449
4450         * reflection.c (mono_reflection_initialize_generic_parameter): Set
4451         `param->pklass->reflection_info'.       
4452
4453 2004-04-07  Jackson Harper  <jackson@ximian.com>
4454
4455         * culture-info-tables.h: Fix date separator symbol.
4456         
4457 2004-04-07  Martin Baulig  <martin@ximian.com>
4458
4459         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
4460         from System.Type to System.MonoType.
4461
4462 2004-04-07  Martin Baulig  <martin@ximian.com>
4463
4464         * reflection.h
4465         (MonoReflectionGenericParam): Added `has_reference_type' and
4466         `has_value_type' fields.
4467
4468         * reflection.c (mono_image_get_generic_param_info): Encode the
4469         correct flags if we have the `class' or `struct' constraint.
4470
4471 2004-04-07  Martin Baulig  <martin@ximian.com>
4472
4473         * reflection.h
4474         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
4475
4476 2004-04-07  Jackson Harper  <jackson@ximian.com>
4477
4478         * appdomain.c: Revert extra patches, just wanted to bump the
4479         version number.
4480         
4481 2004-04-07  Jackson Harper  <jackson@ximian.com>
4482
4483         * Makefile.am: Add culture-info private headers.
4484         * icall.c: Add new icalls for contructing locales.
4485         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
4486         * locales.h: Declare new culture info construction methods.
4487         * object.h: Add new fields used to avoid the CultureMap to
4488         MonoCultureInfo.
4489         * culture-info.h: Definition of structs used in the culture info
4490         tables.
4491         * culture-info-tables.h: Autogenerated tables that contain culture
4492         info data. This file was generated with the locale-builder tool.
4493         * appdomain.c: Incement corlib version number.
4494         
4495 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
4496
4497         * appdomain.c: (mono_runtime_init) move mono_thread_init
4498         to before mono_object_new calls so critical sections
4499         are initialized before use.
4500
4501 2004-04-07  Martin Baulig  <martin@ximian.com>
4502
4503         * icall.c
4504         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
4505         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
4506         (ves_icall_MonoGenericParam_initialize): Removed.
4507         (monogenericparam_icalls): Removed.
4508         (generictypeparambuilder_icalls): Added new table for
4509         System.Reflection.Emit.GenericTypeParameterBuilder.
4510
4511         * reflection.c
4512         (mono_reflection_define_generic_parameter): Removed.
4513         (mono_reflection_initialize_generic_parameter): This is now called
4514         from GenericTypeParameterBuilder's .ctor.
4515
4516 2004-04-06  Martin Baulig  <martin@ximian.com>
4517
4518         * class.c (mono_class_init): Don't inflate nested classes in a
4519         generic instance.
4520         (mono_type_get_name_recurse): Include the generic arguments for
4521         generic instances and generic type declarations.
4522         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
4523         (_mono_class_get_instantiation_name): Removed.
4524         (mono_class_create_generic): Always use `gklass->name' as our name.
4525
4526         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
4527
4528         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
4529         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
4530         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
4531         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
4532         closed generic methods here.
4533
4534         * reflection.c
4535         (mono_reflection_generic_inst_get_nested_types): Removed.
4536         (inflate_mono_method): Copy the generic parameters from the
4537         MonoMethodHeader into out MonoGenericMethod.
4538
4539 2004-04-06  Martin Baulig  <martin@ximian.com>
4540
4541         * row-indexes.h
4542         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
4543
4544         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
4545
4546         * reflection.c (build_compressed_metadata): If we have any entries
4547         in the GenericParam, MethodSpec or GenericParamConstraint tables,
4548         set the header version to 1.1.
4549
4550 2004-04-06  Martin Baulig  <martin@ximian.com>
4551
4552         * class.c (mono_class_init): If we're a generic instance,
4553         initialize our nested classes, too.
4554         (_mono_class_get_instantiation_name): Deal with the new `!%d'
4555         suffix. 
4556
4557 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4558
4559         * process.c: quote the argument passed to the shell on windows.
4560
4561 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
4562
4563         * threads.c (mono_alloc_special_static_data): Allow this to be
4564         called during startup.
4565
4566 2004-04-02  Martin Baulig  <martin@ximian.com>
4567
4568         * icall.c
4569         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
4570
4571 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
4572
4573         * icall.c: Fix build.
4574
4575 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
4576
4577         * Makefile.am: Added security.c|h.
4578         * icall.c: Added icall for get_UserName;
4579         * security.c: New file for security related icalls. Added function
4580         get_UserName for System.Environment (fix #56144).
4581         * security.h: New. Header file for security.c
4582
4583 2004-04-02  Dick Porter  <dick@ximian.com>
4584
4585         * icall.c: Deleted the icalls that were obsoleted some time ago
4586         by the ICU string code, and which were mixed into the icall
4587         rearranging.  Fixes bug 55969.
4588
4589         * string-icalls.h: 
4590         * string-icalls.c: Deleted the code that those icalls reference.
4591
4592 2004-04-01  Martin Baulig  <martin@ximian.com>
4593
4594         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
4595
4596         * class.c (mono_class_from_generic_parameter): Don't set 
4597         TYPE_ATTRIBUTE_INTERFACE.
4598         (my_mono_class_from_generic_parameter): Likewise.
4599
4600 2004-04-01  Martin Baulig  <martin@ximian.com>
4601
4602         * loader.c (find_method): Added an optional `MonoClass *ic'
4603         argument to search in a specific interface.
4604         (mono_get_method_constrained): New public function.
4605
4606 2004-04-01  Martin Baulig  <martin@ximian.com>
4607
4608         * reflection.c (mono_image_get_generic_field_token): Use the
4609         `handleref' cache here.
4610
4611 2004-04-01  Martin Baulig  <martin@ximian.com>
4612
4613         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
4614
4615         * reflection.c (create_generic_typespec): Use the `typespec' hash
4616         here, not the `typeref' one.    
4617
4618 2004-04-01  Martin Baulig  <martin@ximian.com>
4619
4620         * class.c (mono_class_inflate_generic_type): Moved the
4621         functionality into a new static inflate_generic_type() which
4622         returns NULL if it didn't do anything.  Only increment the
4623         `mono_stats.inflated_type_count' if we actually inflated
4624         something.
4625         (mono_class_get_full): Check the classes type to see whether we
4626         need to inflate it; also inflate MONO_TYPE_(M)VAR.
4627
4628 2004-04-01  Jackson Harper  <jackson@ximian.com>
4629
4630         * reflection.c: Set culture for assembly references.
4631         
4632 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
4633
4634         * reflection.[ch], icall.[ch], Fix support for pinning variables.
4635
4636 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4637
4638         * assembly.c:
4639         (do_mono_assembly_open): the critical section also covers
4640         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
4641
4642 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4643
4644         * threads.c:
4645         (mono_manage_threads): abort the background threads when finishing.
4646         Fixes bug #47232.
4647
4648 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4649
4650         * gc.c: only close the done_event handle if there was no timeout.
4651         C-ified comments.
4652
4653 2004-03-30  Martin Baulig  <martin@ximian.com>
4654
4655         * icall.c (icall_entries): It's called "System.Activator", not
4656         "System.Activation".    
4657
4658 2004-03-30  Martin Baulig  <martin@ximian.com>
4659
4660         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
4661         (mono_class_create_from_typespec): Likewise.
4662
4663 2004-03-30  Martin Baulig  <martin@ximian.com>
4664
4665         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
4666         `has_ctor_constraint' and `initialized'.
4667
4668 2004-03-30  Martin Baulig  <martin@ximian.com>
4669
4670         * reflection.c (encode_new_constraint): New static function to add
4671         the constructor constraint attribute to a type parameter.
4672         (encode_constraints): Call encode_new_constraint() if necessary.
4673
4674         * reflection.h
4675         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
4676
4677         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
4678         
4679 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
4680
4681         * reflection.c, icall.c: add support for pinning variables. 
4682
4683 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
4684
4685         * marshal.c (mono_marshal_get_managed_wrapper):
4686         init bool local with zero rather than null.
4687
4688 2004-03-29  Martin Baulig  <martin@ximian.com>
4689
4690         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
4691         the "official" behavior here.
4692         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
4693
4694 2004-03-29  Martin Baulig  <martin@ximian.com>
4695
4696         * icall.c: Reflect latest API changes.
4697
4698 2004-03-29  Martin Baulig  <martin@ximian.com>
4699
4700         * loader.c (mono_get_method_from_token): Also call
4701         mono_metadata_load_generic_params () for abstract and interface
4702         methods; replace the type arguments in the method signature with
4703         the ones which are loaded from the metadata.
4704
4705 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
4706
4707         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
4708         of the lock is not the current thread. MS.NET don't do it, in spite of
4709         what the documentation says. See bug #56157.
4710
4711 2004-03-28  Martin Baulig  <martin@ximian.com>
4712
4713         * class.c (mono_class_init): Don't call init_properties() and
4714         init_events() for generic instances; set `prop->parent' when
4715         inflating properties.
4716
4717         * reflection.c (mono_generic_inst_get_object): Call
4718         `mono_class_init (ginst->klass)'.
4719         (mono_type_get_object): Only create a MonoGenericInst if your
4720         generic type is a TypeBuilder.
4721         (do_mono_reflection_bind_generic_parameters): Only set
4722         `ginst->is_dynamic' if our generic type is a TypeBuilder.
4723
4724 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
4725
4726         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
4727         Fixes #56091.
4728
4729 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4730
4731         * icall.c: added Kill_internal icall.
4732         * process.[ch]: added Kill_internal icall.
4733
4734 2004-03-25  Martin Baulig  <martin@ximian.com>
4735
4736         * class.h (MonoStats): Added `generic_instance_count',
4737         `inflated_method_count', `inflated_type_count' and
4738         `generics_metadata_size'.       
4739
4740 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4741
4742         * reflection.c: no warnings now.
4743
4744 2004-03-25  Martin Baulig  <martin@ximian.com>
4745
4746         * class.c (mono_class_get_full): New public function; does a
4747         mono_class_get(), but also takes a `MonoGenericContext *'.
4748
4749         * loader.c (mono_field_from_memberref): Renamed to
4750         `field_from_memberref', made static and added `MonoGenericContext *'
4751         argument.
4752         (mono_field_from_token): Added `MonoGenericInst *' argument.
4753         (method_from_memberef): Likewise.
4754         (mono_get_method_from_token): Likewise.
4755         (mono_get_method_full): New public function; does a
4756         mono_get_method(), but also takes a `MonoGenericContext *'.
4757
4758         * verify.c (mono_method_verify): Get the method's generic context
4759         and pass it to mono_field_from_token(), mono_get_method_full() and
4760         mono_class_get_full().
4761
4762 2004-03-25  Martin Baulig  <martin@ximian.com>
4763
4764         * class.c (mono_class_inflate_generic_type): Take a
4765         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
4766         `MonoGenericMethod *'.
4767
4768 2004-03-25  Martin Baulig  <martin@ximian.com>
4769
4770         * loader.h (MonoMethodInflated): Store the MonoGenericContext
4771         instead of the MonoGenericMethod here.
4772
4773 2004-03-25  Martin Baulig  <martin@ximian.com>
4774
4775         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
4776         each time we create a new MonoGenericInst, we also create a new
4777         context which points back to us.
4778
4779         * class.c (inflate_method): Use `ginst->context' instead of
4780         creating a new context.
4781
4782         * loader.c (method_from_memberref): Use
4783         `klass->generic_inst->context' instead of creating a new context.
4784
4785 2004-03-25  Martin Baulig  <martin@ximian.com>
4786
4787         * class.h (MonoGenericContext): New struct.
4788         (MonoGenericMethod): Removed `generic_inst'.
4789
4790         * class.c (mono_class_inflate_generic_method): Take a
4791         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
4792
4793 2004-03-25  Martin Baulig  <martin@ximian.com>
4794
4795         * loader.h (MonoMethodInflated): New typedef.
4796
4797         * metadata.h (MonoMethodSignature): Removed `gen_method', make
4798         `generic_param_count' consume just 30 bits, added `is_inflated'
4799         and `has_type_parameters' flags (one bit each).
4800
4801         * class.c (mono_class_inflate_generic_method): Create a
4802         MonoMethodInflated instead of a MonoMethodNormal and set
4803         `is_inflated' in the method signature.
4804
4805         * class.h (MonoGenericMethod): Removed `generic_method'.
4806
4807 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
4808
4809         * image.c: Make sure the name of a MonoImage is always an absolute path.
4810           This fixes bug #54415.
4811
4812 2004-03-24  Martin Baulig  <martin@ximian.com>
4813
4814         * class.c (mono_class_setup_vtable): If we're a generic instance,
4815         use our generic type's vtable size.
4816
4817 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
4818
4819         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
4820         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
4821         problems.
4822
4823 2004-03-23  Martin Baulig  <martin@ximian.com>
4824
4825         * class.h (MonoDynamicGenericInst): Added `int count_events' and
4826         `MonoEvent *events'.
4827
4828         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
4829         (typebuilder_icalls): Added "get_event_info"; calls
4830         mono_reflection_event_builder_get_event_info(). 
4831
4832         * reflection.c (mono_reflection_generic_inst_initialize): Added
4833         `MonoArray *events'.
4834         (mono_reflection_event_builder_get_event_info): New function.
4835
4836 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
4837
4838         * object.h: add mono_type_initialization_init
4839
4840         * object.c (mono_runtime_class_init): 
4841         implement class constructor synchronization rules
4842         to cope with threading issues.  
4843         add mono_type_initialization_init
4844
4845         * appdomain.c (mono_runtime_init): call 
4846         mono_type_initialization_init
4847
4848         * class.h: removing initializing field from MonoVTable
4849
4850 2004-03-23  Martin Baulig  <martin@ximian.com>
4851
4852         * class.c (my_mono_class_from_generic_parameter): Use
4853         `param->name' if it's not NULL. 
4854
4855 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
4856
4857         * class.c: do not insert non-virtual methods in the vtable.
4858         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
4859         that means the method is non-virtual. This never would have
4860         happened before.
4861
4862 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
4863
4864         * profiler.c: Added lock for accessing coverage_hash.
4865
4866 2004-03-22  Martin Baulig  <martin@ximian.com>
4867
4868         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
4869         `method->method->signature->generic_param_count != 0' to make it
4870         work for interface methods.
4871
4872 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4873
4874         * process.c: quote the string passed to the shell using g_shell_quote.
4875
4876 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4877
4878         * threads.c:
4879         (mono_threads_manage): don't remove the finalizer thread and self
4880         from the threads hash table so that mono_thread_manage can be called
4881         more than once.
4882
4883 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4884
4885         * process.c: quote the arguments when UseShellExecute is true. Fixes
4886         bug #55790.
4887
4888 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4889
4890         * threads.c: set mono_thread_detach as a cleanup routine for every
4891         thread. This way it's always executed upon thread termination, either
4892         aborted or finished normally. No more xsp hangs!
4893
4894 2004-03-17  Martin Baulig  <martin@ximian.com>
4895
4896         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
4897         `int count_nested' and a `MonoType **nested'.
4898
4899         * reflection.c (mono_reflection_bind_generic_parameters): Moved
4900         most of the functionality into a new static
4901         do_mono_reflection_bind_generic_parameters() and don't take a
4902         `MonoType *nested_in' argument any more.  Don't compute nested
4903         types here.
4904         (mono_reflection_generic_inst_get_nested_types): New public method
4905         to get nested types.
4906
4907         * class.c (mono_class_create_generic): Set `klass->nested_in' if
4908         we're a nested class.
4909
4910         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
4911         mono_reflection_generic_inst_get_nested_types() to compute the
4912         nested types.
4913
4914 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
4915
4916         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
4917         descriptive error message under windows.
4918         
4919 2004-03-17  Martin Baulig  <martin@ximian.com>
4920
4921         * class.c (dup_type): Added `const MonoType *original' argument;
4922         copy the attrs from the original type.
4923
4924 2004-03-17  Martin Baulig  <martin@ximian.com>
4925
4926         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
4927         `m->generic_inst_cache' here.
4928
4929 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
4930
4931         * exception.h exception.c: Add stack_overflow_exception.
4932
4933 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4934
4935         * threadpool.c:
4936         (overlapped_callback): call SetEvent *after* invoking the callback.
4937         No need to call CloseHandle.
4938
4939 2004-03-16  Martin Baulig  <martin@ximian.com>
4940
4941         * reflection.c (mono_image_get_fieldref_token): Take a
4942         `MonoReflectionField *' instead of a `MonoClassField *' and a
4943         `MonoClass *'; store the `MonoReflectionField *' in the hash.
4944
4945 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4946
4947         * appdomain.c: don't add the culture to the filename we're looking for
4948         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
4949
4950 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4951
4952         * locales.c: don't ignore symbols when doing case insensitive compares.
4953         Thanks Dick! Fixes bug #54046.
4954
4955         * threads.c: surround 'threads' usage with enter/leave in
4956         mono_thread_manage.
4957
4958 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
4959
4960         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
4961         implicitly marshalled as [Out]. Fixes #55450.
4962
4963         (mono_marshal_get_runtime_invoke): Zero out the result if there is
4964         an exception.
4965
4966 2004-03-16  Martin Baulig  <martin@ximian.com>
4967
4968         * class.c (mono_class_from_generic_parameter): Use the actual
4969         parameter name. 
4970
4971 2004-03-16  Martin Baulig  <martin@ximian.com>
4972
4973         * reflection.c (type_get_signature_size): New static function.
4974         Compues the size of the type in a method signature.
4975         (method_get_signature_size): New static function; calls
4976         type_get_signature_size() to compute the actual size of the
4977         method's signature.
4978         (method_encode_signature): Use method_get_signature_size() to get
4979         the signature's size rather than using `nparams * 10'.
4980
4981 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4982
4983         * file-io.h: define here WapiOverlapped on windows. I don't want the
4984         regular OVERLAPPED one.
4985
4986         * file-io.c:
4987         * threadpool.c: somehow, BindIoCompletionCallback is not found.
4988         Disabling AIO on windows.
4989
4990 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4991
4992         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
4993         bug #55385.
4994
4995 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4996
4997         * appdomain.c: upgraded corlib version.
4998
4999         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
5000         and BeginWrite. Allow opening files for asynchrnous operations.
5001
5002         * file-io.h: new struct that maps FileStreamAsyncResult.
5003         * icall.c: added new icalls.
5004         * process.[ch]: support setting child process environment variables
5005         and use the SHELL or COMSPEC when UseShellExecute is true.
5006
5007         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
5008         callback for async. IO is here and also BindHandle.
5009
5010         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
5011         from here.
5012
5013 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
5014
5015         * reflection.c (create_custom_attr): Allow len == 0.
5016
5017         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
5018         computation on big-endian machines.
5019
5020 2004-03-13  Martin Baulig  <martin@ximian.com>
5021
5022         * class.h (MonoGenericInst): Added `int count_ifaces'.
5023
5024         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
5025         `ginst->count_ifaces' instead `klass->interface_count' since we
5026         may get called before the vtable is created.
5027
5028         * loader.c (mono_method_get_param_names): If we're a generic
5029         instance, return and don't initialize the class.
5030
5031         * reflection.c (mono_reflection_setup_generic_class): Don't call
5032         ensure_runtime_vtable().
5033         (mono_reflection_bind_generic_parameters): Set
5034         `ginst->count_ifaces'.
5035
5036 2004-03-11  Jackson Harper <jackson@ximian.com>
5037
5038         * icall.c:
5039         * unicode.c:
5040         * unicode.h: Remove unused System.Char icalls.
5041         
5042 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
5043
5044         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
5045         code when we P/Invoke the first library in Windows.Forms, instead
5046         of when we first open the assembly.
5047
5048         * assembly.c: Drop the lookup from here.
5049
5050 2004-03-10  Martin Baulig  <martin@ximian.com>
5051
5052         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
5053         class for properties, fields and events.  Finally fixes #54945.
5054
5055 2004-03-10  Martin Baulig  <martin@ximian.com>
5056
5057         * metadata.c (mono_metadata_class_equal): New static function;
5058         checks whether two generic instances or two generic parameters are
5059         equal.
5060         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
5061         compare classes.        
5062
5063 2004-03-10  Martin Baulig  <martin@ximian.com>
5064
5065         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
5066
5067         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
5068         argument and write it into the `reflection_info' field.
5069
5070         * icall.c
5071         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
5072         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
5073
5074 2004-03-09  Jackson Harper  <jackson@ximian.com>
5075
5076         * char-conversions.h: use 8 bits for numeric data its all we need
5077         * icall.c: numeric data is only 8 bits now.
5078
5079 2004-03-09  Martin Baulig  <martin@ximian.com>
5080
5081         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
5082
5083         * class.c (init_properties, init_events): Initialize the new
5084         `parent' field.
5085
5086         * reflection.c (typebuilder_setup_properties): Likewise.
5087         (typebuilder_setup_events): Likewise.
5088
5089         * reflection.h (MonoEventInfo): Replaced `parent with
5090         `declaring_type' and `reflected_type'.
5091
5092         * icall.c (ves_icall_get_property_info): Distinguish between
5093         declaring and reflected type.
5094         (ves_icall_get_event_info): Likewise.
5095
5096 2004-03-09  Martin Baulig  <martin@ximian.com>
5097
5098         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
5099         (ves_icall_Type_GetField): Correctly set field->klass.
5100
5101 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
5102
5103         * loader.h: Fix warning.
5104
5105 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
5106
5107         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
5108         library routine if present.  Notice that it will still continue
5109         executing even if its missing, for those working on the Gtk#
5110         edition of Windows.Forms.
5111
5112         * assembly.c (do_mono_assembly_open): If loading the
5113         System.Windows.Forms call mono_loader_wini_init.
5114
5115 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
5116
5117         * class.h: Added MonoRemoteClass struct.
5118         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
5119         function for MonoStrings.
5120         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
5121         Added internal call for getting the proxy type.
5122         * marshal.c: Get the type of transparent proxies from its remote_class.
5123         Added methods that generate the IL for type checks and casts:
5124         mono_marshal_get_isinst, mono_marshal_get_castclass, 
5125         mono_marshal_get_proxy_cancast.
5126         * marshal.h: Declaration of the previous new methods.
5127         * object.c: Added new moethods for creating and updating MonoRemoteClass
5128         instances: mono_remote_class, mono_upgrade_remote_class, 
5129         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
5130         * verify.c: FIx transparent_proxy_fields layout.
5131         * appdomain.c: Bump corlib version.
5132
5133 2004-03-04  Jackson Harper  <jackson@ximian.com>
5134
5135         * icall.c: Add icall to access char conversion tables.
5136         * char-conversions.h: Character conversion tables.
5137         * Makefile.am: Add char-conversions.h private header file.
5138         
5139 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
5140
5141         * appdomain.c (unload_thread_main): Increase unloading timeout to
5142         10 sec as a temporary workaround for Nant problems.
5143
5144 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
5145
5146         * gc.c: Add checks for GC_enable and GC_disable.
5147
5148         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
5149         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
5150         (bug #54988).
5151         
5152 2004-02-27  Martin Baulig  <martin@ximian.com>
5153
5154         * reflection.c (mono_reflection_bind_generic_parameters): Take a
5155         `MonoReflectionType *' instead of a `MonoType *'.
5156
5157 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
5158
5159         * gc.c (run_finalize): Avoid finalizing the object representing the
5160         finalizer thread.
5161         (finalizer_thread): Fix warning.
5162
5163 2004-02-25  Martin Baulig  <martin@ximian.com>
5164
5165         * class.c (_mono_class_get_instantiation_name): Added `int offset'
5166         argument for nested types.
5167         (mono_class_create_generic): Added support for nested generictypes.
5168
5169         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
5170         `GList *nested'.
5171
5172         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
5173
5174         * reflection.c (method_encode_signature): Increase the minimum
5175         value of `size' from 10 to 11.
5176         (mono_reflection_bind_generic_parameters): Take `int type_argc'
5177         and `MonoType **types' arguments instead of the `MonoArray
5178         *types'; added `MonoType *nested_in'.  Recursively instantiate
5179         nested classes. 
5180
5181 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
5182
5183         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
5184         stack_overflow_ex members which are used by exception handling.
5185
5186         * appdomain.c (mono_runtime_init): Initialize the new members.
5187
5188         * gc.c (mono_gc_enable): New helper function.
5189         * gc.c (mono_gc_disable): New helper function.
5190
5191 2004-02-23  Martin Baulig  <martin@ximian.com>
5192
5193         * icall.c: I must have been really stupid - make it actually work
5194         this time ;-)
5195
5196 2004-02-23  Martin Baulig  <martin@ximian.com>
5197
5198         * loader.c (method_from_memberref): Only inflate the method if
5199         it's in another klass.
5200
5201 2004-02-23  Martin Baulig  <martin@ximian.com>
5202
5203         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
5204         (mono_class_init): If we're a generic instance and an interface,
5205         compute `class->interface_id'; also create `class->interfaces'
5206         here and inflate them.
5207
5208         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
5209         `ginst->is_open'.
5210         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
5211
5212         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
5213
5214 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
5215
5216         * reflection.c (method_encode_code): Improved the error message
5217         generated by the exception.
5218
5219 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5220
5221         * icall.c: Martin did not do what he said in the ChangeLog for
5222         2004-02-18, but put back the changes for properties and events.
5223         Commenting those changes out again and adding comment to bug #54518.
5224         
5225         * process.c: removed warning.
5226
5227 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
5228
5229         * marshal.c (emit_struct_conv): Print an error message instead of
5230         asserting when a type does not have the StructLayout attribute.
5231
5232 2004-02-20  Martin Baulig  <martin@ximian.com>
5233
5234         * reflection.c (mono_type_get_object): Also use the cache for
5235         generic instances.
5236         (mono_reflection_bind_generic_parameters): Always compute
5237         `ginst->ifaces'.        
5238
5239 2004-02-20  Martin Baulig  <martin@ximian.com>
5240
5241         * class.h (MonoGenericMethod): Removed `klass'.
5242
5243         * class.c (mono_class_inflate_generic_method): Added `MonoClass
5244         *klass' argument.
5245
5246 2004-02-20  Martin Baulig  <martin@ximian.com>
5247
5248         * reflection.c (method_encode_methodspec): Actually use the
5249         uninflated signature for the memberref.
5250
5251 2004-02-20  Martin Baulig  <martin@ximian.com>
5252
5253         * class.h (MonoGenericMethod): Removed `declaring'.
5254
5255         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
5256         is NULL, compute it here.
5257
5258 2004-02-20  Martin Baulig  <martin@ximian.com>
5259
5260         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
5261
5262         * metadata.c (mono_metadata_generic_inst_hash): New method.
5263         (mono_metadata_generic_inst_equal): New method.
5264
5265         * reflection.c (mono_reflection_bind_generic_parameters): Use the
5266         `klass->image->generic_inst_cache' cache to avoid creating
5267         duplicate MonoGenericInst's.
5268
5269         * class.c (mono_class_inflate_generic_type): Use the cache.
5270
5271 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
5272
5273         * object.c: fixed gc descriptor calculation for embedded valuetypes.
5274
5275 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5276
5277         * icall.c: added Socket.WSAIoctl icall.
5278
5279         * socket-io.[ch]: implemented
5280         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
5281
5282 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
5283
5284         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
5285
5286 2004-02-18  Urs C Muff  <umuff@quark.com>
5287
5288         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
5289         this work on PPC and other big-endian architectures.
5290
5291         * debug-mono-symfile.h: Prepended the names of all the `guint32'
5292         fields with an underscore to make sure they're only accessed by
5293         the read32() macro.
5294
5295 2004-02-18  Martin Baulig  <martin@ximian.com>
5296
5297         * icall.c: Put the klass->refclass changes back for methods and
5298         fields, but not for properties and events.  We're currently not
5299         distinguishing between DeclaringType and ReflectedType for
5300         properties and events, that's what caused the regressions.
5301
5302 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5303
5304         * object.c:
5305         (mono_async_result_new): the handle can be NULL.
5306
5307         * threadpool.c: Use an event instead of a semaphore, don't initialize
5308         it until needed. This saves quite a few semaphores from being created
5309         when using the threadpool.
5310
5311 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
5312
5313         * object.c (mono_string_is_interned_lookup): Fix interning of long
5314         strings. Fixes #54473.
5315
5316         * domain.c (ldstr_equal): Optimize if the two strings are equal.
5317
5318         * icall.c: Revert the klass->refclass changes since they introduce
5319         regressions (bug #54518).
5320
5321 2004-02-18  Martin Baulig  <martin@ximian.com>
5322
5323         * class.c (mono_class_init): If we're a generic instance and don't
5324         come from a TypeBuilder, inflate our members here.
5325         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
5326         (mono_class_create_generic): New public method.
5327         (mono_class_initialize_generic): Removed.
5328         (get_instantiation_name): Renamed to
5329         _mono_class_get_instantiation_name() and made it public.
5330
5331 2004-02-18  Martin Baulig  <martin@ximian.com>
5332
5333         * class.c (mono_class_inflate_generic_type): Clear the new
5334         instance's `nginst->klass' when inflating a generic instance.
5335         (mono_class_is_subclass_of): Added (basic) support for generic
5336         instances.
5337
5338 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
5339
5340         * appdomain.h, domain.c: use a MonoCodeManager instead of a
5341         MonoMempool to hold compiled native code.
5342
5343 2004-02-17  Martin Baulig  <martin@ximian.com>
5344
5345         * class.h (MonoDynamicGenericInst): Added `count_properties' and
5346         `properties'.
5347
5348         * reflection.c (mono_reflection_generic_inst_initialize): Added
5349         `MonoArray *properties' argument.
5350
5351         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
5352
5353 2004-02-17  Martin Baulig  <martin@ximian.com>
5354
5355         * icall.c (ves_icall_Type_GetFields): Renamed to
5356         ves_icall_Type_GetFields_internal() and added a
5357         `MonoReflectionType *rtype' argument; pass it to
5358         mono_field_get_object() to set the field's "reflected" type.
5359         (ves_icall_Type_GetConstructors): Likewise.
5360         (ves_icall_Type_GetEvents): Likewise.
5361         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
5362         argument; pass it to mono_method_get_object() to set the method's
5363         "reflected" type.       
5364
5365 2004-02-17  Martin Baulig  <martin@ximian.com>
5366
5367         * class.h (MonoDynamicGenericInst): New type.
5368         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
5369
5370         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
5371         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
5372         (ves_icall_MonoGenericInst_GetFields): New interncall.
5373
5374         * class.c (mono_class_from_generic): Don't call
5375         mono_class_initialize_generic() if this is a dynamic instance;
5376         ie. it's being created from a TypeBuilder.
5377         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
5378         `class->byval_arg.type'.
5379
5380         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
5381         to `inflate_method' and made static.
5382         (mono_reflection_inflate_field): Removed.
5383         (mono_reflection_generic_inst_initialize): New public method.
5384
5385         * reflection.h (MonoReflectionGenericInst): Removed `methods',
5386         `ctors' and `fields'; added `initialized'.
5387
5388 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
5389
5390         * debug-helpers.c (mono_method_full_name): Fix output for empty
5391         namespaces.
5392
5393 2004-02-12  Martin Baulig  <martin@ximian.com>
5394
5395         * class.h (MonoClassField): Added `MonoType *generic_type'.
5396
5397         * reflection.c (mono_image_get_fieldref_token): Added support for
5398         instantiated generic types.
5399         (field_encode_inflated_field): Removed.
5400         (mono_image_get_inflated_field_token): Removed.
5401         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
5402
5403         * reflection.h (MonoReflectionInflatedField): Removed.
5404
5405 2004-02-12  Martin Baulig  <martin@ximian.com>
5406
5407         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
5408         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
5409
5410         * reflection.c (mono_image_get_methodspec_token): Take a
5411         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
5412         (mono_image_create_token): Check whether we have a
5413         `method->signature->gen_method' and call
5414         mono_image_get_methodspec_token() if appropriate.
5415         (inflated_method_get_object): Removed.
5416         (mono_reflection_bind_generic_method_parameters): Return a
5417         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
5418         (mono_reflection_inflate_method_or_ctor): Likewise.
5419
5420         * reflection.h (MonoReflectionInflatedMethod): Removed.
5421
5422 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
5423
5424         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
5425         for custom valuetype marshalling.
5426
5427         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
5428
5429 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5430
5431         * icall.c: fixed WSAGetLastError_internal name.
5432
5433 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
5434
5435         * threads.c (mono_thread_attach): Allow this to be called multiple
5436         times for a thread.
5437         
5438         * threads.c (build_wait_tids): Do not wait for ourselves.
5439
5440         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
5441         appdomain list is empty.
5442
5443         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
5444         memory returned by mono_string_builder_to_utf16, since it points into
5445         managed memory. Thanks to Bernie Solomon for noticing this.
5446
5447         * icall.c: Add AppDomainSetup icalls.
5448
5449         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
5450
5451         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
5452         types.
5453
5454         * reflection.c (reflection_methodbuilder_to_mono_method): Save
5455         custom attributes to the method_aux struct. Also fix array indexes etc.
5456
5457         * loader.c (mono_method_get_param_names): Make dynamic case work again.
5458         
5459 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
5460
5461         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
5462         (both static and runtime) and reduce startup time.
5463
5464 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
5465
5466         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
5467         AsAny marshalling conversion instead of crashing.
5468
5469         * marshal.c: Fix warnings.
5470
5471 2004-02-09  Martin Baulig  <martin@ximian.com>
5472
5473         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
5474
5475         * reflection.h (MonoReflectionInflatedMethod): Removed the
5476         `declaring' field, it's now in the unmanaged MonoGenericMethod.
5477
5478         * reflection.c (method_encode_methodspec): Removed the `method'
5479         argument; we get it from `gmethod->declaring'.
5480         (inflated_method_get_object): Removed the `declaring' argument.
5481
5482 2004-02-09  Martin Baulig  <martin@ximian.com>
5483
5484         * class.h (MonoGenericMethod): New type.
5485         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
5486         `generic_method'.
5487
5488         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
5489         a `MonoGenericMethod *gen_method' one.
5490
5491         * class.c (mono_class_inflate_generic_type): Take an additional
5492         `MonoGenericMethod * argument.  This is only non-NULL if we're
5493         inflating types for a generic method.   
5494         (mono_class_inflate_generic_signature): Renamed to
5495         inflate_generic_signature() and made static; take a
5496         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
5497         (inflate_generic_header): Take a `MonoGenericMethod *' argument
5498         instead of a `MonoGenericInst *' one.
5499         (mono_class_inflate_generic_method): Likewise.
5500
5501         * reflection.c (encode_generic_method_sig): Take a
5502         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
5503         (method_encode_methodspec): Likewise.
5504         (inflated_method_get_object): Likewise. 
5505
5506         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
5507         field with a `MonoGenericMethod *gmethod' one.  
5508
5509 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
5510
5511         * class.h (mono_class_has_parent): add parens to expansion
5512         so you can ! this.
5513
5514 2004-02-08  Martin Baulig  <martin@ximian.com>
5515
5516         * image.h (MonoImage): Removed `generics_cache'.
5517
5518         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
5519         instead of a `MonoType *' argument; removed the `inflate_methods'
5520         argument.  Don't inflate methods here.
5521
5522         * loader.c (find_method): If it's a generic instance, call
5523         mono_class_init() on the `sclass->generic_inst->generic_type'.
5524
5525         * metadata.c (mono_type_size): Make this work on uninitialized
5526         generic instances; call it on the `ginst->generic_type's class.
5527
5528         * reflection.c (mono_reflection_bind_generic_parameters): Call
5529         mono_class_from_generic() to create the `ginst->klass'.
5530
5531 2004-02-08  Martin Baulig  <martin@ximian.com>
5532
5533         * class.h (MonoClass): Changed type of `generic_inst' from
5534         `MonoType *' to `MonoGenericInst *'.
5535
5536 2004-02-08  Martin Baulig  <martin@ximian.com>
5537
5538         * icall.c (ves_icall_Type_BindGenericParameters): Just call
5539         mono_type_get_object(), this is now creating a `MonoGenericInst'
5540         for MONO_TYPE_GENERICINST.
5541         (ves_icall_MonoGenericInst_GetParentType): Likewise.
5542         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
5543
5544         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
5545         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
5546         (inflated_method_get_object): Added `MonoClass *refclass' argument.
5547         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
5548         and reflected type.
5549
5550         * reflection.h (MonoReflectionInflatedMethod): Removed
5551         `declaring_type' and `reflected_type'.
5552
5553 2004-02-08  Martin Baulig  <martin@ximian.com>
5554
5555         * class.h (MonoGenericInst): Added `MonoType *parent' and
5556         `MonoType **ifaces'.
5557
5558         * reflection.h (MonoReflectionGenericInst): Removed `klass',
5559         `parent' and `interfaces'.
5560
5561         * reflection.c (mono_reflection_bind_generic_parameters): Take a
5562         `MonoType *' argument and return a `MonoType *'.
5563
5564         * icall.c
5565         (ves_icall_MonoGenericInst_GetParentType): New interncall.
5566         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
5567
5568 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
5569
5570         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
5571         valuetype marshalling.
5572
5573 2004-02-06  Martin Baulig  <martin@ximian.com>
5574
5575         * class.c
5576         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
5577         (my_mono_class_from_generic_parameter): Likewise.
5578
5579 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
5580
5581         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
5582         contents of the symbol files lazily.
5583
5584         * object.h (MonoThread): Add 'name' and 'name_len' fields.
5585
5586         * threads.h threads.c icall.c: New icalls for getting and setting the
5587         threads name.
5588
5589 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
5590
5591         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
5592         Raise an exception when the domain is not found.
5593
5594 2004-02-03  Martin Baulig  <martin@ximian.com>
5595
5596         * reflection.c (mono_image_get_methodspec_token): Use the
5597         uninflated signature; fixes gen-33.
5598
5599 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
5600
5601         * gc.c threads.c: Make the finalizer thread a normal managed thread so
5602         the finalizer code can use thread functionality.
5603
5604         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
5605         the finalizer thread.
5606
5607         * threads.c: Make some functions more robust.
5608
5609         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
5610
5611         * metadata.h: Add new marshalling conventions.
5612
5613         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
5614         stringbuilder marshalling. Fixes #53700.
5615
5616         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
5617
5618         * reflection.c (mono_image_get_type_info): Save declarative security
5619         info.
5620
5621         * reflection.c (mono_image_get_field_info): Handle uninitialized 
5622         unmanaged fields as well.
5623
5624         * appdomain.c: Bump corlib version.
5625
5626 2004-02-01  Martin Baulig  <martin@ximian.com>
5627
5628         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
5629         method type arguments.  
5630
5631 2004-01-30  Duncan Mak  <duncan@ximian.com>
5632
5633         * marshal.h: Add prototype for
5634         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
5635         and
5636         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
5637         fix the build.
5638
5639 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
5640
5641         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
5642         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
5643
5644 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
5645
5646         * marshal.c (mono_marshal_get_native_wrapper): Add support for
5647         custom marshalling of valuetypes.
5648
5649         * marshal.c: Fix some warnings.
5650
5651 2004-01-29  Martin Baulig  <martin@ximian.com>
5652
5653         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
5654         for generic method parameters.
5655
5656         * reflection.c (method_encode_methodspec): Write the uninflated
5657         signature into the methodspec table.
5658         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
5659         is always the uninflated method.
5660         (reflection_methodbuilder_to_mono_method): Copy the generic
5661         parameters from the MethodBuilder into `header->gen_params'.
5662
5663 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
5664
5665         * class.c (mono_class_from_generic_parameter): Fix warning.
5666
5667 2004-01-27  Martin Baulig  <martin@ximian.com>
5668
5669         * class.c (mono_class_from_generic_parameter): Don't create
5670         `klass->methods' here.  
5671
5672 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
5673
5674         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
5675         extension since it does not work with libraries named lib<FOO>.dll.so.
5676
5677 2004-01-25  Martin Baulig  <martin@ximian.com>
5678
5679         * class.c (mono_class_inflate_generic_type): Added support for
5680         MONO_TYPE_GENERICINST.
5681
5682         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
5683         inflate methods on open constructed types.      
5684
5685 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5686
5687         * object.c: fire ProcessExit event in the root AppDomain after running
5688         Main. Fixes bug #53299.
5689
5690 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
5691
5692         * socket-io.c: include the new socket-wrappers.h header.
5693         Use the wrappers instead of the unix socket functions to make the code
5694         more clear.
5695
5696 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
5697
5698         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
5699
5700         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
5701         Fixes #22532.
5702
5703 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
5704
5705         * reflection.c (mono_image_create_pefile): Handle the case when the
5706         entry point is not a MethodBuilder.
5707
5708         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
5709         field to ReflectionMethod since it is not allways a builder.
5710
5711         * reflection.c (type_get_fully_qualified_name): New helper function to
5712         return the fully qualified name of a type.
5713
5714         * reflection.c (encode_marshal_blob): Always emit the fully qualified
5715         type name for custom marshallers.
5716
5717         * reflection.c (mono_marshal_spec_from_builder): Ditto.
5718
5719         * class.c (mono_class_setup_vtable): If a parent class already 
5720         implements an interface, use the implementing methods from that class.
5721         Fixes #53148.
5722
5723 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5724
5725         * threadpool.c: just return instead of ExitThread to allow for thread
5726         clean up earlier.
5727
5728 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
5729
5730         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
5731         when closing resource modules.
5732
5733         * reflection.c (mono_image_create_pefile): Handle the case when the
5734         entry point is not a MethodBuilder.
5735
5736         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
5737         field to ReflectionMethod since it is not allways a builder.
5738
5739 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
5740
5741         * marshal.c (mono_marshal_get_managed_wrapper): 
5742         mono_marshal_alloc takes native int so CONV_I
5743         the arg for 64bits.
5744
5745 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
5746
5747         * reflection.c (fixup_cattrs): New function to fixup the methoddef
5748         tokens in the cattr table. Fixes #53108.
5749
5750 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5751
5752         * loader.c: don't trim ".dll" before looking up in the config file.
5753         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
5754
5755 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
5756
5757         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
5758         Return the module which contains the resource as well.
5759         (ves_icall_System_Reflection_Module_Close): New icall.
5760
5761         * appdomain.c: Bump corlib version number.
5762
5763         * image.c (mono_image_addref): New public function.
5764
5765         * assembly.c: Call mono_image_addref.
5766
5767         * reflection.c (mono_module_get_object): Increase reference count of 
5768         the image.
5769
5770         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
5771         Fixes #22532.
5772
5773         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
5774         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
5775         proper exceptions on DllImport problems.
5776
5777 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
5778
5779         * class.c, metadata.c: eliminate CSIZE macro.
5780
5781 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
5782
5783         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
5784         * object.h: Added async_callback field in MonoAsyncResult.
5785         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
5786         * verify.c: Added async_callback in MonoAsyncResult layout.
5787
5788 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
5789
5790         * reflection.c (mono_reflection_get_custom_attrs): Add support
5791         for Modules.
5792
5793 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
5794
5795         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
5796         marshalling.
5797         (mono_marshal_method_from_wrapper): Add null pointer check.
5798
5799 2004-01-16  Martin Baulig  <martin@ximian.com>
5800
5801         * debug-mono-symfile.h: Set version number to 36 and reflect
5802         latest symbol writer changes.
5803
5804 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
5805
5806         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
5807         multi-dimensional arrays.
5808         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
5809         (mono_class_from_mono_type): Use bounded_array_class_get.
5810         
5811         * class.c (mono_bounded_array_class_get): New function which takes
5812         a 'bounded' bool argument to distinguish vectors from one dimensional
5813         arrays.
5814
5815         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
5816         bounded_array_class_get if the array has bounds.
5817
5818         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
5819         Search modules loaded using AssemblyBuilder:AddModule as well.
5820
5821 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5822
5823         * appdomain.c: increased corlib version.
5824         * filewatcher.c: removed g_print.
5825         * icall.c:
5826         (get_property_info): only allocate what is actually requested.
5827         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
5828
5829 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5830
5831         * Makefile.am: added filewatcher.[ch]
5832         * filewatcher.[ch]: FileSystemWatcher runtime support.
5833         * icall.c: added new FSW icalls.
5834
5835 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
5836
5837         * string-icalls.c: fix stringbuilder regression as suggested by
5838         Iain McCoy <iain@mccoy.id.au>.
5839
5840 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
5841
5842         * process.c (process_read_stringtable_block): Recognize '007f' as
5843         a language neutral stringtable block.
5844
5845 2004-01-12  Patrik Torstensson
5846
5847         * object.h (MonoStringBuilder) : Changed layout to support our
5848         new stringbuilder class.
5849         * marshal.c: Change marshalling to support the new layout of 
5850         string builder.
5851         * appdomain.c: increased version number because new layout of
5852         string builder.
5853
5854 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
5855
5856         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
5857         assembly name as an string instead of an AssemblyName, since it is
5858         easier to extract info from it.
5859
5860         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
5861         the culture subdirectories too. Fixes #52231.
5862
5863 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5864
5865         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
5866         It takes 2 new parameters with an optional name for the method to look
5867         for and case ignoring info.
5868
5869         * threadpool.c: removed unused variable.
5870
5871 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5872
5873         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
5874         It takes 2 new parameters with an optional name for the property to look
5875         for and case ignoring info.
5876         Fixes bug #52753.
5877
5878 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
5879
5880         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
5881         Fix #52451.
5882
5883 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5884
5885         * appdomain.c:
5886         * assembly.c: escape the uri before passing it to g_filename_from_uri.
5887         Fixes bug #52630.
5888
5889 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
5890
5891         * reflection.c: Add support for more than one unmanaged resource.
5892
5893         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
5894         in field->def_value, as done in all other cases.
5895
5896         * reflection.c (mono_reflection_get_custom_attrs): Add support for
5897         TypeBuilders.
5898
5899         * reflection.c (mono_reflection_create_runtime_class): Remove 
5900         errorneous assignment to klass->element_class, since it is already
5901         done in mono_reflection_setup_internal_class.
5902
5903 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5904
5905         * gc.c: added missing LeaveCriticalSection.
5906         * icall.c: indented a couple of lines.
5907         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
5908         if we call EndInvoke inside a callback. Fixes bug #52601.
5909
5910 2004-01-07  Martin Baulig  <martin@ximian.com>
5911
5912         * mono-debug-debugger.h
5913         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
5914
5915 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
5916
5917         * appdomain.c: Use messages in NotImplementedException.
5918
5919         * exception.c (mono_get_exception_not_implemented): Now this takes
5920         a message argument.
5921
5922         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
5923         exception instead of g_asserting an aborting when something is not
5924         implemented.
5925
5926         Add some inline docs.
5927
5928 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
5929
5930         * reflection.h: Update after changes to object layout.
5931
5932         * reflection.c: Implement saving of unmanaged aka win32 resources.
5933
5934         * appdomain.c: Bump version number.
5935
5936         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
5937         Handle missing domains gracefully.
5938
5939 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
5940
5941         * file-io.c : On Windows, there are much more invalid_path_chars.
5942
5943 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
5944
5945         * class.h, object.c: prepare for GetType () speedup.
5946
5947 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
5948
5949         * profiler.c: workaround for --profile null reference exception on
5950           cygwin. Patch by Patrik Torstensson.
5951
5952 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
5953
5954         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
5955         make work for unaligned access.
5956
5957 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
5958
5959         * class.c: small cleanup (class->fields [i] -> field).
5960         * image.c: check address of metadata is valid.
5961
5962 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
5963
5964         * assembly.h assembly.c (mono_assembly_loaded): New public function to
5965         search the list of loaded assemblies.
5966
5967         * reflection.c (mono_reflection_type_from_name): Use 
5968         mono_assembly_loaded instead of mono_image_loaded.
5969
5970         * reflection.c: Fix warnings.
5971
5972 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
5973
5974         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
5975         is dynamic. This is needed since an assembly can contain both dynamic and
5976         non-dynamic images.
5977
5978         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
5979         assembly->dynamic.
5980
5981         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
5982
5983         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
5984         to store modules loaded using AddModule.
5985
5986         * reflection.c (mono_image_fill_file_table): Generalize this so it works
5987         on Modules.
5988
5989         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
5990
5991         * reflection.c (mono_image_fill_export_table_from_module): New function to
5992         fill out the EXPORTEDTYPES table from a module.
5993
5994         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
5995         into a separate function. Also handle loaded non-dynamic modules.
5996
5997         * reflection.c (mono_image_basic_init): Fix memory allocation.
5998
5999         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6000
6001         * assembly.c (mono_assembly_load_references): Make this public.
6002
6003 2003-12-19  Martin Baulig  <martin@ximian.com>
6004
6005         * class.c (mono_class_initialize_generic): Made this static, take
6006         a `MonoGenericInst *' instead of a `MonoClass *'.
6007         (mono_class_from_generic): Call mono_class_initialize_generic()
6008         unless we're already initialized or being called from
6009         do_mono_metadata_parse_generic_inst().
6010
6011         * class.h (MonoGenericInst): Added `initialized' and
6012         `init_pending' flags.
6013
6014         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
6015         `mono_class_init (gklass)' or mono_class_initialize_generic()
6016         here; set `generic_inst->init_pending' while parsing the
6017         `type_argv'.
6018
6019 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
6020
6021         * locales.c: include string.h for memxxx prototypes
6022
6023 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
6024
6025         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
6026         constructor when accessing literal fields.
6027
6028 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
6029
6030         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6031
6032         * reflection.c (assembly_add_resource_manifest): New function to fill
6033         the MANIFESTRESOURCE table.
6034
6035         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
6036
6037         * reflection.h: Update to changes in class layout.
6038
6039         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
6040         Reenable call to mono_runtime_is_shutting_down ().
6041
6042         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
6043         determine if the runtime is shutting down.
6044
6045 2003-12-16  Jackson Harper <jackson@ximian.com>
6046
6047         * icall.c: comment out call to mono_runtime_is_shutting_down to
6048         fix build.
6049         
6050 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
6051
6052         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
6053         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
6054
6055 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
6056
6057         * reflection.c: move definition of swap_with_size
6058         to before its first call
6059
6060 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
6061
6062         * appdomain.c (mono_runtime_is_shutting_down): New public function.
6063
6064         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
6065         icall.
6066
6067         * object.c: Fix warnings.
6068
6069         * icall.c (ves_icall_Type_Get...): Only consider inherited static
6070         members if FlattenHierarchy is set.
6071
6072         * reflection.c (mono_image_add_decl_security): New function to emit
6073         declarative security.
6074
6075         * reflection.h reflection.c: Add support for declarative security.
6076
6077         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
6078         
6079 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
6080
6081         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
6082         
6083         * appdomain.c verify.c: Moved corlib version checking into its own
6084         function in appdomain.c since it needs to create vtables etc.
6085
6086 2003-12-13  Patrik Torstensson <p@rxc.se>
6087
6088         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
6089         instead of unwrapped server.
6090
6091 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
6092
6093         * verify.c (check_corlib): Fix field index.
6094
6095 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
6096
6097         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
6098         GetGacPath icall.
6099
6100 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
6101
6102         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
6103         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
6104         cope with sizeof(size_t) != sizeof(guint32).
6105
6106 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6107
6108         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
6109         in case of failure.
6110
6111 2003-12-10  Mark Crichton <crichton@gimp.org>
6112
6113         * icall.c: removed the GetNonZeroBytes.  We now handle this case
6114         in managed code.
6115
6116         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
6117
6118 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
6119
6120         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
6121         marked as deleted.
6122
6123 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
6124
6125         * verify.c (check_corlib): Handle the case when the version field is 
6126         initialized by a static constructor.
6127
6128 2003-12-08  Patrik Torstensson  <p@rxc.se>
6129
6130     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
6131
6132 2003-12-08  Martin Baulig  <martin@ximian.com>
6133
6134         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
6135         a MonoReflectionGenericParameter, also take the parameter index
6136         and name as arguments.
6137         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
6138         (ves_icall_MonoGenericParam_initialize): New interncall.
6139         (ves_icall_Type_make_byref_type): New interncall.
6140
6141         * reflection.h (MonoReflectionGenericParam): Derive from
6142         MonoReflectionType, not just from MonoObject.  Added `refobj' and
6143         `index' fields.
6144
6145         * reflection.c (mono_reflection_define_generic_parameter): Create
6146         and return a new MonoReflectionGenericParam; don't initialize the
6147         constraints here.
6148         (mono_reflection_initialize_generic_parameter): New public method;
6149         initializes the constraints and creates the `param->pklass'.
6150
6151 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
6152
6153         * reflection.h reflection.c: Use the new fields 'num_types', 
6154         'num_fields' and 'num_methods' to track the number of types etc.
6155
6156         * verify.c (check_corlib): Check corlib version number.
6157
6158 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
6159
6160         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
6161         function works on all methods.
6162
6163 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
6164
6165         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
6166         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
6167         the custom_type_info flag of the transparent proxy.
6168         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
6169         objects that supports IRemotingTypeInfo.
6170         * object.h: Added custom_type_info field in transparent proxy.
6171
6172 2003-12-06  Martin Baulig  <martin@ximian.com>
6173
6174         * class.c (mono_class_create_from_generic): Removed.
6175         (mono_class_from_generic): Check `ginst->klass' before doing
6176         anything else.  This is important to fully support "recursive"
6177         generic types.
6178
6179         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
6180         empty `generic_inst->klass' before doing anything else.
6181
6182 2003-12-06  Dick Porter  <dick@ximian.com>
6183
6184         * verify.c: 
6185         * object.h:
6186         * icall.c:
6187         * locales.c: Use C structs to access class fields.  Don't do a
6188         conversion between MonoString and UChar because both are
6189         platform-endian UTF-16.  Compare now takes startindex and count
6190         parameters.  Add a char overload for IndexOf.  Speed up the
6191         invariant string IndexOf.
6192
6193 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
6194
6195         * Makefile.am (monosn_LDADD): Fix parallel build.
6196
6197 2003-12-04  Martin Baulig  <martin@ximian.com>
6198
6199         * icall.c
6200         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
6201         (ves_icall_Type_make_array_type): New interncall.       
6202
6203 2003-12-04  Martin Baulig  <martin@ximian.com>
6204
6205         * locales.c: also change it in the !HAVE_ICU case.
6206
6207 2003-12-04  Dick Porter  <dick@ximian.com>
6208
6209         * icall.c:
6210         * locales.c: construct_compareinfo is now in CompareInfo, not
6211         CultureInfo.
6212
6213 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
6214
6215         * image.c (mono_image_load_file_for_image): Cache loaded images in the
6216         image->files array.
6217
6218         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
6219         table as well.
6220
6221         * assembly.c (mono_assembly_load_references): Only load references
6222         once.
6223
6224         * class.c (mono_class_from_name): Avoid linear search of the 
6225         EXPORTEDTYPE table.
6226
6227         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
6228
6229 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
6230
6231         * image.h (MonoImage): Add 'field_cache' field.
6232
6233         * loader.c (mono_field_from_token): Cache field lookups.
6234         
6235         * reflection.c (mono_module_get_object): Fix name property.
6236
6237         * icall.c (ves_icall_get_enum_info): Update after changes to 
6238         mono_metadata_get_constant_index ().
6239
6240         * icall.c: Get rid of get_type_info icall, use a separate icall for
6241         each type property to avoid needless memory allocations. Fixes #51514.
6242
6243         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
6244         to avoid needless binary searches.
6245
6246         * class.c (class_compute_field_layout): Move the initialization of
6247         field->def_value to mono_class_vtable ().
6248
6249         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
6250         non-corlib types.
6251
6252         * object.c (mono_object_allocate): Make it inline.
6253
6254         * object.c (mono_object_allocate_spec): Make it inline.
6255         
6256 2003-12-02  Dick Porter  <dick@ximian.com>
6257
6258         * locales.c (create_NumberFormat): NumberFormatInfo construction.
6259         Patch by Mohammad DAMT (mdamt@cdl2000.com).
6260
6261 2003-12-01  Dick Porter  <dick@ximian.com>
6262
6263         * threads.c: Fix signature and call in CreateMutex and
6264         CreateEvent.
6265
6266 2003-12-01  Dick Porter  <dick@ximian.com>
6267
6268         * icall.c: 
6269         * locales.c: Implement string compares and searching
6270
6271         * object.h: Add extra Thread field
6272
6273 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
6274
6275         * reflection.c (fixup_method): Add support for MonoCMethod.
6276
6277 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
6278
6279         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
6280
6281         * reflection.c (assembly_name_to_aname): Allow extra characters in
6282         assembly names. Fixes #51468.
6283
6284 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
6285
6286         * exception.c (mono_exception_from_name_domain): New helper function.
6287
6288         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
6289         exception object in the correct domain.
6290
6291         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
6292         formatting + make a copy a the input data.
6293
6294         * loader.c (mono_get_method_from_token): Methods which contain
6295         native code do not have entries in the ImplMap.
6296
6297         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
6298         Thanks to Gonzalo for spotting this.
6299         
6300         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
6301         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
6302
6303         * assembly.h (mono_assembly_load_from): Split the second part of 
6304         assembly loading into a new public function.
6305
6306         * exception.h (mono_get_exception_bad_image_format): New function.
6307
6308 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
6309
6310         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
6311         Enumerate all modules inside a dynamic assembly. Fixes #51293.
6312         
6313         * icall.c: Add new icall for creating dynamic methods.
6314
6315         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
6316
6317         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
6318
6319         * reflection.c (mono_reflection_create_dynamic_method): New icall to
6320         create a dynamic method.
6321
6322         * reflection.c (resolve_object): New helper function.
6323
6324         * reflection.c: Generalize ReflectionMethodBuilder and the functions
6325         which manipulate it so they can also work on dynamic methods.
6326
6327         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
6328         creating the MonoReflectionMethodAux structure if it is not needed.
6329         
6330         * reflection.h verify.c: Update after changes to object layout.
6331
6332         * reflection.c (method_builder_encode_signature): Fix compilation on
6333         gcc 2.95.x.
6334
6335 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
6336
6337         * appdomain.h: Added support for context static fields. Added static_data
6338           field to MonoAppContext and renamed thread_static_fields to a more
6339           generic special_static_fields in MonoAppDomain, since it can now contain
6340           context static fields.
6341         * domain.c: Updated hashtable name.
6342         * object.c: Replaced field_is_thread_static() for a more generic
6343           field_is_special_static() which also checks for context static attribute.
6344           In mono_class_vtable(), added support for static context fields.
6345         * threads.c: Changed methods that manage thread static fields to more
6346           generic methods so they can be reused both for thread and context static
6347           data.
6348         * threads.h: Declared some new methods.
6349
6350 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
6351
6352         * reflection.h: Update after changes to the managed types.
6353
6354         * reflection.c (encode_custom_modifiers): New helper function.
6355
6356         * reflection.c (method_encode_signature): Emit custom modifiers.
6357
6358         * reflection.c (field_encode_signature): Emit custom modifiers.
6359
6360 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
6361
6362         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
6363
6364         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
6365         implementation.
6366
6367         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
6368         icall.
6369
6370         * object.c (mono_field_get_value_object): New function.
6371
6372         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
6373         specific.
6374
6375 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
6376
6377         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
6378         return a preallocated out-of-memory exception instance.
6379
6380         * object.c (out_of_memory): Use the new function.
6381
6382         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
6383         flag is before the custom modifiers. Fixes #49802.
6384
6385 2003-11-16  Martin Baulig  <martin@ximian.com>
6386
6387         * class.c (mono_class_is_open_constructed_type): Implemented the
6388         MONO_TYPE_GENERICINST case.
6389
6390 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
6391
6392         * assembly.c (mono_assembly_fill_assembly_name): New function to
6393         fill out the MonoAssemblyName structure.
6394         (mono_assembly_open): Use the new function.
6395
6396         * icall.c (fill_reflection_assembly_name): New helper function.
6397
6398         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
6399         new function.
6400
6401         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
6402
6403 2003-11-15  Martin Baulig  <martin@ximian.com>
6404
6405         * class.c (mono_class_is_open_constructed_type): New public
6406         function; checks whether a type is an open constructed type,
6407         ie. whether it still contains type parameters.
6408         (mono_class_inflate_generic_type): If we're a type parameter and
6409         the inflated type is also a MONO_TYPE_(M)VAR, return the original
6410         type.
6411
6412         * class.h (MonoGenericInst): Added `guint32 is_open'.
6413
6414         * loader.c (method_from_methodspec): Check whether we're an open
6415         or closed constructed type and set `ginst->is_open'.
6416
6417         * reflection.c (mono_reflection_bind_generic_parameters): Check
6418         whether we're an open or closed constructed type and set
6419         `ginst->is_open'.
6420         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
6421         from open constructed types.
6422
6423 2003-11-15  Martin Baulig  <martin@ximian.com>
6424
6425         * reflection.c (mono_reflection_bind_generic_parameters): If we're
6426         a generic instance (instead of a generic type declaration) with
6427         unbound generic parameters, bind them to our actual types.
6428
6429 2003-11-14  Martin Baulig  <martin@ximian.com>
6430
6431         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
6432
6433         * reflection.c (mono_reflection_bind_generic_parameters): If we're
6434         an interface type, populate `res->interfaces' with instantiated
6435         versions of all the interfaces we inherit.
6436
6437 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
6438
6439         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
6440         when MONO_PATH is set but doesn't contain the install dir.
6441
6442 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6443
6444         * icall.c:
6445         (ves_icall_Type_GetInterfaces): don't return an interface twice when
6446         it's also implemented in base classes. Fixes bug #50927.
6447
6448 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
6449
6450         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
6451         if this method is called from a finalizer. Fixes #50913.
6452
6453 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
6454
6455         * threads.c: Implement VolatileRead/VolatileWrite
6456
6457         * icall.c: Add new icalls for VolatileRead/VolatileWrite
6458
6459 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
6460
6461         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
6462         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
6463         2.95.3.
6464
6465         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
6466         from Peter Ross (pro@missioncriticalit.com).
6467         
6468 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
6469
6470         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
6471
6472 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
6473
6474         * assembly.c (mono_assembly_load_references): Disable check because it
6475         triggers on older corlibs which lots of people have.
6476
6477 2003-11-12  Jackson Harper  <jackson@ximian.com>
6478
6479         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
6480         load corlib.dll if mscorlib.dll is not found.
6481         * assembly.h: Remove corlib name define.
6482         * class.c:
6483         * domain.c:
6484         * image.c: Change corlib name to mscorlib.
6485         
6486 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
6487
6488         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
6489
6490 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
6491
6492         * appdomain.h: Added loader_optimization here to sync with the C#
6493         code, and add disallow_binding_redirects field.
6494
6495 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
6496
6497         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
6498
6499         * reflection.c (mono_image_build_metadata): Fix crash on modules
6500         with no types.
6501
6502         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
6503
6504         * icall.c (ves_icall_get_method_info): Return callingConvention as
6505         well.
6506
6507         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
6508         namespaces from the EXPORTEDTYPE table as well.
6509
6510         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
6511         from all modules inside the assembly.
6512         
6513 2003-11-11  Martin Baulig  <martin@ximian.com>
6514
6515         * reflection.c (mono_reflection_bind_generic_parameters): Make
6516         this work for interfaces.
6517
6518 2003-11-11  Martin Baulig  <martin@ximian.com>
6519
6520         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
6521
6522 2003-11-11  Martin Baulig  <martin@ximian.com>
6523
6524         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
6525         "MonoInflatedMethod" and "MonoInflatedCtor".
6526
6527 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
6528
6529         * reflection.c (resolution_scope_from_image): Use the assembly table
6530         from the manifest module, since other modules don't have it.
6531
6532         * debug-helpers.c (mono_type_full_name): New helper function.
6533
6534         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
6535
6536         * image.c (mono_image_load_file_for_image): New public function which
6537         is a replacement for the load_file_for_image in class.c.
6538
6539         * assembly.c (mono_assembly_load_module): A wrapper for the function
6540         above which does assembly association and reference loading too.
6541
6542         * class.c (mono_class_from_name): Call mono_assembly_load_module.
6543
6544 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6545
6546         * appdomain.c: not all of the attributes for the full assembly name
6547         are required and the order doesn't matter. Fixes bug #50787.
6548
6549 2003-11-10  Dick Porter  <dick@ximian.com>
6550
6551         * locales.c: Use platform-endian UTF16
6552
6553 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
6554
6555         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
6556         
6557 2003-11-10  Martin Baulig  <martin@ximian.com>
6558
6559         * metadata.c
6560         (mono_metadata_load_generic_params): Make this actually work.
6561
6562         * reflection.c (mono_reflection_bind_generic_parameters): If our
6563         parent is a generic instance, pass all the `types' to it, no
6564         matter whether it has the same number of type parameters or not.
6565
6566 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
6567
6568         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
6569
6570         * assembly.c (mono_assembly_load_references): Move the image<->assembly
6571         assignment code to this function so it gets called recursively for all
6572         modules.
6573
6574         * image.c (load_modules): Remove the assembly assignment since it is
6575         now done by mono_assembly_load_references.
6576         
6577         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
6578         Add 'module' argument.
6579         (mono_module_get_types): New helper function.
6580         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
6581
6582 2003-11-08  Martin Baulig  <martin@ximian.com>
6583
6584         * class.c (mono_class_inflate_generic_method): Interface method
6585         don't have a header.
6586
6587         * reflection.c (mono_image_get_methodspec_token): Take an
6588         additional `MonoGenericInst *' argument instead of reading it from
6589         the header; this is necessary to support interfaces.
6590         (mono_image_create_token): Pass the `MonoGenericInst *' from the
6591         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
6592         (inflated_method_get_object): Take an additional `MonoGenericInst *'
6593         argument.
6594
6595         * reflection.h (MonoReflectionInflatedMethod): Added
6596         `MonoGenericInst *ginst'.
6597
6598 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
6599
6600         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
6601
6602 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
6603
6604         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
6605
6606 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
6607
6608         * reflection.c 
6609         (reflection_methodbuilder_from_method_builder):
6610         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
6611         initialize a ReflectionMethodBuilder structure.
6612         (mono_image_get_methodbuilder_token):
6613         (mono_image_get_ctorbuilder_token): New functions to emit memberref
6614         tokens which point to types in another module inside the same assembly.
6615
6616         * reflection.c: Use the new helper functions.
6617         
6618         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
6619
6620         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
6621         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
6622
6623         * reflection.c (resolution_scope_from_image): Emit a moduleref if
6624         neccesary.
6625
6626         * reflection.c (mono_image_build_metadata): Emit metadata only for the
6627         current module. Emit the manifest only for the main module.
6628
6629         * reflection.c (mono_image_create_token): Add assertion when a 
6630         memberref needs to be created.
6631
6632         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
6633
6634         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
6635         larger buffer for the custom attribute blob. Fixes #50637.
6636         
6637 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6638
6639         * threadpool.c: notify listener on async processing handles after
6640         invoking the async callback. Thanks to Zoltan.
6641
6642 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
6643
6644         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
6645         avoid code duplication.
6646
6647         * reflection.h (MonoDynamicImage): New type which is currently unused,
6648         but will be used through the ref.emit code in place of 
6649         MonoDynamicAssembly.
6650
6651         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
6652         object layout.
6653
6654         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
6655         a MonoDynamicImage instead of just a MonoImage.
6656         
6657         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
6658         icalls to ModuleBuilder but keep their semantics, so they will work
6659         with moduleb->assemblyb. This will change later.
6660         
6661 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
6662
6663         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
6664         object layout.
6665
6666         * reflection.c (mono_image_build_metadata): Avoid creation of a default
6667         main module, since it is now done by the managed code.
6668
6669 2003-11-03  Martin Baulig  <martin@ximian.com>
6670
6671         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
6672         `ginst->klass' here.
6673         (method_encode_methodspec): Don't use the `ginst->generic_method's
6674         klass if it's a generic instance, use `ginst->klass' in this case.
6675
6676 2003-11-03  Martin Baulig  <martin@ximian.com>
6677
6678         * reflection.c (mono_image_get_generic_method_param_info):
6679         Removed, use mono_image_get_generic_param_info() instead.
6680         (mono_image_get_type_info): Write the GenericParam table before
6681         the Method table.  This is neccessary because in the GenericParam
6682         table, type parameters of the class (ie. '!0' etc.) must come
6683         before the ones from its generic methods (ie. '!!0' etc).
6684
6685 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
6686
6687         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
6688
6689 2003-11-02  Martin Baulig  <martin@ximian.com>
6690
6691         * reflection.c (create_generic_typespec): Take a
6692         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
6693         the generic parameters from it.
6694
6695 2003-11-02  Martin Baulig  <martin@ximian.com>
6696
6697         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
6698         instead of a `MonoClassField *' since we just need the type.
6699         (create_generic_typespec): New static function.  Creates a
6700         TypeSpec token for a generic type declaration.
6701         (mono_image_get_generic_field_token): New static function.
6702         (mono_image_create_token): If we're a FieldBuilder in a generic
6703         type declaration, call mono_image_get_generic_field_token() to get
6704         the token.
6705
6706 2003-11-02  Martin Baulig  <martin@ximian.com>
6707
6708         * reflection.h
6709         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
6710         `MonoReflectionGenericInst *declaring_type' and
6711         `MonoReflectionGenericInst *reflected_type' fields.
6712
6713         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
6714         `MonoReflectionGenericInst *declaring_type' and a
6715         `MonoReflectionGenericInst *reflected_type' argument instead of a
6716         single `MonoReflectionGenericInst *type' one.  Set
6717         `res->declaring_type' and `res->reflected_type' from them.
6718         (mono_reflection_inflate_field): Likewise.      
6719
6720 2003-11-02  Martin Baulig  <martin@ximian.com>
6721
6722         * class.c (mono_class_setup_vtable): Don't store generic methods
6723         in the vtable.  
6724
6725 2003-11-02  Martin Baulig  <martin@ximian.com>
6726
6727         * reflection.h (MonoReflectionGenericInst): Added
6728         `MonoReflectionType *declaring_type'.
6729
6730         * reflection.c (mono_reflection_bind_generic_parameters): Use
6731         `if (tb->parent)' instead of `klass->parent'.
6732
6733 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
6734
6735         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
6736         with an empty ASSEMBLY table.
6737
6738         * reflection.c (mono_image_build_metadata): Avoid using the same loop
6739         variable in the inner and outer loops.
6740
6741 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
6742
6743         * metadata.h (mono_metadata_make_token): Put parentheses around macro
6744         argument.
6745
6746         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
6747         
6748         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
6749         icalls. Instead, do everything in managed code. This is needed since
6750         it is hard to restore the original domain etc. in unmanaged code in the
6751         presence of undeniable exceptions.
6752
6753         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
6754         New icalls to push and pop appdomain refs.
6755
6756 2003-10-31  Martin Baulig  <martin@ximian.com>
6757
6758         * class.c (inflate_generic_type): Renamed to
6759         mono_class_inflate_generic_type() and made it public.
6760
6761         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
6762         New interncall.
6763
6764         * loader.c (mono_field_from_memberref): Also set the retklass for
6765         typespecs.
6766
6767         * fielder.c (mono_image_get_inflated_field_token): New static
6768         method; creates a metadata token for an inflated field.
6769         (mono_image_create_token, fixup_method): Added support for
6770         "MonoInflatedField".
6771         (fieldbuilder_to_mono_class_field): New static function.
6772         (mono_reflection_inflate_field): New public function.
6773
6774         * reflection.h
6775         (MonoReflectionGenericInst): Added `MonoArray *fields'.
6776         (MonoReflectionInflatedField): New typedef.     
6777
6778 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
6779
6780         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
6781         for Solaris and other platforms without s6_addr16
6782
6783 2003-10-30  Martin Baulig  <martin@ximian.com>
6784
6785         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
6786         argument instead of two.
6787         (mono_class_inflate_generic_signature): Likewise.
6788         (inflate_generic_header): Likewise.
6789         (mono_class_inflate_generic_method): Likewise.  In addition, if
6790         `ginst->klass' is set, it becomes the new `method->klass'.
6791
6792         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
6793         field.
6794
6795         * reflection.c (encode_generic_method_sig): Write a 0xa as the
6796         first byte. [FIXME]
6797         (method_encode_methodspec): If we have generic parameters, create
6798         a MethodSpec instead of a MethodRef.
6799         (fixup_method): Added support for "MonoInflatedMethod" and
6800         "MonoInflatedCtor".
6801         (mono_image_create_token): Added support for "MonoInflatedMethod"
6802         and "MonoInflatedCtor".
6803         (inflated_method_get_object): New static function; returns a
6804         managed "System.Reflection.MonoInflatedMethod" object.
6805         (mono_reflection_bind_generic_method_parameters): Return a
6806         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
6807         (mono_reflection_inflate_method_or_ctor): Likewise.
6808         (mono_image_get_generic_method_param_info): Initialize unused
6809         fields to zero.
6810         (mono_image_get_generic_param_info): Likewise.
6811
6812         * reflection.h (MonoReflectionInflatedMethod): New public
6813         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
6814         "S.R.MonoInflatedCtor" classes.
6815
6816         * loader.c (method_from_memberref): If we're a TypeSpec and it
6817         resolves to a generic instance, inflate the method.
6818
6819 2003-10-28  Dick Porter  <dick@ximian.com>
6820
6821         * object.c (mono_runtime_run_main): Convert command-line arguments
6822         into utf8, falling back to the user's locale encoding to do so.
6823
6824 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
6825
6826         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
6827         at this time.
6828
6829         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
6830
6831         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
6832         up icalls at method definition time. Partially fixes #33569.
6833
6834 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
6835
6836         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
6837         marshalling of arrays. Fixes #50116.
6838
6839         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
6840
6841         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
6842         points to a vtable in the dying appdomain.
6843
6844         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
6845         listeners into unmanaged code inside the lock.
6846
6847         * object.c (mono_class_vtable): Turn off typed allocation in non-root
6848         domains and add some comments.
6849
6850 2003-10-25  Martin Baulig  <martin@ximian.com>
6851
6852         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
6853
6854         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
6855
6856         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
6857         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
6858         currently parsing.  Create the generic class and store it in
6859         `generic_inst->klass' before parsing the type arguments.  This is
6860         required to support "recursive" definitions; see mcs/tests/gen-23.cs
6861         for an example.
6862         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
6863         to support recursive typespec entries.
6864
6865         * class.c (mono_class_setup_parent): If our parent is a generic
6866         instance, we may get called before it has its name set.
6867         (mono_class_from_generic): Splitted into
6868         mono_class_create_from_generic() and mono_class_initialize_generic().
6869
6870 2003-10-25  Martin Baulig  <martin@ximian.com>
6871
6872         * icall.c (ves_icall_Type_BindGenericParameters): Return a
6873         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
6874         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
6875         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
6876
6877         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
6878         (create_typespec): Likewise.
6879         (mono_reflection_bind_generic_parameters): Return a
6880         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
6881         (mono_reflection_inflate_method_or_ctor): New public function.
6882
6883         * reflection.h (MonoReflectionGenericInst): New typedef.        
6884
6885 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
6886
6887         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
6888         inside the domain lock. Fixes #49993.
6889         
6890         * object.c (mono_class_vtable): When typed allocation is used, 
6891         allocate vtables in the GC heap instead of in the mempool, since the
6892         vtables contain GC descriptors which are used by the collector even
6893         after the domain owning the mempool is unloaded.
6894
6895         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
6896
6897         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
6898         reflect what it does. Also invalidate mempools instead of freeing
6899         them if a define is set.
6900
6901         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
6902         of the appdomain.
6903         
6904         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
6905         hold the finalizable objects in this domain.
6906
6907         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
6908         appdomain.
6909
6910         * appdomain.c (mono_domain_set): New function to set the current
6911         appdomain, but only if it is not being unloaded.
6912
6913         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
6914         appdomain which is being unloaded.
6915         
6916         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
6917         unloading of the root appdomain.
6918
6919         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
6920         icall to execute a method in another appdomain. Intended as a 
6921         replacement for InternalSetDomain, which can confuse the code 
6922         generation in the JIT.
6923
6924         * appdomain.c (mono_domain_is_unloading): New function to determine
6925         whenever an appdomain is unloading.
6926
6927         * appdomain.c (mono_domain_unload): New function to correctly unload
6928         an appdomain.
6929
6930         * assembly.c (mono_assembly_load_references): Check that an assembly
6931         does not references itself.
6932
6933         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
6934         domain manually, it asks the finalizer thread to do it, then waits for
6935         the result. Also added a timeout.
6936
6937         * icall.c: Register the new icalls.
6938
6939         * threads.h threads.c: Export the mono_gc_stop_world and 
6940         mono_gc_start_world functions.
6941         
6942         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
6943         function to fill out the mempool with 0x2a.
6944
6945 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
6946
6947         * reflection.h (MonoReflectionMethodAux): New structure to store
6948         information which is rarely used, thus is not in the MonoMethod
6949         structure.
6950
6951         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
6952         store the aux info.
6953
6954         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
6955         and marshalling info into the aux structure.
6956
6957         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
6958         from the aux structure.
6959
6960         * loader.c (mono_method_get_param_names): Retrieve the param names from
6961         the aux structure.
6962         
6963 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
6964
6965         * exception.h exception.c: Add AppDomainUnloadedException && fix 
6966         warning.
6967
6968 2003-10-21  Dick Porter  <dick@ximian.com>
6969
6970         * socket-io.c
6971         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
6972         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
6973
6974 2003-10-21  Martin Baulig  <martin@ximian.com>
6975
6976         * reflection.c (mono_reflection_bind_generic_parameters):
6977         `klass->parent' is NULL for interfaces.
6978
6979 2003-10-21  Martin Baulig  <martin@ximian.com>
6980
6981         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
6982
6983 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
6984
6985         * exception.c (mono_exception_from_name_msg): New helper function for
6986         creating exceptions and initializing their message field.
6987
6988         * exception.c: Simplify functions using the new helper.
6989
6990         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
6991         New function.
6992
6993         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
6994         mono_raise_exception, since otherwise gcc doesn't generate the function
6995         epilog for raise_exception, confusing the stack unwinding in the JIT.
6996         Fixes #45043.
6997
6998         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
6999         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
7000         Fixes #49499.
7001
7002 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7003
7004         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
7005         utf8.
7006
7007 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
7008
7009         * icall.c: Removed GetUninitializedObject method because
7010           AllocateUninitializedClassInstance does the same.
7011
7012 2003-10-18  Martin Baulig  <martin@ximian.com>
7013
7014         * class.c (inflate_generic_signature): Renamed to
7015         mono_class_inflate_generic_signature() and made it public.
7016         (my_mono_class_from_generic_parameter): New static function; if we
7017         don't already have the generic parameter's MonoClass, create a
7018         very simple one which is just used internally in the runtime and
7019         not passed back to managed code.
7020
7021         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
7022
7023         * metadata.h (MonoMethodSignature): Moved the
7024         `MonoGenericParam *gen_params' to the MonoMethodHeader.
7025         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
7026
7027         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
7028         ves_icall_MonoMethod_GetGenericArguments(); this is now an
7029         interncall on the MonoMethod class, not on MethodInfo.
7030         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
7031         calling mono_reflection_bind_generic_method_parameters() directly.
7032
7033         * loader.c (mono_method_get_signature): If this is a MethodSpec;
7034         return the already computed `method->signature'.
7035         (method_from_methodspec): New static function to load a method
7036         from a MethodSpec entry.
7037         (mono_get_method_from_token): Call the new method_from_methodspec()
7038         for MethodSpec tokens.  
7039         (mono_get_method_from_token): If we're a generic method, load the
7040         type parameters.
7041
7042         * reflection.c (mono_image_get_memberref_token): Allow
7043         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
7044         table.
7045         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
7046         (mono_image_create_token): First check whether it's a generic
7047         method (so we'd need to create a MethodSpec), then do the other
7048         two alternatives.
7049         (mono_reflection_bind_generic_method_parameters): Return a
7050         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
7051         called directly from the interncall.
7052
7053 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
7054
7055         * reflection.c (load_public_key): Move loading of the public key
7056         into managed code.
7057
7058         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
7059
7060         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
7061         fields.
7062
7063         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
7064         culture, hash_alg and public_key. Fixes #49555.
7065
7066 2003-10-17  Martin Baulig  <martin@ximian.com>
7067
7068         * class.h (MonoGenericInst): Moved this declaration here and added
7069         `MonoMethod *generic_method'.
7070
7071         * icall.c
7072         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
7073         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
7074
7075         * metadata.c (mono_metadata_type_equal): Two types of
7076         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
7077         index; ie. don't compare the address of the `MonoGenericParam'
7078         structure.
7079         (mono_metadata_load_generic_params): Removed the `MonoMethod
7080         *method' argument.
7081
7082         * metadata.h (MonoGenericInst): Moved declaration to class.h.
7083         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
7084
7085         * reflection.c (method_encode_signature): Encode the number of
7086         generic parameters.
7087         (encode_generic_method_sig): New static function.
7088         (method_encode_methodspec): New static function; creates an entry
7089         in the MethodSpec table for a generic method.
7090         (mono_image_get_methodspec_token): New static function.
7091         (mono_image_create_token): Call mono_image_get_methodspec_token()
7092         for generic methods.
7093         (mono_reflection_bind_generic_method_parameters): New public
7094         function.  Instantiates a generic method.
7095
7096 2003-10-16  Martin Baulig  <martin@ximian.com>
7097
7098         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
7099         *gen_params' here from MonoMethodHeader.
7100
7101         * metadata.c (mono_metadata_parse_method_signature): If we have
7102         generic parameters, initialize `method->gen_params' and then set
7103         the correct `type->data.generic_param' in all the parameters.
7104
7105 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
7106
7107         * threads.c (mono_threads_get_default_stacksize): New function to 
7108         return the default stacksize.
7109
7110         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
7111         termination of the finalizer thread, since the previous method had
7112         race conditions. Fixes #49628.
7113
7114         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
7115         as for the other managed threads.
7116
7117 2003-10-16  Martin Baulig  <martin@ximian.com>
7118
7119         * class.c (inflate_generic_signature): Copy `generic_param_count'
7120         and `gen_params'.
7121
7122         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
7123         New interncall.
7124
7125         * metadata.c (mono_metadata_parse_method_signature): Actually set
7126         the `method->generic_param_count' here.
7127         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
7128
7129 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
7130
7131         * object.h: Add a new field to TypedRef to simplify the implementation
7132         of the REFANY opcodes in the JIT.
7133
7134         * icall.c: Make use of the new field.
7135
7136         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
7137         dynamically.
7138
7139 2003-10-15  Martin Baulig  <martin@ximian.com>
7140
7141         * class.c (mono_class_from_gen_param): Renamed to
7142         mono_class_from_generic_parameter() and moved most of the
7143         functionality from mono_reflection_define_generic_parameter()
7144         here; ie. we create a "real" class here.
7145         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
7146         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
7147         previously been called.
7148
7149         * class.h (MonoGenericParam): Moved the declaration of this struct
7150         here from metadata.h and added `MonoMethod *method'.
7151
7152         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
7153         interncall.
7154
7155         * loader.c (mono_get_method_from_token): If we have any generic
7156         parameters, call mono_metadata_load_generic_params() to read them
7157         from the MONO_TABLE_GENERICPAR.
7158
7159         * metadata.c (mono_metadata_load_generic_params): Added
7160         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
7161
7162         * metadata.h (MonoMethodSignature): Replaced
7163         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
7164         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
7165
7166         * reflection.c (mono_reflection_define_generic_parameter): Moved
7167         most of the functionality into the new
7168         mono_class_from_generic_parameter(); set the `method' field if
7169         we're a method parameter.       
7170
7171 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
7172
7173         * marshal.c (emit_struct_conv): if native size is 0
7174         emit no code.
7175
7176 2003-10-14  Martin Baulig  <martin@ximian.com>
7177
7178         * icall.c: The generics API has changed in the spec since it was
7179         added to System.Type; these modifications make it match the spec
7180         again.
7181         (ves_icall_Type_GetGenericParameters): Renamed to
7182         `ves_icall_Type_GetGenericArguments'.
7183         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
7184         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
7185         `ves_icall_MonoType_get_HasGenericArguments'.
7186         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
7187         `ves_icall_MonoType_get_IsGenericParameter'.
7188         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
7189         this is no interncall anymore.
7190         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
7191         `ves_icall_TypeBuilder_get_IsGenericParameter'.
7192
7193 2003-10-14  Martin Baulig  <martin@ximian.com>
7194
7195         * reflection.c (mono_reflection_bind_generic_parameters): Also
7196         inflate generic methods if we're reading the class from IL.
7197
7198 2003-10-13  Martin Baulig  <martin@ximian.com>
7199
7200         * reflection.c (mono_reflection_define_generic_parameter): This
7201         method isn't called directly from the icall anymore; take a
7202         `MonoReflectionAssemblyBuilder *' so we can use this for type and
7203         method generic parameters.
7204         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
7205         (method_builder_encode_signature): Encode generic parameters.
7206         (mono_image_get_method_info): Write generic params to the
7207         MONO_TABLE_GENERICPARAM table.
7208
7209         * reflection.h (MonoReflectionMethodBuilder): Added
7210         `MonoArray *generic_params'.
7211
7212         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
7213
7214         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
7215         wrapper for mono_reflection_define_generic_parameter().
7216         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
7217
7218 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
7219
7220         * marshal.h: Add missing function to fix build.
7221
7222         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
7223         the SetLastError pinvoke attribute.
7224
7225         * marshal.c (mono_marshal_set_last_error): New helper function called
7226         by the generated code.
7227         
7228         * marshal.c (mono_mb_emit_branch): New helper function.
7229
7230         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
7231
7232         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
7233         classes as parameters and return values of delegates. Fixes #29256. 
7234
7235 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
7236
7237         * locales.c: use gint32 in non HAVE_ICU case
7238
7239 2003-10-11  Martin Baulig  <martin@ximian.com>
7240
7241         * mono-debug.c (mono_debug_add_method): Added a workaround for
7242         bug #48591.
7243
7244 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
7245
7246         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
7247         delegates passed to native code must use the STDCALL calling 
7248         convention. Fixes #35987.
7249
7250 2003-10-10  Martin Baulig  <martin@ximian.com>
7251
7252         * class.c (inflate_generic_type): If we're inflating for a generic
7253         type instance (and not for a generic method), return
7254         MONO_TYPE_MVAR unchanged.
7255
7256 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7257
7258         * string-icalls.c: Join ignores null strings in the source array.
7259         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
7260         * threads.c: GetAvailableTheads is slightly more accurate.
7261
7262 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
7263
7264         * threads.h threads.c : add mono_threads_set_default_stacksize
7265         and pass default to CreateThread calls.
7266
7267 2003-10-09  Dick Porter  <dick@ximian.com>
7268
7269         * icall.c:
7270         * locales.h:
7271         * locales.c: Internal calls for constructing CultureInfo and
7272         related objects from libicu (if its available.)
7273
7274 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
7275
7276         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
7277
7278 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7279
7280         * threadpool.c: added an argument to async_invoke_thread that is the
7281         item to process, pass the MonoAsyncResult to the thread start function
7282         when creating a new thread. This way we don't need to acquire any lock
7283         when we're creating a new thread. Readded a semaphore for faster
7284         response times (instead of that Sleep i added).
7285
7286 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
7287
7288         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
7289         get daylight change dates better on Windows, fix handling
7290         of platforms without tm_gmtoff.
7291
7292 2003-10-06  Martin Baulig  <martin@ximian.com>
7293
7294         * class.c (inflate_generic_method): Renamed to
7295         mono_class_inflate_generic_method() and made public.
7296         (mono_class_init): Don't inflate the generic methods here.
7297         (mono_class_from_generic): Added `gboolean inflate_methods'
7298         argument.  Inflate the methods here.
7299
7300         * loader.c (mono_method_get_param_names): Ignore instances of
7301         generic types for the moment.
7302
7303         * reflection.c (fixup_method): Added support for inflated methods.
7304         (mono_image_create_token): Use mono_image_get_methodref_token()
7305         for inflated methods.
7306         (mono_custom_attrs_from_param): Ignore instances of generic types
7307         for the moment.
7308         (mono_reflection_bind_generic_parameters): New public function.
7309         Moved all the functionality from
7310         ves_icall_Type_BindGenericParameters() here and added support for
7311         dynamic types.
7312         (mono_reflection_define_generic_parameter): Initialize
7313         `klass->methods' here.
7314
7315         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
7316         functionality into mono_reflection_define_generic_parameter().
7317         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
7318         TypeBuilder, return that TypeBuilder.
7319
7320 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7321
7322         * appdomain.c: removed mono_delegate_semaphore.
7323
7324         * threadpool.c:
7325         (mono_thread_pool_add): moved hash table creation inside and the thread 
7326         creation outside of the critical region.
7327         (mono_thread_pool_finish): removed obsolete code.
7328         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
7329         continue or exit the thread depending on the queue.
7330
7331 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
7332
7333         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
7334         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
7335         handle more bool marshalling options
7336
7337 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
7338
7339         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
7340         arrays of structs. Also add a more descriptive error message when
7341         a structure member is marshalled as LPArray.
7342
7343 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
7344
7345         * marshal.c (mono_marshal_get_native_wrapper): Add support for
7346         marshalling arrays of complex types. Fixes #29098. Also remove an
7347         usused and incomplete function.
7348
7349 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
7350
7351         * gc.c: report heap_size - free_bytes as total memory allocated
7352         (bug#49362).
7353
7354 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
7355
7356         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
7357         fix timezone handling problems on Windows.
7358         
7359         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
7360         asserts when the year is outside the range handled by ms the functions.
7361
7362         * class.c (setup_interface_offsets): If the class is an interface,
7363         fill out its interface_offsets slot.
7364
7365 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7366
7367         * threadpool.c: mark threadpool threads as background.
7368
7369 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
7370
7371         * decimal.c - define DECINLINE to nothing if not using GCC
7372
7373 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
7374
7375         * assembly.c: More refcount fixes.
7376
7377 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7378
7379         * string-icalls.c: if we're not trimming, return the same string.
7380         When not splitting, don't create a new string.
7381
7382 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7383
7384         * image.c:
7385         (mono_image_open): increment the ref_count inside the critical section.
7386
7387 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
7388
7389         * image.c (mono_image_open): Fix reference counting bug.
7390
7391 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
7392
7393         * marshal.c (mono_marshal_type_size) struct alignment changed for 
7394         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
7395         64bits. Avoid leak in mono_marshal_get_native_wrapper when
7396         mono_lookup_pinvoke_call throws.        
7397
7398 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
7399
7400         * reflection.c (mono_reflection_parse_type): Fix #49114.
7401
7402         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
7403         temporary workaround for cygwin header problem.
7404
7405         * object.c (mono_object_isinst): Synchronize this with the code
7406         generated by the JIT for casts.
7407
7408 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
7409
7410         * reflection.c (encode_type): Fix #38332.
7411
7412 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
7413
7414         * marshal.c (mono_marshal_method_from_wrapper): New function to return
7415         the original method from the wrapper method.
7416
7417 2003-09-25  Martin Baulig  <martin@ximian.com>
7418
7419         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
7420         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
7421         (ves_icall_Type_get_IsGenericInstance): New interncall.
7422
7423 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
7424
7425         * object.c: fix cast warning in big endian code.
7426
7427 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
7428
7429         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
7430         
7431 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7432
7433         * assembly.c: don't call check_env from mono_assembly_load. It's
7434         already done once in mono_assemblies_init and may cause headaches when
7435         multiple threads are loading assemblies.
7436
7437 2003-09-19  Martin Baulig  <martin@ximian.com>
7438
7439         * reflection.c (mono_reflection_define_generic_parameter): Don't
7440         allocate `klass->methods', set `klass->flags' to
7441         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
7442
7443 2003-09-18  Martin Baulig  <martin@ximian.com>
7444
7445         * class.c (mono_class_init): Don't create `class->methods' if it's
7446         already initialized.
7447
7448         * metadata.c (mono_metadata_load_generic_params): Make this
7449         actually work.
7450
7451         * reflection.c (mono_reflection_define_generic_parameter): Set
7452         parent class and interfaces from the constraints.
7453
7454         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
7455         to keep this struct in sync with the declaration in TypeBuilder.cs.
7456
7457 2003-09-17  Martin Baulig  <martin@ximian.com>
7458
7459         * metadata.h (MonoType): Replaced the data's `int type_param'
7460         field with `MonoGenericParam *generic_param'.
7461         (MonoGenericParam): Added `MonoClass *klass'.
7462
7463         * class.c (mono_class_from_gen_param): Removed the
7464         `MonoImage *image' and `int type_num' arguments.
7465
7466         * metadata.c (mono_metadata_parse_generic_param): New static
7467         method; creates a MonoGenericParam which just contains the index.
7468         (do_mono_metadata_parse_type): Call
7469         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
7470         MONO_TYPE_MVAR.
7471
7472         * reflection.c (mono_image_typedef_or_ref): Generic type
7473         parameters may be in the same assembly, but never use a typedef
7474         for them.
7475         (mono_reflection_define_generic_parameter): We're now creating a
7476         "real" class for the type parameter; it's now safe to call
7477         mono_class_from_mono_type() on the class'es type, it'll do the
7478         right thing.
7479
7480 2003-09-16  Martin Baulig  <martin@ximian.com>
7481
7482         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
7483         `symfile->range_entry_size' and `symfile->class_entry_size' here;
7484         the `symfile' data structure must be fully initialized before it
7485         gets added to the table.
7486
7487 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
7488
7489         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
7490
7491         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
7492         class init trampolines.
7493
7494 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
7495
7496         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
7497         to the built-in profiler to turn off time and allocation profiling
7498         respectively.
7499
7500 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
7501
7502         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
7503         g_direct_equal.
7504
7505         * debug-helpers.c (mono_method_full_name): Print the wrapper type
7506         in human readable form.
7507
7508 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
7509
7510         * reflection.c icall.c: Fixed warnings.
7511
7512         * image.c (load_class_names): Use a temporary hash table to hold the
7513         namespaces in order to avoid doing many string comparisons.
7514
7515         * image.h: Fix typo.
7516
7517         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
7518         Pass NULL instead of g_direct_equal to the GHashTable constructor 
7519         since the NULL case is short-circuited inside g_hash_table_lookup, 
7520         leading to better performance.  
7521
7522         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
7523         obtain the first custom attribute for a given index. Depends on the
7524         CustomAttribute table being sorted by the parent field.
7525
7526         * reflection.c (mono_custom_attrs_from_index): Use the new function 
7527         for better performance.
7528
7529 2003-09-07  Martin Baulig  <martin@ximian.com>
7530
7531         * class.c (mono_class_init): If we're a generic instance, inflate
7532         all our methods instead of loading them from the image.
7533         (mono_class_from_generic): Set `class->methods = gklass->methods'.
7534
7535 2003-09-07  Martin Baulig  <martin@ximian.com>
7536
7537         * mono-debug-debugger.c: Added support for constructors.
7538
7539 2003-09-06  Martin Baulig  <martin@ximian.com>
7540
7541         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
7542         New interncall.
7543
7544         * reflection.c (mono_reflection_setup_generic_class): Call
7545         ensure_runtime_vtable() to create the vtable.
7546
7547 2003-09-05  Martin Baulig  <martin@ximian.com>
7548
7549         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
7550         MONO_TYPE_MVAR.
7551
7552 2003-09-04  Martin Baulig  <martin@ximian.com>
7553
7554         * reflection.c (mono_reflection_define_generic_parameter): Generic
7555         parameters start with zero.
7556
7557 2003-09-04  Martin Baulig  <martin@ximian.com>
7558
7559         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
7560
7561         * reflection.h (MonoReflectionGenericParam): New typedef.
7562         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
7563         the generic parameters from the managed TypeBuilder.
7564
7565         * reflection.c (mono_reflection_define_generic_parameter): New function.
7566         (mono_reflection_create_runtime_class): Encode generic parameters.
7567         (mono_reflection_setup_generic_class): New function; this is
7568         called after adding adding all generic params to the TypeBuilder.
7569         (encode_type): Added MONO_TYPE_VAR.
7570
7571 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
7572
7573         * class.h class.c (mono_class_needs_cctor_run): Moved this method
7574         here from the JIT.
7575
7576         * assembly.h assembly.c: Moved the AOT loading code into an assembly
7577         load hook.
7578
7579 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
7580
7581         * reflection.h reflection.c class.h class.c: Delete duplicate 
7582         definition of mono_type_get_name () from reflection.c and export the
7583         one in class.c.
7584
7585         * class.c: Class loading fixes from Bernie Solomon 
7586         (bernard@ugsolutions.com).
7587
7588         * reflection.c: Endianness fixes from Bernie Solomon 
7589         (bernard@ugsolutions.com).
7590         
7591 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
7592
7593         * assembly.h assembly.c: Define a file format version for AOT
7594         libraries.
7595         
7596         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
7597
7598         * appdomain.h (MonoJitInfo): New field to determine whenever the
7599         code is domain neutral.
7600         
7601 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
7602
7603         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
7604
7605 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
7606
7607         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
7608         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
7609         Avoid caching the result since strings must be domain specific. Fixes
7610         #48050.
7611
7612 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
7613
7614         * marshal.c (mono_marshal_init): Make this callable multiple times
7615         since it is hard to find a correct place to call it.
7616
7617         * object.c (mono_runtime_class_init): Execute static constructors in
7618         the correct appdomain.
7619
7620         * image.c (build_guid_table): Handle the case when multiple images have
7621         the same GUID.
7622
7623 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7624
7625         * icall.c: added a couple of icalls for System.Web.
7626
7627 2003-08-28  Martin Baulig  <martin@ximian.com>
7628
7629         * icall.c (ves_icall_Type_BindGenericParameters): Use
7630         `klass->generic_inst' instead of `&klass->byval_arg' in the
7631         mono_type_get_object() call.  The returned type must be
7632         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
7633
7634 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
7635
7636         * NOTES: New file.
7637
7638         * object.c (mono_class_proxy_vtable): Make it thread safe.
7639
7640         * pedump.c: Fix warning.
7641
7642         * object.c appdomain.h: Get rid of metadata_section. 
7643         It is no longer needed and it was causing deadlocks with domain->lock.
7644
7645         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
7646
7647 2003-08-26  Martin Baulig  <martin@ximian.com>
7648
7649         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
7650
7651 2003-08-26  Martin Baulig  <martin@ximian.com>
7652
7653         * pedump.c (main): Call mono_metadata_init(),
7654         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
7655         and mono_loader_init().
7656
7657 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
7658
7659         * loader.h: Add missing include to fix build.
7660
7661         * image.h: mono_image_load_references is no more.
7662
7663         * assembly.c: Reworked assembly loading to make it really thread safe.
7664         After these changes, the assembly returned by mono_assembly_open is
7665         fully initialized, i.e. all its references assemblies are loaded.
7666
7667         * assembly.c (mono_image_load_references): Renamed to 
7668         mono_assembly_load_references, and made private, since clients no
7669         longer need to call it.
7670
7671         * class.c: Removed calls to mono_assembly_load_references, since it was
7672         a source of deadlocks.
7673
7674         * loader.h loader.c class.h class.c: Protect data structures using a 
7675         new lock, the loader lock.
7676
7677         * class.c (mono_class_setup_vtable): Create temporary hash tables and
7678         GPtrArrays only when needed.
7679
7680         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
7681         into empty structures by mcs. Fixes pinvoke7.cs.
7682         
7683         * domain.c (mono_init): Call a new initialization function.
7684
7685         * appdomain.c (mono_runtime_init): Call the new initializer function
7686         of the marshal module.
7687
7688         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
7689         inserted into empty structures by mcs. Fixes pinvoke7.cs.
7690
7691         * marshal.h marshal.c: Added locks around the wrapper caches to make
7692         this module thread safe.
7693
7694         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
7695         this argument. Fixes pinvoke1.exe.
7696
7697 2003-08-25  Lluis Sanchez <lluis@ximian.com>
7698
7699         * object.h: Added call_type field to MonoMethodMessage and the corresponding
7700         enumeration of values. Removed fields to store remote call output values in
7701         MonoAsyncResult. Not needed any more.
7702         * object.c: Initialize call_type and async_result fields in mono_message_init.
7703         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
7704         dispatching the message.
7705         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
7706         async call to finish. To do it use a message with EndInvoke call type.
7707
7708 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
7709
7710         * loader.h loader.c (mono_method_hash_marhal_info): New function which
7711         determines whenever a method has marshalling info.
7712
7713 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7714
7715         * assembly.c: fix the build on windows.
7716
7717 2003-08-22 Lluis Sanchez <lluis@ximian.com>
7718
7719         * object.cs: Fixed bug #47785.
7720
7721 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
7722
7723         * string-icalls.c (StringReplace): If their are no occurances of
7724         the old string found return a reference to the supplied
7725         string. This saves some memory and matches MS behavoir.
7726         
7727 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7728
7729         * socket-io.c: fixed compilation for systems that define AF_INET6
7730         and don't define SOL_IP/SOL_IPV6.
7731
7732 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
7733
7734         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
7735         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
7736
7737         * rawbuffer.c rawbuffer.h: Make this module thread safe.
7738
7739         * domain.c: Make this module thread safe.
7740
7741         * domain.c (mono_init): Call new initialization function.
7742
7743         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
7744         reference types too. Fixes #38812.
7745
7746         * image.c (mono_image_init): Fixed warnings.
7747
7748         * class.c (mono_class_from_typeref): Handle assembly load failure
7749         correctly.
7750
7751         * appdomain.c (add_assemblies_to_domain): Handle the case when
7752         the references of an assembly are not yet loaded.
7753
7754         * metadata.c image.c assembly.c: Moved initialization of global
7755         variables to a separate function called at startup since lazy 
7756         initialization of these variables is not thread safe.
7757         
7758         * image.c assembly.c: Made this module thread safe by adding locks in 
7759         the appropriate places.
7760
7761         * domain.c (mono_init): Call the new initialization functions of the
7762         three modules.
7763
7764 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
7765
7766         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
7767           make a direct call. It is proxy's work to make the call asynchronous.
7768           mono_delegate_end_invoke(): If the targe is a proxy, just collect
7769           the return values.
7770         * object.cs: mono_method_call_message_new(): read AsyncResult and
7771           state object from parameters list, if this info is requested.
7772         * object.h: Added fields to store remote call output values in
7773           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
7774
7775 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
7776
7777         * object.h: add needed fields to MonoThread.
7778         * threads.c, threads.h: allow registering a function to cleanup data
7779         allocated per thread by the JIT.
7780
7781 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
7782
7783         * loader.h: portability fix by Bernie Solomon
7784         * <bernard@ugsolutions.com>.
7785
7786 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
7787
7788         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
7789         return a MonoArray. This simplifies the code and also ensures that
7790         the cache allways contains an object reference as a value.
7791
7792         * icall.c (ves_icall_get_parameter_info): Simplified using the new
7793         function.
7794
7795 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7796
7797         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
7798         fixes a problem with byte ordering when getting the address family for
7799         a socket.
7800
7801 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
7802
7803         * .cvsignore: Added monosn.
7804
7805         * reflection.h reflection.c loader.c: Added support for parameter
7806         marshalling to dynamically created types. Fixes #47295.
7807
7808 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
7809
7810         * rand.c: remove useless warnings.
7811
7812 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
7813
7814         * class.c: implemented ldtoken for methods and fieldrefs.
7815
7816 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7817
7818         * threadpool.c: when mono_async_invoke was called, no one took care of
7819         monitoring the queue. So if the method invoked took some time and we
7820         got new async invoke requests after 500 ms (the thread created waited
7821         that long in WaitForSingleObject), the new async invoke was not called
7822         until the previous one finished.
7823
7824         This is fixed now. Thanks to Totte for helping with it.
7825
7826 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7827
7828         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
7829
7830 2003-08-11  Martin Baulig  <martin@ximian.com>
7831
7832         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
7833
7834 2003-08-06  Martin Baulig  <martin@ximian.com>
7835
7836         * mono-debug-debugger.c: Added support for static fields,
7837         properties and methods.
7838
7839 2003-08-06  Martin Baulig  <martin@ximian.com>
7840
7841         * mono-debug-debugger.c: Don't store the MonoString's vtable to
7842         make this work for applications with multiple application domains.
7843
7844 2003-08-04  Martin Baulig  <martin@ximian.com>
7845
7846         * mono-debug-debugger.c: Completely reworked the type support; the
7847         most important thing is that we're now just using one single
7848         `MonoType' instance per type.
7849
7850 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
7851
7852         * mono-endian.h, mono-endian.c, icall.c: Added icall
7853         ves_icall_System_Double_AssertEndianity to assert double word endianity
7854         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
7855
7856 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
7857
7858         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
7859         support, icalls and fixes.
7860
7861 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
7862
7863         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
7864         classes that are a punctuation character in .NET is not the same a
7865         g_unichar_ispunct.
7866
7867 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
7868
7869         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
7870
7871 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
7872
7873         * icall.c: Add new MemCopy internalcall.
7874         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
7875         Simplified code; It is not necessary to handle all the cases here,
7876         as the C# code takes care of it.  Only handle the case of the name
7877         resource embedded into the assembly.
7878
7879         Changed signature to return the data pointer and the size of the
7880         data. 
7881
7882 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
7883
7884         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
7885         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
7886
7887 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
7888
7889         * socket-io.c: ignore EINTR error in select.
7890
7891 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
7892
7893         * class.h, class.c: removed unused subclasses field in MonoClass.
7894
7895 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
7896
7897         * icall.c: improve fix of get_base_definition(). If the parent class
7898           doesn't have the mehod, look at the parent of the parent.
7899         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
7900           to check if a parameter is an in or out parameter
7901           (PARAM_ATTRIBUTE_IN is not set by default).
7902           mono_method_return_message_restore(): Use mono_class_value_size to
7903           get the size of a value type. mono_type_stack_size (parameterType)
7904           does not return the correct value if parameterType is byRef.
7905           mono_load_remote_field(), mono_load_remote_field_new(),
7906           mono_store_remote_field(), mono_store_remote_field_new():
7907           raise exception if the remote call returns an exception.
7908
7909 2003-07-28  Martin Baulig  <martin@ximian.com>
7910
7911         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
7912         method.  This is a wrapper around mono_runtime_invoke() which
7913         boxes the instance object if neccessary.
7914
7915 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
7916
7917         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
7918         metadata.h, row-indexes.h, verify.c: first cut of generics support.
7919
7920 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
7921
7922         * icall.c: disable mcs bug workaround.
7923
7924 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
7925
7926         * object.c (mono_runtime_class_init): Take the metadata_section
7927         mutex before obtaining the domain mutex.
7928
7929         * appdomain.h: Added definition of metadata_section mutex here. 
7930
7931         * object.c: define metadata_mutex here.
7932
7933 2003-07-24  Ravi Pratap  <ravi@ximian.com>
7934
7935         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
7936         fixed.
7937
7938 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
7939
7940         * reflection.c: Fix bug #46669
7941
7942 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7943
7944         * exception.c:
7945         * exception.h:
7946         * icall.c:
7947         * object.h: fill in the type name for TypeLoadException.
7948
7949 2003-07-23  Ravi Pratap  <ravi@ximian.com>
7950
7951         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
7952         relationship between TypeBuilders while compiling corlib) and bug
7953         45993 (Array types returned from the runtime while compiling
7954         corlib were from the loaded corlib).
7955
7956 2003-07-22  Martin Baulig  <martin@ximian.com>
7957
7958         * mono-debug-debugger.c: Reworked the type support a bit more;
7959         distinguish between types and classes.
7960
7961 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
7962
7963         * icall.c: add IsArrayImpl icall.
7964
7965 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
7966
7967         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
7968         initializing real_size only once. Also fix bug #46602.
7969
7970 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
7971
7972         * object.c: Renamed mono_metadata_section to metadata_section.
7973
7974 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
7975
7976         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
7977           empty array if the type is an array. Fixed.
7978           ves_icall_MonoMethod_get_base_definition: if the base method
7979           is abstract, get the MethodInfo from the list of methods of
7980           the class.
7981         * reflection.c: ParameterInfo.PositionImpl should be zero-based
7982           and it was 1-based. Fixed in mono_param_get_objects.
7983
7984 2003-07-20  Martin Baulig  <martin@ximian.com>
7985
7986         * mono-debug.h: Set version number to 31.
7987         (mono_debug_init): Added `MonoDomain *' argument.
7988
7989         * mono-debug-debugger.c: Reworked the type support; explicitly
7990         tell the debugger about builtin types; pass the `klass' address to
7991         the debugger.
7992
7993 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
7994
7995         * image.c: Allow new metadata tables to be loaded without a
7996         warning. Also update the warning message to give the new constant value.
7997                 
7998 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
7999
8000         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
8001         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
8002         array type representation changes.
8003
8004 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
8005
8006         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
8007         on Environment.Exit () call.
8008
8009 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
8010
8011         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
8012         requires a matching corlib.
8013
8014 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
8015
8016         * Changelog: My editor decided to add a CR to each line. Sorry about that.
8017           Committed again without the CRs.
8018         
8019 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
8020
8021         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
8022           getting it from the "this" socket instance. Did not work
8023           if the socket is a subclass of Socket.
8024           Also fixed bug #35371.
8025
8026 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
8027
8028         * metadata.c: fixed size for TypedByRef.
8029         * loader.c: when searching for a method, consider the vararg amrker.
8030         * unicode.c, decimal.c: constify some arrays.
8031
8032 2003-07-15  Dick Porter  <dick@ximian.com>
8033
8034         * socket-io.c: Fixed compilation for gcc < 3.2.
8035
8036         Fixed compilation for machines that don't have AF_INET6 (thanks to
8037         Bernie Solomon <bernard@ugsolutions.com> for that part.)
8038
8039         Fixed compile warnings.
8040         
8041         Fixed formatting and line endings.
8042
8043 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
8044
8045         * socket-io.h:
8046         * socket-io.c: Added IPv6 support.
8047
8048 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
8049
8050         * class.c (mono_class_is_assignable_from): New function to implement
8051         the is_assignable_from logic. Used by mono_object_isinst, 
8052         Type::IsAssignableFrom () and the interpreter.
8053
8054         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
8055         Object, even interfaces.
8056         
8057         * object.c (mono_object_isinst): Implement in terms of 
8058         is_assignable_from.
8059
8060         * icall.c (ves_icall_type_is_assignable_from): New icall.
8061
8062 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
8063
8064         * domain.c (foreach_domain): fix compiler warning.
8065
8066 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
8067
8068         * image.c (load_metadata_ptrs): use g_strndup because strndup is
8069         not available on all plattforms
8070
8071 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
8072
8073         * image.h image.c: Store the metadata version string in MonoImage.
8074         * icall.c: New icall to retrieve the image version.
8075         * reflection.c (create_dynamic_image): Fill in the image version field
8076         * reflection.c (build_compressed_metadata): Use the image version
8077         from the image structure.
8078
8079 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8080
8081         * appdomain.c: modified comment.
8082         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
8083         That will be its last iteration when mono_gc_cleanup is called from
8084         mono_runtime_cleanup and before the domain is unloaded.
8085
8086         Fixes bug #45962.
8087
8088 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
8089
8090         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
8091         attributes.
8092
8093 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
8094
8095         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
8096         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
8097         Bernie Solomon <bernard@ugsolutions.com>.
8098
8099 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
8100
8101         * object.c, object.h: provide mono_object_new_fast() for faster
8102         allocation in some special cases.
8103
8104 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
8105
8106         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
8107         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
8108
8109 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
8110
8111         * threadpool.c: fix leaks.
8112
8113 2003-07-01  Dick Porter  <dick@ximian.com>
8114
8115         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
8116         using MonoGHashTables.  Fixes threadpool bug posted to list.
8117
8118 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
8119
8120         * image.h, image.c: added support to load an assembly from a byte array.
8121         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
8122         assembly bundle support.
8123
8124 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
8125
8126         * threadpool.c (mono_thread_pool_add): keep a reference to the
8127         AsyncResult to prevent GC
8128
8129 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
8130
8131         * class.c: leak fix.
8132
8133 2003-06-25  Dick Porter  <dick@ximian.com>
8134
8135         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
8136         for the async object, the WaitHandle object will close the handle.
8137         Fixes bug 45321.
8138
8139 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
8140
8141         * class.c: in mono_array_class_get (), lookup from the hash with the
8142         same type we insert: this works around a bug in
8143         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
8144         lluis. The real fix will have to wait for after the release.
8145
8146 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
8147
8148         * icall.c: fix memory leak when getting type members.
8149
8150 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
8151
8152         * reflection.c: added more pubtoken special cases.
8153
8154 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
8155
8156         * class.c: handle field offset correctly when class size
8157         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
8158
8159 2003-06-20  Martin Baulig  <martin@ximian.com>
8160
8161         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
8162         *image' field.
8163
8164 2003-06-20  Martin Baulig  <martin@ximian.com>
8165
8166         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
8167
8168 2003-06-20  Martin Baulig  <martin@ximian.com>
8169
8170         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
8171         just distinguish between variables in registers and variables at
8172         an offset relative to a register.
8173
8174 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8175
8176         * icall.c: #ifdef out latest changes until mcs is fixed.
8177
8178 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
8179
8180         * icall.c: return members in metadata order.
8181
8182 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
8183
8184         * icall.c: avoid infinite loop in GetTimeZoneData.
8185
8186 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
8187
8188         * icall.c: added Marshal.Prelink/All icalls.
8189
8190 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
8191
8192         * object.c, object.h: fix warnings and do some overflow checking
8193         when creating arrays.
8194
8195 2003-06-17  Dick Porter  <dick@ximian.com>
8196
8197         * file-io.h:
8198         * file-io.c: File attributes need to be tweaked slightly when
8199         passed from the managed to the w32 world.
8200
8201 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
8202         * profiler.h profiler-private.h profiler.c: Rework last patch
8203         based on suggestion by Paolo.
8204         
8205 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
8206
8207         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
8208         instruction level coverage data collection.
8209         * profiler.h profiler.c (: Added new callback function which can be
8210         used by the profiler to limit which functions should have coverage
8211         instrumentation.
8212         * profiler.c (mono_profiler_load): Call g_module_build_path to
8213         generate the file name of the profiler library.
8214
8215 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
8216
8217         * profiler.c, profiler.h, profiler-private.h: added basic block 
8218         coverage profiling API.
8219
8220 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
8221
8222         * reflection.c (mono_reflection_create_runtime_class): Add support
8223         for events in dynamically generated code.
8224
8225         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
8226         not allocated.
8227
8228 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
8229
8230         * icall.c: when getting timezone info, return reasonable values if we
8231         can't get the actual data.
8232
8233 2003-06-14  Dick Porter  <dick@ximian.com>
8234
8235         * threads.c (start_wrapper): Remove the reference to the thread
8236         object in the TLS data, so the thread object can be finalized.
8237         This won't be reached if the thread threw an uncaught exception,
8238         so those thread handles will stay referenced :-( (This is due to
8239         missing support for scanning thread-specific data in the Boehm GC
8240         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
8241
8242 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
8243
8244         * reflection.c: ensure streams and tables are first allocated with
8245         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
8246
8247 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
8248
8249         * icall.c: fixed GetElementType for byrefs (bug# 44792).
8250
8251 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
8252
8253         * reflection.c (mono_reflection_create_runtime_class): Add support for
8254         properties to dynamically created classes.
8255         * reflection.c: Fix a few places where non-MonoObjects were inserted
8256         into the tokens hashtable.
8257
8258 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
8259
8260         * object.c: some support to handle out of memory exceptions.
8261
8262 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
8263
8264         * marshal.c (mono_marshal_get_native_wrapper): support reference
8265         return types
8266
8267 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
8268
8269         * object.h, object.c: more portability stuff from Bernie Solomon.
8270         Unexport mono_object_allocate(). Added mono_object_unbox ().
8271         Set exitcode when an unhandled exception is thrown.
8272
8273 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
8274
8275         * marshal.c (mono_marshal_get_native_wrapper): use custom
8276         marshaler for return types.
8277
8278 2003-06-10  Dick Porter  <dick@ximian.com>
8279
8280         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
8281         ip_mreq is available
8282
8283 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
8284
8285         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
8286         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
8287         by Bernie Solomon <bernard@ugsolutions.com>.
8288
8289 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
8290
8291         * gc.c (mono_gc_init): Avoid error message on shutdown when
8292         GC_DONT_GC=1 is used.
8293
8294         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
8295         New icall to return the GUID of a module.
8296
8297 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
8298
8299         * class.c: ensure instance size always includes the parent's size
8300         even whem class size is set explicitly (fixes bug#44294).
8301
8302 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
8303
8304         * profiler.h, profiler.c: made the simple profiler thread-safe,
8305         get more accurate timing info. Allow the loading of an
8306         externally-developed profiler module.
8307
8308 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
8309
8310         * marshal.c (mono_marshal_get_native_wrapper): improved
8311         class/byref arguments.
8312         (mono_marshal_get_native_wrapper): better string marshaling support.
8313
8314 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
8315
8316         * class.c: ensure .pack and .size are handled correctly and
8317         simplified layout of static fields.
8318
8319 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
8320
8321         * appdomain.c
8322         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
8323
8324         * loader.c (mono_lookup_pinvoke_call): look for modules in the
8325         current directory (fix bug 44008)
8326
8327 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
8328
8329         * marshal.c (mono_marshal_get_native_wrapper): started support for
8330         custom marshalers.
8331         (mono_delegate_to_ftnptr): consider marshalling specifications
8332
8333 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
8334
8335         * reflection.c, reflection.h: emit custom marshal info.
8336
8337 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8338
8339         * object.c: free the GError.
8340         * icall.c: added CloseEvent_internal.
8341         * threads.[ch]:
8342         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
8343         call.
8344
8345 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
8346
8347         * loader.c (mono_method_get_signature): Add support for dynamic
8348         assemblies.
8349
8350 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
8351
8352         * reflection.c: fixed bug #43905.
8353
8354 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
8355
8356         * class.c, domain.c, icall.c, metadata.h, object.h: support for
8357         handling TypedReference and ArgIterator.
8358         * loader.c, loader.h: added function to get signature at call site.
8359
8360 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
8361
8362         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
8363         data readonly. Buglets and warning fixes. Some MethodSpec support.
8364
8365 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
8366
8367         * class.h, class.c, object.c: remove relative numbering support.
8368
8369 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
8370
8371         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
8372         free the string, until we get a chance to fix Gtk#
8373
8374 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8375
8376         * marshal.c: revert last patch.
8377
8378 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
8379
8380         * icall.c: updates for new mono_class_vtable() not calling
8381         the type constructor anymore.
8382
8383 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
8384
8385         * object.h, object.c: separate vtable creation from type
8386         initialization. Make running the .cctor thread safe.
8387
8388 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
8389
8390         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
8391
8392 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
8393
8394         * loader.c (mono_get_method): consider calling convention
8395
8396 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
8397
8398         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
8399         to return the invisible global type for a module.
8400
8401         * reflection.c (mono_image_build_metadata): Emit global fields too.
8402
8403 2003-05-20  Peter Williams  <peterw@ximian.com>
8404
8405         * loader.c (mono_lookup_internal_call): Add a few newlines.
8406
8407 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
8408
8409         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
8410         literal strings.
8411
8412         * appdomain.c (set_domain_search_path): Recalculate search path when
8413         AppDomainSetup.PrivateBinPath changes.
8414
8415         * object.c (mono_class_compute_gc_descriptor): It turns out some
8416         parts of the class libs (like System.Thread) holds pointers to
8417         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
8418         to treat native int a pointer type here.
8419         
8420 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
8421
8422         * appdomain.h, domain.c: add hashtable for jump target resolution.
8423
8424 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
8425
8426         * reflection.h reflection.c icall.c: Added new icalls 
8427         GetManifestResourceInfoInternal, GetModulesInternal and support
8428         infrastructure.
8429
8430 2003-05-16  Dick Porter  <dick@ximian.com>
8431
8432         * icall.c:
8433         * file-io.h:
8434         * file-io.c: Implement System.IO.MonoIO::GetTempPath
8435
8436 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
8437
8438         * object.c: mono_store_remote_field: little fix to previous patch.
8439
8440 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
8441
8442         * class.c: add constructors to array classes.
8443         * icall.c: special case array construction for InternalInvoke (),
8444
8445 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
8446
8447         * class.h class.c reflection.c object.c: Added support for field
8448         defaults in dynamically generated classes.
8449
8450 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
8451
8452         * reflection.c: properly encode charset for ddlimport.
8453
8454 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
8455
8456         * threads.c: allow compiling without GC.
8457
8458 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
8459
8460         * appdomain.h, object.c, object.h, threads.c, threads.h: added
8461         handling of thread static data.
8462
8463 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
8464
8465         * reflection.h, reflection.c: added mono_custom_attrs_free ().
8466
8467 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
8468
8469         * class.c (mono_array_class_get): always set the serializable flags
8470         (mono_array_class_get): always set the SEALED attribute for array types
8471
8472 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
8473
8474         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
8475         attributes (fix for bug 42021).
8476
8477 2003-05-12  Dick Porter  <dick@ximian.com>
8478
8479         * gc.c: Don't run finalizers when the finalizer thread is
8480         finishing up, because the default domain has already been
8481         destroyed.
8482
8483 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
8484
8485         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
8486         value is null, we should throw an exception.   This is slightly
8487         different than the other conventions used for the constructor.
8488
8489 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8490
8491         * socket-io.c: fixed windows build.
8492
8493 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8494
8495         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
8496
8497 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
8498
8499         * object.c (mono_string_new_wrapper): Compatibility fix for MS
8500         compilers.
8501
8502 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
8503
8504         * class.c (mono_class_layout_fields): Add experimental GC aware
8505         auto layout facility. Requires class library changes to work correctly.
8506
8507         (mono_class_setup_vtable): Avoid overriding explicit interface
8508         method implementations. Fixes iface3.exe test.
8509
8510         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
8511         object reference.
8512         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
8513         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
8514
8515         * metadata.h: Add new type classification macro which determines
8516         whenever the type holds an object reference.
8517
8518 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
8519
8520         * marshal.c (mono_marshal_get_native_wrapper): cleanups
8521
8522 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
8523
8524         * gc.c (finalizer_thread): Work around a GC bug.
8525
8526 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
8527
8528         * marshal.c (emit_struct_conv): allow unions
8529
8530         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
8531
8532 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
8533
8534         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
8535
8536 2003-05-06  Martin Baulig  <martin@ximian.com>
8537
8538         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
8539
8540 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8541
8542         * socket-io.c:
8543         (Select_internal): allow NULLs, don't create arrays if not needed.
8544         Coupled with Socket.cs changes.
8545
8546         * threadpool.c:
8547         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
8548         register a finalizer for it that will close the semaphore handle. This
8549         fixes the leak and make Lupus' test run with > 4080 loops.
8550
8551 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
8552
8553         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
8554         Jerome Laban (bug #42287)
8555
8556 2003-05-02  Martin Baulig  <martin@ximian.com>
8557
8558         * debug-mono-symfile.h
8559         (MonoSymbolFile): Moved declaration into mono-debug.h.
8560         (MonoDebugMethodJitInfo): Likewise.
8561         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
8562         argument.
8563         (_mono_debug_address_from_il_offset): Take a
8564         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
8565
8566         * mono-debug.h
8567         (MonoDebugDomainData): New struct.
8568         (mono_debug_get_domain_data): New function.
8569         (mono_debug_add_method): Take an additional `MonoDomain *'
8570         argument.
8571         (mono_debug_source_location_from_address): Likewise.
8572         (mono_debug_il_offset_from_address): Likewise.
8573         (mono_debug_address_from_il_offset): Likewise.
8574
8575 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
8576
8577         * reflection.c: one more check for null type in custom attrs.
8578
8579 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8580
8581         * reflection.c: avoid warning (comparison is always false due to limited
8582         range of data type).
8583
8584 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8585
8586         * icall.c: throw an exception in Type.GetField if the argument 'name'
8587         is NULL.
8588
8589 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
8590
8591         * reflection.c: fixed handling of enums in named arguments to custom
8592         attributes (bug #42123).
8593
8594 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
8595
8596         * reflection.c: use the right array element type and handle
8597         a null for a Type argument, too.
8598
8599 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
8600
8601         * reflection.c: handle arrays as arguments to custom attributes.
8602
8603 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
8604
8605         * reflection.c: handle a string value in a custom attr
8606         ctor that takes an object.
8607
8608 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
8609
8610         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
8611         (fix bug #42063)
8612
8613 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
8614
8615         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
8616
8617 2003-04-27  Martin Baulig  <martin@ximian.com>
8618
8619         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
8620         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
8621         MONO_DEBUGGER_EVENT_BREAKPOINT.
8622         (mono_breakpoint_trampoline_code): Removed.
8623         (mono_debugger_event_handler): The last argument is now a
8624         `guint32'.
8625         (mono_debugger_insert_breakpoint_full): Removed the
8626         `use_trampoline' argument.
8627         (mono_debugger_method_has_breakpoint): Likewise.
8628         (mono_debugger_trampoline_breakpoint_callback): Renamed to
8629         mono_debugger_breakpoint_callback(); take the method and
8630         breakpoint number as arguments.
8631
8632 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
8633
8634         * metadata.c: fix off by one when loading parameters attributes.
8635
8636 2003-04-24  Martin Baulig  <martin@ximian.com>
8637
8638         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
8639
8640 2003-04-24  Martin Baulig  <martin@ximian.com>
8641
8642         * mono-debug-debugger.c: Moved all code which interacts with the
8643         Mono Debugger here.
8644
8645         * debug-mono-symfile.c: This code now just deals with the symbol
8646         file itself, the debugger code is now in mono-debug-debugger.c.
8647
8648 2003-04-23  Martin Baulig  <martin@ximian.com>
8649
8650         * mono-debug.c (mono_debug_source_location_from_il_offset):
8651         New method; like mono_debug_source_location_from_address(), but
8652         takes an IL offset instead of a machine address.
8653
8654 2003-04-23  Martin Baulig  <martin@ximian.com>
8655
8656         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
8657         `line' field; this is now computed by the debugger.
8658
8659 2003-04-23  Martin Baulig  <martin@ximian.com>
8660
8661         * mono-debug.[ch]: New files.  This is the new debugging interface.
8662
8663         * mono-debug-debugger.[ch]: New files.  Moved all code which
8664         interacts with the Mono Debugger here.
8665
8666 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
8667
8668         * domain.c (mono_init): initialize mono_defaults.monitor_class
8669
8670 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
8671
8672         * reflection.c (method_encode_code): Add a spicy exception to help
8673         future compiler authors.
8674
8675 2003-04-21  Martin Baulig  <martin@ximian.com>
8676
8677         * icall.c
8678         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
8679         Make this work with relative pathnames; g_filename_to_uri() needs
8680         an absolute filename.
8681
8682 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
8683
8684         * icall.c: Track name changes in Object and ValueType.
8685
8686 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
8687
8688         * metadata.c (mono_type_stack_size): size should be a multiple of
8689         sizeof (gpointer)
8690
8691 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8692
8693         * gc.c:
8694         (internal_domain_finalize): moved into mono_domain_finalize. No need
8695         to create another thread because the finalizers will be run in the
8696         finalizer thread.
8697         
8698         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
8699         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
8700         to be run (MS does this too).
8701
8702 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
8703
8704         * object.c (mono_class_compute_gc_descriptor): Update comment.
8705
8706         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
8707
8708         * image.h: Add synchronized wrapper cache.
8709
8710         * image.c (do_mono_image_open): Initialize cache.
8711
8712         * reflection.c (create_dynamic_mono_image): Initialize cache.
8713
8714 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8715
8716         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
8717         ves_icall_System_Buffer_ByteLengthInternal.
8718
8719 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
8720
8721         * reflection.c: setup klass->nested_in earlier. Allow
8722         a dash in the assembly name.
8723
8724 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
8725
8726         * metadata.c (mono_type_to_unmanaged): dont access
8727         type->data.klass for MONO_TYPE_OBJECT
8728         (mono_type_to_unmanaged): consider System.Delegate class
8729
8730 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
8731
8732         * class.c: just setup supertypes in the proper place instead of
8733         initializing the full element class for arrays.
8734
8735 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
8736
8737         * class.c: ensure the element class of arrays is initialized.
8738         Setup the supertype info for array classes, too.
8739
8740 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
8741
8742         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
8743
8744 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8745
8746         * Makefile.am: re-added -m option when running cygpath. This way,
8747         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
8748         separator.
8749         * mono-config.c: same codepath for locating mono config file for WIN32
8750         and the rest.
8751         * assembly.c: if mono_assembly_setrootdir is called, don't override
8752         the value set.
8753
8754 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8755
8756         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
8757         MONO_ASSEMBLIES variable.
8758
8759 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
8760
8761         * icall.c: added Assembly::GetNamespaces() icall.
8762
8763 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8764
8765         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
8766
8767 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
8768
8769         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
8770         * object.c: fixed bug in the construction of vtable for proxies
8771
8772 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
8773
8774         * object.c (mono_array_new): Mark mono_array_new as an icall.
8775
8776 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8777
8778         * class.c: fixed test for public method when overriding interfaces.
8779         Closes bug #40970.
8780
8781 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
8782
8783         * appdomain.h, domain.c: added mono_domain_foreach() to
8784         be able to access the currently loaded appdomains.
8785         * object.c: make string interning work across sppdomains.
8786         Mark some functions for use as icalls.
8787
8788 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
8789
8790         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
8791
8792         * reflection.h reflection.c: Allocate long living data using 
8793         GC_MALLOC_ATOMIC so the collector does not need to scan it.
8794
8795         * reflection.c: Double the allocation size in streams instead of
8796         increasing it, to prevent unneccesary copying on large assemblies.
8797         
8798         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
8799         creation if the assembly does not have the Run flag set.
8800
8801 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
8802
8803         * class.h: avoid the C++ keywords in header files (Jerome Laban
8804         spotted and fixed this).
8805
8806 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8807
8808         * object.c:
8809         (mono_unhandled_exception): fill in the arguments for the
8810         UnhandledException event. Only trigger that event for the default
8811         domain (as MS does).
8812
8813 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
8814
8815         * object.c: Improve typed allocation stuff based on suggestions from
8816         Paolo. Also turn it on if the GC library supports it.
8817
8818 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
8819
8820         * object.c object.h class.h: Added experimental typed allocation
8821         facility using the interfaces in gc_gcj.h.
8822
8823         * os/gc_wrapper.h: Added new include files.
8824         
8825 2003-04-03  Martin Baulig  <martin@ximian.com>
8826
8827         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
8828         which is not yet enabled by default.
8829
8830         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
8831         functions.
8832         (mono_gc_lock, mono_gc_unlock): New static functions.
8833
8834         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
8835         functions; stop/start the world for the garbage collector.  This
8836         is using the windows API; we need to complete the SuspendThread()/
8837         ResumeThread() implementation in the io-layer to make this work on Unix.
8838         (mono_gc_push_all_stacks): New public function; tells the garbage
8839         collector about the stack pointers from all managed threads.
8840
8841 2003-04-03  Martin Baulig  <martin@ximian.com>
8842
8843         * object.h (MonoThread): Added `gpointer stack_ptr'.
8844
8845         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
8846
8847 2003-04-03  Martin Baulig  <martin@ximian.com>
8848
8849         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
8850
8851 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
8852
8853         * reflection.c (typebuilder_setup_fields): Initialize field.first and
8854         field.last.
8855
8856 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
8857
8858         * loader.c (mono_lookup_internal_call): Report the corlib that is
8859         out of sync.
8860
8861 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
8862
8863         * icall.c (ves_icall_type_GetTypeCode): fixed check for
8864         System.DBNull (it's class not valuetype).
8865
8866 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
8867
8868         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
8869         if the array method was already assigned a token (fixes bug#40646).
8870
8871 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
8872
8873         * reflection.c (mono_reflection_get_type): Attempt type resolve even
8874         if no assembly is given.
8875
8876 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
8877
8878         * metadata.h: Added the new tables.
8879
8880         * row-indexes.h: Added definitions for new tables.
8881
8882         * metadata.c: Add schemas for new tables, and add support for
8883         computing the sizes of them.
8884
8885         * class.c: Update for handling the new type cases.
8886
8887 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
8888
8889         * metadata.h (MONO_TYPE_IS_VOID): new macro
8890
8891 2003-03-31  Martin Baulig  <martin@ximian.com>
8892
8893         * threads.h (MonoThreadCallbacks): Added `thread_created'.
8894
8895         * threads.c (mono_thread_new_init): Call `thread_created' in the
8896         mono_thread_callbacks.
8897
8898 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
8899
8900         * loader.h: added marshalbyrefobject_class to mono_defaults
8901         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
8902         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
8903           generation of output parameters.
8904           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
8905         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
8906           contextbound and the target object belongs to the context of the caller.
8907         * object.h: added context and unwrapped_server variables in MonoRealProxy.
8908         * object.c: Implemented support for interfaces and abstract classes
8909           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
8910           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
8911
8912 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
8913
8914         * class.h class.c (mono_class_is_subclass_of): New function.
8915         
8916         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
8917         routines for most common case (calls from ArrayList::ToArray).
8918
8919         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
8920         routine so programs which call Environment::Exit() can be profiled.
8921
8922         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
8923         Added MONO_ARCH_SAVE_REGS.
8924
8925         * icall.c (ves_icall_type_is_subtype_of): Use new function.
8926
8927 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
8928
8929         * blob.h: Add a couple of new MonoType types definitions.
8930
8931         * tabledefs.h: Add a couple of new call convs.
8932
8933 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
8934
8935         * reflection.h (MonoReflectionDynamicAssembly): track changes in
8936         the layout of the class.
8937
8938         * reflection.c (alloc_table): double the size on overflow to avoid
8939         unnecessary copying.
8940
8941         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
8942         avoid filling out metadata tables and blobs. Also set mb->ilgen to
8943         null so it can be garbage collected.
8944         
8945 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
8946
8947         * reflection.c (mono_reflection_get_type): Return the resolved type
8948         only if it is in the assembly we searched.
8949
8950         * reflection.c (ensure_runtime_vtable): Initialize method slots.
8951
8952         * class.c (mono_class_setup_vtable): Set the slot of the overriding
8953         method.
8954
8955 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8956
8957         * appdomain.c:
8958         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
8959         the right one is 'file:///blah', but MS allows it.
8960         * assembly.c:
8961         (mono_assembly_open): allow 'file://blah'
8962
8963         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
8964
8965 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
8966
8967         * socket-io.c: fixes bug #40310.
8968
8969 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
8970
8971         * reflection.c (mono_reflection_parse_type): handle deeply nested
8972         types correctly.
8973
8974         * reflection.c (mono_image_create_token): Use unique token values
8975         since they will be put into a hash table.
8976
8977         * class.c (mono_class_setup_vtable): If a method occurs in more than
8978         one place in the vtable, and it gets overriden, then change the
8979         other occurances too.
8980
8981         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
8982         object as return type.
8983
8984 2003-03-22  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
8985
8986         * icall.c: Deleted "ToString" implementation for double and float
8987         because they are full implemented in managed code.
8988
8989 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
8990
8991         * reflection.c, reflection.h: implemented and exported functions
8992         to retrieve info about custom attributes.
8993
8994 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8995
8996         * appdomain.c: moved Uri handling to assembly.c
8997         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
8998         work when using a file Uri in *nix and windows.
8999
9000         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
9001         GetReferencedAssemblies.
9002
9003 2003-03-18  Dick Porter  <dick@ximian.com>
9004
9005         * icall.c: Rename a couple of internal calls
9006
9007         * threads.c: Set the thread state to Stopped when a thread exits.
9008         Fixes bug 39377.
9009
9010 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
9011
9012         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
9013         New icall.
9014
9015         * object.c (mono_class_vtable): fix warning.
9016
9017 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
9018
9019         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
9020
9021         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
9022         memory.
9023         (method_encode_clauses): Create exception info structures in the right
9024         order.
9025         (mono_reflection_setup_internal_class): Initialize supertypes field.
9026
9027         * class.c object.c: Handle interfaces which implement other interfaces 
9028         correctly.
9029
9030         * class.h class.c: Move the supertypes array initialization code into 
9031         a separate function so it can be used for dynamic types too. Also call
9032         it earlier, in mono_class_init(), since it can be used before the
9033         type is initialized.
9034
9035 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9036
9037         * Makefile.am:
9038         * assembly.c:
9039         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
9040
9041         * appdomain.c:
9042         * appdomain.h:
9043         * marshal.c:
9044         * object.c: remove warnings.
9045
9046 2003-03-13  Martin Baulig  <martin@ximian.com>
9047
9048         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
9049         (MonoDebugLexicalBlockEntry): New types.
9050
9051         * debug-mono-symfile.c
9052         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
9053
9054 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9055
9056         * process.c: ret can be any non-zero value accroding to MS doc.
9057
9058 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
9059
9060         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
9061         fixing a warning for a miss-used prototype, would have cause
9062         random memory corruption.
9063
9064 2003-03-07  Martin Baulig  <martin@ximian.com>
9065
9066         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
9067         getting really annoying ....
9068
9069 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
9070
9071         * reflection.c (fixup_method): added support for array methods.
9072
9073 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
9074
9075         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
9076         (pointed out by Michael Adams).
9077
9078 2003-03-04  Dick Porter  <dick@ximian.com>
9079
9080         * icall.c: Temporarily reverted the Double and Single ToString()
9081         change, because it broke nunit.
9082
9083 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
9084
9085         * object.h, threads.h: make include files compatible with C++
9086         (patch by Jerome Laban <jlaban@wanadoo.fr>).
9087
9088 2003-03-04  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
9089
9090         * icall.c: Erased ToString helper functions for Double and Single.
9091         Now, that implementations ar all in managed code (Double and Single
9092         Formatters).
9093
9094 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
9095
9096         * appdomain.c: Added method for initializing the default context of
9097         a domain. Added internal call for getting the default context.
9098         * appdomain.h: Added context variable in MonoDomain struct.
9099         * domain.c: mono_domain_set also sets the default context of the domain
9100         * icall.c: Mapped internal method InternalGetDefaultContext.
9101         * object.c: mono_object_get_virtual_method returns always a remoting
9102         wrapper if the object is a transparent proxy.
9103         mono_runtime_invoke_array: when creating an object by calling the
9104         constructor, if the created object is a proxy, then the constructor should
9105         be called using the a remoting wrapper.
9106
9107 2003-03-03  Dick Porter  <dick@ximian.com>
9108
9109         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
9110         variable so it compiles on solaris.  Problem spotted by
9111         Christopher Taylor <ct@cs.clemson.edu>
9112
9113 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9114
9115         * appdomain.c:
9116         (get_info_from_assembly_name): don't leak value.
9117
9118         * icall.c:
9119         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
9120         result.
9121
9122 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
9123
9124         * assembly.c: export mono_image_load_references ().
9125         * class.c: handle function pointers. mono_class_from_name() now
9126         supports nested type names directly.
9127
9128 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
9129
9130         * reflection.h reflection.c: Encode already created dynamic methods 
9131         and fields correctly as a DEF instead of a REF.
9132
9133         * reflection.c: Get rid of the force_ref argument to 
9134         mono_image_typedef_or_ref since it was wrong in the first place.
9135
9136         * string-icalls.c: add error checking to string constructors according
9137         to the MSDN docs.
9138
9139         * reflection.c: Emit types in the order their TypeBuilders were 
9140         created. Previously, a new table index was assigned to each type before
9141         the tables were emitted. This was wrong because the signature blob
9142         might already refer to a type by its original table index.
9143
9144 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
9145
9146         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
9147         change.
9148         
9149 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9150
9151         * Makefile.am: make assemblies dir have \ instead of / on windows.
9152
9153 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
9154
9155         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
9156         iterate over the NESTEDCLASS table using a linear search since the
9157         table is not guaranteed to be sorted by the secondary key.
9158
9159         * class.c (mono_class_create_from_typedef): fixed up call to
9160         mono_metadata_nesting_typedef.
9161         
9162 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
9163
9164         * marshal.c (mono_string_to_byvalstr): clear the memory as
9165         suggested by Jerome Laban <jlaban@wanadoo.fr>
9166
9167 2003-02-26  Dick Porter  <dick@ximian.com>
9168
9169         * process.c: Cope with padding in .rsrc blocks
9170
9171 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
9172
9173         * metadata.h: reverted the filter_len change, it breaks reflection
9174         
9175 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
9176
9177         * metadata.h: added a new field to store the filter_len
9178         
9179
9180 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
9181
9182         * reflection.c: handle custom attributes for types and members
9183         created with Reflection.Emit (bug#38422).
9184
9185 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
9186
9187         * reflection.c: define RTSpecialName automatically for constructors for
9188         compatibility with MS.NET.
9189
9190         * reflection.c (mono_reflection_create_runtime_class): initialize
9191         nested_in field of dynamically created classes.
9192
9193 2003-02-22  Martin Baulig  <martin@ximian.com>
9194
9195         * debug-mono-symfile.h: Incremented version number.
9196
9197 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
9198
9199         * object.h icall.c process.c: fix warnings.
9200
9201 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
9202
9203         * appdomain.h appdomain.c:
9204         (mono_domain_try_type_resolve): split the 
9205         name_or_tb argument into a name and a tb argument.
9206         (mono_domain_has_type_resolve): new function to check whenever the
9207         application has registered a TypeResolve event handler.
9208         
9209         * icall.c reflection.h reflection.c: move the type resolve logic into
9210         mono_reflection_get_type () so it will be invoked when 
9211         Assembly::GetType () is called.
9212
9213         * reflection.c:
9214         (mono_reflection_get_type): renamed to get_type_internal.
9215         (mono_reflection_get_type): fixed type name generation so it works 
9216         for nested types too.
9217         (mono_reflection_get_type): call has_type_resolve () to avoid the 
9218         costly type name generation if there is no resolve event handler.
9219
9220 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
9221
9222         * class.c, image.c: load exported types from file references.
9223
9224 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
9225
9226         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
9227           used to cache the managed methods used to create proxies and make 
9228           remote invocation of methods.
9229         * class.h: Added in MonoVTable a flag to indicate that a class needs 
9230           to be remotely created.
9231         * object.c: Modified the method mono_class_vtable(). It now initializes 
9232           the remote flag of the vtable. Modified mono_object_new_specific(), 
9233           so now it checks the remote flag.
9234         * icall.c: Added a couple of internal methods, one for enabling instance 
9235           creation interception for a type, and one for creating objects bypassing
9236           the remote check.
9237
9238 2003-02-18  Martin Baulig  <martin@ximian.com>
9239
9240         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
9241         New interncall to get a method's metadata token.
9242
9243         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
9244         New interncall for the debugger.
9245
9246 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
9247
9248         * class.c (mono_class_setup_vtable): allocate supertype array
9249
9250 2003-02-18  Martin Baulig  <martin@ximian.com>
9251
9252         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
9253
9254 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9255
9256         * reflection.c:
9257         (assembly_name_to_aname): jump over unknown properties (i've found
9258         something like: 'type, assembly, version=xxx, custom=null, public...',
9259         so now will ignore custom=null and still get the rest of the values).
9260
9261 2003-02-17  Dick Porter  <dick@ximian.com>
9262
9263         * threads.c: Have Thread.Start() wait for a semaphore to signal
9264         that the thread has set up all its local data.  This fixes bug
9265         34323, where Abort() raced the new thread's TLS data.
9266
9267         Also removes the handle_store() call from start_wrapper, because
9268         threads are now always created suspended and there is no longer a
9269         race between the parent and child threads to store the info.
9270
9271 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
9272
9273         * image.c: explain the #- heap issue in a message, hopefully
9274         avoiding FAQs on mono-list.
9275
9276 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9277
9278         * icall.c:
9279         (GetEntryAssembly): if the domain has not invoked
9280         AppDomain.ExecuteAssembly yet, return the assembly of the default
9281         AppDomain.
9282
9283 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
9284
9285         * class.c (mono_ldtoken): make it work in dynamic assemblies.
9286
9287 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
9288
9289         * metadata.c, reflection.c: simple speedup to type hash
9290         and equals code.
9291
9292 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
9293
9294         * image.c, image.h, class.c, assembly.c: move module loading
9295         to MonoImage. When loading metadata, consider alignemnet from
9296         the start of metadata, not from the metadata address in memory.
9297
9298 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
9299
9300         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
9301         AssemblyBuilder objects. Factored out custom attribute creation into
9302         a separate function.
9303         (create_custom_attr): new function to create custom attributes.
9304
9305 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
9306
9307         * Makefile.am: Got tired of typing the full pathname to pedump.
9308         Until there is another option, am installing this.
9309
9310 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
9311
9312         * class.c (class_compute_field_layout): always set field->parent 
9313         (mono_ldtoken): use mono_defaults.fieldhandle_class;
9314
9315 2003-02-11  Dick Porter  <dick@ximian.com>
9316
9317         * threads-types.h:
9318         * monitor.c: Rewrote Monitor, making lock much faster and
9319         Pulse/Wait work as specified.  Also uses much fewer handles, and only
9320         creates them as needed.
9321
9322         * exception.c: Added SynchronizationLockException
9323
9324         * threads.c: Deleted old Monitor implementation.  The new one is
9325         in a new file.
9326
9327 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
9328
9329         * class.c: handled TypedReference type code. Set the correct size for
9330         class data. Setup interface_offsets for interface classes, too.
9331
9332 2003-02-09  Martin Baulig  <martin@ximian.com>
9333
9334         * debug-mono-symfile.h: Reflect latest symbol writer changes.
9335
9336 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
9337
9338         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
9339         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
9340         * object.c: fixed mono_object_get_virtual_method () for interfaces.
9341         * verify.c: check for code that runs after the end of the method.
9342
9343 2003-02-08  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
9344
9345         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
9346         "System.Math::Round2".
9347         * sysmath.h: Added Floor, Round and Round2 definitions.
9348         * sysmath.c: Modified certain functions that were not 100% compliant
9349         with MS.NET (math precision) and added the implementation of Floor,
9350         Round and Round2.
9351
9352 2003-02-07  Martin Baulig  <martin@ximian.com>
9353
9354         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
9355
9356 2003-02-07  Martin Baulig  <martin@ximian.com>
9357
9358         * debug-mono-symfile.c: Reflected latest symwriter changes.
9359         (mono_debug_create_mono_symbol_file): Removed.
9360         (mono_debug_open_mono_symbol_file): Take an argument which
9361         specifies whether to create a dynamic symbol file.
9362
9363 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
9364
9365         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
9366
9367 2003-02-05  Martin Baulig  <martin@ximian.com>
9368
9369         * reflection.c (mono_image_build_metadata): Make this public,
9370         protect it against being called multiple times, don't create
9371         resources and don't build the compressed metadata here.
9372         (mono_image_create_pefile): Do this here.
9373
9374         * icall.c
9375         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
9376
9377 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9378
9379         * socket-io.c: fixed bug #36322.
9380
9381 2003-02-06  Piers Haken <piersh@friskit.com>
9382
9383         * appdomain.[ch]:
9384         * class.h:
9385         * debug-mono-symfile.c:
9386         * icall.c:
9387         * loader.c:
9388         * mono-config.c:
9389         * monosn.c:
9390         * reflection.c:
9391         * socket-io.c: warning cleanups
9392
9393 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
9394
9395         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
9396         function. works like remoting invoke, but does a check for the Proxy first.
9397
9398 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
9399
9400         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
9401
9402 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
9403
9404         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
9405         array of pointers.
9406         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
9407         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
9408
9409         * object.c (mono_store_remote_field_new): used by the new jit
9410         instead of mono_store_remote_field
9411         (mono_load_remote_field_new): used by the new jit
9412         instead of mono_load_remote_field
9413
9414 2003-02-05  Patrik Torstensson
9415
9416         * appdomain.c: changed unload to take the domain id instead
9417         of domain
9418         
9419         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
9420
9421
9422 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9423
9424         * appdomain.c: don't look for assemblies in ApplicationBase if
9425         PrivateBinPathProbe is set.
9426
9427 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9428
9429         * object.c: make the first argument in main_args contain the absolute
9430         path to the assembly. Fixes bug #37511.
9431
9432 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9433
9434         * icall.c: get correct UTC offset for countries not using daylight
9435         time saving. Fixes bug #30030.
9436
9437 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9438
9439         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
9440         and 1 are the family).
9441
9442 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
9443
9444         * icall.c (ves_icall_InternalExecute): removed wrong assertion
9445
9446         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
9447
9448 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
9449
9450         * reflection.c: added support for SignatureHelper tokens, which is
9451         needed by the Calli opcode.
9452
9453         * reflection.h: track changes to SignatureHelper class.
9454
9455         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
9456
9457 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9458
9459         * appdomain.c: fixed loading assemblies from PrivateBinPath.
9460
9461 2003-02-03  Patrik Torstensson
9462         * appdomain.[c|h], domain.c : 
9463          - Added support for getting a domain via domain id
9464          - Support for setting and getting domain from System.AppDomain 
9465            (used in cross appdomain channel)
9466          - Added support for get/set for a MonoAppContext on a thread 
9467            (Context class in System.Runtime.Remoting.Contexts),
9468          - Removed hack in Get/SetData and ExecuteAssembly.
9469         
9470         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
9471         the managed world to get control when a proxy is created.
9472
9473         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
9474         
9475 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
9476
9477         * icall.c
9478         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
9479         Populate the codebase field as well.
9480
9481 2003-02-02  Martin Baulig  <martin@ximian.com>
9482
9483         * debug-mono-symfile.c
9484         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
9485         (mono_debug_symfile_add_method): Allow interncalls.
9486
9487 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9488
9489         * icall.c: throw parse exception if strtod fails or the string is empty.
9490
9491 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
9492
9493         * marshal.c: handle object type separately from defined
9494         class types.
9495
9496 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
9497
9498         * marshal.c: handle NATIVE_LPSTR for strings when it's
9499         explicitly specified.
9500
9501 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
9502
9503         * reflection.c, reflection.h, icall.c: setup the reflection
9504         handle cache for ModuleBuilders and AssemblyBuilders.
9505
9506 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
9507
9508         * reflection.c (reflection_methodbuilder_to_mono_method): set
9509         pinvoke flag
9510
9511 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9512
9513         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
9514
9515 2003-01-29  Dick Porter  <dick@ximian.com>
9516
9517         * threads.c: No need for the fake_thread kludge now that Thread
9518         doesn't run a class constructor
9519         
9520 2003-01-29  Dick Porter  <dick@ximian.com>
9521
9522         * threads.c: Use g_direct_hash instead of the rather bogus
9523         g_int_hash
9524
9525 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
9526
9527         * marshal.c (mono_marshal_get_native_wrapper): add check for null
9528         (fix pinvoke12.exe)
9529         (mono_marshal_get_struct_to_ptr): generate valid IL code
9530         (mono_marshal_get_ptr_to_struct): generate valid IL code
9531         (*): correctly set sig->pinvoke, we need to memdup the signature
9532         to do that
9533
9534 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
9535
9536         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
9537         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
9538
9539 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
9540
9541         * profiler.c: provide more callers information.
9542
9543 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
9544
9545         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
9546
9547         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
9548
9549         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
9550
9551 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9552
9553         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
9554         exception instead of going into an infinite loop on dates which it 
9555         can't yet handle.
9556
9557         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
9558         out-of-range exception if needed.
9559
9560         * class.c (mono_class_setup_vtable): allow a virtual method to provide
9561         an implementation for an interface method and to override an inherited
9562         method at the same time. 
9563         Imagine a scenario when a virtual method is used to override a
9564         virtual abstract method in a parent class, and this same method 
9565         provides an implementation for an method inherited from an interface. 
9566         In this case, the interface resolution code will set im->slot, which 
9567         means that the virtual method override pass will skip this method 
9568         which means a pointer to the abstract method inherited from the parent
9569         will remain in the vtable of this non-abstract class.
9570
9571         * class.c: (mono_class_setup_vtable): continue search for a real 
9572         method if only an abstract method is found.     
9573
9574 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
9575
9576         * reflection.c: add size to encoding for ByValStr and ByValArray
9577         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
9578
9579 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9580
9581         * class.c (mono_class_setup_vtable): pass the override info as an
9582         argument.
9583
9584         * class.c (mono_class_setup_vtable): set the slot of overriding methods
9585         correctly.
9586         
9587         * reflection.c (ensure_runtime_vtable); add support for method 
9588         overrides.
9589         
9590 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9591
9592         * reflection.c (resolution_scope_from_image): Hack to work to work with
9593         dynamic assemblies.
9594
9595         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
9596         added a 'force_ref' argument to force this function to allways return 
9597         a TypeRef. This is needed by mono_image_get_memberref_token ().
9598         
9599 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9600
9601         * reflection.c (mono_image_get_type_info): interfaces really don't have
9602         a parent.
9603
9604         * reflection.c (mono_image_basic_init): fill out missing fields of
9605         image structure.
9606
9607         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
9608         dynamic assemblies. This is required so dynamic assemblies show up in
9609         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
9610         Type::GetType() etc. This is consistent with MS behaviour.
9611
9612         * image.c image.h reflection.c: add newly created classes to the name 
9613         cache so mono_class_get () will find them.      
9614
9615 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
9616
9617         First part of changes to get IKVM.NET running under mono.
9618         
9619         * appdomain.h, appdomain.c: added new function 
9620         mono_domain_try_type_resolve() which will emit TypeResolve events. 
9621         This function will call AppDomain::DoTypeResolve to do the actual work.
9622
9623         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
9624         moved existing code dealing with dynamic tokens to a new function 
9625         called mono_reflection_lookup_dynamic_token (). This function will 
9626         raise TypeResolve events when appropriate. Since reflection.c is not 
9627         part of libmetadata, a new hook function called 
9628         mono_lookup_dynamic_token() is added to class.c which will call this.
9629
9630         * assembly.h assembly.c: make the invoke_load_hook function public,
9631         so it can be called for dynamic assemblies.
9632
9633         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
9634
9635         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
9636         type isn't found.
9637
9638         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
9639         MonoGHashTable, since it contains pointers to objects which the GC 
9640         needs to track.
9641
9642         * assembly.c (search_loaded): remove unused variable.
9643         
9644 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
9645
9646         * object.c: fixed issue exposed by gcc-generated IL programs
9647         that use RVA data for pointers.
9648
9649 2003-01-25  Martin Baulig  <martin@ximian.com>
9650
9651         * threads.c (start_wrapper): Moved the initialization of
9652         `start_func' above the mono_new_thread_init() call to which we
9653         pass it as argument.
9654
9655 2003-01-24  Martin Baulig  <martin@ximian.com>
9656
9657         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
9658         the MonoThread pointer.
9659
9660 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
9661
9662         * icall.c: Rename `PowImpl' to Pow.
9663
9664 2003-01-23  Dick Porter  <dick@ximian.com>
9665
9666         * threads.c (start_wrapper): Create a Thread object if needed, so
9667         the Main() thread can do the class initialisation in a subthread
9668         that has been set up to allow managed code execution.
9669
9670         Pass the thread ID instead of the MonoThread pointer to the thread
9671         start and attach callbacks.  This change is required, because the
9672         jit thread start callback must be called _before_ the Thread
9673         object can be created.
9674         
9675         (mono_thread_init): Removed much object creation code that is no
9676         longer needed.  No managed code is called from here now.
9677
9678         * object.c (mono_runtime_exec_managed_code): Create a subthread
9679         for Main, and call back to the runtime to use it.
9680         Set the exit code when Main exits.
9681
9682         * gc.c: Make sure domain finalisation happens in a subthread.
9683         Re-enable threaded GC, fixing bug 31333 (again).
9684
9685         * environment.c: System.Environment internall calls (so far just
9686         ExitCode is here, the others are still in icall.c)
9687
9688         * appdomain.c (mono_runtime_cleanup): All threads running managed
9689         code should have finished before mono_runtime_cleanup() is
9690         reached, so no need to clean up threads.
9691
9692 2003-01-22  Martin Baulig  <martin@ximian.com>
9693
9694         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
9695         `gpointer func' arguments.      
9696         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
9697         but added `MonoThread *thread' argument.
9698         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
9699
9700         * threads.c (mono_new_thread_init): Added `gpointer func' argument
9701         and pass it to the mono_thread_start_cb callback.
9702         (mono_install_thread_callbacks): New public function to install a
9703         set of callbacks which are set by the debugger.
9704         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
9705
9706 2003-01-22  Martin Baulig  <martin@ximian.com>
9707
9708         * Makefile.am: Install debug-mono-symfile.h.
9709
9710 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
9711
9712         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
9713
9714 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
9715
9716         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
9717         * class.c (mono_ptr_class_get): correctly set access levels of pointers
9718         (mono_array_class_get): correctly set access levels of arrays
9719
9720 2003-01-20      Patrik Torstensson
9721         * image.h (MonoAssemblyName): changed major, minor, build, revision
9722         from signed to unsigned.
9723
9724 2003-01-20  sean kasun <skasun@azstarnet.com>
9725
9726         * reflection.c (load_cattr_value): Now this handles
9727         MONO_TYPE_SZARRAY.  Fixes bug #35629
9728
9729 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
9730
9731         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
9732         integer value
9733
9734 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9735
9736         * decimal.c: fixed bug #26056.
9737
9738 2003-01-17  Martin Baulig  <martin@ximian.com>
9739
9740         * gc.c: Raise an ExecutionEngineException instead of using g_error().
9741
9742 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9743
9744         * exception.[ch]:
9745         (mono_get_exception_type_initialization): new function.
9746
9747         * object.c: throw a TypeInitializationException when an exception is
9748         thrown invoking the class constructor.
9749
9750 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9751
9752         * reflection.c: fixed attribute reading.
9753
9754 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9755
9756         * icall.c:
9757         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
9758         provided, look for the type in the calling assembly and then in
9759         mscorlib; if the assembly name is provided, only try that one.
9760
9761 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
9762
9763         * object.c: register the vtable before there is a chance it's
9764         queried again recursively.
9765
9766 2003-01-13  Duncan Mak  <duncan@ximian.com>
9767
9768         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
9769         gc-internal.h. 
9770         
9771 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
9772
9773         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
9774
9775 2003-01-11  Martin Baulig  <martin@ximian.com>
9776
9777         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
9778         this to 20 for the release.
9779
9780 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
9781
9782         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
9783
9784         * loader.c (mono_method_get_marshal_info): bug fix
9785
9786         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
9787         structures with explicit layout
9788
9789 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
9790
9791         * profiler.c: made the output more readable (and sorted). 
9792         Added caller information for the allocation profiler.
9793
9794 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
9795
9796         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
9797
9798 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9799
9800         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
9801         to get value types.
9802         
9803 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
9804
9805         * object.c, profiler.h, profiler.c, profiler-private.h:
9806         Added object allocation profiler.
9807
9808 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
9809
9810         * reflection.h, reflection.c: handle global methods.
9811         Compress blob entries.
9812
9813 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
9814
9815         * marshal.c: fix compilation.
9816
9817 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
9818
9819         * loader.c (mono_method_get_marshal_info): impl.
9820
9821         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
9822
9823 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9824
9825         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
9826         for reference types.
9827
9828 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
9829
9830         * loader.c: fixed off by one error in loaded parameter names.
9831
9832 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
9833
9834         * marshal.c (mono_marshal_get_icall_wrapper): like
9835         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
9836         instead of a MonoMethod.
9837
9838 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9839
9840         * decimal.c: fixed bug #36537.
9841
9842 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
9843
9844         * marshal.c: throw a missing method exception if a
9845         P/Invoke method is not found.
9846
9847 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
9848
9849         * icall.c: allow a null this for constructors.
9850
9851 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
9852
9853         * icall.c: raise the proper exceptions if the arguments to the
9854         internal Invoke are incorrect.
9855
9856 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
9857
9858         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
9859
9860 2003-01-03  Martin Baulig  <martin@ximian.com>
9861
9862         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
9863
9864 2002-12-31  Martin Baulig  <martin@ximian.com>
9865
9866         * debug-mono-symfile.c: Completely rewrote the type section.
9867         Instead of using individual malloc()ed fields, we use one big
9868         continuous memory area and offsets into this area.
9869         See the comments in the source code for details.
9870
9871 2002-12-30  Martin Baulig  <martin@ximian.com>
9872
9873         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
9874
9875 2002-12-30  Martin Baulig  <martin@ximian.com>
9876
9877         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
9878         line number table in this data blob instead of using an external
9879         pointer.
9880
9881 2002-12-28  Martin Baulig  <martin@ximian.com>
9882
9883         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
9884
9885 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
9886
9887         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
9888         as a boxed return type.
9889
9890 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
9891
9892         * appdomain.c
9893         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
9894         g_build_filename to properly get separators on the filename created.
9895
9896         * object.h: Small change, introduce MonoMarshalByRefObject to
9897         track the layout of that structure in the C# universe as we make
9898         changes there.
9899
9900 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
9901
9902         * object.c: removed assert to allow static fields on interfaces.
9903         * loader.c: a TypeSpec may be used for any type, not just arrays.
9904
9905 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
9906
9907         * class.c, class.h: added mono_class_array_element_size ().
9908         Ignore static methods in interfaces.
9909
9910 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9911
9912         * threads.c: fixed the build under cygwin.
9913
9914 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
9915
9916         * reflection.c: handle nullref constants. Allocate keys for
9917         reflection handles with the GC.
9918
9919 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
9920
9921         * threads.c, threads.h: added mono_thread_get_abort_signal()
9922         to get a suitable signal for thread abort.
9923
9924 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
9925
9926         * metadata.c: fix handling of ExportedType table.
9927
9928 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9929
9930         * icall.c: added WriteWindowsDebugString internal call.
9931
9932 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9933
9934         * reflection.h: added fields to match C# implementation.
9935
9936 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9937
9938         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
9939
9940 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
9941
9942         * gc.h, gc-internal.h: Rename header for GC internal calls to
9943         gc-internal.h from gc.h as to not clash with Boehm GC having its
9944         header installed as <gc.h> in outside include paths.
9945         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
9946         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
9947
9948 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9949
9950         * icall.c: assign minor, build and revision in FillName.
9951
9952 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
9953
9954         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
9955         Added support for running code generated by Reflection.Emit.
9956
9957 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9958
9959         * appdomain.c: check for NULL argument in LoadFrom.
9960
9961 2002-12-10  Dick Porter  <dick@ximian.com>
9962
9963         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
9964
9965 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9966
9967         * appdomain.c: fix buglet when building exe file name.  Handle full
9968         assembly name (needed after latest changes to AssemblyName).
9969         * image.c:
9970         (mono_image_close): free some hashtables.
9971
9972 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
9973
9974         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
9975         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
9976         on some systems (redhat 7.3) 
9977
9978 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
9979
9980         * threads.c: delete the critical section of a sync block,
9981         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
9982
9983 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
9984
9985         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
9986
9987 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9988
9989         * appdomain.[ch]: handle the assembly preload event to try loading the
9990         assemblies using the paths we have in the current domain.
9991
9992         * assembly.[ch]: created an assembly preload hook that is called to try
9993         loading the assembly by other means that the ones provided here.
9994
9995         * domain.c: initialize the domain search path.
9996
9997         From now on, assemblies (TODO: except corlib and System) are loaded
9998         according to these rules when using mono_assembly_load ():
9999
10000                 1. It tries to load the assembly from the ApplicationBase
10001                 of the current domain appending .dll and .exe (TODO: have to
10002                 try loading from name/name.dll and name/name.exe).
10003
10004                 2. It tries the search path specified in PrivateBinPath for the
10005                 current domain (if any).
10006
10007                 3. Previous behavior.
10008
10009 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
10010
10011         * icall.c: implemented GetInterfaceMap() related icall.
10012         * domain.c, loader.h: load MethodInfo in mono_defaults.
10013
10014 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
10015
10016         * gc.c: disable the finalizer thread for now, untill all the issues
10017         with it are resolved.
10018
10019 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
10020
10021         * string-icalls.c: handle embedded nulls in string ctor when the
10022         length is specified.
10023
10024 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
10025
10026         * class.c: look for explicit interface implementation in parent
10027         classes, too.
10028
10029 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
10030
10031         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
10032
10033 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
10034
10035         * gc.c: protect handles with a critical section.
10036
10037 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10038
10039         * icall.c:
10040         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
10041         parameters. If no assembly specified, try getting the type from all
10042         the assemblies in the current domain, else, load the assembly and get
10043         the type from it.
10044
10045 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10046
10047         * marshal.c: applied patch from Aleksey Demakov that fixes
10048         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
10049
10050 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10051
10052         * icall.c: fixed get_location.
10053
10054 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
10055
10056         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
10057         declarations to make it work with older gcc. 
10058
10059         * loader.c (mono_get_method): set signature->pinvoke for native calls
10060
10061 2002-11-20  Dick Porter  <dick@ximian.com>
10062
10063         * threads.c (mono_thread_init): Set the main thread's handle
10064
10065 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
10066
10067         * gc.c: allow compilation without GC support. Changed to match the
10068         mono coding style.
10069
10070 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
10071
10072         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
10073
10074 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
10075
10076         * reflection.c: set a public key token on the core assemblies.
10077
10078 2002-11-18  Dick Porter  <dick@ximian.com>
10079
10080         * threads.c: Split out some thread initialisation so that other
10081         files can set the start callback function.
10082
10083         * gc.c: Run finalisers in a separate thread, to avoid stack
10084         overflow.  Fixes bug 31333.
10085
10086         * appdomain.c: Set up GC finalisation thread.
10087
10088         * reflection.c: 
10089         * object.c: 
10090         * domain.c: Use gc.h macros for GC_malloc
10091         
10092 2002-11-15  Dick Porter  <dick@ximian.com>
10093
10094         * threadpool.c: 
10095         * threads.c:
10096         * appdomain.c: Removed mono_runtime_init_with_attach(),
10097         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
10098         merging the extra parameter with the existing function.  Removed
10099         unneeded code in mono_thread_attach().
10100
10101 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
10102
10103         * image.c (mono_image_loaded_by_guid): a method to get loaded
10104         images by guid. 
10105         (load_metadata_ptrs): we store the guid as string.
10106
10107 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
10108
10109         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
10110
10111         * metadata.c (mono_guid_to_string): imported method form Zoltan
10112         Varga (slightly modified)
10113
10114         * assembly.c (mono_assembly_open): load precompiled code
10115
10116         * loader.h (MonoMethod): we store the method token for use in the
10117         aot compiler. 
10118
10119 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10120
10121         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
10122         the hook function called when an assembly is loaded.
10123         
10124         * domain.c: Modified file.
10125         (mono_domain_assembly_load): removed hash table insertion of assemblies.
10126
10127         Fixes bug #33196.
10128
10129 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
10130
10131         * reflection.c: Map PEFileKind to the value expected by the WinNT
10132         image loader. 
10133
10134 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10135
10136         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
10137         Read until the buffer is filled completely.
10138
10139 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10140
10141         * icall.c: implemented MonoType.InternalGetEvent ().
10142
10143 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10144
10145         * appdomain.c: implemented InitAppDomainSetup. Delayed
10146         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
10147         the entry_assembly.
10148
10149         * assembly.c: base_dir is now an absolute path ending with
10150         G_DIR_SEPARATOR.
10151
10152         * icall.c: modified get_location according to the above changes.
10153
10154         * object.c: init AppDomain.SetupInformation for the default domain after
10155         we have the entry assembly.
10156
10157         * domain.c: when unloading a domain, setup = NULL.
10158
10159 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
10160
10161         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
10162
10163 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
10164
10165         * object.h, object.c: introduced mono_object_get_virtual_method ()
10166         to lookup the method invoked on an object when a callvirt is done on
10167         a method.
10168         * icall.c: make MethodInfo::Invoke() always do a virtual call.
10169
10170 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10171
10172         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
10173         current domain when loaded an assembly and failed to load it.
10174
10175         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
10176
10177 2002-10-31  Dick Porter  <dick@ximian.com>
10178
10179         * icall.c: 
10180         * file-io.h: 
10181         * file-io.c: Return the error status in a parameter, as the
10182         GetLastError() value has long since been blown away if we try and
10183         look it up in a subsequent internal call invocation.  Delete the
10184         GetLastError() internal call, because it's useless.
10185
10186 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
10187
10188         * class.[ch]: added cast_class to fix bug 29517
10189
10190 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
10191
10192         * marshal.c: create valid IL code in the filter clause:
10193         the new JIT is less forgiving:-)
10194
10195 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10196
10197         * icall.c: removed get_property internal call.
10198
10199 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
10200
10201         * appdomain.h domain.c: Added an ID to appdomains.
10202         
10203         * threads.c threads.h icall.c: Implement icall
10204         Thread:GetDomainID(), and remove unused icall 
10205         CurrentThreadDomain_internal.
10206
10207 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10208
10209         * icall.c: Don't recurse through the base types in GetConstructor.
10210         Fixes bug #32063. 
10211
10212 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
10213
10214         * mempool.h, mempool.c: added mono_mempool_empty() and
10215         mono_mempool_stats().
10216
10217 2002-10-23  Dick Porter  <dick@ximian.com>
10218
10219         * file-io.c: 
10220         * file-io.h: 
10221         * icall.c: Added MonoIO.GetFileType internal call
10222
10223 2002-10-17  Dick Porter  <dick@ximian.com>
10224
10225         * appdomain.c (mono_runtime_cleanup): Don't signal the async
10226         delegate semaphore before waiting for all threads to finish,
10227         because new threads can also call async delegates.  Fixes bug
10228         32004.
10229
10230         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
10231         of 3 seconds, in case another async job is queued.  (This part is
10232         needed because the bug fix reintroduced the 3s exit lag.)  This
10233         makes the mono_runtime_shutdown flag superfluous.
10234
10235 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
10236
10237         * reflection.c: include ehader size in method section headers.
10238         Really check for suplicated modules entries.
10239
10240 2002-10-17  Martin Baulig  <martin@gnome.org>
10241
10242         * debug-mono-symfile.c: Added back support for locals.
10243
10244 2002-10-14  Martin Baulig  <martin@gnome.org>
10245
10246         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
10247         MONO_TYPE_VOID.
10248
10249 2002-10-14  Martin Baulig  <martin@gnome.org>
10250
10251         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
10252         mono_class_get() instead of looking in the class cache. 
10253
10254 2002-10-13  Martin Baulig  <martin@gnome.org>
10255
10256         * debug-mono-symfile.c: Set version number to 28, include the
10257         signature in method names.
10258
10259 2002-10-13  Martin Baulig  <martin@gnome.org>
10260
10261         * debug-mono-symfile.h: Set version number to 27.
10262
10263 2002-10-11  Martin Baulig  <martin@gnome.org>
10264
10265         * gc.c: Don't register/unregister NULL pointers as disappearing links.
10266
10267 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
10268
10269         * metadata.c, metadata.h: added helper function to allocate signatures.
10270
10271 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10272
10273         * icall.c: added internal call to get the location of machine.config.
10274
10275 2002-10-08  Martin Baulig  <martin@gnome.org>
10276
10277         * debug-mono-symfile.c: Ignore classes with a pending init for the
10278         moment.
10279
10280 2002-10-03  Dick Porter  <dick@ximian.com>
10281
10282         * threads.c: Freebsd pthread_t is a pointer
10283
10284 2002-10-03  Dick Porter  <dick@ximian.com>
10285
10286         * socket-io.c: Implemented GetHostName_internal
10287
10288 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10289
10290         * mono-config.c:
10291         (mono_config_parse_file): don't leak the text.
10292
10293 2002-10-02  Martin Baulig  <martin@gnome.org>
10294
10295         * debug-mono-symfile.c: Added support for methods.
10296
10297 2002-10-01  Martin Baulig  <martin@gnome.org>
10298
10299         * debug-mono-symfile.c: Don't emit methods and line numbers for
10300         the dynamic symbol file, just write the type table.  We can easily
10301         have an external helper program which creates a symbol file for an
10302         IL file.        
10303
10304 2002-10-01  Dick Porter  <dick@ximian.com>
10305
10306         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
10307         Only add the handle to the cleanup array when we're about to
10308         launch the thread.  Bug 31425 deadlocked when the test was run on
10309         mono under w32.
10310
10311 2002-10-01  Martin Baulig  <martin@gnome.org>
10312
10313         * debug-mono-symfile.c: Added support for properties.
10314
10315 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
10316
10317         * reflection.c: unaligned store fix from Mark Crichton
10318         <crichton@gimp.org>.
10319
10320 2002-09-27  Martin Baulig  <martin@gnome.org>
10321
10322         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
10323         New interncall.
10324
10325 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
10326
10327         * assembly.h, assembly.c: use a sane API to hook into the assembly
10328         loading process instead of a useless special-purpouse hack
10329         (ngen needs a hook, too, for example).
10330
10331 2002-09-27  Dick Porter  <dick@ximian.com>
10332
10333         * threads.c (mono_thread_init): Call GetCurrentProcess() so
10334         io-layer can set up some process handle info.  Not needed on w32,
10335         but doesn't hurt either.
10336
10337         * process.c: Pass the program name in the second parameter to
10338         CreateProcess, so the path is searched.  Include the working
10339         directory. Implemented process name, process enumeration, and some
10340         process detail internal calls.
10341         
10342         * icall.c: Added internal calls for process lookup, and some
10343         process details
10344
10345 2002-09-26  Martin Baulig  <martin@gnome.org>
10346
10347         * assembly.c (mono_install_open_assembly_hook): New global
10348         function to install a function to be invoked each time a new
10349         assembly is loaded.
10350         (mono_assembly_open): Run this callback function if set.
10351
10352         * debug-mono-symfile.c: Put back line numbers for the dynamic
10353         symbol file and also record the .il file as source file.  This
10354         allows us to install the temporary symbol file as `file.dbg' just
10355         like a compiler-generated one.
10356
10357 2002-09-26  Nick Zigarovich <nick@chemlab.org>
10358
10359         * Corrected typo in gc.c (BOHEM vs BOEHM).
10360
10361 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10362
10363         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
10364         GetProperties. Also avoid calling g_slist_length in GetProperties and
10365         GetMethods.
10366
10367 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
10368
10369         * reflection.c: avoid unaligned stores (bug spotted by
10370         Mark Crichton  <crichton@gimp.org>).
10371
10372 2002-09-25  Martin Baulig  <martin@gnome.org>
10373
10374         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
10375         instead of guint64 for addresses and added prologue/epilogue info.
10376
10377 2002-09-25  Martin Baulig  <martin@gnome.org>
10378
10379         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
10380         store line number info.  For the dynamic symbol file, we only need
10381         to provide the JIT generated dynamic line number info for the dynamic
10382         symbol file.
10383
10384 2002-09-25  Martin Baulig  <martin@gnome.org>
10385
10386         * debug-mono-symfile.h: Incremented version number.
10387
10388 2002-09-24  Martin Baulig  <martin@gnome.org>
10389
10390         * class.c (mono_debugger_class_init_func): New global function
10391         pointer variable.
10392         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
10393         call it.
10394
10395         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
10396         function.  This is called via the mono_debugger_class_init_func
10397         hook to add all types to the dynamic type table.
10398         (ves_icall_MonoDebugger_GetType): New interncall to get a class
10399         from its metadata token.
10400
10401         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
10402         New interncall for the debugger.
10403
10404 2002-09-24  Nick Drochak <ndrochak@gol.com>
10405
10406         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
10407         before using it in case it is null.
10408         
10409 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10410
10411         * metadata.c: allow custom modifiers in local var signatures
10412         (bug spotted by Zoltan Varga).
10413
10414 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
10415
10416         * class.c: deal with the <Module> class that may have a NULL vtable.
10417         Eliminate warnings.
10418
10419 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
10420
10421         * image.c, image.h: more strong name helpers.
10422         * monosn.c: more work: convert pem keys to cryptoapi format.
10423
10424 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
10425
10426         * string-icalls.c: speedup IndexOf.
10427
10428 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
10429
10430         * icall.c: updates from Zoltan.2.Varga@nokia.com.
10431
10432 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
10433
10434         * icall.c: cleanup: use mono_object_domain ().
10435
10436 2002-09-23  Martin Baulig  <martin@gnome.org>
10437
10438         * debug-mono-symfile.c: Improved type support.
10439
10440 2002-09-22  Martin Baulig  <martin@gnome.org>
10441
10442         * debug-mono-symfile.c: Added support for reference types and strings.
10443
10444 2002-09-22  Martin Baulig  <martin@gnome.org>
10445
10446         * debug-mono-symfile.c: Started to work on the type table.
10447
10448 2002-09-21  Martin Baulig  <martin@gnome.org>
10449
10450         * debug-mono-symfile.c: Largely reworked the symbol table format.
10451         The symbol table is now incrementally updated each time a new
10452         method is added.  We're now also using our own magic and version
10453         so that you don't need to recompile all your classes if the
10454         dynamic table changes.
10455         (mono_debug_update_mono_symbol_file): Removed.
10456         (mono_debug_symfile_add_method): New function to add a method.
10457
10458 2002-09-21  Martin Baulig  <martin@gnome.org>
10459
10460         * icall.c
10461         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
10462         New interncall.
10463
10464         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
10465         New interncall to get a method from its metadata token.
10466
10467 2002-09-21  Martin Baulig  <martin@gnome.org>
10468
10469         * debug-mono-symfile.c: Create type table.
10470
10471 2002-09-20  Martin Baulig  <martin@gnome.org>
10472
10473         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
10474
10475 2002-09-20  Martin Baulig  <martin@gnome.org>
10476
10477         * debug-mono-symfile.c: Provide information about params and locals.
10478
10479 2002-09-20  Martin Baulig  <martin@gnome.org>
10480
10481         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
10482         New interncall.
10483
10484         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
10485         interncall to get a method from its metadata token.
10486
10487 2002-09-20  Martin Baulig  <martin@gnome.org>
10488
10489         * debug-mono-symfile.c: Added a few checks for method->header
10490         being non-NULL.  This should never happen, but for the moment
10491         let's use a g_warning() rather than a g_assert().
10492
10493 2002-09-19  Mark Crichton  <crichton@gimp.org>
10494
10495         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
10496         even if support for it isn't present.  Added an #ifdef to fix this.
10497
10498         * socket-io.c: Added checks back for Solaris support.
10499
10500 2002-09-19  Martin Baulig  <martin@gnome.org>
10501
10502         * debug-mono-symfile.c (read_string, write_string): Reflect latest
10503         changes in the symbol file format.
10504
10505 2002-09-18  Martin Baulig  <martin@gnome.org>
10506
10507         * debug-mono-symfile.c: Set version number to 21.
10508
10509 2002-09-18  Dick Porter  <dick@ximian.com>
10510
10511         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
10512         on netbsd.  Fixes bug 30051.
10513
10514 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10515
10516         * reflection.c:
10517         (set_version_from_string): little fix.
10518
10519 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
10520
10521         * monosn.c, Makefile.am: added strong name utility.
10522         * reflection.h, reflection.c: implemented delayed signing,
10523         locale, version and hash id assembly attributes.
10524
10525 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
10526
10527         * loader.c, metadata.c: load param attributes in signatures.
10528
10529 2002-09-16  Martin Baulig  <martin@gnome.org>
10530
10531         * debug-mono-symfile.c: Added string table with all method names.
10532
10533 2002-09-14  Martin Baulig  <martin@gnome.org>
10534
10535         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
10536         fast method lookup.
10537
10538 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
10539
10540         * reflection.c: record the public key token of referenced assemblies.
10541
10542 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
10543
10544         * image.c, image.h: added functions to get the strong name and the
10545         public key of an assembly.
10546         * pedump.c: use them.
10547
10548 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
10549
10550         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
10551
10552 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
10553
10554         * marshal.c (mono_marshal_get_managed_wrapper): Added
10555         MONO_TYPE_BOOLEAN 
10556
10557 2002-09-11  Martin Baulig  <martin@gnome.org>
10558
10559         * gc.c: Call GC_unregister_disappearing_link() on all links when
10560         finalizing them, this is necessary to aviod a crash in boehm's
10561         finalize handler.
10562
10563 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10564
10565         * gc.c: handle GetTarget for finalized objects spotted and fixed by
10566         nick@chemlab.org.
10567
10568 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
10569
10570         * icall.c: implemented MonoType::Module.
10571         * reflection.c, reflection.h: mono_module_get_object () from
10572         Tomi Pakarinen <tomi.pakarinen@welho.com>.
10573
10574 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
10575
10576         * icall.c: ignore overridden methods in GetMethods ().
10577         Fix for FieldInfo::SetValue().
10578         * object.c: handle float/double in runtime invoke.
10579
10580 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
10581
10582         * object.c: allow a constructor to be called again on an object.
10583
10584 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
10585
10586         * class.h, class.c: move field layout code to it's own function and
10587         export it. Get an interface id earlier. Move fields in MonoClass
10588         so they are more cache friendly and align the bitfields.
10589         * loader.c: temporary handle get_param_names() for a runtime method.
10590         * reflection.c, reflection.h: more code to handle runtime creation of
10591         types.
10592
10593 2002-09-09  Martin Baulig  <martin@gnome.org>
10594
10595         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
10596         signature with the pinvoke field being set for the actual call.
10597
10598 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
10599
10600         * icall.c: removed some unused icalls. Start of map of glib charsets
10601         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
10602
10603 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
10604
10605         * debug-helpers.c: break infinite loop (found and fixed by
10606         Holger Arnold <harnold@gmx.de>).
10607
10608 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
10609
10610         * icall.c: target may be null in create_delegate.
10611
10612 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
10613
10614         * marshal.c: handle a boolean return type.
10615
10616 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
10617
10618         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
10619
10620 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
10621
10622         * gc.c: fix weakreferences.
10623
10624 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
10625
10626         * icall.c: added icall to get default codepage.
10627
10628 2002-09-03  Dick Porter  <dick@ximian.com>
10629
10630         * threads.h: 
10631         * threads.c: Use MonoThread instead of MonoObject where
10632         apropriate.
10633
10634         Store running thread objects in a hash table, so that we have all
10635         the info to hand when waiting for them to finish
10636         (means we don't need OpenThread() any more, so mingw builds should
10637         be fully functional again.)
10638
10639         * verify.c:
10640         * object.h: Added thread ID to MonoThread
10641
10642 2002-09-03  Martin Baulig  <martin@gnome.org>
10643
10644         * icall.c (System.Reflection.Assembly::get_location): New interncall.
10645
10646 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10647
10648         * icall.c: fixed leak in get_temp_path. Thanks lupus.
10649
10650 2002-09-03  Martin Baulig  <martin@gnome.org>
10651
10652         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
10653         argument to store the end address of the disassembled instruction.
10654
10655         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
10656         here from debug-symfile.h.
10657         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
10658         JIT into this struct.
10659         (MonoSymbolFile): Added `char *image_file' field.
10660         (MonoDebugGetMethodFunc): Removed.
10661         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
10662         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
10663         (mono_debug_find_method): New method.
10664
10665         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
10666         create a full symbol file.
10667         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
10668         and static symbol files.
10669         (mono_debug_find_method): The symbol file keeps an internal method hash,
10670         call this to get a MonoDebugMethodInfo from a MonoMethod.
10671
10672         * debug-symfile.[ch]: Removed.
10673
10674 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
10675
10676         * image.c (do_mono_image_open): Remove linker version check.
10677
10678 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
10679
10680         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
10681         wrappers for instance methods.
10682         
10683 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10684
10685         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
10686
10687 2002-08-28  Dick Porter  <dick@ximian.com>
10688
10689         * Makefile.am: Export HOST_CC for w32 builds
10690
10691 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
10692
10693         * file-io.c process.c: MonoString are null terminated, no
10694         need for mono_string_to_utf16() anymore.
10695
10696 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10697
10698         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
10699
10700 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
10701
10702         * icall.c, reflection.h: speedup System.MonoType.
10703
10704 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
10705
10706         * reflection.c: allow null as the value of a string argument in
10707         custom attributes constructors.
10708
10709 2002-08-27  Martin Baulig  <martin@gnome.org>
10710
10711         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
10712         `trampoline_address' field.
10713
10714 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
10715
10716         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
10717         check (fixes bug #29486) 
10718
10719 2002-08-27  Martin Baulig  <martin@gnome.org>
10720
10721         * debug-mono-symfile.c: Changed the file format in a way that allows us
10722         open it read-only and to use a specially malloced area for all the
10723         dynamic data.  We can now also generate a symbol file on-the-fly if we're
10724         debugging IL code and there is no MCS generated symbol file for it.
10725
10726 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
10727
10728         * object.c: added a define for a good string and array
10729         creation speedup (not enabled by default because we need to deal with
10730         the synch stuff).
10731
10732 2002-08-26  Martin Baulig  <martin@gnome.org>
10733
10734         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
10735         function to create a dynamic symbol file.  This is used by the
10736         debugger to create a symbol file for IL code on-the-fly.
10737
10738 2002-08-26  Martin Baulig  <martin@gnome.org>
10739
10740         * loader.c (mono_lookup_pinvoke_call): Include the error message
10741         from g_module_error() in the error message.
10742
10743 2002-08-24  Martin Baulig  <martin@gnome.org>
10744
10745         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
10746         function to update the symbol file.  The symbol file is mmap()ed
10747         writable, but private.  This allows us to install the symbol file
10748         together with the assembly.
10749
10750 2002-08-24  Martin Baulig  <martin@gnome.org>
10751
10752         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
10753         but they can read the new symbol file format which mcs is now creating.
10754
10755         * debug-symfile.c (mono_debug_find_source_location): Moved to
10756         debug-mono-symfile.c; this is now operating on the new symbol file.
10757
10758 2002-08-23  Martin Baulig  <martin@gnome.org>
10759
10760         * debug-helpers.c (mono_method_desc_from_method): New function to get
10761         a MonoMethodDesc from a MonoMethod.
10762
10763 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
10764
10765         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
10766         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
10767
10768 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
10769
10770         * string-icalls.[ch]: make helper methods static.
10771
10772 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10773
10774         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
10775         types to it and to SetValueInternal.
10776
10777         * object.c: Moved handle_enum label to its proper place. This was the
10778         f... bug! ;-)
10779
10780         This time i compiled mcs and gtk-sharp and they both work.
10781
10782 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10783
10784         * icall.c: reverted partially my previous patch until 
10785         object.c:set_value handles enums correcly.
10786
10787 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10788
10789         * icall.c:
10790         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
10791         (ves_icall_System_Environment_get_MachineName): removed warning when
10792         compiling under cygwin.
10793
10794 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
10795
10796         * object.c: fixed field_get_value() for reference types.
10797
10798 2002-08-22  Dick Porter  <dick@ximian.com>
10799
10800         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
10801         Don't free a buffer while it's still needed.  Patch from Jonathan
10802         Liger <Jonathan.liger@wanadoo.fr>
10803
10804 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
10805
10806         * icall.c (ves_icall_System_Environment_get_Platform): Add new
10807         internal call.
10808
10809 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
10810
10811         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
10812         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
10813
10814         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
10815         we call unmanaged code which throws exceptions.
10816
10817 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10818
10819         * appdomain.h: added per-domain entry_assembly.
10820         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
10821         arguments.
10822         * icall.c: Assembly::GetEntryAssembly icall.
10823         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
10824         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
10825
10826 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10827
10828         * appdomain.h, gc.c: added mono_domain_finalize ().
10829
10830 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10831
10832         * object.c:
10833         (mono_print_unhandled_exception): changed g_warning by g_printerr
10834         because g_log has a 1024 characters limit (yeah, i got a big stack
10835         trace). Don't print exception name, that should be in ToString 
10836         returned string.
10837
10838 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10839
10840         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
10841         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
10842
10843 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10844
10845         * object.c:
10846         (mono_print_unhandled_exception): after previous commit, i realized
10847         that MS calls ToString on the exception. I changed this function to
10848         do that. This way we get stack_trace for free.
10849
10850 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10851
10852         * object.c:
10853         (mono_print_unhandled_exception): invoke Message property instead of
10854         getting 'message' field from Exception. Don't allocate memory for
10855         'trace' and 'message' if not needed.
10856
10857 2002-08-18  Dick Porter  <dick@ximian.com>
10858
10859         * unicode.c: Fix asserts to match Encoder.cs checks
10860
10861 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10862
10863         * marshal.c: fix unaligned store issue and a few wrong
10864         opcode argument types.
10865
10866 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10867
10868         * icall.c: added GetUninitializedObjectInternal internal call.
10869
10870 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
10871
10872         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
10873         to the right domain.
10874
10875 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
10876
10877         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
10878
10879         * class.c (class_compute_field_layout): set blittable to false for Strings
10880
10881         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
10882
10883 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10884
10885         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
10886         first chunk of code to create types at runtime. Code to
10887         handle ReflectedType/DeclaringType. Make reflection handles
10888         domain specific.
10889
10890 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
10891
10892         * class.c: set correct name in arrays.
10893
10894 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
10895
10896         * appdomain.c (mono_domain_transfer_object): make it work with
10897         valuetypes. bug fixes.
10898
10899 2002-08-12  Dick Porter  <dick@ximian.com>
10900
10901         * object.h: Rename some parameters to avoid c++ keywords (Patch
10902         from Joseph Wenninger <kde@jowenn.at>)
10903
10904 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
10905
10906         * icall.c: added icall to implement Assembly.GetFile*.
10907
10908 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
10909
10910         * reflection.h, reflection.c: code to embed managed resources.
10911
10912 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
10913
10914         * class.c: move all the type size stuff into
10915         class_compute_field_layout().
10916
10917 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10918
10919         * class.c: ensure enums have always the correct instance size.
10920         * unicode.c: remove wrong assert.
10921
10922 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
10923
10924         * assembly.c: fix mem corruption issue.
10925         * image.h, image.c: added mono_image_get_resource () to access
10926         managed resources.
10927         * icall.c: implemented Assembly.EntryPoint property and some
10928         Managed Resources related internalcalls.
10929
10930
10931 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
10932
10933         * image.c, image.h: impemented mono_image_get_entry_point ().
10934         * appdomain.c: use mono_image_get_entry_point.
10935
10936 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10937
10938         * reflection.c: support the object type argument when loading
10939         custom attributes.
10940
10941 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
10942
10943         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
10944         String as return type.
10945
10946 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
10947
10948         * reflection.c: fix encoding of named args for custom attrs to match
10949         the ms implementation. Read them back when instantiating custom
10950         attributes.
10951
10952 2002-08-02  Radek Doulik  <rodo@ximian.com>
10953
10954         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
10955         by Dietmar as quick fix
10956         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
10957         16 as stack size, used on more places as quick fix before Dietmar
10958         will fix it properly
10959
10960 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
10961
10962         * object.h, object.c: added accessors for fields and properties.
10963
10964 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
10965
10966         * class.c, class.h: made mono_class_get_field_from_name ()
10967         loop on parent types.
10968         Added mono_class_get_property_from_name ().
10969
10970 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
10971
10972         * class.c, class.h: move the code to setup the type vtable in its own
10973         function so that it can be reused also for types created at runtime.
10974         Eliminate the "class" identifier from the header file.
10975         * reflection.c: setup the vtable for enums so that we can create
10976         objects for use in SetConstant ().
10977
10978 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
10979
10980         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
10981         instead of the delegate itself as this pointer (bug #28383)
10982
10983 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
10984
10985         * marshal.c (mono_marshal_get_managed_wrapper): added return type
10986         conversions.
10987
10988 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10989
10990         * loader.c: don't set the pinvoke bit on icalls.
10991
10992 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
10993
10994         * debug-helpers.c (mono_method_full_name): only print a number to
10995         indicate wrapper type (so that the output is more readable in traces).
10996
10997 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
10998
10999         * class.c (mono_class_init): include method override patch from Paolo
11000
11001 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
11002
11003         * icall.c: fixed GetTypeCode().
11004
11005 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
11006
11007         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
11008         use real delegate invoke function to make it work with multicast
11009         delegates (fix bug# 28291).
11010
11011 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
11012
11013         * object.c: load constant strings.
11014
11015 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11016
11017         * reflection.c: no magic numbers.
11018         * tabledefs.h: security action enum.
11019
11020 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
11021
11022         * assembly.c: fix possible memory corruption.
11023
11024 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
11025
11026         * reflection.h, reflection.c: added support for linking resources.
11027         * verify.c: check we have an updated corlib.
11028
11029 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
11030
11031         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
11032         string arrays.
11033         (mono_marshal_string_array): null terminate unmanaged string arrays.
11034         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
11035
11036 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11037
11038         * icall.c: Type.GetType () can now return also types from the
11039         calling assembly.
11040
11041 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
11042
11043         * loader.h, loader.c: stack walking support.
11044         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
11045         GetCallingAssembly.
11046
11047 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
11048
11049         * marshal.c: added optimisations for blittable types 
11050
11051         * class.c (mono_array_class_get): do not set blittable attribute on arrays
11052         (mono_class_setup_mono_type): set blittable attribute for single
11053         and double.
11054
11055         * marshal.c (mono_string_utf8_to_builder): impl.
11056         (mono_string_builder_to_utf8): impl.
11057         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
11058
11059 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
11060
11061         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
11062         (mono_marshal_get_managed_wrapper): impl. byref types
11063
11064 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11065
11066         * icall.c:
11067         (search_method): don't display debug message. 
11068
11069 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
11070
11071         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
11072
11073 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
11074
11075         * appdomain.c: set the missing filename when throwing exception.
11076
11077 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
11078
11079         * metadata.c (mono_type_size): code cleanup
11080         (mono_type_stack_size): removed some test code
11081
11082 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
11083
11084         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
11085         mono_get_exception_file_not_found now.
11086
11087         * exception.c (mono_exception_from_name_two_strings): New version
11088         that will call a constructor with two string arguments. 
11089         (mono_get_exception_file_not_found): New helper routine, used to
11090         report file-not-found errors.
11091
11092 2002-07-20  Dick Porter  <dick@ximian.com>
11093
11094         * process.h:
11095         * process.c: Pass file handles to CreateProcess
11096         
11097         * icall.c:
11098         * file-io.h:
11099         * file-io.c: Implemented CreatePipe
11100
11101 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
11102
11103         * metadata.c (mono_get_param_info): set alignment for value types
11104
11105 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
11106
11107         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
11108         Constify mono_domain_assembly_open().
11109         * loader.c: handle null namespace in icalls.
11110
11111 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
11112
11113         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
11114         (emit_str_to_ptr_conv): marshal object as structs
11115
11116         * metadata.c (mono_type_to_unmanaged): marshal object as structs
11117
11118         * marshal.c (mono_marshal_get_runtime_invoke): support value types
11119
11120 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
11121
11122         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
11123         (mono_marshal_get_native_wrapper): we an now return value types
11124
11125 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11126
11127         * verify.c: more checks implemented.
11128
11129 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
11130
11131         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
11132         (fix bug #27695)
11133         (mono_marshal_get_native_wrapper): allow byref arguments
11134         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
11135         impl. PtrToStringXXX methods
11136         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
11137         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
11138         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
11139         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
11140         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
11141
11142 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
11143
11144         * reflection.c: fix buglet in parsing an assembly name.
11145
11146 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
11147
11148         * marshal.c (emit_ptr_to_str_conv): first impl.
11149
11150 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
11151
11152         * object.c, class.h: cache the vtable in the class as suggested by
11153         vargaz@freemail.hu (Zoltan Varga).
11154
11155 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
11156
11157         * class.h, loader.c: added mono_field_from_token().
11158         * verify.c: first cut of type checking code.
11159
11160 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
11161
11162         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
11163
11164 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
11165
11166         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
11167         (fix bug #27782)
11168         (mono_marshal_get_remoting_invoke): impl.
11169         (mono_delegate_begin_invoke): impl.
11170         (mono_mb_emit_save_args): impl.
11171         (mono_delegate_end_invoke): impl.
11172         (mono_marshal_get_delegate_begin_invoke):
11173         (mono_marshal_get_delegate_end_invoke):
11174         (mono_marshal_get_delegate_invoke): generate a special name for
11175         those methods (including the signature) and associate them whith
11176         the delegate class. 
11177
11178 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
11179
11180         * reflection.[ch]: 
11181         (mono_reflection_type_from_name): now it has a MonoImage parameter
11182         which is used as the default image to search the type in. If the image
11183         is NULL or getting the type from it fails, it defaults to corlib.
11184
11185         * icall.c: changed 1 call to mono_reflection_type_from_name to match
11186         new parameter.
11187
11188 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
11189
11190         * reflection.c: update the parameter table index.
11191
11192 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
11193
11194         * domain.c: don't include the mark byte in the string hash.
11195
11196 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
11197
11198         * icall.cs: icall for Type.GetTypeCode ().
11199         * verify: a couple of fixes and disabled local initialization checks.
11200
11201 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
11202
11203         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
11204
11205         * debug-helpers.c (mono_method_full_name): print the type of the
11206         runtime wrapper
11207
11208         * metadata.c (mono_signature_hash): a hash function for signatures
11209         (mono_signature_hash): better hash algorithm
11210
11211         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
11212
11213         * debug-helpers.c (mono_method_full_name): this can now generate
11214         method names with signatures
11215
11216         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
11217         method dont have this pointers.
11218
11219 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
11220
11221         * reflection.c: fixup typebuilder tokens.
11222         * image.c: fix buglet.
11223         * marshal.h: remove whitespace.
11224         * metadata.h, metadata.c: reinstate code that was removed.
11225         * verify.c: handle catch directives and fix another couple of bugs.
11226
11227 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
11228
11229         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
11230         (mono_marshal_get_native_wrapper): make it comp. with the old code
11231         (mono_marshal_get_native_wrapper): support boolean
11232         (mono_marshal_get_managed_wrapper): support more types
11233
11234 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
11235
11236         * class.c (class_compute_field_layout): compute class->blittable attribute.
11237
11238 2002-07-09  Dick Porter  <dick@ximian.com>
11239
11240         * threads.c: Make the thread cleaning up cope with threads that
11241         call ExitThread()
11242
11243 2002-07-08  Radek Doulik  <rodo@ximian.com>
11244
11245         * reflection.c (method_encode_code): use non-translated values to
11246         compute finally_start, this fixes exception handling on ppc, yay!
11247
11248         * decimal.h (struct signscale): fix endianess
11249
11250 2002-07-07  Radek Doulik  <rodo@ximian.com>
11251
11252         * reflection.c: swap box_val and not val
11253
11254 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
11255
11256         * reflection.c, reflection.h: handle full assembly info in type name.
11257         Handle Type arguments when loading custom attributes.
11258         * icall.c: updated to use new mono_reflection_type_from_name () method.
11259
11260 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11261
11262         * loader.c:
11263         (method_from_memberref): also print assembly name when method not found.
11264
11265 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11266
11267         * icall.c:
11268         (ves_icall_TypeGetProperties): fixed bug #27473. 
11269
11270 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11271
11272         * reflection.c: display image name and token when cannot find the
11273         .ctor for an attribute.
11274
11275 2002-07-05  Martin Baulig  <martin@gnome.org>
11276
11277         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
11278
11279 2002-07-04  Dick Porter  <dick@ximian.com>
11280
11281         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
11282         compile on mingw.  This will cause mingw builds to not wait for
11283         subthreads to terminate after the main thread does.  I've lodged a
11284         bug with the mingw developers for them to wrap OpenThread().
11285
11286 2002-07-03  Dick Porter  <dick@ximian.com>
11287
11288         * threads.c: Store thread IDs instead of handles, because
11289         GetCurrentThread() returns a pseudohandle and therefore stores
11290         useless values.  mono_thread_cleanup() continues checking the
11291         array of threads until it is empty, to cope with subthreads
11292         spawning new threads after the main thread has finished.
11293
11294         * profiler.h:
11295         * profiler.c:
11296         * profiler-private.h: Pass the thread ID to thread profiler
11297         functions, instead of a handle
11298
11299 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
11300
11301         * verify.c: fixes to make it more usable.
11302         * pedump.c: added --verify code to verify IL code in an assembly.
11303
11304 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11305
11306         * reflection.c: turn errors into warnings to allow compiling corlib.
11307
11308 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
11309
11310         * reflection.c: add special cases to compile corlib.
11311
11312 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
11313
11314         * reflection.c: handle properties with only a set method.
11315
11316 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
11317
11318         * opcodes.h: add enum with opcodes in opval order.
11319
11320 2002-07-01  Dick Porter  <dick@ximian.com>
11321         
11322         * object.h:
11323         * object.c (mono_runtime_run_main): Removed unneeded argument
11324
11325 2002-06-28  Martin Baulig  <martin@gnome.org>
11326
11327         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
11328
11329 2002-06-27  Dick Porter  <dick@ximian.com>
11330
11331         * threads.c: Store the handle in both the parent thread and in the
11332         subthread, to minimise the time between starting a new thread and
11333         storing its ID.
11334
11335 2002-06-26  Dick Porter  <dick@ximian.com>
11336
11337         * appdomain.c (mono_runtime_cleanup): Close the socket library
11338         after all the threads have finished, not before
11339
11340 2002-06-26  Martin Baulig  <martin@gnome.org>
11341
11342         * debug-symfile.c (mono_debug_find_source_location): Added
11343         `guint32 *line_number' argument.  If it's not NULL, store the line number
11344         there and return the file name without the line number.
11345
11346 2002-06-25  Dick Porter  <dick@ximian.com>
11347
11348         * icall.c:
11349         * process.h:
11350         * process.c: Process forking and other support functions
11351
11352 2002-06-25  Dick Porter  <dick@ximian.com>
11353
11354         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
11355         things dont happen when the image is closed.
11356         (mono_image_lookup_resource): Walk the resource section looking
11357         for a particular entry
11358
11359         * cil-coff.h: PE resource section decoding
11360
11361 2002-06-25  Dick Porter  <dick@ximian.com>
11362         
11363         * assembly.h:
11364         * assembly.c: 
11365         (mono_assembly_foreach): Accessor functions to walk the list of
11366         loaded assemblies
11367         (mono_assembly_set_main):
11368         (mono_assembly_get_main): Process methods need to know which
11369         assembly is the "main" one
11370
11371         * object.c (mono_runtime_run_main): Record the main assembly
11372
11373         * debug-helpers.c: Fix typo
11374
11375 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
11376
11377         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
11378         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
11379
11380 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
11381
11382         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
11383
11384 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
11385
11386         * image.c (do_mono_image_open): Initialize reference count,
11387         otherwise we leak the MonoImage.
11388
11389 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
11390
11391         * reflection.c: small tweak to handle self-hosting.
11392
11393 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
11394
11395         * reflection.c: fix type name parse code.
11396
11397 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
11398
11399         * reflection.c: break out of the loop.
11400         * image.c: special case corlib.
11401
11402 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11403
11404         * reflection.c: add all the custom attrs at the end to ensure the
11405         ctors have been properly initialized when the attributes are defined
11406         in the current assembly.
11407
11408 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
11409
11410         * reflection.c: handle correctly multiple-nested types.
11411
11412 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
11413
11414         * row-indexes.h: fix typos.
11415         * reflection.c: adjust for typos and fix method_def_or_ref
11416         encoding in MethodImpl table.
11417
11418 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
11419
11420         * reflection.c: fix entry point patching (thanks Serge!).
11421
11422 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
11423
11424         * verify.c: add check for System.Exception
11425
11426 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
11427
11428         * image.c, class.c: minifix for code just c&p'ed.
11429         * reflection.c: warning fix.
11430         * object.h, loader.h, domain.c: load also StringBuilder.
11431
11432 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
11433
11434         * marshal.h, marshal.c: some support code to handle complex marshaling.
11435
11436 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11437
11438         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
11439         Better signatures with vtable error dump.
11440
11441 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
11442
11443         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
11444
11445 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
11446
11447         * icall.c (ves_icall_Type_GetField): impl.
11448
11449 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11450
11451         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
11452         to retrieve a marshal description blob for a field or param.
11453
11454 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
11455
11456         * reflection.h, reflection.c: change order of nested type emission
11457         to avoid table corruption. The NestedTypes table is sorted.
11458         * icall.c: change order of GetConstructor results to workaround mcs bug.
11459
11460 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
11461
11462         * reflection.h, reflection.c: handle field and param marshal
11463         information.
11464
11465 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
11466
11467         * icall.c, marshal.c marshal.h: more Marshal class implementation.
11468
11469 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
11470
11471         * reflection.c: fix call convention.
11472
11473 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
11474
11475         * reflection.h, reflection.c: mono_image_get_memberref_token()
11476         takes a type instead of a class, now. Added
11477         mono_image_get_array_token() to create tokens for the special
11478         multi-dim array methods.
11479
11480 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
11481
11482         * assembly.c: handle modules (no assembly table). Split
11483         loading references in its own function.
11484         * class.c: handle moduleref resolution scope.
11485         * image.c, image.h: cache module name in image.
11486
11487 2002-06-07  Martin Baulig  <martin@gnome.org>
11488
11489         * reflection.c (mono_image_get_type_info): Only add a class layout entry
11490         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
11491
11492 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
11493
11494         * icall.c: more signature fixes that used uint instead of int.
11495
11496 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11497
11498         * reflection.c: fixed signature of field refs.
11499
11500 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11501
11502         * class.c, reflection.c: handle typerefs of nested types
11503         (both on read and when writing files).
11504
11505 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
11506
11507         * icall.c: fix method signatures that tried to workaround the previous
11508         typo, d'oh!
11509
11510 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
11511
11512         * debug-helpers.c: fix typo.
11513
11514 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
11515
11516         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
11517         rewrote the PE/COFF writing code (our programs are understood by the
11518         ms runtime, now).
11519
11520 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
11521
11522         * gc.c, gc.h, icall.c: weakreference support.
11523
11524 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
11525
11526         * Makefile.am, mono-config.c: use $(sysconfdir).
11527
11528 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
11529
11530         * icall.c: changed default precision of Double.ToString() to 15.
11531         Fixed memory leak. Unified with Single.ToString.
11532
11533 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
11534
11535         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
11536
11537 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
11538
11539         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
11540         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
11541         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
11542         and myself.
11543
11544 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11545
11546         * debug-symfile.c, sysmath.c: yet more compilation fixes.
11547
11548 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11549
11550         * reflection.c, socket-io.c: more compilation fixes.
11551
11552 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
11553
11554         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
11555         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
11556         unicode.c: warning and compiler compatibility fixes.
11557
11558 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
11559
11560         * class.h, metadata.c: fixed warnings/compilation errors.
11561
11562 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
11563
11564         * Makefile.am, mono-config.c, mono-config.h: configuration file
11565         support routines.
11566         * loader.c, loader.h: make Dll mapping configurable at runtime in the
11567         config file. Export methods to insert and lookup mappings.
11568
11569 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
11570
11571         * reflection.c: handle types and boxed objects in custom attr
11572         constructors.
11573
11574 2002-05-30  Martin Baulig  <martin@gnome.org>
11575
11576         * debug-symfile.c
11577         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
11578
11579 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
11580
11581         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
11582         to lookup the implmap row for a P/Invoke method.
11583         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
11584         P/Invoke method from the runtime on an as needed basis.
11585
11586 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
11587
11588         * metadata.c (mono_metadata_parse_signature): impl.
11589
11590 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11591
11592         * class.c: handle .pack directive.
11593
11594 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
11595
11596         * object.c: initialize static fields with RVA data.
11597
11598 2002-05-25  Martin Baulig  <martin@gnome.org>
11599
11600         * debug-symfile.c
11601         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
11602
11603 2002-05-24  Martin Baulig  <martin@gnome.org>
11604
11605         * debug-symfile.c
11606         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
11607         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
11608         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
11609
11610 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
11611
11612         * object.c: special case string ctros in invoke.
11613         * gc.c: silly whitespace changes.
11614
11615 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
11616
11617         * threadpool.[ch]: impl. a threadpool that can
11618         be used by mint and mono.
11619
11620 2002-05-22  Martin Baulig  <martin@gnome.org>
11621
11622         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
11623         The first argument is now a `MonoReflectionModuleBuilder *', the return
11624         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
11625         `methods' field to get the method builder.  The `token' argument is the
11626         unfixed token.
11627
11628         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
11629         invalid characters instead of g_assert_not_reached()ing.  This seems
11630         to be the behaviour of mscorlib.
11631
11632 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
11633
11634         * object.c (mono_runtime_invoke_array): applied patch from Rachel
11635         Hestilow to fix bug #25104
11636
11637 2002-05-21  Martin Baulig  <martin@gnome.org>
11638
11639         * debug-symfile.c (mono_debug_find_source_location): New function.
11640         Looks up an IL offset in the line number table and returns the source
11641         location as a string.
11642
11643 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11644
11645         * icall.c:
11646         (mono_double_ToStringImpl): changed %f by %g until we have something
11647         better.
11648
11649 2002-05-21  Nick Drochak  <ndrochak@gol.com>
11650
11651         * icall.c : Use different name for Math.Pow's icall.  Needed to check
11652         parameters first in C#.
11653
11654 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11655
11656         * icall.c, reflection.h: added icall to get info about an event.
11657
11658 2002-05-20  Radek Doulik  <rodo@ximian.com>
11659
11660         * object.c (mono_value_box): don't use memcpy for boxing on BIG
11661         endian
11662         (mono_value_box): don't use memcpy for small sizes on
11663         architectures with unaligned access
11664
11665 2002-05-20  Martin Baulig  <martin@gnome.org>
11666
11667         * reflection.c (mono_reflection_setup_internal_class): Don't crash
11668         if `tb->parent == NULL'.
11669         (mono_reflection_create_internal_class): New function.  This is
11670         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
11671         for enum types.
11672
11673         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
11674         New interncall.
11675
11676 2002-05-19  Martin Baulig  <martin@gnome.org>
11677
11678         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
11679         argument to get the length, don't default to the array length.
11680
11681 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
11682
11683         * assembly.c (mono_assembly_setrootdir): New function used to
11684         override the MONO_ASSEMBLIES directory.
11685
11686 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
11687
11688         * icall.c: ValueType_GetHashCode() initialize local var.
11689
11690 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
11691
11692         * reflection.c: sort custom attributes table.
11693
11694 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
11695
11696         * reflection.c: support named args in custom attributes (write support).
11697
11698 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
11699
11700         * reflection.c: fix finally position calculation.
11701
11702 2002-05-15  Radek Doulik  <rodo@ximian.com>
11703
11704         * reflection.c: fixed endianess at many places
11705
11706         * icall.c (ves_icall_InitializeArray): comment out debug msg
11707
11708 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
11709
11710         * object.c (mono_unhandled_exception): new function to handle
11711         unhandled exceptions.
11712         (mono_unhandled_exception): call the UnhandledException event.
11713         (mono_runtime_delegate_invoke): impl.
11714
11715 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
11716
11717         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
11718         returns the RVA, not the direct pointer to the data. Handle the case
11719         when the class size is fixed.
11720
11721 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
11722
11723         * reflection.c: fix some endianess issues.
11724
11725 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
11726
11727         * object.c (mono_runtime_invoke): is now able to catch exceptions.
11728
11729         * threads.c (mono_thread_init): added a callback which is invoked
11730         at thread start.
11731
11732 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
11733         
11734         * icall.c: make GetHashCode return non-negative values.
11735
11736 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
11737
11738         * object.c, icall.c, gc.c: revert to address-based hashcode.
11739
11740 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
11741
11742         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
11743
11744 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
11745
11746         * icall.c, class.c: special case <Module>.
11747
11748 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
11749
11750         * icall.c: fix bug in GetNow().
11751
11752 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
11753
11754         * object.c (mono_runtime_class_init): make sure that we call all
11755         static class constructors.
11756
11757 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
11758
11759         * reflection.c: sort methodsemantics table.
11760
11761 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
11762
11763         * reflection.h, reflection.c: honour init locals setting.
11764
11765 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
11766
11767         * icall.c: copied Double ToStringImpl for Single ToStringImpl
11768
11769 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
11770
11771         * reflection.c: support ContructorBuilders in attribute blob creation.
11772
11773 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11774
11775         * reflection.c: some changes to build a binary that can be run
11776         directly in windows.
11777
11778 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
11779
11780         * loader.c: print a big message when an icall can't be found.
11781
11782 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11783
11784         * string-icalls.c: fix bug 24248.
11785
11786 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
11787
11788         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
11789         icall.c, reflection.h: separate assembly loading by pathname and by
11790         assembly name. Use the MONO_PATH env var to search for assemblies.
11791
11792 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
11793
11794         * assembly.c, image.h: add some support for assemblies
11795         with multiple modules.
11796         * class.c, class.h: export mono_class_from_typeref().
11797         * loader.c: remove duplicated code and use mono_class_from_typeref(),
11798         instead.
11799
11800 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
11801
11802         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
11803         documentation says (the ECMA one is correct).
11804
11805 2002-05-02  Dick Porter  <dick@ximian.com>
11806
11807         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
11808         Don't name the synchronisation mutex.
11809
11810 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
11811
11812         * rand.c
11813         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
11814         Make the prototypes match.
11815         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
11816         Same.
11817
11818         * icall.c
11819         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
11820         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
11821         all systems have tm.tm_zone, so use strftime() with %Z to print
11822         the timezone abreviation into a temp string.
11823
11824         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
11825         rather than mono_array_addr() on a MonoString on Big Endian
11826         machines.
11827
11828 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
11829
11830         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
11831         fix bug 24041
11832
11833 2002-04-30  Dick Porter  <dick@ximian.com>
11834
11835         * socket-io.c: Cope with SOCKET being an integer rather than a
11836         pointer now.
11837
11838         * threads.c: Added Thread_free_internal, to deal with thread
11839         handle cleanup.  Moved calls to handle_store() and handle_remove()
11840         to start_wrapper(), so each can only be called once.  Allocate
11841         synchronisation blocks with GC_malloc(), and use GC finalisation
11842         to close the handles.
11843
11844         * icall.c: added System.Threading.Thread::Thread_free_internal
11845
11846 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
11847
11848         * icall.c: support Environment.Exit, CommandLineArgs().
11849
11850 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
11851
11852         * object.c, object.h: added mono_runtime_run_main () and
11853         mono_runtime_get_main_args () for use in System.Environment.
11854
11855 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
11856
11857         * gc.c: fix thinko, enable actual finalization since the jit is now
11858         fixed.
11859
11860 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
11861
11862         * gc.c, object.c: take into account that an object may be offset wrt the address
11863         returned by GC_malloc().
11864
11865 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
11866
11867         * image.c: handle files without entries in the assembly table (modules).
11868
11869 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
11870
11871         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
11872         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
11873         allowed to be null when it's System.Object class setup.
11874
11875 2002-04-27  Martin Baulig  <martin@gnome.org>
11876
11877         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
11878         if `tb->parent == NULL' rather than crashing.
11879
11880 2002-04-28  Nick Drochak  <ndrochak@gol.com>
11881
11882         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
11883         calling acos() where asin() should have been called.
11884
11885 2002-04-26  Martin Baulig  <martin@gnome.org>
11886
11887         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
11888         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
11889         there's a subdirectory called `System', but we don't want to read that
11890         subdirectory as an assembly.
11891
11892 2002-04-25  Martin Baulig  <martin@gnome.org>
11893
11894         * debug-symfile.c: Reflect latest MonoString changes.
11895
11896 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
11897
11898         * rand.c, rand.h: instance method icalls need to have an explicit
11899         this pointer as first argument in the C implementation.
11900
11901 2002-04-25  Nick Drochak <ndrochak@gol.com>
11902
11903         * icall.c: Fix typo in map for GetNonZeroBytes
11904
11905 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11906
11907         * string-icalls.c : String does now passes unit tests without any 
11908         errors, the following changes has been made:
11909         
11910         Implemented replace methods.
11911         Renaming of methods to (try) follow the standard.
11912         Fixed compare ordinal
11913         Made all memory allocated directly to function instead of via icall function.
11914         Small performance fix in is_in_array function
11915                         
11916  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
11917
11918         c (mono_string_Internal_ctor_charp_int_int):
11919         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
11920         sindex < 0, throw ArgumentOutOfRangeException instead of
11921         ArgumentNullException.
11922
11923         Added new check for length == 0, however
11924         I need to make it return String.Empty from the C code.
11925         
11926         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
11927         that calculate the length for us here.
11928         
11929         (mono_string_Internal_ctor_sbytep_int_int): Replaced
11930         mono_string_new_utf16 with mono_string_new, since value is utf8.
11931
11932 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
11933
11934         * object.c: register the object for finalization if needed.
11935         Allocate one more char in the string for the terminating 0 char.
11936
11937 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
11938
11939         * class.c, class.h, image.c: check if a type implemenst a destructor.
11940         Use the proper key for array class lookups.
11941         * icall.c: register the icalls in the System.GC class.
11942         * gc.c, gc.h: GC-related functions and icalls.
11943
11944 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11945
11946         * icall.c:
11947         * socket-io.c:
11948         * unicode.c: free some strings gotten from mono_string_to_utf8 and
11949         changed a couple of free () by g_free ().
11950
11951         * decimal.c: one-liner in the comments for decimal2string ().
11952
11953 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11954
11955         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
11956
11957 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
11958
11959         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
11960         * object.c (mono_runtime_invoke_array) : handle null in params
11961
11962 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11963
11964         * string-icalls.c: fixed bug in split (one off bug)
11965
11966 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11967
11968         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
11969         * icalls.c: added String::Equals as internal method
11970
11971 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
11972
11973         * threads.c: fixed bug in the double interlocked functions
11974
11975 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
11976
11977         * threads.c: implemented all of the new interlocked icalls.
11978         * string-icalls.c: fix a bug in insert.
11979         * icalls.c: added the icalls for interlocked, removed old string functions.
11980         
11981 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
11982
11983         * loader.c: fix off-by-one error when reading argument names.
11984
11985 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
11986
11987         * profiler.c: win32 counter implementation (untested).
11988         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
11989         (the latter needs testing and more complete impl. from win32 folks).
11990
11991 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
11992
11993         * object.c: mono_array_new_full workaround mono_array_class_get
11994         problem.
11995
11996 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
11997
11998         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
11999         * object.h (mono_string_chars): Changed casting type.
12000
12001 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
12002
12003         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
12004                            method signatures to use gunichar2 instead of gint16.
12005
12006 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
12007
12008         * object.h, object.c: domain-specific versions of mono_object_new and
12009         mono_array_new.
12010
12011 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
12012
12013         * object.c: changed String layout
12014
12015         * string-icalls.c (mono_string_Internal_ctor_chara): added
12016         internal string constructors.
12017
12018 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
12019
12020         * threads.c: pass 'this' to the thread start routine.
12021
12022 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12023
12024         * string-icalls.c: fix IndexOf and LastIndexOf. Now
12025         InternalCompareStr don't call twice mono_string_cmp_char for the last
12026         character. Improved performance in mono_string_cmp_char.
12027
12028 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
12029
12030         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
12031         code into its own library: libmonoruntime.
12032
12033 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
12034
12035         * object.h, object.c: changed array format so that szarrays do not
12036         require a bounds structure.
12037         * icall.c, appdomain.c: support for new szarray format.
12038
12039 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
12040
12041         * metadata.c: compare also the retuns type when comparing signatures:
12042         we didn't do this as an optimization since really overloaded methods
12043         must differ also in the arguments, but this doesn't work with
12044         low-level IL code (or when using explicit conversion operators: see
12045         bug#23498 for an example).
12046
12047 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
12048
12049         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
12050
12051 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
12052
12053         * icall.c: make MonoType::GetElementType its own icall.
12054
12055 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
12056
12057         * icall.c: remove MonoMethod_get_Name().
12058         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
12059         object.
12060
12061 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
12062
12063         * string-icalls.c: optimized a few methods.
12064
12065 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
12066
12067         * icall.c: added all new string internal calls
12068         * string-icalls.c: added, new string internal call implementation.
12069         * object.c: added mono_string_new_size for allocating a string a size
12070
12071 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
12072
12073         * object.c (mono_object_isinst): use the same code as in the
12074         optimized x86 version.
12075
12076 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
12077
12078         * profiler.c: TSC-based timer code (faster and more accurate).
12079         Not hooked up in configure, yet (set USE_X86TSC to 1).
12080
12081 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
12082
12083         * profiler.c, profiler.h: track time spent compiling methods.
12084         * threads.c: track thread creation/destruction.
12085
12086 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
12087
12088         * profiler.c, profiler.h, profiler-private.h: profiling interface
12089         and sample implementation. Moved here so that it can be used also by
12090         the jit.
12091
12092 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
12093
12094         * reflection.c, reflection.h: keep types and other handles separate in
12095         the hash tables for referred tokens. Add guid for modules.
12096
12097 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
12098
12099         * assembly.c: fix bugs found with valgrind.
12100         * metadata.h, metadata.c: added mono_metadata_guid_heap().
12101
12102 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
12103
12104         * threads: added icall support for getting current domain for
12105                    the thread.
12106  
12107 2002-04-13  Martin Baulig  <martin@gnome.org>
12108
12109         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
12110         (MonoDebugVarInfo): Added `index' field for register based addresses.
12111         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
12112         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
12113         `MonoDebugVarInfo *params' and `guint32 this_offset' with
12114         `MonoDebugVarInfo *this_var'.
12115
12116         * debug-symfile.c (relocate_variable): New static function to write
12117         a location description for a local variable or method parameter.
12118
12119 2002-04-12  Martin Baulig  <martin@gnome.org>
12120
12121         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
12122         stack offset and begin/end scope address of a local variable.
12123         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
12124         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
12125         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
12126
12127         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
12128         Added new relocation types for start/end scope of a local variable.
12129
12130 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
12131
12132         * object.h: add mono_object_domain() macro.
12133         * reflection.c: handle typespecs.
12134         * icall.c: MonoMethod::get_Name() implementation.
12135
12136 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
12137
12138         * icall.c: String::GetHashCode() icall implementation.
12139
12140 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
12141
12142         * icall.c: String::IndexOfAny icall.
12143         * object.c, object.h: make array->max_length more useful.
12144         Intrduced mono_object_class() and mono_string_length() macros.
12145
12146 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12147
12148         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
12149         instead of g_unichar_isdigit.
12150
12151 2002-04-11  Nick Drochak  <ndrochak@gol.com>
12152
12153         * icall.c: Implement a simple Double.ToString().
12154
12155 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
12156
12157         * appdomain.h: only io-layer.h is supposed to be included.
12158         * icall.c: explicitly import environ. Fix warning.
12159
12160 2002-04-10  Nick Drochak  <ndrochak@gol.com>
12161
12162         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
12163                 return true even if it's not Daylight Savings time.
12164                 Only return false for the case where the function isn't
12165                 implemented for a plaform (read Windows).
12166
12167 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
12168
12169         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
12170         data with a mutex.
12171
12172 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
12173
12174         * mempool.c (mono_mempool_alloc): only use g_malloc when
12175         absolutely necessary.
12176
12177 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
12178
12179         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
12180
12181         * class.c (mono_class_vtable): use domain mempool to allocate vtable
12182         (mono_class_proxy_vtable): use domain mempool
12183
12184 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
12185
12186         * appdomain.h, appdomain.c: split initialization that requires the
12187         execution engine support into mono_runtime_init().
12188
12189 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
12190
12191         * class.c (mono_class_init): don't include vtable inside MonoClass
12192         to save some memory, gather some statistics.
12193         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
12194
12195 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
12196
12197         * icall.c: internalcall implementation for ValueType.Equals().
12198
12199 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
12200
12201         * object.c (mono_message_init): moved 
12202         (mono_runtime_exec_main): new arch. independent impl.
12203         (mono_runtime_invoke_array): new method - like
12204         mono_runtime_invoke, but you can pass an array of objects.
12205         (mono_remoting_invoke): new arch. independent impl.
12206         (mono_message_invoke): new arch. independent impl.
12207         (mono_runtime_class_init): new arch. independent impl.
12208         (mono_runtime_object_init): new arch. independent impl.
12209
12210 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
12211
12212         * metadata.c, object.c, reflection.c: documented the exported
12213         functions.
12214
12215 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
12216
12217         * icall.c: simpler code to pass the assembly builder data to corlib.
12218         Implement GetNestedTypes() internalcall.
12219
12220 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
12221
12222         * class.c: warn if a type can't be loaded.
12223
12224 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
12225
12226         * image.h: typedef MonoImageOpenStatus
12227         * types.h: removed unused file
12228         
12229 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
12230
12231         * icall.c: Enum_ToObject accepts enum value arguments.
12232
12233 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
12234
12235         * class.c: move initialization of properties, events and nested
12236         classes, so that they happen for interfaces, too.
12237
12238 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
12239
12240         * icall.c: cleanup some ugly casts in Array_SetValue*.
12241
12242 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
12243
12244         * icall.c: the values array fro enums is of the correct type, now.
12245         Implement (correctly) getFullName instead of assQualifiedName for
12246         MonoType.
12247         * reflection.h, reflection.c: added mono_type_get_name ().
12248
12249 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
12250
12251         * assembly.c, image.h: for each MonoImage, record from wich assembly
12252         it was loaded.
12253         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
12254         Make Type.Assembly work.
12255
12256 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
12257
12258         * debug-symfile.h: use char* instead of gpointer to avoid
12259         unnecessary casts.
12260
12261         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
12262
12263         * icall.c (ves_icall_InternalExecute): impl. FielSetter
12264         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
12265
12266 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
12267
12268         * icall.c (mono_message_init): impl. (code cleanup)
12269         (ves_icall_InternalExecute): impl. FieldGetter
12270
12271         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
12272         defined we call all (non-static)methods through the vtable. 
12273
12274 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
12275
12276         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
12277         finalizer even though the memory is still referenced (and the chunk of
12278         memory is not freed).
12279
12280 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
12281
12282         * assembly.c: fix brokeness.
12283
12284 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
12285
12286         * class.c: kill some warnings. Check explicit interface method
12287         implementation also without considering the namespace.
12288         Load also literal strings in static class data.
12289
12290 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
12291
12292         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
12293         (default_assembly_name_resolver): Make the resolver take the
12294         "base" directory where the assembly was originally defined, so we
12295         can load DLLs that are in the same directory as the assembly that
12296         is being referenced.
12297
12298 2002-03-28  Dick Porter  <dick@ximian.com>
12299
12300         * file-io.h: 
12301         * file-io.c:
12302         * socket-io.c: 
12303         * unicode.h: 
12304         * unicode.c: Warning cleanups
12305
12306 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
12307
12308         * object.h, reflection.h: use the correct type instead of MonoObject.
12309
12310 2002-03-28  Martin Baulig  <martin@gnome.org>
12311
12312         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
12313         (mono_debug_update_symbol_file): Initialize classes if necessary.
12314
12315 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
12316
12317         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
12318         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
12319
12320 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
12321
12322         * assembly.h: fix function prototype.
12323         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
12324         * mono-endian.h: use const cast.
12325
12326 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
12327
12328         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
12329
12330 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
12331
12332         * loader.c: don't assert when a typeref can't be loaded, give
12333         a chance to the runtime to trow an exception instead.
12334         * loader.h: fix warning.
12335
12336 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
12337
12338         * class.c (mono_class_proxy_vtable): added proxy support
12339
12340 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
12341
12342         * icall.c: removed last of PAL calls, added System.Environment
12343         * file-io.h, file-io.c: MonoIO implementation
12344         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
12345
12346 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
12347
12348         * appdomain.c: do not use the byte marker in ldstr table lookup.
12349         * debug-helpers.c: allow two ':' to separate class and method name.
12350         * object.c: allocate arrays bounds with the GC, too.
12351         * verify: add a few more checks.
12352
12353 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
12354
12355         * reflection.c: output also literal strings. Allocate parameter data
12356         with GC_malloc() (thanks, Martin, for catching this!).
12357
12358 2002-03-26  Martin Baulig  <martin@gnome.org>
12359
12360         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
12361         include the `this' offset in the `param_offsets'.
12362
12363 2002-03-25  Martin Baulig  <martin@gnome.org>
12364
12365         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
12366         mono_debug_get_class() function to get the classes. Added new
12367         relocation types for arrays and strings.
12368         (mono_debug_get_class): New static function to search in all
12369         referenced assemblies for a metadata token.
12370
12371         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
12372
12373 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
12374
12375         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
12376         hold gc-allocated objects. Make the string heap a stream like the
12377         others. Removed duplicated code when writing stream info.
12378         Added asserts to catch possible buffer overflows. Set the sorted map
12379         for tables that need sorting. Added some documentation.
12380
12381 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
12382
12383         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
12384         for interned strings and vtables.
12385
12386 2002-03-24  Martin Baulig  <martin@gnome.org>
12387
12388         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
12389         it in the array since it was created with g_slist_prepend().
12390
12391 2002-03-24  Martin Baulig  <martin@gnome.org>
12392
12393         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
12394         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
12395         (mono_debug_method_from_token): Renamed to
12396         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
12397         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
12398
12399         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
12400         relocation types.
12401
12402         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
12403
12404 2002-03-24  Martin Baulig  <martin@gnome.org>
12405
12406         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
12407         (mono_debug_method_from_token): New func.
12408
12409         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
12410         New interncall, calls mono_debug_local_type_from_signature().
12411         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
12412         calls mono_debug_method_from_token().
12413
12414 2002-03-23  Martin Baulig  <martin@gnome.org>
12415
12416         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
12417         specifies the number of bytes to be converted, not the array size.
12418         Return the number of chars, not the number of bytes.
12419         (ves_icall_iconv_get_chars): The `byteCount' argument
12420         specifies the number of bytes to be converted, not the array size.
12421
12422 2002-03-23  Martin Baulig  <martin@gnome.org>
12423
12424         * reflection.h (MonoReflectionSigHelper): New type.
12425
12426         * reflection.c (mono_reflection_sighelper_get_signature_local),
12427         (mono_reflection_sighelper_get_signature_local): New functions.
12428
12429         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
12430         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
12431         interncalls.
12432
12433 2002-03-23  Martin Baulig  <martin@gnome.org>
12434
12435         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
12436         is_writeable is set.
12437         (mono_raw_buffer_update): New function to write the modified map
12438         back to disk.
12439
12440         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
12441
12442         * debug-symfile.c (mono_debug_update_symbol_file): Call
12443         mono_raw_buffer_update() when done writing.
12444
12445 2002-03-23  Martin Baulig  <martin@gnome.org>
12446
12447         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
12448
12449         * debug-symfile.c: Added support for arguments and local variables.
12450
12451 2002-03-23  Dick Porter  <dick@ximian.com>
12452
12453         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
12454         protected by ifdefs, hence breaking the w32 build.
12455
12456 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12457
12458         * object.c: implement is_interned() the right way.
12459
12460 2002-03-21  Martin Baulig  <martin@gnome.org>
12461
12462         * debug-symfile.[ch]: New files to handle debugging information
12463         files. There's also support to dynamically update these symbol
12464         files to include machine dependent information.
12465
12466 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
12467
12468         * threads.c (mono_thread_create): new function to create thread
12469         from C
12470
12471 2002-03-20  Martin Baulig  <martin@gnome.org>
12472
12473         * icall.c (ves_icall_InternalInvoke): Create a new object if the
12474         method is a constructor.
12475         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
12476         points to ves_icall_InternalInvoke().
12477
12478 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
12479
12480         * file-io.c: Flush shouldn't throw exceptions.
12481
12482 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
12483
12484         * file-io.c: FileStream flush support; FileSetLength now
12485         restores file pointer.
12486
12487 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
12488
12489         * class.c: set image for pointer classes.
12490
12491 2002/03/19  Nick Drochak <ndrochak@gol.com>
12492
12493         * sysmath.c: Forgot one.
12494
12495 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
12496
12497         * sysmath.c: Avoid redefining existing names.
12498
12499 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
12500
12501         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
12502         handled by runtime as icall rather than dllimport from libm.so
12503         * file-io.c, file-io.h: fixed handle argument type.
12504
12505 2002-03-18  Dick Porter  <dick@ximian.com>
12506
12507         * reflection.c (mono_image_get_type_info): rename interface to
12508         iface, because of "#define interface struct" on windows.
12509
12510 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
12511
12512         * class.c, class.h: rename and export mono_ptr_class_get().
12513         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
12514         * reflection.c, reflection.h, icall.c: better/saner type name
12515         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
12516         method signatures.
12517
12518 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
12519
12520         * class.c (mono_class_init): removed hardcoded GHC_SLOT
12521
12522         * icall.c (ves_icall_InternalInvoke): impl.
12523
12524 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
12525
12526         * reflection.c: output the interface map table, too.
12527
12528 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
12529
12530         * class.c (class_compute_field_layout): separate computation of 
12531         static field layout
12532
12533 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
12534
12535         * icall.c: added System.Buffer support.
12536         * file-io.c: moved file icalls from PAL to FileStream.
12537
12538 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
12539
12540         * icall.c (ves_icall_System_Object_GetHashCode): impl.
12541
12542 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
12543
12544         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
12545
12546 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
12547
12548         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
12549
12550 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
12551
12552         * debug-helpers.{c,h}: moved here from monograph some useful functions
12553         to locate a method by name/signature in a class or image. Included
12554         also a small and flexible IL disassembler.
12555
12556 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
12557
12558         * reflection.c: fixup tokens in methods with small header size, too.
12559
12560 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
12561
12562         * object.c (mono_string_to_utf8): remove assert(!error), instead
12563         print a warning. 
12564
12565 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
12566
12567         * icall.c: update to the new mono_Array_class_get interface.
12568
12569 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
12570
12571         * appdomain.c, object.c: Boehm-GC enable.
12572         * icall.c: make get_data_chunk() support split data requests.
12573         Ensure a class is initialized in more cases. Return only the first
12574         property found in GetProperties() or the compiler gets confused. 
12575         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
12576         * reflection.h, reflection.c: add fixup mechanism for field and method
12577         tokens. Initialize assembly->typeref in a single place. Output
12578         properties after events. Support custom attributes for events, too.
12579         Typo fix for paramter custom attrs.
12580
12581 2002-03-07  Martin Baulig  <martin@gnome.org>
12582
12583         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
12584
12585 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
12586
12587         * class.c (mono_array_class_get): fix. for multi. dim. arrays
12588
12589 2002-03-06  Martin Baulig  <martin@gnome.org>
12590
12591         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
12592         non-zero lower bounds. See testcases #F10-#F13.
12593
12594 2002-03-05  Martin Baulig  <martin@gnome.org>
12595
12596         * exception.c (mono_get_exception_argument_out_of_range): New exception.
12597
12598         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
12599         ves_icall_System_Array_GetValue(), only calculate the absolute array position
12600         here.
12601         (ves_icall_System_Array_SetValue): Likewise.
12602         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
12603         as argument and does the actual work. This function is used when copying a
12604         multi-dimensional array.
12605         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
12606         now do all the widening conversions of value types.
12607         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
12608
12609 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12610
12611         * class.c: remove some magic numbers and use the smbolic names,
12612         instead. Added init_events() to load event info at class init time.
12613         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
12614         and mono_metadata_methods_from_event().
12615         * reflection.h, reflection.c: added support for writing out the evnets
12616         related information.
12617
12618 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
12619
12620         * reflection.h, icall.c: use a different method (GetInterfaces)
12621         to gather interface info and add isbyref, isprimitive and
12622         ispointer to the ves_icall_get_type_info() return value.
12623
12624 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
12625
12626         * class.h: stared adding support for events.
12627         * icall.c: split find_members implementation. Added debug icall to get
12628         the address of an object.
12629         * reflection.c: handle TypeBuilders in mono_type_get_object().
12630
12631 2002-03-01  Martin Baulig  <martin@gnome.org>
12632
12633         * icall.c (ves_icall_System_Array_GetLength): This must throw an
12634         ArgumentOutOfRangeException(), not an ArgumentException().
12635         (ves_icall_System_Array_GetLowerBound): Likewise.
12636         (ves_icall_System_Array_GetValue): Improved argument checking.
12637         (ves_icall_System_Array_SetValue): Improved argument checking.
12638
12639 2002-03-01  Martin Baulig  <martin@gnome.org>
12640
12641         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
12642         called with invalid arguments rather than just dying with g_assert().
12643         (ves_icall_System_Array_SetValue): Likewise.
12644         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
12645         raise a NotImplementedException instead.
12646         (ves_icall_System_Array_GetLength): Added argument checking.
12647         (ves_icall_System_Array_GetLowerBound): Added argument checking.
12648
12649 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
12650
12651         * object.h (mono_assert): new macros mono_assert and
12652         mono_assert_not_reached
12653
12654 2002-02-28  Martin Baulig  <martin@gnome.org>
12655
12656         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
12657         and "System::String::IsInterned" to "System::String::_IsInterned".
12658
12659 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
12660
12661         * icall.c: remove hacks for typebuilder. Added icall to create a
12662         modified type from a tybebuilder.
12663         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
12664         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
12665         to create a backing MonoClass for a TypeBuilder.
12666
12667 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12668
12669         * class.c, class.h: more refactoring of class init.
12670         Export mono_class_setup_mono_type() and mono_class_setup_parent().
12671
12672 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
12673
12674         * marshal.c, marshal.h: start of marshaling interface.
12675
12676 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
12677
12678         * icall.c: fix order in assembly qualified name icall.
12679
12680 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
12681
12682         * class.c: do not free str, since we store it in the hash table.
12683         * reflection.h: add label field to MonoILExceptionInfo.
12684         * reflection.c: handle references to more than one assembly. Handle
12685         case when there isn't a module created in the assembly.
12686
12687 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
12688
12689         * class.c: Fix typo. Start refactoring of class init code.
12690
12691 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
12692
12693         * appdomain.c: exit with 1 on error.
12694         * class.c: we already have the name in MonoClassField.
12695         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
12696         MonoStreamHeader instead of an offset of image->raw_metadata.
12697
12698 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
12699
12700         * appdomain.c (mono_init): Be even more descriptive about the error.
12701
12702 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
12703
12704         * appdomain.c: give the user an informative message when corlib can't
12705         be loaded.
12706
12707 2002-02-26  Martin Baulig  <martin@gnome.org>
12708
12709         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
12710         New icall to get the time zone data.
12711
12712 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12713
12714         * reflection.c: set virtual and raw size of section correctly.
12715         * threads.c: transfer domain information to newly created threads.
12716
12717 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
12718
12719         * class.c: when instancing a class in a domain, load the default
12720         vaules for static fields from the constant table. Fix System.Enum to
12721         not be an enum.
12722         * icall.c: implement Object::GetType() internalcall. Implemented
12723         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
12724         Fixed checking of binding flags in find_members().
12725         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
12726         * reflection.c: handle enumerations when writing to the constant
12727         table. Use a different object cache for types.
12728
12729
12730 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
12731
12732         * object.c (mono_object_isinst): fix for arrays
12733
12734         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
12735
12736 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
12737
12738         * object.c: don't use mprotect ()  and fix intern pool hash table
12739         lookup for big endian systems.
12740
12741 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
12742
12743         * icall.c: change type_is_subtype_of () signature.
12744
12745 2002-02-21  Mark Crichton  <crichton@gimp.org>
12746
12747         * rand.c, rand.h: Added random number generator for
12748         System.Security.Cryptography classes.
12749
12750         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
12751
12752         * icall.c: Added System.Security.Cryptography calls.
12753
12754 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
12755
12756         * class.c, icall.c, metadata.c: better support for pointer types.
12757         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
12758         * reflection.c: Add support for getting custom attrs for properties
12759         and simplify some code.
12760
12761 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
12762
12763         * icall.c: change getToken () and add custom attribute GetBlob()helper
12764         method.
12765         * reflection.h: add custom attrs array to the reflection builder structures.
12766         * reflection.c: encode and emit custom attributes for all the relevant
12767         reflection objects. Cache fieldref and methodref tokens. Change
12768         mono_image_create_token() interface to take a MonoDynamicAssembly.
12769         More complete custom attributes decoder. Load custom attributes for
12770         Assembly, Field, Method and Constructor objects, too. Make the
12771         returned array an Attribute[] one, not object[]. Added
12772         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
12773         custom attribute constructor.
12774
12775 2002-02-20  Dick Porter  <dick@ximian.com>
12776
12777         * icall.c:
12778         * rawbuffer.c:
12779         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
12780         problem code out for now).
12781
12782 2002-02-19  Radek Doulik  <rodo@ximian.com>
12783
12784         * object.c (mono_ldstr): use hash table to avoid multiple swapping
12785
12786 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
12787
12788         * icall.c: register the GetCustomAttributes method.
12789         * object.c, object.h: add mono_string_new_len ().
12790         * reflection.h, reflection.c: added mono_runtime_invoke(),
12791         mono_install_runtime_invoke(). Added
12792         mono_reflection_get_custom_attrs () to load custom attributes and
12793         create the attribute objects.
12794
12795 2002-02-19  Dick Porter  <dick@ximian.com>
12796         * threads-dummy-types.c:
12797         * threads-dummy-types.h:
12798         * threads-dummy.c:
12799         * threads-dummy.h:
12800         * threads-pthread-types.c:
12801         * threads-pthread-types.h:
12802         * threads-pthread.c:
12803         * threads-pthread.h:  Deleted obsolete files
12804
12805 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
12806
12807         * class.c (mono_class_vtable): runtime init the class when we
12808         allocate static class data.
12809
12810         * icall.c (ves_icall_System_Array_SetValue): check for null values.
12811
12812         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
12813         and String - but we will need generic marshalling support in the
12814         future. 
12815         (mono_init): set the domain name in a ms compatible way
12816
12817         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
12818         String[].
12819
12820 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
12821
12822         * object.c (mono_array_clone): use alloca() instead of g_malloc  
12823         for sizes
12824
12825         * appdomain.c (mono_domain_unload): impl.
12826
12827 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
12828
12829         * appdomain.c, object.c: fix intern pool implementation.
12830         * class.c: fix alignment code.
12831
12832 2002-02-16  Radek Doulik  <rodo@ximian.com>
12833
12834         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
12835         and s2 > s1, just copy lower bytes to be compatible with little
12836         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
12837         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
12838
12839         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
12840         force big_endian to be 1 for big endian machines 
12841         (ves_icall_iconv_new_decoder): ditto
12842
12843 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
12844
12845         * socket-io.c (convert_sockopt_level_and_name): If the system
12846         doesn't define SOL_IP or SOL_TCP, get them by hand using
12847         getprotobyname() and caching the values (because this could be a
12848         slow operation).
12849         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
12850         Use the appropriate struct when the system does support it. Ie,
12851         not all systems have struct ip_mreqn so use struct ip_mreq when
12852         appropriate.
12853
12854 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
12855
12856         * reflection.c: handle finally clauses.
12857
12858 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
12859
12860         * socket-io.c: use g_snprintf() instead of snprintf.
12861
12862 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
12863
12864         * reflection.c (mono_param_get_objects): Cast second argument to
12865         mono_method_get_param_names to a const char** to silence the
12866         compiler warning.
12867
12868         * appdomain.c (mono_domain_assembly_open): Put parens around the
12869         truth statement in the for-loop.
12870
12871         * unicode.c (iconv_convert): Got rid of a compiler warning about
12872         int i being unused when the system has a new iconv.
12873         (iconv_get_length): Same.
12874
12875         * image.c (load_class_names): Cast the second argument to
12876         g_hash_table_insert() to char* to hush compiler warnings about the
12877         arg being a const.
12878         (mono_image_open): Same here.
12879
12880         * socket-io.c: Don't conditionally include sys/filio.h or
12881         sys/sockio.h here anymore since we now get them from
12882         io-layer/io-layer.h
12883         (inet_pton): If the system doesn't support inet_aton, implement
12884         using inet_addr and also #define INADDR_NONE if it isn't defined
12885         by the system.
12886
12887 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
12888
12889         * metadata.c, metadata.h: added function to get packing and size info
12890         of a typedef.
12891         * reflection.h, reflection.c: handle field RVA data. Save info about
12892         the table layout if needed. Assign typedef indexes to all the types
12893         before dumping the info about them to avoid forward reference problems.
12894
12895 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
12896
12897         * socket-io.c (convert_sockopt_level_and_name): ifdef
12898         SO_ACCEPTCONN because it is not defined on my system (old debian)
12899
12900 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
12901
12902         * opcode.c: use stddef.h to get NULL.
12903
12904 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
12905
12906         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
12907         for FIONBIO, FIONREAD and SIOCATMARK.
12908         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
12909         define INADDR_NONE and besides, inet_addr() is deprecated and
12910         should not be used. Use inet_pton() instead - it also has the
12911         added bonus that it can easily handle IPv6 addresses as well.
12912         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
12913
12914 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
12915
12916         * decimal.c: remove _MSC_VER conditional.
12917
12918 2002-02-13  Dick Porter  <dick@ximian.com>
12919
12920         * socket-io.c: 
12921         * icall.c: Internal calls for Blocking, Select, Shutdown,
12922         GetSocketOption and SetSocketOption
12923
12924 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12925
12926         * assembly.cs: better resolver: use it instead of some kludgy
12927         code.
12928
12929 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
12930
12931         * reflection.c: the best way to speed-up the compiler is to avoid
12932         infinite loops.
12933
12934 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
12935
12936         * class.c (mono_class_vtable): changed the object layout
12937         (obj->vtable->class). 
12938         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
12939
12940 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
12941
12942         * assembly.c: look for assemblies in the assembly dir, too.
12943
12944 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
12945
12946         * class.c: fix thinko in mono_class_from_type().
12947
12948 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
12949
12950         * exception.h, exception.c: added TypeLoadException.
12951         * object.h, object.c: added mono_array_clone ().
12952         * icall.c: handle throwOnError in AssemblyGetType().
12953         Added Array.Clone().
12954         * opcode.h, opcode.c: use a single value for the opcode val.
12955         Compile fix for non-gcc compilers.
12956
12957 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
12958
12959         * opcodes.c, opcodes.h: export interesting info about opcodes.
12960
12961 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
12962
12963         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
12964         icalls. 
12965
12966         * class.c (class_compute_field_layout): set element_class for enums
12967         (mono_class_create_from_typedef): set element_class for normal classes
12968
12969         * icall.c (ves_icall_System_Enum_get_value): impl.
12970
12971         * class.c (mono_class_create_from_typedef): do not set valuetype
12972         flag for System.ValueType and System.Enum
12973
12974 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
12975
12976         * unicode.c (iconv_convert): fix big endian problem.
12977
12978 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
12979
12980         * class.c: add asserts if we are ever going to scribble over memory.
12981         * socket-io.c: not all systems have AF_IRDA defined.
12982
12983 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
12984
12985         * class.c (class_compute_field_layout): do not consider static
12986         fields to compute alignment
12987
12988 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
12989
12990         * appdomain.c (mono_appdomain_get): impl.
12991         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
12992
12993 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
12994
12995         * icall.c: ignore "file://" prefix when loading an assembly.
12996
12997 2002-01-23  Dick Porter  <dick@ximian.com>
12998
12999         * socket-io.c:
13000         * icall.c:
13001         * Makefile.am: Added socket support
13002
13003 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
13004
13005         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
13006         code back.  This should return the assemblies that are loaded by
13007         the runtime on behalf of an application domain. 
13008
13009         The current implementation is still broken, it just returns every
13010         assembly loaded, but until we get real applications domain this
13011         will do.
13012
13013 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
13014
13015         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
13016         AppDomain object.
13017
13018 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
13019
13020         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
13021         the mono_class_from_name lookup.
13022         (ves_icall_get_parameter_info): ditto.
13023         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
13024         method.
13025         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
13026
13027 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
13028
13029         * class.c: load also nested classes on class init.
13030         System.ValueType instance methods gets passed boxed
13031         values, unless methods in derived classed that get a pointer to the
13032         data.
13033         * icall.c: use better name parsing code in GetType().
13034         * image.c, image.h: add mono_image_loaded ().
13035         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
13036         * reflection.c, reflection.h: added mono_reflection_parse_type().
13037
13038 2002-01-22  Veronica De Santis <veron78@interfree.it>
13039
13040         * icall.c : Added mapping of internal calls for Manual and Auto reset events
13041         * threads.c : Added the implementation of internal calls for events
13042         * threads.h : Added prototypes of internal calls for events
13043         
13044 2002-01-21  Radek Doulik  <rodo@ximian.com>
13045
13046         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
13047
13048 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
13049
13050         * class.c (mono_class_init): set min_align to 1 (instead of 0)
13051         (mono_class_value_size): use min_align
13052
13053 2002-01-20  Dick Porter  <dick@ximian.com>
13054
13055         * threads.h:
13056         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
13057         so it compiles on w32.
13058
13059 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
13060
13061         * metadata.c (mono_type_stack_size): impl.
13062
13063         * class.c (mono_class_get_field): impl. memberref token
13064
13065 2002-01-16 Veronica De Santis <veron78@@interfree.it>
13066
13067         * icall.h : Added the internal calls mapping for CreateMutex_internal
13068                     and ReleaseMutex_internal.
13069         * threads.h : Added the prototype of mutexes internal calls.
13070         * threads.c : Added the implementations of mutexes internal calls.
13071
13072 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
13073
13074         * metaparse.h: removed unused file.
13075         * reflection.c, reflection.h: added stream_data_align () function 
13076         to align data in streams and keep stream aligned. Add support for
13077         exception support in method headers.
13078
13079 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
13080
13081         * unicode.c: make iconv_convert () return the number of bytess written
13082         in the output buffer.
13083
13084 2002-01-15  Dick Porter  <dick@ximian.com>
13085         * threads.c: Make the runtime's idea of infinite timeouts coincide
13086         with the class library's
13087
13088         Fix a particularly egregious bug in mono_thread_cleanup(). That
13089         code was so utterly bogus it must have been written on a Monday.
13090
13091 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
13092
13093         * reflection.h: add subtypes field to TypeBuilder.
13094         * reflection.c: encode constants for literal fields.
13095         Handle subtypes. Fix user string token (and add a zero byte)
13096         at the end.
13097         
13098 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
13099
13100         * class.c (mono_class_init): bug fix: assign slot numbers for
13101         abstract methods.
13102
13103 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
13104
13105         * reflection.c: don't try to output a code RVA for abstract methods.
13106         Small fixes for method header format. Output parameter info to the
13107         ParamDef table. Save method overriding info to MethodImpl table.
13108         Fix property support. Allow typedef.extends to be a type in the
13109         building assembly.
13110         * verify.c: fix off-by-one error.
13111
13112 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
13113
13114         * class.c: fix mono_class_from_mono_type () for szarray types.
13115         Remove unused cache check in mono_class_from_type_spec().
13116         * icall.c: *type_from_name () functions handle simple arrays and byref.
13117         * reflection.c: handle byref and szarray types. Handle methods without
13118         body (gets P/Invoke compilation working). Handle types and fields in
13119         get_token ().
13120         * reflection.h: add rank to MonoTypeInfo.
13121
13122 2002-01-10  Dick Porter  <dick@ximian.com>
13123
13124         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
13125         internal calls
13126
13127 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
13128
13129         * icall.c: initialize class in type_from_handle ().
13130         Loop also in parent classes for get_method ().
13131         * reflection.c: properly encode class and valuetype types.
13132         Start on encoding TypeBuilder types. Handle fieldrefs.
13133         Use correct length when registering a user string.
13134         Handle ConstructorBuilder and MonoMethod in get_token ().
13135         Make mono_type_get_object () aware of cached types.
13136         * object.c: back out change to mono_string_new ().
13137
13138 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
13139         * object.c: mono_string_new should return a NULL when the string 
13140         passed in is NULL -- not try to deference it.
13141         
13142 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
13143
13144         * icall.c: hack to make IsSubType work for TypeBuilders.
13145         * reflection.c: emit constructors before methods.
13146         Retrieve param names in mono_param_get_objects().
13147
13148 2002/01/05  Nick Drochak  <ndrochak@gol.com>
13149
13150         * Makefile.am: fix list of headers and sources so automake 1.5
13151         doesn't complain. Removed \# at end of list.
13152
13153 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
13154
13155         * reflection.c: get token for a method ref. Set return type of
13156         constructor to void.
13157         * loader.c: debug message.
13158         * class.c: typo fix.
13159
13160 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
13161
13162         * icall.c: fix array init with rank > 1. FindMembers
13163         loops in parent class as well.
13164         * image.c: do not insert nested types in name cache.
13165         * reflection.c: warning fix.
13166         * reflection.h: add override method (for interface impl).
13167
13168 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
13169
13170         * metadata.c: fix customattr decoding.
13171
13172 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
13173
13174         * rawbuffer.cs: Added native Win32 implementation, avoids using
13175         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
13176
13177 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
13178
13179         * class.c: make the low-level routines handle the cache.
13180
13181 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
13182
13183         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
13184
13185 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
13186
13187         * class.c: fix mono_array_element_size() for objects.
13188         * class.h, class.c: add properties to MonoClass and load them
13189         at init time.
13190         * icall.c: check with isinst() when assigning a value to an array
13191         instead of requiring the classes to match exactly.
13192         Implemented icall for System.Type::GetType().
13193         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
13194         enums. Handle bindingflags when looking for methods and fields.
13195         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
13196         and mono_metadata_methods_from_property().
13197         * reflection.h, reflection.c: added structures for propreties,
13198         parameters and enums. Implemented mono_property_get_object() and
13199         mono_param_get_objects().
13200
13201 2001-12-18  Dick Porter  <dick@ximian.com>
13202
13203         * file-io.c: Use mono_string_to_utf16() instead of
13204         mono_string_chars()
13205
13206         * object.c: Added mono_string_to_utf16(), which copies the non
13207         NULL-terminated MonoString into a new double-null-terminated
13208         buffer.
13209
13210 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
13211
13212         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
13213
13214 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
13215
13216         * file-io.c: raise exceptions if handle is invalid.
13217
13218 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
13219
13220         * assembly.c: yet another check for mscorlib.
13221         * class.c, class.h: load nesting info for classes.
13222         * icall.c: many new functions to support the Reflection classes.
13223         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
13224         * reflection.h, reflection.c: mono_image_create_token(),
13225         mono_assembly_get_object(), mono_type_get_object(),
13226         mono_method_get_object(), mono_field_get_object(): methods to return
13227         objects that parallel the C representation of assemblies, types,
13228         methods, fields.
13229
13230 2001-12-11  Dick Porter  <dick@ximian.com>
13231
13232         * icall.c:
13233         * file-io.c: Internal calls for file IO.
13234
13235 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
13236
13237         * tabledefs.h: missing FileAttributes.
13238         * verify.h, verify.c: use is_valid_string () to simplify and check for
13239         valid strings more correctly. Fix warnings and speeling.
13240         Check more tables: Filed, File, ModuleRef, StandAloneSig.
13241         Check code: branches, maxstack, method calls.
13242
13243 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
13244
13245         * object.c (mono_object_allocate): removed static, so that the jit
13246         can allocate value types.
13247
13248         * icall.c (ves_icall_System_DateTime_GetNow): impl.
13249
13250 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
13251
13252         * class.c: init enum types right away and register the
13253         token->MonoClass map in mono_class_create_from_typedef ().
13254         * verify.h, verify.c: first cut of the verifier.
13255         * pedump.c: add --verify switch to verify metadata tables.
13256         * tabledefs.h: add some missing enums.
13257
13258 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
13259
13260         * class.c (mono_install_runtime_class_init): impl.
13261         (mono_class_init): renamed mono_class_metadata_init to
13262         mono_class_init, also removed the metadata_inited flag
13263
13264         * object.c (mono_object_isinst): use faster algorithm
13265
13266 2001-11-30  Radek Doulik  <rodo@ximian.com>
13267
13268         * mono-endian.h: reverted last change
13269         added function prototypes
13270
13271         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
13272         add mono-endian.c back
13273
13274         * mono-endian.c: returned back, as Paolo pointed out, it's needed
13275         for unaligned access, I've mistaked it with endianess. I am
13276         sorry.
13277         (mono_read16): fix reverted endianess
13278         (mono_read64): ditto
13279         (mono_read32): ditto
13280
13281 2001-11-30  Dick Porter  <dick@ximian.com>
13282
13283         * exception.c: Implement mono_exception_from_name()
13284
13285 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
13286
13287         * metadata.h, metadata.c: remove params_size and locals_size and their
13288         calculation from the metadata code: they are only usefult to the
13289         interp.
13290
13291 2001-11-29  Radek Doulik  <rodo@ximian.com>
13292
13293         * object.c (mono_ldstr): swap bytes here, it's probably not the
13294         best place, but works for me now, I'll redo it once I know mono
13295         better, also note that I add PROT_WRITE and don't reset back, also
13296         note that it's only affects big endians, so x86 should be OK
13297
13298         * mono-endian.h (read16): use just glib macros for both endians
13299
13300         * mono-endian.c: removed as glib macros are used in in
13301         mono-endian.h so we don't need to care about endianess for read
13302         macros as glib does that for us already
13303
13304 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
13305
13306         * class.h, class.h: take minimum alignment into consideration so
13307         that the fields of a class remain aligned also when in an array.
13308
13309 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
13310
13311         * loader.h, loader.c: add mono_method_get_param_names().
13312         * class.c: 0-init class fields.
13313
13314 2001-11-26  Dick Porter  <dick@ximian.com>
13315
13316         * icall.c:
13317         * threads-types.h:
13318         * threads.c: New file that handles System.Threading on all platforms
13319
13320         * object.c: 
13321         * object.h: Remove the synchronisation struct from MonoObject,
13322         replace it with a pointer that gets initialised on demand
13323
13324         * Makefile.am: Replace all the system-specific threading code with
13325         a single file that uses the new wrapper library
13326
13327 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
13328
13329         * class.c, class.h: add mono_install_trampoline() so that the runtime
13330         can register a function to create a trampoline: removes the ugly
13331         requirement that a runtime needed to export arch_create_jit_trampoline.
13332         * object.h, object.c: added mono_install_handler() so that the runtime
13333         can install an handler for exceptions generated in C code (with
13334         mono_raise_exception()). Added C struct for System.Delegate.
13335         * pedump.c: removed arch_create_jit_trampoline.
13336         * reflection.c: some cleanups to allow registering user strings and
13337         later getting a token for methodrefs and fieldrefs before the assembly
13338         is built.
13339         * row-indexes.h: updates and fixes from the new ECMA specs.
13340
13341 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
13342
13343         * class.h, class.c: add enum_basetype field to MonoClass.
13344         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
13345         to get index in the constant table reated to a field, param or
13346         property.
13347         * reflection.h, reflection.c: handle constructors. Set public-key and
13348         version number of the built assembly to 0.
13349         * row-indexes.h: update from new ECMA spec.
13350
13351 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
13352
13353         * class.h, class.c: add a max_interface_id to MonoClass.
13354         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
13355         since it's used to do that. Added mono_type_type_from_obj().
13356         Make GetType() return NULL instead of segfaulting if the type was not
13357         found. Handle simple arrays in assQualifiedName.
13358         * object.h: add a struct to represent an Exception.
13359         * reflection.c: output call convention in method signature.
13360         Add code to support P/Invoke methods and fixed offsets for fields.
13361
13362 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
13363
13364         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
13365         the value.
13366         * icall.c: use mono_array_addr instead of array->vector: fixes the
13367         reflection image writing.
13368         * reflection.c: init call convention byte to 0 in method signature.
13369         Encode the property signature. Don't output property-related methods
13370         twice. Really process the properties for a type (don't cast a field to
13371         a property, my mom always told me that).
13372         Fix 64 bit issues in pointer alignment in a different and more
13373         readable way.
13374
13375 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
13376
13377         * loader.h: Removed type class from MonoDefaults, added monotype
13378
13379         * loader.c: Loaded MonoType, removed loading of Type
13380
13381         * icall.c (my_mono_new_object): Now returns a System.MonoType,
13382         and fills in System.Type._impl with a RuntimeTypeHandle rather
13383         than the actual MonoClass *
13384
13385         (ves_icall_type_from_handle): change from type_class to
13386         monotype_class
13387
13388         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
13389         implemented
13390
13391         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
13392         implemented
13393
13394         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
13395
13396         (ves_icall_System_Reflection_Assembly_GetType): implemented
13397
13398         (ves_icall_System_MonoType_assQualifiedName): implemented
13399
13400         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
13401
13402 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
13403
13404         * assembly.c (mono_assembly_open): Implement a cache for the
13405         assemblies. 
13406
13407         (mono_assembly_close): only destroy the assembly when the last
13408         reference is gone.
13409         
13410 2001-11-09  Dick Porter  <dick@ximian.com>
13411
13412         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
13413
13414 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
13415
13416         * class.c (mono_class_metadata_init): bug fix: compute the right slot
13417
13418 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
13419
13420         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
13421         from Martin Weindel.
13422         * object.h: add mono_string_chars ().
13423
13424 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
13425
13426         * reflection.c (build_compressed_metadata): Eliminates warnings
13427         and uses 64-bit clean code.
13428
13429         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
13430         (mono_type_equal): Change signature to eliminate warnings.
13431
13432 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
13433
13434         * icall.c, loader.c: remove the internalcall array constructors.
13435         Changes to match the new MonoArray structure.
13436         * object.h, object.c: an array object doesn't allocate an extra
13437         vector. Add mono_array_new_full () to create jagged arrays easily.
13438
13439 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
13440
13441         * metadata.h, metadata.c: add mono_metadata_field_info () to
13442         retreive all the info about a field from vairous tables.
13443         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
13444         * class.h, class.c: augment MonoClassField with more info.
13445         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
13446         policy and load a field's RVA if needed.
13447
13448 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
13449
13450         * class.c (mono_class_metadata_init): create a trampoline for all
13451         virtual functions instead of actually compiling them.
13452
13453 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
13454
13455         * class.h, class.c: include name in MonoClassField.
13456         * class.c: fix fundamental type of System.Object and System.String.
13457         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
13458         tokens in ldtoken.
13459         * icall.c: remove internalcalls for the Reflection stuff that is now
13460         done in C# code.
13461         * loader.c: mono_field_from_memberref () implementation.
13462         * mono-endian.c: thinko (s/struct/union/g).
13463         * object.c, object.h: make the mono_string_* prototypes actually use
13464         MonoString instead of MonoObject.
13465         * reflection.c, reflection.h: updates for changes in the reflection
13466         code in corlib: we use C structures that map to the actual C# classes.
13467         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
13468         fat method header if needed and use the info from the ILGenerator for
13469         methods. Handle fields in types. Misc fixes.
13470
13471 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
13472
13473         * class.c (mono_class_metadata_init): bug fix: always allocate
13474         space for static class data
13475
13476 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
13477
13478         * class.c (mono_compute_relative_numbering): use relative
13479         numbering to support fast runtime type checks.
13480
13481 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
13482
13483         * class.c (mono_class_create_from_typeref): added debugging output
13484         to print class name when MonoDummy is returned instead of real class
13485
13486 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
13487
13488         * class.c (mono_class_metadata_init): interface offset table now
13489         contains pointers into the vtable - this is more efficient for the jit
13490
13491 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
13492
13493         * class.c (mono_class_metadata_init): use a temporary vtable (the
13494         old algorithm only worked for the interpreter, but not for the jit)
13495
13496 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
13497
13498         * loader.c (method_from_memberref): use mono_class_get to get the
13499         class of an array instead of using System.Array directly.
13500         (mono_get_method): also add MEMBERREF methods to the method cache
13501         which usefull for arrays.
13502
13503 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
13504
13505         * pedump.c (arch_compile_method): added to compute vtable entry
13506
13507         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
13508         number of interfaces.
13509         
13510         * class.h: merged MonoArrayClass into MonoClass
13511
13512         * class.c (mono_class_create_from_typedef): compute the vtable size and
13513         allocate space to include the vtable inside MonoClass
13514         (mono_class_metadata_init): initialize the vtable
13515
13516 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
13517
13518         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
13519         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
13520         * image.c: endian fixes by Laurent Rioux.
13521         * object.h, object.c: rename MonoStringObject to MonoString and
13522         MonoArrayObject to MonoArray. Change some function names to conform to
13523         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
13524         guint16* as first argument, so don't use char*.
13525         Provide macros to do the interesting things on arrays in a portable way.
13526         * threads-pthread.c: updates for the API changes and #include <sched.h>
13527         (required for sched_yield()).
13528         * icall.c: updates for the API changes above.
13529         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
13530         platforms that need them.
13531
13532 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
13533
13534         * class.c: set the correct type for all the fundamental
13535         type when loading the class.
13536
13537 2001-10-05  Dick Porter  <dick@ximian.com>
13538
13539         * threads-pthread.c (pthread_mutex_timedlock): Simple
13540         compatibility version for C libraries that lack this call.
13541
13542 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
13543
13544         * class.c: MonoTypes stored in MonoClass are stored as
13545         fundamental MonoTypes when the class represents a
13546         fundamental type (System.Int32, ...).
13547         The TypeHandle return by ldtoken is a MonoType*.
13548         * icall.c: ves_icall_get_data_chunk () write out all the
13549         PE/COFF stuff. Implement ves_icall_define_method (),
13550         ves_icall_set_method_body (), ves_icall_type_from_handle ().
13551         * image.c: properly skip unknown streams.
13552         * loader.h, loader.c: add type_class to mono_defaults.
13553         * metadata.c, metadata.h: export compute_size () as
13554         mono_metadata_compute_size () with a better interface.
13555         Typo and C&P fixes.
13556         * pedump.c: don't try to print the entry point RVA if there is no entry point.
13557         * reflection.c, reflection.h: many cleanups, fixes, output method
13558         signatures and headers, typedef and typeref info, compress the metadata
13559         tables, output all the heap streams, cli header etc.
13560         * row-indexes.h: typo fixes.
13561
13562 2001-10-04  Dick Porter  <dick@ximian.com>
13563
13564         * object.h: Add a synchronisation mutex struct to MonoObject
13565
13566         * object.c (mono_new_object): Initialise the object
13567         synchronisation mutexes
13568
13569         * icall.c: System.Threading.Monitor internal calls
13570         
13571         * threads-pthread.h:
13572         * threads-pthread.c: System.Threading.Monitor internal calls
13573
13574         * threads-types.h: New file, includes the system-specific thread
13575         structures
13576         
13577         * threads-pthread-types.h:
13578         * threads-pthread-types.c: New files, handle pthread-specific
13579         synchronisation types
13580
13581         * threads-dummy-types.h: 
13582         * threads-dummy-types.c: New files of dummy support for
13583         thread-specific types
13584
13585         * metadata.c:
13586         * image.c:
13587         * pedump.c: include mono-endian.h not endian.h
13588         
13589         * Makefile.am: More threads files.
13590         Name mono-endian.h not endian.h
13591
13592 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
13593
13594         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
13595         stuff and implement a few more bits.
13596         * icall.c: a field needs to be dereferenced twice. Do not use the same
13597         name for two variables in the same scope.
13598         * image.c, image.h: cleanups.
13599
13600 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
13601
13602         * class.c (mono_class_metadata_init): bug fix: compute the right size
13603
13604 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
13605
13606         * icall.c: implemented some of the Reflection internalcalls.
13607         * image.c, image.h: start writing out the PE/COFF image.
13608         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
13609         that does the reverse than decode_blob_size ().
13610         * object.c: use mono_metadata_encode_value (). Move here
13611         temporary implementation of mono_string_to_utf8 ().
13612         * rawbuffer.c: make malloc_map static.
13613
13614 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
13615
13616         * metadata.c: fix type comparison for arrays.
13617         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
13618         Added a couple of new classes to monodefaults.
13619         * icall.c: added a couple of Reflection-related internalcalls.
13620         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
13621         Added a byval_arg MonoType to MonoClass.
13622
13623 2001-09-28  Dick Porter  <dick@ximian.com>
13624
13625         * icall.c:
13626         * threads-pthread.h: 
13627         * threads-pthread.c: Implemented internal calls for
13628         LocalDataStoreSlot operations.  Applied mutexes around all shared
13629         data.  Reworked the thread creation and Start() operations to
13630         avoid a race condition.
13631         
13632         * threads-dummy.h:
13633         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
13634
13635 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
13636
13637         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
13638
13639 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
13640
13641         * class.c, loader.c: warn and return NULL instead of erroring out.
13642         * icall.c: added System.AppDomain::getCurDomain().
13643         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
13644
13645 2001-09-25  Dick Porter  <dick@ximian.com>
13646
13647         * threads-pthread.h:
13648         * threads-pthread.c: Implemented timed thread joining and added
13649         System.Threading.Thread::Join_internal internal call
13650
13651         * icall.c: Added System.Threading.Thread::Join_internal internal call
13652
13653         * threads-dummy.h:
13654         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
13655
13656 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
13657
13658         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
13659         mono_string_intern () to implement the semantics of the ldstr opcode
13660         and the interning of System.Strings.
13661         * icall.c: provide hooks to make String::IsIntern and String::Intern
13662         internalcalls.
13663
13664 2001-09-23  Dick Porter  <dick@ximian.com>
13665
13666         * threads-dummy.c: 
13667         * threads-dummy.h: New files of dummy threading routines
13668
13669         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
13670         support code based on system specifics
13671
13672         Rename PTHREAD_LIBS to THREAD_LIBS
13673         
13674 2001-09-23  Dick Porter  <dick@ximian.com>
13675
13676         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
13677         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
13678         internal calls.
13679         (mono_thread_init): Set up a Thread object instance to return when
13680         the main thread calls Thread.CurrentThread
13681         (mono_thread_cleanup): Wait for all subthreads to exit
13682
13683         * icall.c: New internal calls for System.Threading.Thread::Sleep
13684         (including Schedule) and CurrentThread
13685
13686         * threads.h: New file, to insulate thread-specific stuff from the
13687         rest of the code
13688
13689 2001-09-21  Dick Porter  <dick@ximian.com>
13690
13691         * threads-pthread.h: 
13692         * threads-pthread.c: New file, for handling pthreads-style
13693         threading support.  Start() now starts a new thread and executes
13694         the ThreadStart delegate instance.
13695
13696         * icall.c: Added the internalcall for
13697         System.Threading.Thread::Start_internal
13698
13699         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
13700
13701 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
13702
13703         * loader.c: work around the different signatures for delegates
13704         constructors csc generates in compiled code vs the ones compiled in mscorlib.
13705
13706 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
13707
13708         * class.h, class.c: add mono_class_get_field_from_name ().
13709         * *: Fix C comments and other ANSI C issues.
13710
13711 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
13712
13713         * endian.h, assembly.c: fix some endianness issues.
13714
13715 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
13716
13717         * loader.h, load.c: add delegate_class to mono_defaults.
13718         Handle runtime provided methods in mono_get_method ().
13719
13720 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
13721
13722         * loader.c (mono_get_method): use pinvoke for internal call
13723
13724         * icall.c: use pinvoke for internal call
13725
13726         * loader.c (method_from_memberref): set the method name
13727
13728 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
13729
13730         * metadata.c: help the compiler generate better code for
13731         mono_class_from_mono_type ().
13732
13733 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
13734
13735         * class.c (mono_class_metadata_init): delayed computing of the
13736         class size to mono_class_metadata_init ()
13737
13738 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
13739
13740         * class.c, class.h: add an interfaces member to MonoClass.
13741         * image.c, image.h: add assembly_name field to MonoImage
13742         from the assembly table.
13743         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
13744
13745 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
13746
13747         * class.c: Handle Array in mono_class_from_mono_type ().
13748         * metadata.c, pedump.c: some endian fixes.
13749
13750 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
13751
13752         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
13753         * metadata.c: fix small problem introduced with the latest commit.
13754
13755 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
13756
13757         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
13758         We don't need a MonoMetadata pointer anymore to compare signatures in
13759         mono_metadata_signature_equal (), update callers.
13760         Reduced memory usage an number of allocations for MonoMethodHeader and
13761         MonoMethodSignature.
13762
13763 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
13764
13765         * metadata.c: added compare for szarray.
13766
13767 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
13768
13769         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
13770         and add a couple more types to it and mono_defaults. Give an hint on
13771         classes that need implementing in our corlib and are referenced
13772         in mscorlib.
13773
13774 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
13775
13776         * class.h, class.c: keep track if a class is also an Enum.
13777         * loader.c: Implement a couple more types for use in libffi
13778         marshalling. Gives better diagnostics when failing to dlopen
13779         a library. Set method->klass for P/Invoke methods, too.
13780
13781 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
13782
13783         * class.c, class.h: add a MonoType this_arg to MonoClass that
13784         represents a pointer to an object of the class' type that
13785         can be used by the interpreter and later the type cache.
13786         Add best guess alignment info for valuetype objects.
13787
13788 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
13789
13790         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
13791         into MonoType: one less level of indirection and allocation and
13792         simplifies quite a bit of code. Added cache for MonoTypes that are
13793         used frequently, so that we don't need to allocate them all the time.
13794
13795 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
13796
13797         * class.c (mono_class_create_from_typedef): System.Enum is also a
13798         value type, although it does not derive from System.ValueType
13799         (maybe a bug in the ms compiler?)
13800
13801         * metadata.c (mono_type_size): return the right size for value types
13802
13803         * loader.c (mono_get_method): only initialize method header if not abstract
13804
13805         * class.c (mono_class_from_mono_type): use mono_default values. 
13806
13807 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
13808
13809         * *: use MonoClass pointers instead of <type_tokens>
13810         
13811         * class.h: new flag: metadata_inited.
13812
13813         * class.c (mono_class_metadata_init): impl.
13814         (mono_class_instance_size): impl.
13815         (mono_class_data_size): impl.
13816
13817 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
13818
13819         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
13820         MonoClass now has the name and name_space fields. 
13821         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
13822         mono_get_method () takes and optional MonoClass as argument.
13823         Removed mono_typedef_from_name() and added mono_class_token_from_name()
13824         instead that takes advantage of a map from class names to typedef
13825         tokens in MonoImage.
13826
13827 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
13828
13829         * metadata.c: zero is not a valid alignment boundary.
13830         Merge MONO_TYPE_VOID in default decoding code.
13831
13832 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
13833
13834         * image.h: merged MonoMetadata into MonoImage
13835
13836         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
13837         identify the type of elements.
13838
13839 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
13840
13841         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
13842         * cil-coff.h: split MonoMSDOSHeader and add size info.
13843         * image.c: add some consistency checks.
13844         * metadata.c: fix row size computation: one programmer
13845         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
13846         add explanation for the locator routine.
13847         Fix decoding of size in method header.
13848         
13849 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
13850
13851         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
13852         (g_concat_dir_and_file): Bring g_concat_dir_and_file
13853         function from gnome-libs.  This uses the right path separator
13854         based on the OS, and also works around a bug in some systems where
13855         a double slash is not allowed. 
13856         (default_assembly_name_resolver): Use g_concat_dir_and_file
13857         (mono_assembly_open): ditto.
13858
13859 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
13860
13861         * metadata.c (mono_metadata_signature_equal): impl.
13862
13863         * *: void is now a realy MonoType (instead of using NULL)
13864         
13865         * metadata.c (do_mono_metadata_parse_type): use
13866         mono_metadata_parse_type to parse void value.
13867
13868 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
13869
13870         * metadata.c, metadata.h: in the signature and method header store
13871         only the space required for holding the loca vars and incoming arguments.
13872
13873 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
13874
13875         * metadata.c (do_mono_metadata_parse_type): treat void like any
13876         other type (instead of assigning NULL);
13877
13878 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
13879
13880         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
13881
13882 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
13883
13884         * image.c (do_mono_image_open): added a cache for arrays.
13885
13886 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
13887
13888         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
13889         decode a single column from a row in a metadata table and changes
13890         to take advantage of it in the typedef locator (gives a nice speed up).
13891         Store offset info for function params.
13892
13893 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
13894
13895         * image.h (MONO_IMAGE_IS_CORLIB): removed 
13896
13897 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
13898
13899         * assembly.c: how could mono_assembly_close () had ever worked?
13900         * metadata.c, metadata.h: provide offset info for local vars.
13901         Implement mono_type_size () to take care of alignment as well
13902         as size (it was mono_field_type_size in cli/class.c before).
13903
13904 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
13905
13906         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
13907
13908         * assembly.h (CORLIB_NAME): set to corlib.dll
13909
13910         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
13911
13912 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
13913
13914         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
13915         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
13916         tokentype.h: massive namespace cleanup.
13917
13918 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
13919
13920         * metadata.h, metadata.c: decode exception clauses when parsing method header.
13921
13922 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
13923
13924         * metadata.c (mono_metadata_free_type): added check for type !=
13925         NULL (void) before calling mono_metadata_free_type()
13926
13927 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
13928
13929         * metadata.h, row_indexes.h: added header with enumerations to use
13930         to index in the columns from tables in metadata and to decode coded
13931         tokens: we should start using this instead of embedding magic numbers
13932         all over the code.
13933
13934 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
13935
13936         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
13937         Move metadata_t info from cli_image_info_t to MonoImage, where
13938         it's easily accessible. Changed all the uses accordingly.
13939         Added the method and class caches to MonoImage.
13940         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
13941         and mono_metadata_decode_value () signature to be more consistent
13942         with the other parse functions (and simplify code). Taken advantage
13943         of zero-length array allocation with GCC. Removed reduntant (and
13944         wrong) MonoFieldType struct and use MonoParam instead. Changed
13945         mono_metadata_parse_field_type () to use common code for parsing.
13946         Added mono_metadata_typedef_from_field () and
13947         mono_metadata_typedef_from_method () to lookup a typedef index from a
13948         field or method token.
13949         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
13950
13951 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
13952
13953         * metadata.c (mono_metadata_parse_field_type): Implement. 
13954         (do_mono_metadata_parse_type): Split engine from
13955         mono_metadata_parse_type, so that we can create smaller structures
13956         for things that just have one pointer to the MonoType (look at
13957         the MonoFieldType)
13958
13959 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
13960
13961         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
13962         as Jan Gray found out, it is incorrect. 
13963
13964 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
13965
13966         * assembly.c: Implement asssembly loading.  This loads an image
13967         and loads all the referenced assemblies.  Come to think of it, we
13968         could always do lazy loading of the assemblies. 
13969
13970         * image.c (mono_image_open): Keep loaded images in a hashtable.
13971
13972         * image.h (MonoImage): Add reference count.
13973
13974 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
13975
13976         * assembly.c (mono_assembly_open): Keep track of the file name in
13977         case the assembly has no ASSEMBLY table.
13978
13979         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
13980         from get.c here.
13981
13982 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
13983
13984         * metadata.c, metadata.h: decode local vars in method header
13985         parse function. Change callers accordingly.
13986
13987 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
13988
13989         * metadata.h, cil-coff.h: protect against multiple inclusion.
13990         Added some new structures to hold information decoded from metadata:
13991         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
13992         and relevant decoding/free functions.
13993         * metadata.c: implement decoding functions. Add warning for out of bounds
13994         index in mono_metadata_locate(). Implement mono_get_method () to retreive
13995         all the info about a method signature and invocation. Remove check on
13996         uninitialized local var in parse_mh() and fix memory leak.
13997
13998 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
13999
14000         * metadata.h: More macros.
14001
14002         * tokentype.h: New file.
14003
14004 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
14005
14006         * assembly.c: added a consistency check and initialize
14007         some structures with g_new0().
14008         * metadata.c: fixed a couple more bugs in table size computation
14009         and add other checks for out-of bound access to metadata.
14010
14011 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
14012
14013         * metatada.c: fix bugs computing table sizes. Spew a
14014         warning when index in string heap is out of bounds.
14015
14016 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
14017
14018         * metadata.h: Add a couple of macros to manipulate tokens. 
14019
14020 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
14021
14022         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
14023         cli_section_tables).
14024
14025 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
14026
14027         * metadata.c (mono_metadata_user_string): New function, provides
14028         access to the UserString heap. 
14029
14030 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
14031
14032         * metadata.c: Add inline documentation.
14033
14034 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
14035
14036         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
14037         files. 
14038
14039 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
14040
14041         * typeattr.h: New file, TypeAttribute flags. 
14042
14043 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
14044
14045         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
14046         mono_assembly_ensure_section): Section loading code.
14047         (load_section_tables): Load the sections.
14048
14049         * mono/metadata/metadata.c (mono_metadata_locate_token,
14050         mono_metadata_locate): Functions to locate the information
14051         definition given a token or a table and an index.
14052         (mono_metadata_compute_table_bases): New.
14053         (compute_size): New function to compute the sizes of the various
14054         tables.
14055
14056         * mono/metadata/metadata.h: Finish listing the different index
14057         types. 
14058
14059         * mono/metadata/pedump.c: Improve to dump new information.
14060
14061 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
14062
14063         * mono/metadata/metadata.c: Entered all the tables matching
14064         Beta2. 
14065
14066         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
14067