2004-08-20 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mono / metadata / ChangeLog
1 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
2
3         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
4         this function with Boehm as the oom handler, so we don't have to check
5         the result of GC_malloc.
6
7         * object.c: Remove checks for oom.
8
9         * object.h object.c (mono_class_get_allocation_ftn): New function to
10         return the icall which can be used to allocate an instance of a given
11         class. 
12
13         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
14
15         * class-internals.h: Add 'enabled' field.
16
17 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
18
19         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
20
21 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
22         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
23         value 0x0010.
24
25 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
26
27         * appdomain.c: use the Tls function for appdomain too,
28         at Zoltan's request. Actually return in mono_context_get
29
30         * appdomain.c, profiler.c, threads.c: use __thread
31
32 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
33
34         * appdomain.c threads.c: Call GC_CreateThread on windows.
35
36         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
37         multiple libraries since this don't work on windows.
38
39 2004-08-18  Martin Baulig  <martin@ximian.com>
40
41         * class-internals.h
42         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
43         MonoMethodHeader.
44
45         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
46         MonoMethodNormal since we also need it for abstract and interface
47         methods.
48
49         * reflection.c
50         (build_compressed_metadata): Sort the GenericParam table.
51         (mono_image_create_token): Added `gboolean create_methodspec'
52         argument; this is false when generating a MethodImpl token.
53         (reflection_methodbuilder_to_mono_method): Abstract and interface
54         methods may also have generic parameters.
55
56 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
57
58         * appdomain.c: thread local alloc
59
60 2004-08-17  Martin Baulig  <martin@ximian.com>
61
62         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
63
64         * icall.c
65         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
66         argument.
67
68         * class.c (mono_type_get_full_name): New public function.
69         (mono_type_get_name): Don't include the type arguments.
70
71 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
72
73         * Makefile.am: Build static versions of libmetadata and libmonoruntime
74         for inclusion into the mono executable.
75
76 2004-08-16  Martin Baulig  <martin@ximian.com>
77
78         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
79         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
80
81 2004-08-14  Martin Baulig  <martin@ximian.com>
82
83         * class.c (dup_type): Also copy the `byref' field.
84
85 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
86
87         * reflection.c (create_dynamic_mono_image): Revert the last change 
88         since it breaks bootstrap.
89
90 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
91
92         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
93
94         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
95         not free them with g_free.
96
97 2004-08-11  Martin Baulig  <martin@ximian.com>
98
99         * reflection.c (mono_reflection_setup_internal_class): Also call
100         mono_class_setup_mono_type() if we already have a `tb->type.type'.
101
102 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
103
104         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
105         called during default (first) AppDomain creation. Keep track of
106         Evidence when loading assemblies.
107
108 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
109
110         * opcodes.c, opcodes.h: reduce runtime relocations.
111
112 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
113
114         * culture-info.h, locales.c: fixes and chages to sue the new
115         optimized format of the locale data.
116         * culture-info-tables.h: regenerated.
117
118 2004-08-06  Geoff Norton <gnorton@customerdna.com>
119         
120         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
121
122 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
123
124         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
125         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
126         * domain-internals.h: icall declaration.
127         * icall.c: icall registration.
128         * object-internals.h: New fields in MonoAssembly for CAS.
129
130 2004-08-05  Duncan Mak  <duncan@ximian.com>
131
132         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
133         CEE_LDELEM_ANY.
134
135 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
136
137         * reflection.c: fix to deal with object[] arrays in custom ctors
138         (bug #62550).
139
140 2004-08-05  Martin Baulig  <martin@ximian.com>
141
142         * class.c (mono_class_array_element_size): Added support for
143         generic instances and correctly handle "recursive" types.
144
145 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
146
147         * assembly.c: Fix warnings.
148
149 2004-08-04  Martin Baulig  <martin@ximian.com>
150
151         * class.c
152         (mono_type_get_name_recurse): Added `gboolean include_arity'
153         argument specifying whether or not we should include the generic
154         arity in the type name.
155         (_mono_type_get_name): New static function.
156         (mono_class_setup_vtable): If we're a generic instance, don't
157         include the generic arity in the names of explicit method
158         implementations.        
159
160 2004-08-03  Martin Baulig  <martin@ximian.com>
161
162         * class.c (mono_type_get_name_recurse): Enclose the generic type
163         arguments in `<', '>'.
164
165 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
166
167         * gc.c: make GC warning messages use the trace API, they are just
168         noise to most of the users.
169
170 2004-08-03  Martin Baulig  <martin@ximian.com>
171
172         * debug-mono-symfile.c (read_string): Correctly read the string.
173
174 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
175
176         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
177         
178         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
179         icalls.
180         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
181
182 2004-07-30  Martin Baulig  <martin@ximian.com>
183
184         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
185         Reflect latest symbol writer changes.   
186
187 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
188
189         * object.c: always create an object if null is passed
190         to Invoke() where a valuetype is expected.
191
192 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
193
194         * marshal.c (mono_marshal_init): make managed
195         signatures match native ones better for 64bits.
196
197 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
198
199         * appdomain.c: hack to build correctly the private bin path on windows.
200         Fixes bug #61991.
201
202 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
203
204         * assembly.c: Load mscorlib from the correct framework directory
205           (mono/<version>/mscorlib.dll).
206         * appdomain.h: Added prototypes for new functions.
207         * internals.h: Added some prototypes.
208         * domain.c: When initializing the runtime, get from the executable and
209           the configuration files the runtime version that the app supports.
210           Added support methods for reading app.exe.config. Added list of versions
211           supported by the JIT. Added two new methods: mono_init_from_assembly,
212           which initializes the runtime and determines the required version from
213           the provided exe file, and mono_init_version, which initializes
214           the runtime using the provided version.
215         * icall.c: Get machine.config from version-specific directory.
216         * reflection.c: When generating an image, embed the version number
217           of the current runtime.
218
219 2004-07-28  Dick Porter  <dick@ximian.com>
220
221         * socket-io.c
222         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
223         returned sockaddr size before creating the remote address object.
224         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
225         61608.
226
227 2004-07-28  Dick Porter  <dick@ximian.com>
228
229         * locales.c (string_invariant_compare_char): Fix invariant char
230         compares between upper and lower cases.  Fixes bug 61458.
231
232 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
233         
234         * marshal.c: actually cache stelem.ref wrappers.
235         
236 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
237
238         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
239         sections and remove the mono_cli_rva_map () function.
240
241 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
242
243         * debug-mono-symfile.c: fix one more endianess issue, from a patch
244         by Geoff Norton (<gnorton@customerdna.com>).
245
246 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
247
248         * class.c: fix class loads for pointer types (typeof(int) !=
249         typeof(int*)).
250
251 2004-07-27  Martin Baulig  <martin@ximian.com>
252
253         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
254         reading the debugging information from an external ".mdb" file.
255
256 2004-07-24  Martin Baulig  <martin@ximian.com>
257
258         * reflection.c (mono_image_get_type_info): Only write a class
259         layout entry if we actually have a size or a packing size.
260
261 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
262
263         * reflection.c (type_get_fully_qualified_name): 
264         insert cast to get type checking of ?: with non-gcc compilers
265
266 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
267
268         * rand.c: use g_getenv for both lookups of
269         MONO_EGD_SOCKET
270
271 2004-07-17  Martin Baulig  <martin@ximian.com>
272
273         * reflection.c (mono_reflection_bind_generic_method_parameters):
274         Set `gmethod->reflection_info'.
275
276 2004-07-17  Martin Baulig  <martin@ximian.com>
277
278         * class.c (mono_class_create_from_typedef): Insert the newly
279         created class into the hash table before computing the interfaces
280         since we could be called recursively.
281
282 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
283
284         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
285         function to implement stelem.ref in managed code
286         * class-internals.h, debug-helpers.c: a new wrapper type
287         for the above.
288
289 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
290
291         * gc.c: allow GC handles to work even when no GC is compiled in.
292         Fix part of bug #61134 (GetAddrOfPinnedObject).
293
294 2004-07-13  Peter Williams  <peter@newton.cx>
295  
296         * process.c (complete_path): Make sure we don't attempt to execute
297         directories.
298  
299 2004-07-12  Geoff Norton <gnorton@customerdna.com>
300
301         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
302           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
303           and will add/subtract the hour if needed
304
305 2004-07-12  Martin Baulig  <martin@ximian.com>
306
307         * reflection.c (mono_field_get_object): If we have
308         `field->generic_info', take the attributes from
309         `field->generic_info->generic_type'.    
310
311 2004-07-12  Martin Baulig  <martin@ximian.com>
312
313         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
314         This function must be called before initializing the runtime.
315         (mono_debug_init_1): New function; call this after initializing
316         the runtime, but before loading the assembly.  It tells the
317         debugger to load corlib and the builtin types.
318
319         * mono-debug-debugger.c: Did some larger changes in the debugging
320         code; support recursive class declarations, make sure we actually
321         add all classes.
322
323 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
324
325         * debug-helpers.c: undo my previous patch and fixed the real issue in
326         ../mini/exceptions-x86.c
327
328 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
329
330         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
331         when no HOME env. variable was set and a NullRef was thrown in a .cctor
332         called from other .cctors.
333
334 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
335
336         * loader.c: Removed the mono_loader_wine_init hack now that we are
337         doing a managed version of Windows.Forms.
338
339 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
340
341         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
342         threadpool.c, threads.c: remove static data from rootset.
343
344 2004-07-09  Dick Porter  <dick@ximian.com>
345
346         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
347         Don't do any more processing if the matched length was 0.  It was
348         increasing the size of the string before.  Fixes bug 61167.
349
350 2004-07-09  Dick Porter  <dick@ximian.com>
351
352         * socket-io.h:
353         * socket-io.c
354         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
355         Add support for SO_PEERCRED if its available.
356
357 2004-07-09  Peter Bartok <pbartok@novell.com>
358         * loader.c: winelib.exe.so error message is now only displayed if
359         MONO_DEBUG is set. To help us avoid questions when people are trying
360         out the new Managed.Windows.Forms.
361
362 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
363
364         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
365         for isinst and castclass wrappers.
366
367         * class-internals.h icall.c: Move registration and lookup of JIT icalls
368         to libmetadata from the JIT, so they could be used by the marshalling
369         code and the interpreter.
370
371         * marshal.c: Register marshalling related JIT icalls here instead of
372         in mini.c. Use CEE_MONO_ICALL instead of the family of 
373         CEE_MONO_PROC<x> opcodes to call marshalling functions.
374
375         * metadata.h: Remove unneeded marshalling conversions.
376
377         * opcodes.c: Update for new opcodes.
378         
379 2004-07-08  Martin Baulig  <martin@ximian.com>
380
381         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
382         (mono_debug_get_domain_data): Make this function static.
383
384 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
385
386         * gc.c, object.h: add nice GC handle API for embedders.
387
388 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
389
390         * reflection.c: more changes for the new api
391
392         * object.c: When we reflect on a field w/ a constant value, it
393         will not have a memory location, so we must access metadata. Also,
394         allow easier reading of strings so that we can read them from
395         the constant data.
396
397         * class.c (mono_class_layout_fields): no need for literal fields here.
398
399         * class-internals.h: api changes for const fields
400
401         * icall.c (ves_icall_get_enum_info): use new apis for const fields
402
403 2004-07-06  Martin Baulig  <martin@ximian.com>
404
405         * mono-debug.h: Increment version number to 44.
406
407         * mono-debug.c (mono_debug_add_wrapper): The second argument is
408         now a gpointer, rewrote this whole method.
409
410         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
411         function.  Add information about the wrapper in a new "misc table".
412
413         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
414         for the new misc table.
415
416 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
417
418         * metadata-internals.h image.c: Add a cache for helper signatures.
419
420         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
421
422 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
423
424         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
425         delegates from a delegate. Fixes #61033.
426         
427         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
428         marshalling of stringbuilder arrays. Fixes #59900.
429
430 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
431
432         * icall.c: Add EnumBuilder:setup_enum_type icall.
433
434 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
435
436         * icall.c: Added a new icall for the property version of
437         OffsetOfStringData.
438
439 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
440
441         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
442         it has a constant size across platforms.
443
444         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
445         stack trace.
446
447 2004-06-29  Martin Baulig  <martin@ximian.com>
448
449         * mono-debug.c (mono_debug_add_method): Protect the whole function
450         in mono_debugger_lock(), not just parts of it.
451
452 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
453
454         * reflection.c: make sure padding bytes in heaps are zeroed.
455
456 2004-06-24  David Waite  <mass@akuma.org>
457
458         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
459         image.c, loader.c, locales.c, marshal.c, metadata.c,
460         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
461         string-icalls.c, threads.c: change to C90-style comments from C99 /
462         C++ -style
463
464 2004-06-24  Dick Porter  <dick@ximian.com>
465
466         * threads.c
467         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
468         return createdNew.  Fixes bug 60412.
469
470         * threads-types.h: 
471         * icall.c: Add createdNew parameter to CreateMutex icall
472
473 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
474
475         * reflection.c, object-internals.h: save default value in params.
476
477 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
478
479         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
480         no need to build a new path combining that with the application base.
481         Fixes bug #60442.
482
483 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
484
485         * reflection.c: fixed minor standard compliance issues.
486
487 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
488
489         * reflection.c: fixed issue with encoding some custom attributes
490         (arrays in properties and fields, bug #60411).
491
492 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
493
494         * reflection.c: fix start address when copying the public key token.
495
496 2004-06-23  Martin Baulig  <martin@ximian.com>
497
498         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
499         the `exc' object in a static object to put it into the GC's root set.
500
501 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
502
503         * reflection.c: make mono_reflection_setup_internal_class ()
504         callable a second time to setup a new parent class.
505
506 2004-06-23  Dick Porter  <dick@ximian.com>
507
508         * threads.c: Check for WAIT_IO_COMPLETION return values.
509
510 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
511
512         * appdomain.c: Removed the g_free on the public key token. Now copy 
513         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
514         * assembly.c: Added public key token string value when loading 
515         assemblies. Fix bug #60439.
516         * icall.c: Added missing informations (like public key) in 
517         GetReferencedAssemblies. Fix #60519.
518         * image.h: Changed definition for public key token from const char*
519         public_tok_value to guchar public_key_token [17];
520         * reflection.c: Updated for changes to public key token.
521
522 2004-06-22  Lluis Sanchez Gual
523
524         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
525         for the field in base classes.
526
527 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
528
529         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
530         mark headers as not supported, they are installed only for use by the
531         debugger.
532
533 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
534
535         * *.c, *.h: avoid namespace pollution in public headers.
536
537 2004-06-21  Martin Baulig  <martin@ximian.com>
538
539         * exception.c (mono_get_exception_security): It's in
540         "System.Security", not in "System".
541
542         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
543         the exception classes.
544
545 2004-06-21  Martin Baulig  <martin@ximian.com>
546
547         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
548         Protect the exception object from being finalized.
549
550 2004-06-21  Martin Baulig  <martin@ximian.com>
551
552         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
553         public function.
554
555 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
556
557         * reflection.c: Load the assembly in mono_reflection_type_from_name,
558         if it was not loaded before. Fix parts of #60439.
559
560 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
561
562         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
563         code that was broken since Ben's change: wrappers are now
564         dependent on the method signature only again.
565
566 2004-06-21  Martin Baulig  <martin@ximian.com>
567
568         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
569         added interface support.
570
571 2004-06-21  Martin Baulig  <martin@ximian.com>
572
573         * class.c (mono_vtable_get_static_field_data): New public method.
574
575 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
576
577         * filewatcher.c : Windows build fix to be compliant with API changes.
578
579 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
580
581         * class.h, class.c: more accessors.
582         * metadata.h, metadata.c: prepare for hiding MonoType and
583         MonoMethodSignature: people should use the accessors from now on
584         outside of the tree.
585
586 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
587
588         * *.c, *.h: more API cleanups.
589
590 2004-06-18  Jackson Harper  <jackson@ximian.com>
591
592         * assembly.c: Trace loading assemblies.
593         * loader.c: Trace loading native libraries.
594         * mono-config.c: Trace loading config files.
595         
596 2004-06-18  Dick Porter  <dick@ximian.com>
597
598         * locales.c: Tell ICU the lengths of strings, it can cope with
599         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
600
601 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
602
603         * image.c: swapped name/filename;
604
605 2004-06-18  Martin Baulig  <martin@ximian.com>
606
607         * mono-debug-debugger.c (write_class): Write the parent class at
608         the end of the header.
609
610 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
611
612         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
613
614 2004-06-17  Raja R Harinath  <rharinath@novell.com>
615
616         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
617         (bundle_obj): New conditional define.
618         (BUILT_SOURCES): Remove.
619         ($(bundle_srcs)): Make parallel-make safe.
620         (libmonoruntime_la_LIBADD): Make unconditional.
621         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
622         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
623
624 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
625
626         * culture-info-tables.h: It was inconsistent with the latest
627           supp info files.
628
629 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
630
631         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
632         be loaded.
633
634         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
635         with gcc 2.95.
636
637 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
638
639         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
640         cleaned up public header threads.h.
641
642 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
643
644         * Makefile.am, *.c, *.h: more API cleanups.
645
646 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
647
648         * Makefile.am: removed monosn from compilation.
649         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
650         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
651         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
652         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
653         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
654         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
655
656 2004-06-15  Jackson Harper  <jackson@ximian.com>
657
658         * assembly.c: Make locales lower case when searching the GAC for
659         assemblies. gacutil will always make locales lowercase when
660         installing so this effectively makes them case insensitive.
661         
662 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
663
664         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
665         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
666           parameter which allows to choose whether the wait can be interrupted or 
667           not. Also added the method mono_monitor_enter(), which locks the monitor
668           using an infinite wait and without allowing interruption.
669           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
670           interrupted.
671         * object.h: Added new fields in MonoThread. suspend_event holds the event
672           used to susped/resume the thread. synch_lock is the lock object to use for
673           modifying the thread state.
674         * threads.c: Use the new synch_lock object for locking, instead of "this",
675           which can generate deadlocks.
676           Moved thread state change in Thread.Sleep and Thread.Join from managed
677           to unmanaged code. This avoids a deadlock when the thread was suspended
678           just after acquiring the thread lock.
679           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
680           Implemented Thread.Suspend using an event instead of ThreadSuspend,
681           which is not fully implemented in the io-layer.
682         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
683
684 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
685
686         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
687         threads-types.h: more API cleanups.
688
689 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
690
691         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
692         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
693         threadpool.c, threads.c: first pass at the exported API cleanup.
694
695 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
696
697         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
698
699 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
700
701         * icall.c: added internalGetHome.
702
703 2004-06-14  Dick Porter  <dick@ximian.com>
704
705         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
706         possible to return successfully when '.' or '..' were the only
707         entries in a directory, but were skipped.  The MonoIOStat was not
708         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
709         Fixes bug 59574.
710
711 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
712
713         * reflection.c: make binaries run on .Net 1.1 by default.
714
715 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
716
717         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
718
719 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
720
721         * marshal.c: keep track of struct size with explicit layout
722         (bug #59979).
723
724 2004-06-12  Martin Baulig  <martin@ximian.com>
725
726         * mono-debug-debugger.c: Comment out a debugging g_message().
727
728 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
729
730         * reflection.c, reflection.h: do not free custom attrs that are cached.
731         * icall.c: use braces to make code clearer.
732
733 2004-06-11  Martin Baulig  <martin@ximian.com>
734
735         * class.h (MonoInflatedField): New type.
736         (MonoClassField): Replaced `MonoType *generic_type' with
737         `MonoInflatedField *generic_info'.
738
739         * icall.c
740         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
741
742 2004-06-11  Martin Baulig  <martin@ximian.com>
743
744         * reflection.c (mono_image_create_method_token): Correctly encode
745         varargs methods.
746
747 2004-06-11  Martin Baulig  <martin@ximian.com>
748
749         * metadata.c (mono_metadata_parse_method_signature): When parsing
750         a MethodDef which has VarArgs, also set sentinelpos if we don't
751         have any parameters.
752
753 2004-06-11  Martin Baulig  <martin@ximian.com>
754
755         * verify.c (mono_method_verify): In CEE_CALL, use
756         mono_method_get_signature() to get the method's signature, unless
757         we're a PInvoke method.
758
759 2004-06-10  Jackson Harper  <jackson@ximian.com>
760
761         * assembly.c: Use <path>/lib/mono/gac for the extra paths
762         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
763         logical name as the supplied path is just a prefix to the gac not
764         the direct path to it.
765         
766 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
767
768         * reflection.c: make the token for a created method match
769         the token of the MethodBuilder it was created from
770         (IKVM requires this behaviour now).
771
772 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
773
774         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
775         reflection.c, socket-io.c: leak fixes.
776
777 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
778
779         * icall.c: handle sentinel pos in vararg methods in position different
780         from 0.
781
782 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
783
784         * culture-info-tables.h: freshly generated.
785
786 2004-06-09  Martin Baulig  <martin@ximian.com>
787
788         * loader.c (mono_get_method_constrained): Call `mono_class_init
789         (constrained_class)'.   
790
791 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
792
793         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
794         any methods. Fixes #59629.
795
796 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
797
798         * culture-info-tables.h: reflecting locale-builder updates.
799
800 2004-06-08  Dick Porter  <dick@ximian.com>
801
802         * object.h:
803         * locales.c: Fixed compile warnings, including a real bug in
804         CompareInfo_internal_compare.
805         
806 2004-06-08  Dick Porter  <dick@ximian.com>
807
808         * locales.c
809         (ves_icall_System_Globalization_CompareInfo_internal_index):
810         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
811         Double-check the resuls of usearches, because ICU currently
812         ignores most of the collator settings here.  Fixes bug 59720.
813         
814 2004-06-08  Dick Porter  <dick@ximian.com>
815
816         * locales.c
817         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
818         Fix memory leak and segfault-causing typo.  No idea how this one
819         lasted so long without being noticed.
820
821 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
822
823         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
824         any methods. Fixes #59629.
825
826 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
827
828         * assembly.c:
829         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
830         own the critical section before). Removed dead code (that's done
831         in the preload hook).
832
833         (mono_assembly_load_with_partial_name): call the preload hook.
834
835 2004-06-08  Martin Baulig  <martin@ximian.com>
836
837         * metadata.c (mono_metadata_signature_alloc): Default
838         `sentinelpos' to -1.
839
840         * reflection.c (mono_image_get_array_token): Likewise.
841
842 2004-06-08  Martin Baulig  <martin@ximian.com>
843
844         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
845
846         * metadata.c (mono_metadata_parse_method_signature): When parsing
847         a MethodDef which has VarArgs, set sentinelpos.
848
849         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
850         `gint16' since we're using -1 for non-varargs methods.
851
852         * reflection.c
853         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
854         (method_encode_signature): Added varargs support.
855         (method_builder_encode_signature): Likewise.
856         (mono_image_get_varargs_method_token): New static method.
857         (mono_image_create_method_token): New public method; this is
858         called via an icall instead of mono_image_create_token() when
859         calling a varargs method.       
860
861 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
862
863         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
864
865 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
866
867         * culture-info-tables.h : Reflecting the latest locale-builder that
868           fixed empty array representation ({} to {0}).
869
870 2004-06-07  Jackson Harper  <jackson@ximian.com>
871
872         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
873         looking up extra gac paths. This allows MONO_GAC_PATH to act
874         exactly like a prefix.
875         
876 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
877
878         * reflection.c (mono_reflection_type_from_name): Make a copy of the
879         type name before modifying it. Fixes #59405.
880
881 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
882
883         * culture-info.h: added fields for "all datetime patterns".
884         * locales.c: (  ves_icall_System_Globalization_CultureInfo
885           _construct_datetime_format ()): fill xxx_patterns fields.
886         * object.h: added fields for "all datetime patterns" to
887           MonoDateTimeFormatInfo.
888         * culture-info-tables.h: reflecting locale-builder updates.
889
890 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
891
892         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
893         the event has no add and remove methods. Fixes #59629.
894
895 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
896
897         * object.c: Fixed possible integer overflow when allocating large
898         strings.
899
900 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
901
902         * culture-info-tables.h: reflecting locale-builder updates.
903
904 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
905
906         * culture-info-tables.h: reflecting locale-builder updates.
907
908 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
909
910         * culture-info-tables.h: reflecting locale-builder updates.
911
912 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
913
914         * threads.c: Made Thread.Sleep abortable.
915
916 2004-06-02  Martin Baulig  <martin@ximian.com>
917
918         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
919
920         * debug-mono-symfile.h: Bumped symbol file version number to 37.
921
922 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
923
924         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
925
926 2004-05-30  Jackson Harper  <jackson@ximian.com>
927
928         * reflection.c: Do not hardcode assembly versions or public key
929         tokens anymore. All of this except the corlib section was dead
930         code anyways.
931         
932 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
933
934         * object.c (mono_runtime_invoke_array): Automatically create boxed
935         objects for byref valuetypes if needed. Fixes #59300.
936         
937         * object.c (mono_method_return_message_restore): Handle 
938         MONO_TYPE_OBJECT as well.
939
940 2004-05-28  Jackson Harper  <jackson@ximian.com>
941
942         * reflection.c: The modified type encoding was causing build
943         problems. Reverted for now.
944         
945 2004-05-28  Jackson Harper  <jackson@ximian.com>
946
947         * reflection.c/h: Take an assembly ref so that we dont create
948         fully qualified names when encoding types in the same assembly as
949         the custom attribute being emitted.
950         * appdomain.c: Increment version number.
951         
952 2004-05-26  Duncan Mak  <duncan@ximian.com>
953
954         * icall.c
955         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
956         Set the full version number (major, minor, build, revision).
957
958 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
959
960         * marshal.c (emit_struct_conv): increment src/dst after blit
961         (mono_marshal_get_managed_wrapper,
962         mono_marshal_get_native_wrapper): make sure we have marshalling
963         info before marshalling params (info computation affects
964         blittable)
965
966         * class.c (class_compute_field_layout): correctly deal with
967         blittable
968         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
969         value types (as per what windows dows by default)
970         (mono_class_setup_mono_type): System.ValueType is blittable
971         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
972         blittable
973
974         * marshal.c (mono_marshal_load_type_info): flag types  as
975         non-blittable if the native layout doesn't match the managed
976         layout
977
978 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
979
980         * appdomain.c: don't add stuff in the private search path that is
981         above the application base. If application base is not set, there's
982         no private search path.
983
984 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
985
986         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
987         byref struct arguments in native->managed marshalling.
988
989 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
990
991         * marshal.c (mono_marshal_get_runtime_invoke): correctly
992         cache methods using signature (special case for methods
993         that are value type or string class)
994         
995         * image.c (mono_image_close): clean up allocated GSList's
996         in runtime_invoke_cache.
997
998 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
999
1000         * mono-config.c: set the correct path for mono_cfg_dir on windows when
1001         there's no MONO_CFG_DIR environment variable defined.
1002
1003 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1004
1005         * threads.c: windows version must be >= 0x0500 to include OpenThread.
1006
1007 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
1008
1009         * threadpool.c: Really wait for 500ms after the async call, even if the wait
1010           is interrumped.
1011         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
1012           before waiting for it, and call CloseHandle after the wait to unref it.
1013           This will make sure that handles are not disposed too early.
1014
1015 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1016
1017         * appdomain.c:
1018         * appdomain.h:
1019         * icall.c: removed
1020         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
1021         needed now.
1022
1023         * object.c: se the application_base only for the domain that runs
1024         Main. Fixes bug #59216,
1025
1026 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1027
1028         * appdomain.c:
1029         * object.c: only the domain in which Main is run have
1030         SetupInformation.ConfigurationFile set, so moved a few lines from
1031         appdomain.c to object.c.
1032
1033 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1034
1035         * appdomain.c: we tried to load [name].(dll|exe), but according
1036         to bug #57710, we must also try [culture]/[name].(dll|exe) and
1037         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
1038         There's a test case attached to bug #58922.
1039
1040 2004-05-27  Dick Porter  <dick@ximian.com>
1041
1042         * icall.c:
1043         * file-io.c: Implemented icalls for locking and unlocking regions
1044         in a file.
1045         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
1046         FALSE on error (fixes both compiler warning and real bug.)
1047
1048 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
1049
1050         * culture-info-tables.h: reflecting locale-builder updates.
1051
1052           (Added missing ChangeLog entry for 05/26)
1053
1054 2004-05-27  Jackson Harper  <jackson@ximian.com>
1055
1056         * locales.c: Fix some cut and paste errors.
1057         
1058 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1059
1060         * mono-config.c: set the correct path for config. directory on windows.
1061
1062 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
1063
1064         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
1065           on win32.
1066
1067 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
1068
1069         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
1070         from pinvoke functions.
1071         
1072         * marshal.c (mono_ftnptr_to_delegate): Implement this.
1073
1074 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
1075
1076         * culture-info-tables.h: reflecting locale-builder updates.
1077
1078 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
1079
1080         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
1081         #59086.
1082
1083 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
1084
1085         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
1086         * icall.c: Modified icalls for RNG.
1087         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
1088         Windows (CryptoAPI).
1089
1090 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
1091
1092         * locales.c: Fix build.
1093
1094 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
1095
1096         * culture-info-tables.h: reflecting locale-builder updates.
1097
1098 2004-05-25  Jackson Harper  <jackson@ximian.com>
1099
1100         * locales.c: When creating the current culture use the $LANGs
1101         specific culture. So DateTimeFormat and NumberFormat entries are created.
1102         
1103 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
1104
1105         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
1106         a char array as parameter.
1107
1108 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
1109
1110         * image.c: In mono_image_open(), always use an absolute path name to
1111           look for already loaded images.
1112
1113 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
1114
1115         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
1116         missing in the windows build (like older cygwin include files).
1117
1118 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
1119
1120         * icall.c: Fixed check for possible integer overflow in Buffer_
1121         BlockCopy icall. Replaced comments style // by /* */.
1122
1123 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
1124
1125         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
1126         
1127         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
1128         check after MONO_VTADDR. Fixes pinvoke2.exe.
1129
1130         * marshal.h marshal.c metadata.h: Add beginnings of support for
1131         ftnptr -> delegate marshalling.
1132
1133 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
1134
1135         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
1136         * threads.c: Fix warnings.
1137
1138 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
1139
1140         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
1141         * icall.c: Registered icalls for Suspend and Resume.
1142         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
1143           Thread.Abort.
1144         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
1145         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
1146         * process.c: Use WaitForSingleObjectEx.
1147         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
1148           checkpoints.
1149         * threads.c, threads.h: Make use of new Ex wait methods. Improved
1150           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
1151           for Suspend and Resume. Added new mono_thread_stop, used for stoping
1152           background threads. Added basic support for Abort in Windows.
1153           Start new threads using a managed delegate invoke wrapper. This wrapper
1154           has an interruption checkpoint that is needed since an interruption
1155           can be requested before the thread leaves the unmanaged code that starts 
1156           the thread.
1157         * marshal.c: Added interruption checkpoint after every native call, and
1158           also before managed calls for wrappers called from unmanaged code to
1159           go into managed code.
1160         * object.h: Added new field in MonoThread to keep track of interruption
1161           requests.
1162
1163 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
1164
1165         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
1166         calls.
1167
1168 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1169
1170         * appdomain.c:
1171         * assembly.c:
1172         * gc.c:
1173         * locales.c:
1174         * mono-config.c:
1175         * rand.c: getenv -> g_getenv (windows!)
1176
1177         * process.c: complete_path is also used on non-windows platforms.
1178
1179 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1180
1181         * icall.c: new signature for Process_Start.
1182
1183         * process.[ch]: new signature for Process_Start. If we're on windows
1184         and UseShellExecute is false, we have to search for the program by
1185         ourselves if we don't get a full path.
1186
1187 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
1188
1189         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
1190         marshalling and call CleanUpNativeData if needed. Fixes #58646.
1191
1192 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1193
1194         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
1195         Fixes bug #58373.
1196
1197 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1198
1199         * process.c: use double quotes to quote program name and arguments on
1200         windows. Fixes bug #58575.
1201
1202 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1203
1204         * file-io.c: don't return "." and ".." when using windows Find*File.
1205
1206 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
1207
1208         * marshal.c: Don't pass wrappers to message init because method 
1209         addressed used to lookup metadata. part of remoting[2|3] fix.
1210
1211 2004-05-15  Jackson Harper  <jackson@ximian.com>
1212
1213         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
1214         path is essentially the same as MONO_PATH except that it points to
1215         GACs instead of lib directories.
1216         * loader.h: The user gac is gone so we dont need function to
1217         enable/disable it.
1218         * mono-config.c: user gac option is now gone.
1219         
1220 2004-05-15  Jackson Harper  <jackson@ximian.com>
1221
1222         * culture-info.h: Make defines more consistent, add calendar data
1223         to the culture info table.
1224         * culture-info-tables.h: Add basic calendar data. Basically
1225         everyone gets default gregorian until all the data is
1226         updated.
1227         * locales.c: Use the new consistent defines. Set calendar data for
1228         culture info objects.
1229         * object.h: add a field for calendar data to CultureInfo
1230         
1231 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
1232
1233         * image.c: image->runtime_invoke_cache is keyed on signatures now.
1234         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
1235         a signature.
1236         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
1237         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
1238         an extra param that is the pointer of the method to invoke. The IL for
1239         the invoke method is no longer specific to the method, but to the
1240         signature of the method. Thus, we can share the same code for multiple
1241         methods. This reduces the number of methods that have to be compiled.
1242
1243 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
1244
1245         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
1246
1247         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1248
1249         * icall.c: Optimize Buffer.BlockCopy.
1250
1251 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1252
1253         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
1254         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
1255         quote). Changed them to "MMMM yyyy".
1256
1257 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
1258
1259         * rand.c
1260         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
1261
1262 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
1263
1264         * reflection.h: Updated after changes to managed structures.
1265
1266         * appdomain.c: Bump corlib version.
1267
1268 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1269
1270         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
1271         windows.
1272
1273 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1274
1275         * Makefile.am: link to ../os/libmonoos.la on windows.
1276
1277         * assembly.c:
1278                 -If MONO_DEBUG, warn about non-existing directories in
1279                 MONO_PATH.
1280                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
1281                 compile time variable.
1282                 -Removed init_default_path and call mono_set_rootdir from
1283                 libmonoos.a instead (windows only).
1284
1285         * assembly.h: declare mono_assembly_getrootdir().
1286
1287         * domain.c:
1288         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
1289
1290         * loader.c: s/getenv/g_getenv/
1291
1292 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
1293
1294         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
1295
1296         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
1297
1298         * metadata.h: Add new marshalling conversions.
1299
1300         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
1301         function.
1302
1303         * reflection.c (mono_reflection_get_type): Lookup the type in all
1304         modules of a multi-module assembly. Fixes #58291.
1305
1306 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
1307
1308         * threads.c: Before aborting a background, set the StopRequested
1309         state.  This avoids throwing the Abort exception.
1310         In mono_thread_manage, don't continue with the shutdown until all
1311         aborted threads have actually stopped.
1312
1313 2004-05-10  Jackson Harper  <jackson@ximian.com>
1314
1315         * locales.c: Remove the modifier from culture names.
1316         
1317 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1318
1319         * Makefile.am: monosn is not installed any more. It has been deprecated
1320         in favor of sn.
1321
1322 2004-05-07  Jackson Harper  <jackson@ximian.com>
1323
1324         * locales.c
1325         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
1326         Fix array construction, add bailout if the length is 0.
1327
1328 2004-05-07  Dick Porter  <dick@ximian.com>
1329
1330         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
1331         machine doesn't have a DNS entry.  Patch by Urs Muff
1332         (umuff@quark.com), fixes bug 57928.
1333
1334 2004-05-06  Jackson Harper  <jackson@ximian.com>
1335
1336         * reflection.c: Handle null PublicTokens properly. alloc mem for
1337         assembly names culture so we dont crash when freeing it.
1338         
1339 2004-05-06  Jackson Harper  <jackson@ximian.com>
1340
1341         * assembly.c: Check the usergac when loading with partial names.
1342         
1343 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
1344
1345         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
1346         does nothing for now (not required for Linux/Windows) but the class
1347         library can call it (and a newer or modified runtime could need it).
1348         * icall.c: Registred icall.
1349
1350 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1351
1352         * loader.c: prints a message on module loading error we set MONO_DEBUG
1353         environment variable.
1354
1355 2004-05-05  Jackson Harper  <jackson@ximian.com>
1356
1357         * appdomain.c: Handle PublicKeyToken=null properly.
1358         
1359 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
1360
1361         * environment.c|h: Added icall ves_icall_System_Environment_
1362         GetOSVersionString to get the current OS version as a string.
1363         * icall.c: Registred icall.
1364
1365 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
1366
1367         * object.c: in mono_object_get_virtual_method(), take into account that
1368         non-virtual methods don't have a slot in the vtable. Check needed when
1369         the object is a proxy.
1370
1371 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
1372
1373         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
1374         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
1375
1376         * object.c (mono_class_compute_gc_descriptor): Fix warning.
1377
1378         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
1379         passed when a valuetype is expected.
1380
1381         * object.c (mono_unhandled_exception): Only set the exit code if the
1382         exception happens in the main thread. Fixes thread5.exe.
1383
1384         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
1385         invalid names. Fixes #58047.
1386
1387 2004-05-03  Jackson Harper  <jackson@ximian.com>
1388
1389         * assembly.c: This line was committed accidently and is unneeded.
1390         
1391 2004-05-03  Jackson Harper  <jackson@ximian.com>
1392
1393         * icall.c: Add new icall for Assembly::LoadWithPartialName
1394         * assembly.c/.h: new function that probes the GAC to load partial
1395         assembly names by Paolo Molaro.
1396         
1397 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1398
1399         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
1400         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
1401         (type_get_fully_qualified_name): Added PublicKeyToken when building a
1402         full type name.
1403
1404 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1405
1406         * appdomain.c: fixed check for 'neutral' culture and removed warning.
1407         * reflection.c: fix bug when parsing a full type name and Version is not
1408         the last thing in the string.
1409
1410 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
1411
1412         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
1413         crashes when it is freed.
1414
1415 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1416
1417         * assembly.c: print the compat warning to stderr.
1418
1419 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
1420
1421         * assembly.c (mono_assembly_load_references): Add a compatibility
1422         hack to run old applications that might be still referencing the
1423         3300-based assemblies, only do this for System.xxx.
1424
1425 2004-05-01  Jackson Harper  <jackson@ximian.com>
1426
1427         * appdomain.c: If the culture is neutral we set it to "".
1428         
1429 2004-04-29  Jackson Harper  <jackson@ximian.com>
1430
1431         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
1432
1433 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
1434  
1435         * string-icalls.c: added low overhead function for copying chars
1436         * icall.c: added needed icall for the above function
1437  
1438 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1439
1440         * icall.c: fix return value of get_global_assembly_cache.  Implemented
1441         Environment.GetLogicalDrives.
1442
1443 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
1444
1445         * rand.c: try and talk to egd or prngd
1446         for random bytes if opening devices fail.
1447
1448 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
1449
1450         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
1451         alignment for the type using the native alignment of its members 
1452         instead of using klass->min_align.
1453
1454         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
1455
1456 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1457
1458         * file-io.c:
1459         * socket-io.c: added check for sys/aio.h.
1460
1461 2004-04-28  Dick Porter  <dick@ximian.com>
1462
1463         * threads.c: Don't abort a thread thats already aborting, when
1464         terminating everything.
1465
1466 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1467
1468         * icall.c: added 2 new async calls for Socket.
1469
1470         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
1471         IO on *nix systems.
1472
1473         * threadpool.c: removed unused variable.
1474
1475 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
1476
1477         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
1478
1479 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
1480
1481         * locales.c: put back string_invariant_tolower () and
1482         string_invariant_toupper ().
1483
1484 2004-04-26 David Waite <mass@akuma.org>
1485
1486         * file-io.h:
1487         * socket-io.h:
1488         * threads.h:
1489         * unicode.h: remove comma from end of enumeration declarations
1490
1491 2004-04-26 David Waite <mass@akuma.org>
1492
1493         * debug-mono-symfile.h:
1494         * decimal.c:
1495         * mono_debug.h:
1496         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
1497
1498
1499 2004-04-26  Jackson Harper  <jackson@ximian.com>
1500
1501         * appdomain.c: Increment version number.
1502         
1503 2004-04-26  Jackson Harper  <jackson@ximian.com>
1504
1505         * appdomain.c: Set assembly references public token value when
1506         PublicKeyToken is specified, not the hash_value. Free public token
1507         values when free assembly name data. Previously the public key
1508         token was hex decoded, however we are using hex encoded public key
1509         tokens, so this is not neccasary.
1510         * assembly.c: Lookup assemblies in the gac if their public token
1511         value is set. Add function to allow enabling user gac
1512         lookups. Specify whether or not the assembly was loaded from the
1513         GAC. Compare full assembly names when checking the cache for
1514         assemblies (Temporarily disabled see comment in code). Remove
1515         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
1516         specifies trace-loader they get extra info to stdout on the
1517         loading of assemblies.
1518         * image.h: Add a field for an assembly references public token
1519         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
1520         whether an assembly has been loaded from the GAC.
1521         * image.c: Remove a corlib -> mscorlib name mapping.
1522         * loader.h: Add function to enable/disable the user gac.
1523         * mono-config.c: Check if the usergac is enabled in the config
1524         file.
1525         * icall.c: New icall to determine whether or not an assembly has
1526         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
1527         * tabldefs.h: Add constant for assemblyref flag that specifies a
1528         full public key is used instead of a public token.
1529         * reflection.c: Remove mscorlib -> corlib mappings. Set
1530         PublicTokenValue instead of hash value. This value is a hex
1531         string so it does not need to be expanded.
1532
1533 2004-04-26  Martin Baulig  <martin@ximian.com>
1534
1535         * mono-debug-debugger.c (mono_debugger_initialize): Set
1536         `mono_debugger_initialized' before calling mono_debug_lock().
1537
1538 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
1539
1540         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
1541           InternalToUpper/InternalToLower.
1542         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
1543           removed invariant culture shortcut.  This is now done in managed code.
1544         * locales.c: (string_invariant_toupper/tolower) removed.
1545
1546 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1547
1548         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
1549         Added Poll internal call.
1550
1551         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
1552         call for Poll. Select was too heavy for polling a single socket.
1553
1554         * threadpool.[ch]: added mono_threadpool_cleanup.
1555         * threads.c: use it. Don't use Thread_Abort on windows.
1556
1557 2004-04-23  Martin Baulig  <martin@ximian.com>
1558
1559         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
1560
1561 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
1562
1563         * icall.c: Registred new icalls for key pair protection and added an
1564         icall for Environment.GetFolderPath on Windows.
1565         * security.c|h: Added new icalls for key pair protection.
1566
1567 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1568
1569         * socket-io.c: don't display the non-supported family warning for known
1570         families. Now this is not displayed on windows when checking support
1571         for IPv4/IPv6.
1572
1573 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1574
1575         * class.c: don't display the layout warning for static fields.
1576
1577 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
1578
1579         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
1580         * locales.c, locales.h: Added new icalls for culture-specific
1581         Char.ToLower and Char.ToUpper.
1582
1583 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1584
1585         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
1586         by David Waite.
1587
1588 2004-04-20  Martin Baulig  <martin@ximian.com>
1589
1590         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
1591         of the type name before passing it to mono_reflection_type_from_name().
1592
1593 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
1594
1595         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
1596         encodings here. Fixes #56965.
1597
1598 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
1599
1600         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
1601         fix test on strstr result not that I can see anything that
1602         relies on the result.
1603
1604 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
1605
1606         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
1607         Fixes #57081.
1608
1609         * marshal.c (mono_marshal_get_string_encoding): New helper function.
1610
1611         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
1612         function to determine which marshalling to use for strings. Fixes
1613         #56965.
1614
1615         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
1616
1617         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
1618
1619 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
1620
1621         * icall.c: #include mono-config.h
1622
1623 2004-04-15  Jackson Harper  <jackson@ximian.com>
1624
1625         * culture-info-tables.h: Fix date formats for en-US culture.
1626         
1627 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
1628
1629         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
1630         ThreadPool.SetMinThreads.
1631         * threadpool.c: Implemented ThreadPool.GetMinThreads and
1632         ThreadPool.SetMinThreads.
1633
1634 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
1635
1636         * mono-config.c: also load the .config file in the directory
1637         where the assembly was found.
1638
1639 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
1640
1641         * assembly.c: load per-assembly config files.
1642         * icall.c: decrapified code to get the config dir and moved to
1643         mono-config.c.
1644         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
1645         per-assembly config files. When doing a dll map lookup give precedence
1646         to the per-assembly data.
1647
1648 2004-04-14  Martin Baulig  <martin@ximian.com>
1649
1650         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
1651         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
1652         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
1653
1654         * mono-debugger-debugger.c: While the debugger is locked, remember
1655         whether the symbol tables have changes and send one single
1656         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
1657
1658 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
1659
1660         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
1661
1662         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
1663         function.
1664
1665         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
1666         account when marshalling string arrays. Fixes #56965.
1667
1668 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
1669
1670         * icall.c: Add new icalls mapping for security.
1671         * security.c|h: Add internal calls for WindowsIdentity,
1672         WindowsImpersonationContext and WindowsPrincipal.
1673
1674 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
1675
1676         * class.c: Added comment to ensure the System.MonoDummy class
1677         is removed when no longer necessary
1678
1679 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
1680
1681         * appdomain.c: Pass arguments to the bootstraping exceptions to
1682         minimize JITed methods at boot
1683
1684         * metadata.c (mono_exception_from_name_two_strings): Allow for the
1685         second string to be null.
1686
1687         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
1688         Change the protocol to minimize the JIT methods at startup.  Now
1689         it Returns the internal codepage, if the value of "int_code_page"
1690         is 1 at entry, and we can not compute a suitable code page
1691         number, returns the code page as a string.
1692
1693 2004-04-13  Jackson Harper  <jackson@ximian.com>
1694
1695         * culture-info-tables.h: Fix number of decimal digits for all
1696         english locales.
1697
1698 2004-04-13  Jackson Harper  <jackson@ximian.com>
1699
1700         * icall.c: Clairfy out of sync error message. It is not always
1701         your corlib that is out of sync.
1702
1703 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
1704
1705         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
1706         properties when only the set accessor is overriden. Fixes #55874.
1707
1708 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
1709
1710         * assembly.c (mono_assembly_load_references): Make this thread safe.
1711         Fixes #56327.
1712
1713 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
1714
1715         * monosn.c: Add missing initialization calls.
1716
1717 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
1718
1719         * locales.c:
1720         ves_icall_System_Globalization_CultureInfo_construct_number_format
1721         Fix g_assert so it compiles on fussier compilers re int/ptr
1722         mismatch
1723
1724 2004-04-08  Dick Porter  <dick@ximian.com>
1725
1726         * socket-io.h:
1727         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
1728         53992.  Also rearrange the code so that the internal calls return
1729         an error value and exceptions are thrown from managed code.
1730
1731         * icall.c: Add type info to the socket icalls.
1732
1733 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1734
1735         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
1736         owes me a beer.
1737
1738 2004-04-07  Martin Baulig  <martin@ximian.com>
1739
1740         * class.c (mono_class_from_generic_parameter): Don't default
1741         `klass->parent' to `mono_defaults.object_type'.
1742
1743 2004-04-07  Martin Baulig  <martin@ximian.com>
1744
1745         * reflection.c (mono_reflection_initialize_generic_parameter): Set
1746         `param->pklass->reflection_info'.       
1747
1748 2004-04-07  Jackson Harper  <jackson@ximian.com>
1749
1750         * culture-info-tables.h: Fix date separator symbol.
1751         
1752 2004-04-07  Martin Baulig  <martin@ximian.com>
1753
1754         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
1755         from System.Type to System.MonoType.
1756
1757 2004-04-07  Martin Baulig  <martin@ximian.com>
1758
1759         * reflection.h
1760         (MonoReflectionGenericParam): Added `has_reference_type' and
1761         `has_value_type' fields.
1762
1763         * reflection.c (mono_image_get_generic_param_info): Encode the
1764         correct flags if we have the `class' or `struct' constraint.
1765
1766 2004-04-07  Martin Baulig  <martin@ximian.com>
1767
1768         * reflection.h
1769         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
1770
1771 2004-04-07  Jackson Harper  <jackson@ximian.com>
1772
1773         * appdomain.c: Revert extra patches, just wanted to bump the
1774         version number.
1775         
1776 2004-04-07  Jackson Harper  <jackson@ximian.com>
1777
1778         * Makefile.am: Add culture-info private headers.
1779         * icall.c: Add new icalls for contructing locales.
1780         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
1781         * locales.h: Declare new culture info construction methods.
1782         * object.h: Add new fields used to avoid the CultureMap to
1783         MonoCultureInfo.
1784         * culture-info.h: Definition of structs used in the culture info
1785         tables.
1786         * culture-info-tables.h: Autogenerated tables that contain culture
1787         info data. This file was generated with the locale-builder tool.
1788         * appdomain.c: Incement corlib version number.
1789         
1790 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
1791
1792         * appdomain.c: (mono_runtime_init) move mono_thread_init
1793         to before mono_object_new calls so critical sections
1794         are initialized before use.
1795
1796 2004-04-07  Martin Baulig  <martin@ximian.com>
1797
1798         * icall.c
1799         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
1800         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
1801         (ves_icall_MonoGenericParam_initialize): Removed.
1802         (monogenericparam_icalls): Removed.
1803         (generictypeparambuilder_icalls): Added new table for
1804         System.Reflection.Emit.GenericTypeParameterBuilder.
1805
1806         * reflection.c
1807         (mono_reflection_define_generic_parameter): Removed.
1808         (mono_reflection_initialize_generic_parameter): This is now called
1809         from GenericTypeParameterBuilder's .ctor.
1810
1811 2004-04-06  Martin Baulig  <martin@ximian.com>
1812
1813         * class.c (mono_class_init): Don't inflate nested classes in a
1814         generic instance.
1815         (mono_type_get_name_recurse): Include the generic arguments for
1816         generic instances and generic type declarations.
1817         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
1818         (_mono_class_get_instantiation_name): Removed.
1819         (mono_class_create_generic): Always use `gklass->name' as our name.
1820
1821         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
1822
1823         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
1824         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
1825         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
1826         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
1827         closed generic methods here.
1828
1829         * reflection.c
1830         (mono_reflection_generic_inst_get_nested_types): Removed.
1831         (inflate_mono_method): Copy the generic parameters from the
1832         MonoMethodHeader into out MonoGenericMethod.
1833
1834 2004-04-06  Martin Baulig  <martin@ximian.com>
1835
1836         * row-indexes.h
1837         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
1838
1839         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
1840
1841         * reflection.c (build_compressed_metadata): If we have any entries
1842         in the GenericParam, MethodSpec or GenericParamConstraint tables,
1843         set the header version to 1.1.
1844
1845 2004-04-06  Martin Baulig  <martin@ximian.com>
1846
1847         * class.c (mono_class_init): If we're a generic instance,
1848         initialize our nested classes, too.
1849         (_mono_class_get_instantiation_name): Deal with the new `!%d'
1850         suffix. 
1851
1852 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1853
1854         * process.c: quote the argument passed to the shell on windows.
1855
1856 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
1857
1858         * threads.c (mono_alloc_special_static_data): Allow this to be
1859         called during startup.
1860
1861 2004-04-02  Martin Baulig  <martin@ximian.com>
1862
1863         * icall.c
1864         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
1865
1866 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
1867
1868         * icall.c: Fix build.
1869
1870 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
1871
1872         * Makefile.am: Added security.c|h.
1873         * icall.c: Added icall for get_UserName;
1874         * security.c: New file for security related icalls. Added function
1875         get_UserName for System.Environment (fix #56144).
1876         * security.h: New. Header file for security.c
1877
1878 2004-04-02  Dick Porter  <dick@ximian.com>
1879
1880         * icall.c: Deleted the icalls that were obsoleted some time ago
1881         by the ICU string code, and which were mixed into the icall
1882         rearranging.  Fixes bug 55969.
1883
1884         * string-icalls.h: 
1885         * string-icalls.c: Deleted the code that those icalls reference.
1886
1887 2004-04-01  Martin Baulig  <martin@ximian.com>
1888
1889         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
1890
1891         * class.c (mono_class_from_generic_parameter): Don't set 
1892         TYPE_ATTRIBUTE_INTERFACE.
1893         (my_mono_class_from_generic_parameter): Likewise.
1894
1895 2004-04-01  Martin Baulig  <martin@ximian.com>
1896
1897         * loader.c (find_method): Added an optional `MonoClass *ic'
1898         argument to search in a specific interface.
1899         (mono_get_method_constrained): New public function.
1900
1901 2004-04-01  Martin Baulig  <martin@ximian.com>
1902
1903         * reflection.c (mono_image_get_generic_field_token): Use the
1904         `handleref' cache here.
1905
1906 2004-04-01  Martin Baulig  <martin@ximian.com>
1907
1908         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
1909
1910         * reflection.c (create_generic_typespec): Use the `typespec' hash
1911         here, not the `typeref' one.    
1912
1913 2004-04-01  Martin Baulig  <martin@ximian.com>
1914
1915         * class.c (mono_class_inflate_generic_type): Moved the
1916         functionality into a new static inflate_generic_type() which
1917         returns NULL if it didn't do anything.  Only increment the
1918         `mono_stats.inflated_type_count' if we actually inflated
1919         something.
1920         (mono_class_get_full): Check the classes type to see whether we
1921         need to inflate it; also inflate MONO_TYPE_(M)VAR.
1922
1923 2004-04-01  Jackson Harper  <jackson@ximian.com>
1924
1925         * reflection.c: Set culture for assembly references.
1926         
1927 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
1928
1929         * reflection.[ch], icall.[ch], Fix support for pinning variables.
1930
1931 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1932
1933         * assembly.c:
1934         (do_mono_assembly_open): the critical section also covers
1935         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
1936
1937 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1938
1939         * threads.c:
1940         (mono_manage_threads): abort the background threads when finishing.
1941         Fixes bug #47232.
1942
1943 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1944
1945         * gc.c: only close the done_event handle if there was no timeout.
1946         C-ified comments.
1947
1948 2004-03-30  Martin Baulig  <martin@ximian.com>
1949
1950         * icall.c (icall_entries): It's called "System.Activator", not
1951         "System.Activation".    
1952
1953 2004-03-30  Martin Baulig  <martin@ximian.com>
1954
1955         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
1956         (mono_class_create_from_typespec): Likewise.
1957
1958 2004-03-30  Martin Baulig  <martin@ximian.com>
1959
1960         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
1961         `has_ctor_constraint' and `initialized'.
1962
1963 2004-03-30  Martin Baulig  <martin@ximian.com>
1964
1965         * reflection.c (encode_new_constraint): New static function to add
1966         the constructor constraint attribute to a type parameter.
1967         (encode_constraints): Call encode_new_constraint() if necessary.
1968
1969         * reflection.h
1970         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
1971
1972         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
1973         
1974 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
1975
1976         * reflection.c, icall.c: add support for pinning variables. 
1977
1978 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
1979
1980         * marshal.c (mono_marshal_get_managed_wrapper):
1981         init bool local with zero rather than null.
1982
1983 2004-03-29  Martin Baulig  <martin@ximian.com>
1984
1985         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
1986         the "official" behavior here.
1987         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
1988
1989 2004-03-29  Martin Baulig  <martin@ximian.com>
1990
1991         * icall.c: Reflect latest API changes.
1992
1993 2004-03-29  Martin Baulig  <martin@ximian.com>
1994
1995         * loader.c (mono_get_method_from_token): Also call
1996         mono_metadata_load_generic_params () for abstract and interface
1997         methods; replace the type arguments in the method signature with
1998         the ones which are loaded from the metadata.
1999
2000 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
2001
2002         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
2003         of the lock is not the current thread. MS.NET don't do it, in spite of
2004         what the documentation says. See bug #56157.
2005
2006 2004-03-28  Martin Baulig  <martin@ximian.com>
2007
2008         * class.c (mono_class_init): Don't call init_properties() and
2009         init_events() for generic instances; set `prop->parent' when
2010         inflating properties.
2011
2012         * reflection.c (mono_generic_inst_get_object): Call
2013         `mono_class_init (ginst->klass)'.
2014         (mono_type_get_object): Only create a MonoGenericInst if your
2015         generic type is a TypeBuilder.
2016         (do_mono_reflection_bind_generic_parameters): Only set
2017         `ginst->is_dynamic' if our generic type is a TypeBuilder.
2018
2019 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
2020
2021         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
2022         Fixes #56091.
2023
2024 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2025
2026         * icall.c: added Kill_internal icall.
2027         * process.[ch]: added Kill_internal icall.
2028
2029 2004-03-25  Martin Baulig  <martin@ximian.com>
2030
2031         * class.h (MonoStats): Added `generic_instance_count',
2032         `inflated_method_count', `inflated_type_count' and
2033         `generics_metadata_size'.       
2034
2035 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2036
2037         * reflection.c: no warnings now.
2038
2039 2004-03-25  Martin Baulig  <martin@ximian.com>
2040
2041         * class.c (mono_class_get_full): New public function; does a
2042         mono_class_get(), but also takes a `MonoGenericContext *'.
2043
2044         * loader.c (mono_field_from_memberref): Renamed to
2045         `field_from_memberref', made static and added `MonoGenericContext *'
2046         argument.
2047         (mono_field_from_token): Added `MonoGenericInst *' argument.
2048         (method_from_memberef): Likewise.
2049         (mono_get_method_from_token): Likewise.
2050         (mono_get_method_full): New public function; does a
2051         mono_get_method(), but also takes a `MonoGenericContext *'.
2052
2053         * verify.c (mono_method_verify): Get the method's generic context
2054         and pass it to mono_field_from_token(), mono_get_method_full() and
2055         mono_class_get_full().
2056
2057 2004-03-25  Martin Baulig  <martin@ximian.com>
2058
2059         * class.c (mono_class_inflate_generic_type): Take a
2060         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
2061         `MonoGenericMethod *'.
2062
2063 2004-03-25  Martin Baulig  <martin@ximian.com>
2064
2065         * loader.h (MonoMethodInflated): Store the MonoGenericContext
2066         instead of the MonoGenericMethod here.
2067
2068 2004-03-25  Martin Baulig  <martin@ximian.com>
2069
2070         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
2071         each time we create a new MonoGenericInst, we also create a new
2072         context which points back to us.
2073
2074         * class.c (inflate_method): Use `ginst->context' instead of
2075         creating a new context.
2076
2077         * loader.c (method_from_memberref): Use
2078         `klass->generic_inst->context' instead of creating a new context.
2079
2080 2004-03-25  Martin Baulig  <martin@ximian.com>
2081
2082         * class.h (MonoGenericContext): New struct.
2083         (MonoGenericMethod): Removed `generic_inst'.
2084
2085         * class.c (mono_class_inflate_generic_method): Take a
2086         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
2087
2088 2004-03-25  Martin Baulig  <martin@ximian.com>
2089
2090         * loader.h (MonoMethodInflated): New typedef.
2091
2092         * metadata.h (MonoMethodSignature): Removed `gen_method', make
2093         `generic_param_count' consume just 30 bits, added `is_inflated'
2094         and `has_type_parameters' flags (one bit each).
2095
2096         * class.c (mono_class_inflate_generic_method): Create a
2097         MonoMethodInflated instead of a MonoMethodNormal and set
2098         `is_inflated' in the method signature.
2099
2100         * class.h (MonoGenericMethod): Removed `generic_method'.
2101
2102 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
2103
2104         * image.c: Make sure the name of a MonoImage is always an absolute path.
2105           This fixes bug #54415.
2106
2107 2004-03-24  Martin Baulig  <martin@ximian.com>
2108
2109         * class.c (mono_class_setup_vtable): If we're a generic instance,
2110         use our generic type's vtable size.
2111
2112 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
2113
2114         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
2115         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
2116         problems.
2117
2118 2004-03-23  Martin Baulig  <martin@ximian.com>
2119
2120         * class.h (MonoDynamicGenericInst): Added `int count_events' and
2121         `MonoEvent *events'.
2122
2123         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
2124         (typebuilder_icalls): Added "get_event_info"; calls
2125         mono_reflection_event_builder_get_event_info(). 
2126
2127         * reflection.c (mono_reflection_generic_inst_initialize): Added
2128         `MonoArray *events'.
2129         (mono_reflection_event_builder_get_event_info): New function.
2130
2131 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
2132
2133         * object.h: add mono_type_initialization_init
2134
2135         * object.c (mono_runtime_class_init): 
2136         implement class constructor synchronization rules
2137         to cope with threading issues.  
2138         add mono_type_initialization_init
2139
2140         * appdomain.c (mono_runtime_init): call 
2141         mono_type_initialization_init
2142
2143         * class.h: removing initializing field from MonoVTable
2144
2145 2004-03-23  Martin Baulig  <martin@ximian.com>
2146
2147         * class.c (my_mono_class_from_generic_parameter): Use
2148         `param->name' if it's not NULL. 
2149
2150 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
2151
2152         * class.c: do not insert non-virtual methods in the vtable.
2153         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
2154         that means the method is non-virtual. This never would have
2155         happened before.
2156
2157 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
2158
2159         * profiler.c: Added lock for accessing coverage_hash.
2160
2161 2004-03-22  Martin Baulig  <martin@ximian.com>
2162
2163         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
2164         `method->method->signature->generic_param_count != 0' to make it
2165         work for interface methods.
2166
2167 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2168
2169         * process.c: quote the string passed to the shell using g_shell_quote.
2170
2171 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2172
2173         * threads.c:
2174         (mono_threads_manage): don't remove the finalizer thread and self
2175         from the threads hash table so that mono_thread_manage can be called
2176         more than once.
2177
2178 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2179
2180         * process.c: quote the arguments when UseShellExecute is true. Fixes
2181         bug #55790.
2182
2183 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2184
2185         * threads.c: set mono_thread_detach as a cleanup routine for every
2186         thread. This way it's always executed upon thread termination, either
2187         aborted or finished normally. No more xsp hangs!
2188
2189 2004-03-17  Martin Baulig  <martin@ximian.com>
2190
2191         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
2192         `int count_nested' and a `MonoType **nested'.
2193
2194         * reflection.c (mono_reflection_bind_generic_parameters): Moved
2195         most of the functionality into a new static
2196         do_mono_reflection_bind_generic_parameters() and don't take a
2197         `MonoType *nested_in' argument any more.  Don't compute nested
2198         types here.
2199         (mono_reflection_generic_inst_get_nested_types): New public method
2200         to get nested types.
2201
2202         * class.c (mono_class_create_generic): Set `klass->nested_in' if
2203         we're a nested class.
2204
2205         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
2206         mono_reflection_generic_inst_get_nested_types() to compute the
2207         nested types.
2208
2209 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
2210
2211         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
2212         descriptive error message under windows.
2213         
2214 2004-03-17  Martin Baulig  <martin@ximian.com>
2215
2216         * class.c (dup_type): Added `const MonoType *original' argument;
2217         copy the attrs from the original type.
2218
2219 2004-03-17  Martin Baulig  <martin@ximian.com>
2220
2221         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
2222         `m->generic_inst_cache' here.
2223
2224 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
2225
2226         * exception.h exception.c: Add stack_overflow_exception.
2227
2228 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2229
2230         * threadpool.c:
2231         (overlapped_callback): call SetEvent *after* invoking the callback.
2232         No need to call CloseHandle.
2233
2234 2004-03-16  Martin Baulig  <martin@ximian.com>
2235
2236         * reflection.c (mono_image_get_fieldref_token): Take a
2237         `MonoReflectionField *' instead of a `MonoClassField *' and a
2238         `MonoClass *'; store the `MonoReflectionField *' in the hash.
2239
2240 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2241
2242         * appdomain.c: don't add the culture to the filename we're looking for
2243         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
2244
2245 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2246
2247         * locales.c: don't ignore symbols when doing case insensitive compares.
2248         Thanks Dick! Fixes bug #54046.
2249
2250         * threads.c: surround 'threads' usage with enter/leave in
2251         mono_thread_manage.
2252
2253 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
2254
2255         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
2256         implicitly marshalled as [Out]. Fixes #55450.
2257
2258         (mono_marshal_get_runtime_invoke): Zero out the result if there is
2259         an exception.
2260
2261 2004-03-16  Martin Baulig  <martin@ximian.com>
2262
2263         * class.c (mono_class_from_generic_parameter): Use the actual
2264         parameter name. 
2265
2266 2004-03-16  Martin Baulig  <martin@ximian.com>
2267
2268         * reflection.c (type_get_signature_size): New static function.
2269         Compues the size of the type in a method signature.
2270         (method_get_signature_size): New static function; calls
2271         type_get_signature_size() to compute the actual size of the
2272         method's signature.
2273         (method_encode_signature): Use method_get_signature_size() to get
2274         the signature's size rather than using `nparams * 10'.
2275
2276 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2277
2278         * file-io.h: define here WapiOverlapped on windows. I don't want the
2279         regular OVERLAPPED one.
2280
2281         * file-io.c:
2282         * threadpool.c: somehow, BindIoCompletionCallback is not found.
2283         Disabling AIO on windows.
2284
2285 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2286
2287         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
2288         bug #55385.
2289
2290 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2291
2292         * appdomain.c: upgraded corlib version.
2293
2294         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
2295         and BeginWrite. Allow opening files for asynchrnous operations.
2296
2297         * file-io.h: new struct that maps FileStreamAsyncResult.
2298         * icall.c: added new icalls.
2299         * process.[ch]: support setting child process environment variables
2300         and use the SHELL or COMSPEC when UseShellExecute is true.
2301
2302         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
2303         callback for async. IO is here and also BindHandle.
2304
2305         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
2306         from here.
2307
2308 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
2309
2310         * reflection.c (create_custom_attr): Allow len == 0.
2311
2312         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
2313         computation on big-endian machines.
2314
2315 2004-03-13  Martin Baulig  <martin@ximian.com>
2316
2317         * class.h (MonoGenericInst): Added `int count_ifaces'.
2318
2319         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
2320         `ginst->count_ifaces' instead `klass->interface_count' since we
2321         may get called before the vtable is created.
2322
2323         * loader.c (mono_method_get_param_names): If we're a generic
2324         instance, return and don't initialize the class.
2325
2326         * reflection.c (mono_reflection_setup_generic_class): Don't call
2327         ensure_runtime_vtable().
2328         (mono_reflection_bind_generic_parameters): Set
2329         `ginst->count_ifaces'.
2330
2331 2004-03-11  Jackson Harper <jackson@ximian.com>
2332
2333         * icall.c:
2334         * unicode.c:
2335         * unicode.h: Remove unused System.Char icalls.
2336         
2337 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
2338
2339         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
2340         code when we P/Invoke the first library in Windows.Forms, instead
2341         of when we first open the assembly.
2342
2343         * assembly.c: Drop the lookup from here.
2344
2345 2004-03-10  Martin Baulig  <martin@ximian.com>
2346
2347         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
2348         class for properties, fields and events.  Finally fixes #54945.
2349
2350 2004-03-10  Martin Baulig  <martin@ximian.com>
2351
2352         * metadata.c (mono_metadata_class_equal): New static function;
2353         checks whether two generic instances or two generic parameters are
2354         equal.
2355         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
2356         compare classes.        
2357
2358 2004-03-10  Martin Baulig  <martin@ximian.com>
2359
2360         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
2361
2362         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
2363         argument and write it into the `reflection_info' field.
2364
2365         * icall.c
2366         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
2367         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
2368
2369 2004-03-09  Jackson Harper  <jackson@ximian.com>
2370
2371         * char-conversions.h: use 8 bits for numeric data its all we need
2372         * icall.c: numeric data is only 8 bits now.
2373
2374 2004-03-09  Martin Baulig  <martin@ximian.com>
2375
2376         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
2377
2378         * class.c (init_properties, init_events): Initialize the new
2379         `parent' field.
2380
2381         * reflection.c (typebuilder_setup_properties): Likewise.
2382         (typebuilder_setup_events): Likewise.
2383
2384         * reflection.h (MonoEventInfo): Replaced `parent with
2385         `declaring_type' and `reflected_type'.
2386
2387         * icall.c (ves_icall_get_property_info): Distinguish between
2388         declaring and reflected type.
2389         (ves_icall_get_event_info): Likewise.
2390
2391 2004-03-09  Martin Baulig  <martin@ximian.com>
2392
2393         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
2394         (ves_icall_Type_GetField): Correctly set field->klass.
2395
2396 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
2397
2398         * loader.h: Fix warning.
2399
2400 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
2401
2402         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
2403         library routine if present.  Notice that it will still continue
2404         executing even if its missing, for those working on the Gtk#
2405         edition of Windows.Forms.
2406
2407         * assembly.c (do_mono_assembly_open): If loading the
2408         System.Windows.Forms call mono_loader_wini_init.
2409
2410 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
2411
2412         * class.h: Added MonoRemoteClass struct.
2413         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
2414         function for MonoStrings.
2415         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
2416         Added internal call for getting the proxy type.
2417         * marshal.c: Get the type of transparent proxies from its remote_class.
2418         Added methods that generate the IL for type checks and casts:
2419         mono_marshal_get_isinst, mono_marshal_get_castclass, 
2420         mono_marshal_get_proxy_cancast.
2421         * marshal.h: Declaration of the previous new methods.
2422         * object.c: Added new moethods for creating and updating MonoRemoteClass
2423         instances: mono_remote_class, mono_upgrade_remote_class, 
2424         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
2425         * verify.c: FIx transparent_proxy_fields layout.
2426         * appdomain.c: Bump corlib version.
2427
2428 2004-03-04  Jackson Harper  <jackson@ximian.com>
2429
2430         * icall.c: Add icall to access char conversion tables.
2431         * char-conversions.h: Character conversion tables.
2432         * Makefile.am: Add char-conversions.h private header file.
2433         
2434 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
2435
2436         * appdomain.c (unload_thread_main): Increase unloading timeout to
2437         10 sec as a temporary workaround for Nant problems.
2438
2439 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
2440
2441         * gc.c: Add checks for GC_enable and GC_disable.
2442
2443         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
2444         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
2445         (bug #54988).
2446         
2447 2004-02-27  Martin Baulig  <martin@ximian.com>
2448
2449         * reflection.c (mono_reflection_bind_generic_parameters): Take a
2450         `MonoReflectionType *' instead of a `MonoType *'.
2451
2452 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
2453
2454         * gc.c (run_finalize): Avoid finalizing the object representing the
2455         finalizer thread.
2456         (finalizer_thread): Fix warning.
2457
2458 2004-02-25  Martin Baulig  <martin@ximian.com>
2459
2460         * class.c (_mono_class_get_instantiation_name): Added `int offset'
2461         argument for nested types.
2462         (mono_class_create_generic): Added support for nested generictypes.
2463
2464         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
2465         `GList *nested'.
2466
2467         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
2468
2469         * reflection.c (method_encode_signature): Increase the minimum
2470         value of `size' from 10 to 11.
2471         (mono_reflection_bind_generic_parameters): Take `int type_argc'
2472         and `MonoType **types' arguments instead of the `MonoArray
2473         *types'; added `MonoType *nested_in'.  Recursively instantiate
2474         nested classes. 
2475
2476 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
2477
2478         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
2479         stack_overflow_ex members which are used by exception handling.
2480
2481         * appdomain.c (mono_runtime_init): Initialize the new members.
2482
2483         * gc.c (mono_gc_enable): New helper function.
2484         * gc.c (mono_gc_disable): New helper function.
2485
2486 2004-02-23  Martin Baulig  <martin@ximian.com>
2487
2488         * icall.c: I must have been really stupid - make it actually work
2489         this time ;-)
2490
2491 2004-02-23  Martin Baulig  <martin@ximian.com>
2492
2493         * loader.c (method_from_memberref): Only inflate the method if
2494         it's in another klass.
2495
2496 2004-02-23  Martin Baulig  <martin@ximian.com>
2497
2498         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
2499         (mono_class_init): If we're a generic instance and an interface,
2500         compute `class->interface_id'; also create `class->interfaces'
2501         here and inflate them.
2502
2503         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
2504         `ginst->is_open'.
2505         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
2506
2507         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
2508
2509 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
2510
2511         * reflection.c (method_encode_code): Improved the error message
2512         generated by the exception.
2513
2514 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2515
2516         * icall.c: Martin did not do what he said in the ChangeLog for
2517         2004-02-18, but put back the changes for properties and events.
2518         Commenting those changes out again and adding comment to bug #54518.
2519         
2520         * process.c: removed warning.
2521
2522 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
2523
2524         * marshal.c (emit_struct_conv): Print an error message instead of
2525         asserting when a type does not have the StructLayout attribute.
2526
2527 2004-02-20  Martin Baulig  <martin@ximian.com>
2528
2529         * reflection.c (mono_type_get_object): Also use the cache for
2530         generic instances.
2531         (mono_reflection_bind_generic_parameters): Always compute
2532         `ginst->ifaces'.        
2533
2534 2004-02-20  Martin Baulig  <martin@ximian.com>
2535
2536         * class.h (MonoGenericMethod): Removed `klass'.
2537
2538         * class.c (mono_class_inflate_generic_method): Added `MonoClass
2539         *klass' argument.
2540
2541 2004-02-20  Martin Baulig  <martin@ximian.com>
2542
2543         * reflection.c (method_encode_methodspec): Actually use the
2544         uninflated signature for the memberref.
2545
2546 2004-02-20  Martin Baulig  <martin@ximian.com>
2547
2548         * class.h (MonoGenericMethod): Removed `declaring'.
2549
2550         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
2551         is NULL, compute it here.
2552
2553 2004-02-20  Martin Baulig  <martin@ximian.com>
2554
2555         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
2556
2557         * metadata.c (mono_metadata_generic_inst_hash): New method.
2558         (mono_metadata_generic_inst_equal): New method.
2559
2560         * reflection.c (mono_reflection_bind_generic_parameters): Use the
2561         `klass->image->generic_inst_cache' cache to avoid creating
2562         duplicate MonoGenericInst's.
2563
2564         * class.c (mono_class_inflate_generic_type): Use the cache.
2565
2566 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
2567
2568         * object.c: fixed gc descriptor calculation for embedded valuetypes.
2569
2570 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2571
2572         * icall.c: added Socket.WSAIoctl icall.
2573
2574         * socket-io.[ch]: implemented
2575         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
2576
2577 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
2578
2579         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
2580
2581 2004-02-18  Urs C Muff  <umuff@quark.com>
2582
2583         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
2584         this work on PPC and other big-endian architectures.
2585
2586         * debug-mono-symfile.h: Prepended the names of all the `guint32'
2587         fields with an underscore to make sure they're only accessed by
2588         the read32() macro.
2589
2590 2004-02-18  Martin Baulig  <martin@ximian.com>
2591
2592         * icall.c: Put the klass->refclass changes back for methods and
2593         fields, but not for properties and events.  We're currently not
2594         distinguishing between DeclaringType and ReflectedType for
2595         properties and events, that's what caused the regressions.
2596
2597 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2598
2599         * object.c:
2600         (mono_async_result_new): the handle can be NULL.
2601
2602         * threadpool.c: Use an event instead of a semaphore, don't initialize
2603         it until needed. This saves quite a few semaphores from being created
2604         when using the threadpool.
2605
2606 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
2607
2608         * object.c (mono_string_is_interned_lookup): Fix interning of long
2609         strings. Fixes #54473.
2610
2611         * domain.c (ldstr_equal): Optimize if the two strings are equal.
2612
2613         * icall.c: Revert the klass->refclass changes since they introduce
2614         regressions (bug #54518).
2615
2616 2004-02-18  Martin Baulig  <martin@ximian.com>
2617
2618         * class.c (mono_class_init): If we're a generic instance and don't
2619         come from a TypeBuilder, inflate our members here.
2620         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
2621         (mono_class_create_generic): New public method.
2622         (mono_class_initialize_generic): Removed.
2623         (get_instantiation_name): Renamed to
2624         _mono_class_get_instantiation_name() and made it public.
2625
2626 2004-02-18  Martin Baulig  <martin@ximian.com>
2627
2628         * class.c (mono_class_inflate_generic_type): Clear the new
2629         instance's `nginst->klass' when inflating a generic instance.
2630         (mono_class_is_subclass_of): Added (basic) support for generic
2631         instances.
2632
2633 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
2634
2635         * appdomain.h, domain.c: use a MonoCodeManager instead of a
2636         MonoMempool to hold compiled native code.
2637
2638 2004-02-17  Martin Baulig  <martin@ximian.com>
2639
2640         * class.h (MonoDynamicGenericInst): Added `count_properties' and
2641         `properties'.
2642
2643         * reflection.c (mono_reflection_generic_inst_initialize): Added
2644         `MonoArray *properties' argument.
2645
2646         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
2647
2648 2004-02-17  Martin Baulig  <martin@ximian.com>
2649
2650         * icall.c (ves_icall_Type_GetFields): Renamed to
2651         ves_icall_Type_GetFields_internal() and added a
2652         `MonoReflectionType *rtype' argument; pass it to
2653         mono_field_get_object() to set the field's "reflected" type.
2654         (ves_icall_Type_GetConstructors): Likewise.
2655         (ves_icall_Type_GetEvents): Likewise.
2656         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
2657         argument; pass it to mono_method_get_object() to set the method's
2658         "reflected" type.       
2659
2660 2004-02-17  Martin Baulig  <martin@ximian.com>
2661
2662         * class.h (MonoDynamicGenericInst): New type.
2663         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
2664
2665         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
2666         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
2667         (ves_icall_MonoGenericInst_GetFields): New interncall.
2668
2669         * class.c (mono_class_from_generic): Don't call
2670         mono_class_initialize_generic() if this is a dynamic instance;
2671         ie. it's being created from a TypeBuilder.
2672         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
2673         `class->byval_arg.type'.
2674
2675         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
2676         to `inflate_method' and made static.
2677         (mono_reflection_inflate_field): Removed.
2678         (mono_reflection_generic_inst_initialize): New public method.
2679
2680         * reflection.h (MonoReflectionGenericInst): Removed `methods',
2681         `ctors' and `fields'; added `initialized'.
2682
2683 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
2684
2685         * debug-helpers.c (mono_method_full_name): Fix output for empty
2686         namespaces.
2687
2688 2004-02-12  Martin Baulig  <martin@ximian.com>
2689
2690         * class.h (MonoClassField): Added `MonoType *generic_type'.
2691
2692         * reflection.c (mono_image_get_fieldref_token): Added support for
2693         instantiated generic types.
2694         (field_encode_inflated_field): Removed.
2695         (mono_image_get_inflated_field_token): Removed.
2696         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
2697
2698         * reflection.h (MonoReflectionInflatedField): Removed.
2699
2700 2004-02-12  Martin Baulig  <martin@ximian.com>
2701
2702         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
2703         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
2704
2705         * reflection.c (mono_image_get_methodspec_token): Take a
2706         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
2707         (mono_image_create_token): Check whether we have a
2708         `method->signature->gen_method' and call
2709         mono_image_get_methodspec_token() if appropriate.
2710         (inflated_method_get_object): Removed.
2711         (mono_reflection_bind_generic_method_parameters): Return a
2712         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
2713         (mono_reflection_inflate_method_or_ctor): Likewise.
2714
2715         * reflection.h (MonoReflectionInflatedMethod): Removed.
2716
2717 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
2718
2719         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
2720         for custom valuetype marshalling.
2721
2722         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
2723
2724 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2725
2726         * icall.c: fixed WSAGetLastError_internal name.
2727
2728 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
2729
2730         * threads.c (mono_thread_attach): Allow this to be called multiple
2731         times for a thread.
2732         
2733         * threads.c (build_wait_tids): Do not wait for ourselves.
2734
2735         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
2736         appdomain list is empty.
2737
2738         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
2739         memory returned by mono_string_builder_to_utf16, since it points into
2740         managed memory. Thanks to Bernie Solomon for noticing this.
2741
2742         * icall.c: Add AppDomainSetup icalls.
2743
2744         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
2745
2746         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
2747         types.
2748
2749         * reflection.c (reflection_methodbuilder_to_mono_method): Save
2750         custom attributes to the method_aux struct. Also fix array indexes etc.
2751
2752         * loader.c (mono_method_get_param_names): Make dynamic case work again.
2753         
2754 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
2755
2756         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
2757         (both static and runtime) and reduce startup time.
2758
2759 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
2760
2761         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
2762         AsAny marshalling conversion instead of crashing.
2763
2764         * marshal.c: Fix warnings.
2765
2766 2004-02-09  Martin Baulig  <martin@ximian.com>
2767
2768         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
2769
2770         * reflection.h (MonoReflectionInflatedMethod): Removed the
2771         `declaring' field, it's now in the unmanaged MonoGenericMethod.
2772
2773         * reflection.c (method_encode_methodspec): Removed the `method'
2774         argument; we get it from `gmethod->declaring'.
2775         (inflated_method_get_object): Removed the `declaring' argument.
2776
2777 2004-02-09  Martin Baulig  <martin@ximian.com>
2778
2779         * class.h (MonoGenericMethod): New type.
2780         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
2781         `generic_method'.
2782
2783         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
2784         a `MonoGenericMethod *gen_method' one.
2785
2786         * class.c (mono_class_inflate_generic_type): Take an additional
2787         `MonoGenericMethod * argument.  This is only non-NULL if we're
2788         inflating types for a generic method.   
2789         (mono_class_inflate_generic_signature): Renamed to
2790         inflate_generic_signature() and made static; take a
2791         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
2792         (inflate_generic_header): Take a `MonoGenericMethod *' argument
2793         instead of a `MonoGenericInst *' one.
2794         (mono_class_inflate_generic_method): Likewise.
2795
2796         * reflection.c (encode_generic_method_sig): Take a
2797         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
2798         (method_encode_methodspec): Likewise.
2799         (inflated_method_get_object): Likewise. 
2800
2801         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
2802         field with a `MonoGenericMethod *gmethod' one.  
2803
2804 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
2805
2806         * class.h (mono_class_has_parent): add parens to expansion
2807         so you can ! this.
2808
2809 2004-02-08  Martin Baulig  <martin@ximian.com>
2810
2811         * image.h (MonoImage): Removed `generics_cache'.
2812
2813         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
2814         instead of a `MonoType *' argument; removed the `inflate_methods'
2815         argument.  Don't inflate methods here.
2816
2817         * loader.c (find_method): If it's a generic instance, call
2818         mono_class_init() on the `sclass->generic_inst->generic_type'.
2819
2820         * metadata.c (mono_type_size): Make this work on uninitialized
2821         generic instances; call it on the `ginst->generic_type's class.
2822
2823         * reflection.c (mono_reflection_bind_generic_parameters): Call
2824         mono_class_from_generic() to create the `ginst->klass'.
2825
2826 2004-02-08  Martin Baulig  <martin@ximian.com>
2827
2828         * class.h (MonoClass): Changed type of `generic_inst' from
2829         `MonoType *' to `MonoGenericInst *'.
2830
2831 2004-02-08  Martin Baulig  <martin@ximian.com>
2832
2833         * icall.c (ves_icall_Type_BindGenericParameters): Just call
2834         mono_type_get_object(), this is now creating a `MonoGenericInst'
2835         for MONO_TYPE_GENERICINST.
2836         (ves_icall_MonoGenericInst_GetParentType): Likewise.
2837         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
2838
2839         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
2840         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
2841         (inflated_method_get_object): Added `MonoClass *refclass' argument.
2842         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
2843         and reflected type.
2844
2845         * reflection.h (MonoReflectionInflatedMethod): Removed
2846         `declaring_type' and `reflected_type'.
2847
2848 2004-02-08  Martin Baulig  <martin@ximian.com>
2849
2850         * class.h (MonoGenericInst): Added `MonoType *parent' and
2851         `MonoType **ifaces'.
2852
2853         * reflection.h (MonoReflectionGenericInst): Removed `klass',
2854         `parent' and `interfaces'.
2855
2856         * reflection.c (mono_reflection_bind_generic_parameters): Take a
2857         `MonoType *' argument and return a `MonoType *'.
2858
2859         * icall.c
2860         (ves_icall_MonoGenericInst_GetParentType): New interncall.
2861         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
2862
2863 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
2864
2865         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
2866         valuetype marshalling.
2867
2868 2004-02-06  Martin Baulig  <martin@ximian.com>
2869
2870         * class.c
2871         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
2872         (my_mono_class_from_generic_parameter): Likewise.
2873
2874 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
2875
2876         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
2877         contents of the symbol files lazily.
2878
2879         * object.h (MonoThread): Add 'name' and 'name_len' fields.
2880
2881         * threads.h threads.c icall.c: New icalls for getting and setting the
2882         threads name.
2883
2884 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
2885
2886         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
2887         Raise an exception when the domain is not found.
2888
2889 2004-02-03  Martin Baulig  <martin@ximian.com>
2890
2891         * reflection.c (mono_image_get_methodspec_token): Use the
2892         uninflated signature; fixes gen-33.
2893
2894 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
2895
2896         * gc.c threads.c: Make the finalizer thread a normal managed thread so
2897         the finalizer code can use thread functionality.
2898
2899         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
2900         the finalizer thread.
2901
2902         * threads.c: Make some functions more robust.
2903
2904         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
2905
2906         * metadata.h: Add new marshalling conventions.
2907
2908         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
2909         stringbuilder marshalling. Fixes #53700.
2910
2911         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
2912
2913         * reflection.c (mono_image_get_type_info): Save declarative security
2914         info.
2915
2916         * reflection.c (mono_image_get_field_info): Handle uninitialized 
2917         unmanaged fields as well.
2918
2919         * appdomain.c: Bump corlib version.
2920
2921 2004-02-01  Martin Baulig  <martin@ximian.com>
2922
2923         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
2924         method type arguments.  
2925
2926 2004-01-30  Duncan Mak  <duncan@ximian.com>
2927
2928         * marshal.h: Add prototype for
2929         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
2930         and
2931         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
2932         fix the build.
2933
2934 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
2935
2936         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
2937         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
2938
2939 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
2940
2941         * marshal.c (mono_marshal_get_native_wrapper): Add support for
2942         custom marshalling of valuetypes.
2943
2944         * marshal.c: Fix some warnings.
2945
2946 2004-01-29  Martin Baulig  <martin@ximian.com>
2947
2948         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
2949         for generic method parameters.
2950
2951         * reflection.c (method_encode_methodspec): Write the uninflated
2952         signature into the methodspec table.
2953         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
2954         is always the uninflated method.
2955         (reflection_methodbuilder_to_mono_method): Copy the generic
2956         parameters from the MethodBuilder into `header->gen_params'.
2957
2958 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
2959
2960         * class.c (mono_class_from_generic_parameter): Fix warning.
2961
2962 2004-01-27  Martin Baulig  <martin@ximian.com>
2963
2964         * class.c (mono_class_from_generic_parameter): Don't create
2965         `klass->methods' here.  
2966
2967 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
2968
2969         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
2970         extension since it does not work with libraries named lib<FOO>.dll.so.
2971
2972 2004-01-25  Martin Baulig  <martin@ximian.com>
2973
2974         * class.c (mono_class_inflate_generic_type): Added support for
2975         MONO_TYPE_GENERICINST.
2976
2977         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
2978         inflate methods on open constructed types.      
2979
2980 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2981
2982         * object.c: fire ProcessExit event in the root AppDomain after running
2983         Main. Fixes bug #53299.
2984
2985 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
2986
2987         * socket-io.c: include the new socket-wrappers.h header.
2988         Use the wrappers instead of the unix socket functions to make the code
2989         more clear.
2990
2991 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
2992
2993         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
2994
2995         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
2996         Fixes #22532.
2997
2998 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
2999
3000         * reflection.c (mono_image_create_pefile): Handle the case when the
3001         entry point is not a MethodBuilder.
3002
3003         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
3004         field to ReflectionMethod since it is not allways a builder.
3005
3006         * reflection.c (type_get_fully_qualified_name): New helper function to
3007         return the fully qualified name of a type.
3008
3009         * reflection.c (encode_marshal_blob): Always emit the fully qualified
3010         type name for custom marshallers.
3011
3012         * reflection.c (mono_marshal_spec_from_builder): Ditto.
3013
3014         * class.c (mono_class_setup_vtable): If a parent class already 
3015         implements an interface, use the implementing methods from that class.
3016         Fixes #53148.
3017
3018 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3019
3020         * threadpool.c: just return instead of ExitThread to allow for thread
3021         clean up earlier.
3022
3023 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
3024
3025         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
3026         when closing resource modules.
3027
3028         * reflection.c (mono_image_create_pefile): Handle the case when the
3029         entry point is not a MethodBuilder.
3030
3031         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
3032         field to ReflectionMethod since it is not allways a builder.
3033
3034 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
3035
3036         * marshal.c (mono_marshal_get_managed_wrapper): 
3037         mono_marshal_alloc takes native int so CONV_I
3038         the arg for 64bits.
3039
3040 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
3041
3042         * reflection.c (fixup_cattrs): New function to fixup the methoddef
3043         tokens in the cattr table. Fixes #53108.
3044
3045 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3046
3047         * loader.c: don't trim ".dll" before looking up in the config file.
3048         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
3049
3050 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
3051
3052         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
3053         Return the module which contains the resource as well.
3054         (ves_icall_System_Reflection_Module_Close): New icall.
3055
3056         * appdomain.c: Bump corlib version number.
3057
3058         * image.c (mono_image_addref): New public function.
3059
3060         * assembly.c: Call mono_image_addref.
3061
3062         * reflection.c (mono_module_get_object): Increase reference count of 
3063         the image.
3064
3065         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
3066         Fixes #22532.
3067
3068         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
3069         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
3070         proper exceptions on DllImport problems.
3071
3072 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
3073
3074         * class.c, metadata.c: eliminate CSIZE macro.
3075
3076 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
3077
3078         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
3079         * object.h: Added async_callback field in MonoAsyncResult.
3080         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
3081         * verify.c: Added async_callback in MonoAsyncResult layout.
3082
3083 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
3084
3085         * reflection.c (mono_reflection_get_custom_attrs): Add support
3086         for Modules.
3087
3088 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
3089
3090         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
3091         marshalling.
3092         (mono_marshal_method_from_wrapper): Add null pointer check.
3093
3094 2004-01-16  Martin Baulig  <martin@ximian.com>
3095
3096         * debug-mono-symfile.h: Set version number to 36 and reflect
3097         latest symbol writer changes.
3098
3099 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
3100
3101         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
3102         multi-dimensional arrays.
3103         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
3104         (mono_class_from_mono_type): Use bounded_array_class_get.
3105         
3106         * class.c (mono_bounded_array_class_get): New function which takes
3107         a 'bounded' bool argument to distinguish vectors from one dimensional
3108         arrays.
3109
3110         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
3111         bounded_array_class_get if the array has bounds.
3112
3113         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
3114         Search modules loaded using AssemblyBuilder:AddModule as well.
3115
3116 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3117
3118         * appdomain.c: increased corlib version.
3119         * filewatcher.c: removed g_print.
3120         * icall.c:
3121         (get_property_info): only allocate what is actually requested.
3122         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
3123
3124 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3125
3126         * Makefile.am: added filewatcher.[ch]
3127         * filewatcher.[ch]: FileSystemWatcher runtime support.
3128         * icall.c: added new FSW icalls.
3129
3130 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
3131
3132         * string-icalls.c: fix stringbuilder regression as suggested by
3133         Iain McCoy <iain@mccoy.id.au>.
3134
3135 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
3136
3137         * process.c (process_read_stringtable_block): Recognize '007f' as
3138         a language neutral stringtable block.
3139
3140 2004-01-12  Patrik Torstensson
3141
3142         * object.h (MonoStringBuilder) : Changed layout to support our
3143         new stringbuilder class.
3144         * marshal.c: Change marshalling to support the new layout of 
3145         string builder.
3146         * appdomain.c: increased version number because new layout of
3147         string builder.
3148
3149 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
3150
3151         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
3152         assembly name as an string instead of an AssemblyName, since it is
3153         easier to extract info from it.
3154
3155         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
3156         the culture subdirectories too. Fixes #52231.
3157
3158 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3159
3160         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
3161         It takes 2 new parameters with an optional name for the method to look
3162         for and case ignoring info.
3163
3164         * threadpool.c: removed unused variable.
3165
3166 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3167
3168         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
3169         It takes 2 new parameters with an optional name for the property to look
3170         for and case ignoring info.
3171         Fixes bug #52753.
3172
3173 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
3174
3175         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
3176         Fix #52451.
3177
3178 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3179
3180         * appdomain.c:
3181         * assembly.c: escape the uri before passing it to g_filename_from_uri.
3182         Fixes bug #52630.
3183
3184 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
3185
3186         * reflection.c: Add support for more than one unmanaged resource.
3187
3188         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
3189         in field->def_value, as done in all other cases.
3190
3191         * reflection.c (mono_reflection_get_custom_attrs): Add support for
3192         TypeBuilders.
3193
3194         * reflection.c (mono_reflection_create_runtime_class): Remove 
3195         errorneous assignment to klass->element_class, since it is already
3196         done in mono_reflection_setup_internal_class.
3197
3198 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3199
3200         * gc.c: added missing LeaveCriticalSection.
3201         * icall.c: indented a couple of lines.
3202         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
3203         if we call EndInvoke inside a callback. Fixes bug #52601.
3204
3205 2004-01-07  Martin Baulig  <martin@ximian.com>
3206
3207         * mono-debug-debugger.h
3208         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
3209
3210 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
3211
3212         * appdomain.c: Use messages in NotImplementedException.
3213
3214         * exception.c (mono_get_exception_not_implemented): Now this takes
3215         a message argument.
3216
3217         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
3218         exception instead of g_asserting an aborting when something is not
3219         implemented.
3220
3221         Add some inline docs.
3222
3223 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
3224
3225         * reflection.h: Update after changes to object layout.
3226
3227         * reflection.c: Implement saving of unmanaged aka win32 resources.
3228
3229         * appdomain.c: Bump version number.
3230
3231         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
3232         Handle missing domains gracefully.
3233
3234 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
3235
3236         * file-io.c : On Windows, there are much more invalid_path_chars.
3237
3238 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
3239
3240         * class.h, object.c: prepare for GetType () speedup.
3241
3242 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
3243
3244         * profiler.c: workaround for --profile null reference exception on
3245           cygwin. Patch by Patrik Torstensson.
3246
3247 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
3248
3249         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
3250         make work for unaligned access.
3251
3252 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
3253
3254         * class.c: small cleanup (class->fields [i] -> field).
3255         * image.c: check address of metadata is valid.
3256
3257 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
3258
3259         * assembly.h assembly.c (mono_assembly_loaded): New public function to
3260         search the list of loaded assemblies.
3261
3262         * reflection.c (mono_reflection_type_from_name): Use 
3263         mono_assembly_loaded instead of mono_image_loaded.
3264
3265         * reflection.c: Fix warnings.
3266
3267 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
3268
3269         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
3270         is dynamic. This is needed since an assembly can contain both dynamic and
3271         non-dynamic images.
3272
3273         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
3274         assembly->dynamic.
3275
3276         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
3277
3278         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
3279         to store modules loaded using AddModule.
3280
3281         * reflection.c (mono_image_fill_file_table): Generalize this so it works
3282         on Modules.
3283
3284         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
3285
3286         * reflection.c (mono_image_fill_export_table_from_module): New function to
3287         fill out the EXPORTEDTYPES table from a module.
3288
3289         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
3290         into a separate function. Also handle loaded non-dynamic modules.
3291
3292         * reflection.c (mono_image_basic_init): Fix memory allocation.
3293
3294         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3295
3296         * assembly.c (mono_assembly_load_references): Make this public.
3297
3298 2003-12-19  Martin Baulig  <martin@ximian.com>
3299
3300         * class.c (mono_class_initialize_generic): Made this static, take
3301         a `MonoGenericInst *' instead of a `MonoClass *'.
3302         (mono_class_from_generic): Call mono_class_initialize_generic()
3303         unless we're already initialized or being called from
3304         do_mono_metadata_parse_generic_inst().
3305
3306         * class.h (MonoGenericInst): Added `initialized' and
3307         `init_pending' flags.
3308
3309         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
3310         `mono_class_init (gklass)' or mono_class_initialize_generic()
3311         here; set `generic_inst->init_pending' while parsing the
3312         `type_argv'.
3313
3314 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
3315
3316         * locales.c: include string.h for memxxx prototypes
3317
3318 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
3319
3320         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
3321         constructor when accessing literal fields.
3322
3323 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
3324
3325         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3326
3327         * reflection.c (assembly_add_resource_manifest): New function to fill
3328         the MANIFESTRESOURCE table.
3329
3330         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
3331
3332         * reflection.h: Update to changes in class layout.
3333
3334         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
3335         Reenable call to mono_runtime_is_shutting_down ().
3336
3337         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
3338         determine if the runtime is shutting down.
3339
3340 2003-12-16  Jackson Harper <jackson@ximian.com>
3341
3342         * icall.c: comment out call to mono_runtime_is_shutting_down to
3343         fix build.
3344         
3345 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
3346
3347         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
3348         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
3349
3350 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
3351
3352         * reflection.c: move definition of swap_with_size
3353         to before its first call
3354
3355 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
3356
3357         * appdomain.c (mono_runtime_is_shutting_down): New public function.
3358
3359         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
3360         icall.
3361
3362         * object.c: Fix warnings.
3363
3364         * icall.c (ves_icall_Type_Get...): Only consider inherited static
3365         members if FlattenHierarchy is set.
3366
3367         * reflection.c (mono_image_add_decl_security): New function to emit
3368         declarative security.
3369
3370         * reflection.h reflection.c: Add support for declarative security.
3371
3372         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
3373         
3374 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
3375
3376         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
3377         
3378         * appdomain.c verify.c: Moved corlib version checking into its own
3379         function in appdomain.c since it needs to create vtables etc.
3380
3381 2003-12-13  Patrik Torstensson <p@rxc.se>
3382
3383         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
3384         instead of unwrapped server.
3385
3386 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
3387
3388         * verify.c (check_corlib): Fix field index.
3389
3390 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
3391
3392         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
3393         GetGacPath icall.
3394
3395 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
3396
3397         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
3398         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
3399         cope with sizeof(size_t) != sizeof(guint32).
3400
3401 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3402
3403         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
3404         in case of failure.
3405
3406 2003-12-10  Mark Crichton <crichton@gimp.org>
3407
3408         * icall.c: removed the GetNonZeroBytes.  We now handle this case
3409         in managed code.
3410
3411         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
3412
3413 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
3414
3415         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
3416         marked as deleted.
3417
3418 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
3419
3420         * verify.c (check_corlib): Handle the case when the version field is 
3421         initialized by a static constructor.
3422
3423 2003-12-08  Patrik Torstensson  <p@rxc.se>
3424
3425     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
3426
3427 2003-12-08  Martin Baulig  <martin@ximian.com>
3428
3429         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
3430         a MonoReflectionGenericParameter, also take the parameter index
3431         and name as arguments.
3432         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
3433         (ves_icall_MonoGenericParam_initialize): New interncall.
3434         (ves_icall_Type_make_byref_type): New interncall.
3435
3436         * reflection.h (MonoReflectionGenericParam): Derive from
3437         MonoReflectionType, not just from MonoObject.  Added `refobj' and
3438         `index' fields.
3439
3440         * reflection.c (mono_reflection_define_generic_parameter): Create
3441         and return a new MonoReflectionGenericParam; don't initialize the
3442         constraints here.
3443         (mono_reflection_initialize_generic_parameter): New public method;
3444         initializes the constraints and creates the `param->pklass'.
3445
3446 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
3447
3448         * reflection.h reflection.c: Use the new fields 'num_types', 
3449         'num_fields' and 'num_methods' to track the number of types etc.
3450
3451         * verify.c (check_corlib): Check corlib version number.
3452
3453 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
3454
3455         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
3456         function works on all methods.
3457
3458 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
3459
3460         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
3461         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
3462         the custom_type_info flag of the transparent proxy.
3463         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
3464         objects that supports IRemotingTypeInfo.
3465         * object.h: Added custom_type_info field in transparent proxy.
3466
3467 2003-12-06  Martin Baulig  <martin@ximian.com>
3468
3469         * class.c (mono_class_create_from_generic): Removed.
3470         (mono_class_from_generic): Check `ginst->klass' before doing
3471         anything else.  This is important to fully support "recursive"
3472         generic types.
3473
3474         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
3475         empty `generic_inst->klass' before doing anything else.
3476
3477 2003-12-06  Dick Porter  <dick@ximian.com>
3478
3479         * verify.c: 
3480         * object.h:
3481         * icall.c:
3482         * locales.c: Use C structs to access class fields.  Don't do a
3483         conversion between MonoString and UChar because both are
3484         platform-endian UTF-16.  Compare now takes startindex and count
3485         parameters.  Add a char overload for IndexOf.  Speed up the
3486         invariant string IndexOf.
3487
3488 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
3489
3490         * Makefile.am (monosn_LDADD): Fix parallel build.
3491
3492 2003-12-04  Martin Baulig  <martin@ximian.com>
3493
3494         * icall.c
3495         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
3496         (ves_icall_Type_make_array_type): New interncall.       
3497
3498 2003-12-04  Martin Baulig  <martin@ximian.com>
3499
3500         * locales.c: also change it in the !HAVE_ICU case.
3501
3502 2003-12-04  Dick Porter  <dick@ximian.com>
3503
3504         * icall.c:
3505         * locales.c: construct_compareinfo is now in CompareInfo, not
3506         CultureInfo.
3507
3508 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
3509
3510         * image.c (mono_image_load_file_for_image): Cache loaded images in the
3511         image->files array.
3512
3513         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
3514         table as well.
3515
3516         * assembly.c (mono_assembly_load_references): Only load references
3517         once.
3518
3519         * class.c (mono_class_from_name): Avoid linear search of the 
3520         EXPORTEDTYPE table.
3521
3522         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
3523
3524 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
3525
3526         * image.h (MonoImage): Add 'field_cache' field.
3527
3528         * loader.c (mono_field_from_token): Cache field lookups.
3529         
3530         * reflection.c (mono_module_get_object): Fix name property.
3531
3532         * icall.c (ves_icall_get_enum_info): Update after changes to 
3533         mono_metadata_get_constant_index ().
3534
3535         * icall.c: Get rid of get_type_info icall, use a separate icall for
3536         each type property to avoid needless memory allocations. Fixes #51514.
3537
3538         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
3539         to avoid needless binary searches.
3540
3541         * class.c (class_compute_field_layout): Move the initialization of
3542         field->def_value to mono_class_vtable ().
3543
3544         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
3545         non-corlib types.
3546
3547         * object.c (mono_object_allocate): Make it inline.
3548
3549         * object.c (mono_object_allocate_spec): Make it inline.
3550         
3551 2003-12-02  Dick Porter  <dick@ximian.com>
3552
3553         * locales.c (create_NumberFormat): NumberFormatInfo construction.
3554         Patch by Mohammad DAMT (mdamt@cdl2000.com).
3555
3556 2003-12-01  Dick Porter  <dick@ximian.com>
3557
3558         * threads.c: Fix signature and call in CreateMutex and
3559         CreateEvent.
3560
3561 2003-12-01  Dick Porter  <dick@ximian.com>
3562
3563         * icall.c: 
3564         * locales.c: Implement string compares and searching
3565
3566         * object.h: Add extra Thread field
3567
3568 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
3569
3570         * reflection.c (fixup_method): Add support for MonoCMethod.
3571
3572 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
3573
3574         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
3575
3576         * reflection.c (assembly_name_to_aname): Allow extra characters in
3577         assembly names. Fixes #51468.
3578
3579 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
3580
3581         * exception.c (mono_exception_from_name_domain): New helper function.
3582
3583         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
3584         exception object in the correct domain.
3585
3586         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
3587         formatting + make a copy a the input data.
3588
3589         * loader.c (mono_get_method_from_token): Methods which contain
3590         native code do not have entries in the ImplMap.
3591
3592         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
3593         Thanks to Gonzalo for spotting this.
3594         
3595         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
3596         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
3597
3598         * assembly.h (mono_assembly_load_from): Split the second part of 
3599         assembly loading into a new public function.
3600
3601         * exception.h (mono_get_exception_bad_image_format): New function.
3602
3603 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
3604
3605         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
3606         Enumerate all modules inside a dynamic assembly. Fixes #51293.
3607         
3608         * icall.c: Add new icall for creating dynamic methods.
3609
3610         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
3611
3612         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
3613
3614         * reflection.c (mono_reflection_create_dynamic_method): New icall to
3615         create a dynamic method.
3616
3617         * reflection.c (resolve_object): New helper function.
3618
3619         * reflection.c: Generalize ReflectionMethodBuilder and the functions
3620         which manipulate it so they can also work on dynamic methods.
3621
3622         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
3623         creating the MonoReflectionMethodAux structure if it is not needed.
3624         
3625         * reflection.h verify.c: Update after changes to object layout.
3626
3627         * reflection.c (method_builder_encode_signature): Fix compilation on
3628         gcc 2.95.x.
3629
3630 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
3631
3632         * appdomain.h: Added support for context static fields. Added static_data
3633           field to MonoAppContext and renamed thread_static_fields to a more
3634           generic special_static_fields in MonoAppDomain, since it can now contain
3635           context static fields.
3636         * domain.c: Updated hashtable name.
3637         * object.c: Replaced field_is_thread_static() for a more generic
3638           field_is_special_static() which also checks for context static attribute.
3639           In mono_class_vtable(), added support for static context fields.
3640         * threads.c: Changed methods that manage thread static fields to more
3641           generic methods so they can be reused both for thread and context static
3642           data.
3643         * threads.h: Declared some new methods.
3644
3645 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
3646
3647         * reflection.h: Update after changes to the managed types.
3648
3649         * reflection.c (encode_custom_modifiers): New helper function.
3650
3651         * reflection.c (method_encode_signature): Emit custom modifiers.
3652
3653         * reflection.c (field_encode_signature): Emit custom modifiers.
3654
3655 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
3656
3657         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
3658
3659         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
3660         implementation.
3661
3662         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
3663         icall.
3664
3665         * object.c (mono_field_get_value_object): New function.
3666
3667         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
3668         specific.
3669
3670 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
3671
3672         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
3673         return a preallocated out-of-memory exception instance.
3674
3675         * object.c (out_of_memory): Use the new function.
3676
3677         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
3678         flag is before the custom modifiers. Fixes #49802.
3679
3680 2003-11-16  Martin Baulig  <martin@ximian.com>
3681
3682         * class.c (mono_class_is_open_constructed_type): Implemented the
3683         MONO_TYPE_GENERICINST case.
3684
3685 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
3686
3687         * assembly.c (mono_assembly_fill_assembly_name): New function to
3688         fill out the MonoAssemblyName structure.
3689         (mono_assembly_open): Use the new function.
3690
3691         * icall.c (fill_reflection_assembly_name): New helper function.
3692
3693         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
3694         new function.
3695
3696         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
3697
3698 2003-11-15  Martin Baulig  <martin@ximian.com>
3699
3700         * class.c (mono_class_is_open_constructed_type): New public
3701         function; checks whether a type is an open constructed type,
3702         ie. whether it still contains type parameters.
3703         (mono_class_inflate_generic_type): If we're a type parameter and
3704         the inflated type is also a MONO_TYPE_(M)VAR, return the original
3705         type.
3706
3707         * class.h (MonoGenericInst): Added `guint32 is_open'.
3708
3709         * loader.c (method_from_methodspec): Check whether we're an open
3710         or closed constructed type and set `ginst->is_open'.
3711
3712         * reflection.c (mono_reflection_bind_generic_parameters): Check
3713         whether we're an open or closed constructed type and set
3714         `ginst->is_open'.
3715         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
3716         from open constructed types.
3717
3718 2003-11-15  Martin Baulig  <martin@ximian.com>
3719
3720         * reflection.c (mono_reflection_bind_generic_parameters): If we're
3721         a generic instance (instead of a generic type declaration) with
3722         unbound generic parameters, bind them to our actual types.
3723
3724 2003-11-14  Martin Baulig  <martin@ximian.com>
3725
3726         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
3727
3728         * reflection.c (mono_reflection_bind_generic_parameters): If we're
3729         an interface type, populate `res->interfaces' with instantiated
3730         versions of all the interfaces we inherit.
3731
3732 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
3733
3734         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
3735         when MONO_PATH is set but doesn't contain the install dir.
3736
3737 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3738
3739         * icall.c:
3740         (ves_icall_Type_GetInterfaces): don't return an interface twice when
3741         it's also implemented in base classes. Fixes bug #50927.
3742
3743 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
3744
3745         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
3746         if this method is called from a finalizer. Fixes #50913.
3747
3748 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
3749
3750         * threads.c: Implement VolatileRead/VolatileWrite
3751
3752         * icall.c: Add new icalls for VolatileRead/VolatileWrite
3753
3754 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
3755
3756         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
3757         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
3758         2.95.3.
3759
3760         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
3761         from Peter Ross (pro@missioncriticalit.com).
3762         
3763 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
3764
3765         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
3766
3767 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
3768
3769         * assembly.c (mono_assembly_load_references): Disable check because it
3770         triggers on older corlibs which lots of people have.
3771
3772 2003-11-12  Jackson Harper  <jackson@ximian.com>
3773
3774         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
3775         load corlib.dll if mscorlib.dll is not found.
3776         * assembly.h: Remove corlib name define.
3777         * class.c:
3778         * domain.c:
3779         * image.c: Change corlib name to mscorlib.
3780         
3781 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
3782
3783         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
3784
3785 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
3786
3787         * appdomain.h: Added loader_optimization here to sync with the C#
3788         code, and add disallow_binding_redirects field.
3789
3790 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
3791
3792         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
3793
3794         * reflection.c (mono_image_build_metadata): Fix crash on modules
3795         with no types.
3796
3797         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
3798
3799         * icall.c (ves_icall_get_method_info): Return callingConvention as
3800         well.
3801
3802         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
3803         namespaces from the EXPORTEDTYPE table as well.
3804
3805         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
3806         from all modules inside the assembly.
3807         
3808 2003-11-11  Martin Baulig  <martin@ximian.com>
3809
3810         * reflection.c (mono_reflection_bind_generic_parameters): Make
3811         this work for interfaces.
3812
3813 2003-11-11  Martin Baulig  <martin@ximian.com>
3814
3815         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
3816
3817 2003-11-11  Martin Baulig  <martin@ximian.com>
3818
3819         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
3820         "MonoInflatedMethod" and "MonoInflatedCtor".
3821
3822 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
3823
3824         * reflection.c (resolution_scope_from_image): Use the assembly table
3825         from the manifest module, since other modules don't have it.
3826
3827         * debug-helpers.c (mono_type_full_name): New helper function.
3828
3829         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
3830
3831         * image.c (mono_image_load_file_for_image): New public function which
3832         is a replacement for the load_file_for_image in class.c.
3833
3834         * assembly.c (mono_assembly_load_module): A wrapper for the function
3835         above which does assembly association and reference loading too.
3836
3837         * class.c (mono_class_from_name): Call mono_assembly_load_module.
3838
3839 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3840
3841         * appdomain.c: not all of the attributes for the full assembly name
3842         are required and the order doesn't matter. Fixes bug #50787.
3843
3844 2003-11-10  Dick Porter  <dick@ximian.com>
3845
3846         * locales.c: Use platform-endian UTF16
3847
3848 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
3849
3850         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
3851         
3852 2003-11-10  Martin Baulig  <martin@ximian.com>
3853
3854         * metadata.c
3855         (mono_metadata_load_generic_params): Make this actually work.
3856
3857         * reflection.c (mono_reflection_bind_generic_parameters): If our
3858         parent is a generic instance, pass all the `types' to it, no
3859         matter whether it has the same number of type parameters or not.
3860
3861 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
3862
3863         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
3864
3865         * assembly.c (mono_assembly_load_references): Move the image<->assembly
3866         assignment code to this function so it gets called recursively for all
3867         modules.
3868
3869         * image.c (load_modules): Remove the assembly assignment since it is
3870         now done by mono_assembly_load_references.
3871         
3872         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
3873         Add 'module' argument.
3874         (mono_module_get_types): New helper function.
3875         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
3876
3877 2003-11-08  Martin Baulig  <martin@ximian.com>
3878
3879         * class.c (mono_class_inflate_generic_method): Interface method
3880         don't have a header.
3881
3882         * reflection.c (mono_image_get_methodspec_token): Take an
3883         additional `MonoGenericInst *' argument instead of reading it from
3884         the header; this is necessary to support interfaces.
3885         (mono_image_create_token): Pass the `MonoGenericInst *' from the
3886         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
3887         (inflated_method_get_object): Take an additional `MonoGenericInst *'
3888         argument.
3889
3890         * reflection.h (MonoReflectionInflatedMethod): Added
3891         `MonoGenericInst *ginst'.
3892
3893 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
3894
3895         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
3896
3897 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
3898
3899         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
3900
3901 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
3902
3903         * reflection.c 
3904         (reflection_methodbuilder_from_method_builder):
3905         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
3906         initialize a ReflectionMethodBuilder structure.
3907         (mono_image_get_methodbuilder_token):
3908         (mono_image_get_ctorbuilder_token): New functions to emit memberref
3909         tokens which point to types in another module inside the same assembly.
3910
3911         * reflection.c: Use the new helper functions.
3912         
3913         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
3914
3915         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
3916         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
3917
3918         * reflection.c (resolution_scope_from_image): Emit a moduleref if
3919         neccesary.
3920
3921         * reflection.c (mono_image_build_metadata): Emit metadata only for the
3922         current module. Emit the manifest only for the main module.
3923
3924         * reflection.c (mono_image_create_token): Add assertion when a 
3925         memberref needs to be created.
3926
3927         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
3928
3929         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
3930         larger buffer for the custom attribute blob. Fixes #50637.
3931         
3932 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3933
3934         * threadpool.c: notify listener on async processing handles after
3935         invoking the async callback. Thanks to Zoltan.
3936
3937 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
3938
3939         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
3940         avoid code duplication.
3941
3942         * reflection.h (MonoDynamicImage): New type which is currently unused,
3943         but will be used through the ref.emit code in place of 
3944         MonoDynamicAssembly.
3945
3946         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
3947         object layout.
3948
3949         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
3950         a MonoDynamicImage instead of just a MonoImage.
3951         
3952         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
3953         icalls to ModuleBuilder but keep their semantics, so they will work
3954         with moduleb->assemblyb. This will change later.
3955         
3956 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
3957
3958         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
3959         object layout.
3960
3961         * reflection.c (mono_image_build_metadata): Avoid creation of a default
3962         main module, since it is now done by the managed code.
3963
3964 2003-11-03  Martin Baulig  <martin@ximian.com>
3965
3966         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
3967         `ginst->klass' here.
3968         (method_encode_methodspec): Don't use the `ginst->generic_method's
3969         klass if it's a generic instance, use `ginst->klass' in this case.
3970
3971 2003-11-03  Martin Baulig  <martin@ximian.com>
3972
3973         * reflection.c (mono_image_get_generic_method_param_info):
3974         Removed, use mono_image_get_generic_param_info() instead.
3975         (mono_image_get_type_info): Write the GenericParam table before
3976         the Method table.  This is neccessary because in the GenericParam
3977         table, type parameters of the class (ie. '!0' etc.) must come
3978         before the ones from its generic methods (ie. '!!0' etc).
3979
3980 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
3981
3982         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
3983
3984 2003-11-02  Martin Baulig  <martin@ximian.com>
3985
3986         * reflection.c (create_generic_typespec): Take a
3987         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
3988         the generic parameters from it.
3989
3990 2003-11-02  Martin Baulig  <martin@ximian.com>
3991
3992         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
3993         instead of a `MonoClassField *' since we just need the type.
3994         (create_generic_typespec): New static function.  Creates a
3995         TypeSpec token for a generic type declaration.
3996         (mono_image_get_generic_field_token): New static function.
3997         (mono_image_create_token): If we're a FieldBuilder in a generic
3998         type declaration, call mono_image_get_generic_field_token() to get
3999         the token.
4000
4001 2003-11-02  Martin Baulig  <martin@ximian.com>
4002
4003         * reflection.h
4004         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
4005         `MonoReflectionGenericInst *declaring_type' and
4006         `MonoReflectionGenericInst *reflected_type' fields.
4007
4008         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
4009         `MonoReflectionGenericInst *declaring_type' and a
4010         `MonoReflectionGenericInst *reflected_type' argument instead of a
4011         single `MonoReflectionGenericInst *type' one.  Set
4012         `res->declaring_type' and `res->reflected_type' from them.
4013         (mono_reflection_inflate_field): Likewise.      
4014
4015 2003-11-02  Martin Baulig  <martin@ximian.com>
4016
4017         * class.c (mono_class_setup_vtable): Don't store generic methods
4018         in the vtable.  
4019
4020 2003-11-02  Martin Baulig  <martin@ximian.com>
4021
4022         * reflection.h (MonoReflectionGenericInst): Added
4023         `MonoReflectionType *declaring_type'.
4024
4025         * reflection.c (mono_reflection_bind_generic_parameters): Use
4026         `if (tb->parent)' instead of `klass->parent'.
4027
4028 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
4029
4030         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
4031         with an empty ASSEMBLY table.
4032
4033         * reflection.c (mono_image_build_metadata): Avoid using the same loop
4034         variable in the inner and outer loops.
4035
4036 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
4037
4038         * metadata.h (mono_metadata_make_token): Put parentheses around macro
4039         argument.
4040
4041         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
4042         
4043         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
4044         icalls. Instead, do everything in managed code. This is needed since
4045         it is hard to restore the original domain etc. in unmanaged code in the
4046         presence of undeniable exceptions.
4047
4048         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
4049         New icalls to push and pop appdomain refs.
4050
4051 2003-10-31  Martin Baulig  <martin@ximian.com>
4052
4053         * class.c (inflate_generic_type): Renamed to
4054         mono_class_inflate_generic_type() and made it public.
4055
4056         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
4057         New interncall.
4058
4059         * loader.c (mono_field_from_memberref): Also set the retklass for
4060         typespecs.
4061
4062         * fielder.c (mono_image_get_inflated_field_token): New static
4063         method; creates a metadata token for an inflated field.
4064         (mono_image_create_token, fixup_method): Added support for
4065         "MonoInflatedField".
4066         (fieldbuilder_to_mono_class_field): New static function.
4067         (mono_reflection_inflate_field): New public function.
4068
4069         * reflection.h
4070         (MonoReflectionGenericInst): Added `MonoArray *fields'.
4071         (MonoReflectionInflatedField): New typedef.     
4072
4073 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
4074
4075         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
4076         for Solaris and other platforms without s6_addr16
4077
4078 2003-10-30  Martin Baulig  <martin@ximian.com>
4079
4080         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
4081         argument instead of two.
4082         (mono_class_inflate_generic_signature): Likewise.
4083         (inflate_generic_header): Likewise.
4084         (mono_class_inflate_generic_method): Likewise.  In addition, if
4085         `ginst->klass' is set, it becomes the new `method->klass'.
4086
4087         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
4088         field.
4089
4090         * reflection.c (encode_generic_method_sig): Write a 0xa as the
4091         first byte. [FIXME]
4092         (method_encode_methodspec): If we have generic parameters, create
4093         a MethodSpec instead of a MethodRef.
4094         (fixup_method): Added support for "MonoInflatedMethod" and
4095         "MonoInflatedCtor".
4096         (mono_image_create_token): Added support for "MonoInflatedMethod"
4097         and "MonoInflatedCtor".
4098         (inflated_method_get_object): New static function; returns a
4099         managed "System.Reflection.MonoInflatedMethod" object.
4100         (mono_reflection_bind_generic_method_parameters): Return a
4101         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
4102         (mono_reflection_inflate_method_or_ctor): Likewise.
4103         (mono_image_get_generic_method_param_info): Initialize unused
4104         fields to zero.
4105         (mono_image_get_generic_param_info): Likewise.
4106
4107         * reflection.h (MonoReflectionInflatedMethod): New public
4108         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
4109         "S.R.MonoInflatedCtor" classes.
4110
4111         * loader.c (method_from_memberref): If we're a TypeSpec and it
4112         resolves to a generic instance, inflate the method.
4113
4114 2003-10-28  Dick Porter  <dick@ximian.com>
4115
4116         * object.c (mono_runtime_run_main): Convert command-line arguments
4117         into utf8, falling back to the user's locale encoding to do so.
4118
4119 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
4120
4121         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
4122         at this time.
4123
4124         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
4125
4126         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
4127         up icalls at method definition time. Partially fixes #33569.
4128
4129 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
4130
4131         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
4132         marshalling of arrays. Fixes #50116.
4133
4134         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
4135
4136         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
4137         points to a vtable in the dying appdomain.
4138
4139         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
4140         listeners into unmanaged code inside the lock.
4141
4142         * object.c (mono_class_vtable): Turn off typed allocation in non-root
4143         domains and add some comments.
4144
4145 2003-10-25  Martin Baulig  <martin@ximian.com>
4146
4147         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
4148
4149         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
4150
4151         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
4152         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
4153         currently parsing.  Create the generic class and store it in
4154         `generic_inst->klass' before parsing the type arguments.  This is
4155         required to support "recursive" definitions; see mcs/tests/gen-23.cs
4156         for an example.
4157         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
4158         to support recursive typespec entries.
4159
4160         * class.c (mono_class_setup_parent): If our parent is a generic
4161         instance, we may get called before it has its name set.
4162         (mono_class_from_generic): Splitted into
4163         mono_class_create_from_generic() and mono_class_initialize_generic().
4164
4165 2003-10-25  Martin Baulig  <martin@ximian.com>
4166
4167         * icall.c (ves_icall_Type_BindGenericParameters): Return a
4168         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
4169         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
4170         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
4171
4172         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
4173         (create_typespec): Likewise.
4174         (mono_reflection_bind_generic_parameters): Return a
4175         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
4176         (mono_reflection_inflate_method_or_ctor): New public function.
4177
4178         * reflection.h (MonoReflectionGenericInst): New typedef.        
4179
4180 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
4181
4182         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
4183         inside the domain lock. Fixes #49993.
4184         
4185         * object.c (mono_class_vtable): When typed allocation is used, 
4186         allocate vtables in the GC heap instead of in the mempool, since the
4187         vtables contain GC descriptors which are used by the collector even
4188         after the domain owning the mempool is unloaded.
4189
4190         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
4191
4192         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
4193         reflect what it does. Also invalidate mempools instead of freeing
4194         them if a define is set.
4195
4196         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
4197         of the appdomain.
4198         
4199         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
4200         hold the finalizable objects in this domain.
4201
4202         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
4203         appdomain.
4204
4205         * appdomain.c (mono_domain_set): New function to set the current
4206         appdomain, but only if it is not being unloaded.
4207
4208         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
4209         appdomain which is being unloaded.
4210         
4211         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
4212         unloading of the root appdomain.
4213
4214         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
4215         icall to execute a method in another appdomain. Intended as a 
4216         replacement for InternalSetDomain, which can confuse the code 
4217         generation in the JIT.
4218
4219         * appdomain.c (mono_domain_is_unloading): New function to determine
4220         whenever an appdomain is unloading.
4221
4222         * appdomain.c (mono_domain_unload): New function to correctly unload
4223         an appdomain.
4224
4225         * assembly.c (mono_assembly_load_references): Check that an assembly
4226         does not references itself.
4227
4228         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
4229         domain manually, it asks the finalizer thread to do it, then waits for
4230         the result. Also added a timeout.
4231
4232         * icall.c: Register the new icalls.
4233
4234         * threads.h threads.c: Export the mono_gc_stop_world and 
4235         mono_gc_start_world functions.
4236         
4237         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
4238         function to fill out the mempool with 0x2a.
4239
4240 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
4241
4242         * reflection.h (MonoReflectionMethodAux): New structure to store
4243         information which is rarely used, thus is not in the MonoMethod
4244         structure.
4245
4246         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
4247         store the aux info.
4248
4249         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
4250         and marshalling info into the aux structure.
4251
4252         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
4253         from the aux structure.
4254
4255         * loader.c (mono_method_get_param_names): Retrieve the param names from
4256         the aux structure.
4257         
4258 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
4259
4260         * exception.h exception.c: Add AppDomainUnloadedException && fix 
4261         warning.
4262
4263 2003-10-21  Dick Porter  <dick@ximian.com>
4264
4265         * socket-io.c
4266         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
4267         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
4268
4269 2003-10-21  Martin Baulig  <martin@ximian.com>
4270
4271         * reflection.c (mono_reflection_bind_generic_parameters):
4272         `klass->parent' is NULL for interfaces.
4273
4274 2003-10-21  Martin Baulig  <martin@ximian.com>
4275
4276         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
4277
4278 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
4279
4280         * exception.c (mono_exception_from_name_msg): New helper function for
4281         creating exceptions and initializing their message field.
4282
4283         * exception.c: Simplify functions using the new helper.
4284
4285         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
4286         New function.
4287
4288         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
4289         mono_raise_exception, since otherwise gcc doesn't generate the function
4290         epilog for raise_exception, confusing the stack unwinding in the JIT.
4291         Fixes #45043.
4292
4293         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
4294         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
4295         Fixes #49499.
4296
4297 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4298
4299         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
4300         utf8.
4301
4302 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
4303
4304         * icall.c: Removed GetUninitializedObject method because
4305           AllocateUninitializedClassInstance does the same.
4306
4307 2003-10-18  Martin Baulig  <martin@ximian.com>
4308
4309         * class.c (inflate_generic_signature): Renamed to
4310         mono_class_inflate_generic_signature() and made it public.
4311         (my_mono_class_from_generic_parameter): New static function; if we
4312         don't already have the generic parameter's MonoClass, create a
4313         very simple one which is just used internally in the runtime and
4314         not passed back to managed code.
4315
4316         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
4317
4318         * metadata.h (MonoMethodSignature): Moved the
4319         `MonoGenericParam *gen_params' to the MonoMethodHeader.
4320         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
4321
4322         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
4323         ves_icall_MonoMethod_GetGenericArguments(); this is now an
4324         interncall on the MonoMethod class, not on MethodInfo.
4325         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
4326         calling mono_reflection_bind_generic_method_parameters() directly.
4327
4328         * loader.c (mono_method_get_signature): If this is a MethodSpec;
4329         return the already computed `method->signature'.
4330         (method_from_methodspec): New static function to load a method
4331         from a MethodSpec entry.
4332         (mono_get_method_from_token): Call the new method_from_methodspec()
4333         for MethodSpec tokens.  
4334         (mono_get_method_from_token): If we're a generic method, load the
4335         type parameters.
4336
4337         * reflection.c (mono_image_get_memberref_token): Allow
4338         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
4339         table.
4340         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
4341         (mono_image_create_token): First check whether it's a generic
4342         method (so we'd need to create a MethodSpec), then do the other
4343         two alternatives.
4344         (mono_reflection_bind_generic_method_parameters): Return a
4345         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
4346         called directly from the interncall.
4347
4348 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
4349
4350         * reflection.c (load_public_key): Move loading of the public key
4351         into managed code.
4352
4353         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
4354
4355         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
4356         fields.
4357
4358         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
4359         culture, hash_alg and public_key. Fixes #49555.
4360
4361 2003-10-17  Martin Baulig  <martin@ximian.com>
4362
4363         * class.h (MonoGenericInst): Moved this declaration here and added
4364         `MonoMethod *generic_method'.
4365
4366         * icall.c
4367         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
4368         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
4369
4370         * metadata.c (mono_metadata_type_equal): Two types of
4371         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
4372         index; ie. don't compare the address of the `MonoGenericParam'
4373         structure.
4374         (mono_metadata_load_generic_params): Removed the `MonoMethod
4375         *method' argument.
4376
4377         * metadata.h (MonoGenericInst): Moved declaration to class.h.
4378         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
4379
4380         * reflection.c (method_encode_signature): Encode the number of
4381         generic parameters.
4382         (encode_generic_method_sig): New static function.
4383         (method_encode_methodspec): New static function; creates an entry
4384         in the MethodSpec table for a generic method.
4385         (mono_image_get_methodspec_token): New static function.
4386         (mono_image_create_token): Call mono_image_get_methodspec_token()
4387         for generic methods.
4388         (mono_reflection_bind_generic_method_parameters): New public
4389         function.  Instantiates a generic method.
4390
4391 2003-10-16  Martin Baulig  <martin@ximian.com>
4392
4393         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
4394         *gen_params' here from MonoMethodHeader.
4395
4396         * metadata.c (mono_metadata_parse_method_signature): If we have
4397         generic parameters, initialize `method->gen_params' and then set
4398         the correct `type->data.generic_param' in all the parameters.
4399
4400 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
4401
4402         * threads.c (mono_threads_get_default_stacksize): New function to 
4403         return the default stacksize.
4404
4405         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
4406         termination of the finalizer thread, since the previous method had
4407         race conditions. Fixes #49628.
4408
4409         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
4410         as for the other managed threads.
4411
4412 2003-10-16  Martin Baulig  <martin@ximian.com>
4413
4414         * class.c (inflate_generic_signature): Copy `generic_param_count'
4415         and `gen_params'.
4416
4417         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
4418         New interncall.
4419
4420         * metadata.c (mono_metadata_parse_method_signature): Actually set
4421         the `method->generic_param_count' here.
4422         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
4423
4424 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
4425
4426         * object.h: Add a new field to TypedRef to simplify the implementation
4427         of the REFANY opcodes in the JIT.
4428
4429         * icall.c: Make use of the new field.
4430
4431         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
4432         dynamically.
4433
4434 2003-10-15  Martin Baulig  <martin@ximian.com>
4435
4436         * class.c (mono_class_from_gen_param): Renamed to
4437         mono_class_from_generic_parameter() and moved most of the
4438         functionality from mono_reflection_define_generic_parameter()
4439         here; ie. we create a "real" class here.
4440         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
4441         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
4442         previously been called.
4443
4444         * class.h (MonoGenericParam): Moved the declaration of this struct
4445         here from metadata.h and added `MonoMethod *method'.
4446
4447         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
4448         interncall.
4449
4450         * loader.c (mono_get_method_from_token): If we have any generic
4451         parameters, call mono_metadata_load_generic_params() to read them
4452         from the MONO_TABLE_GENERICPAR.
4453
4454         * metadata.c (mono_metadata_load_generic_params): Added
4455         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
4456
4457         * metadata.h (MonoMethodSignature): Replaced
4458         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
4459         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
4460
4461         * reflection.c (mono_reflection_define_generic_parameter): Moved
4462         most of the functionality into the new
4463         mono_class_from_generic_parameter(); set the `method' field if
4464         we're a method parameter.       
4465
4466 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
4467
4468         * marshal.c (emit_struct_conv): if native size is 0
4469         emit no code.
4470
4471 2003-10-14  Martin Baulig  <martin@ximian.com>
4472
4473         * icall.c: The generics API has changed in the spec since it was
4474         added to System.Type; these modifications make it match the spec
4475         again.
4476         (ves_icall_Type_GetGenericParameters): Renamed to
4477         `ves_icall_Type_GetGenericArguments'.
4478         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
4479         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
4480         `ves_icall_MonoType_get_HasGenericArguments'.
4481         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
4482         `ves_icall_MonoType_get_IsGenericParameter'.
4483         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
4484         this is no interncall anymore.
4485         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
4486         `ves_icall_TypeBuilder_get_IsGenericParameter'.
4487
4488 2003-10-14  Martin Baulig  <martin@ximian.com>
4489
4490         * reflection.c (mono_reflection_bind_generic_parameters): Also
4491         inflate generic methods if we're reading the class from IL.
4492
4493 2003-10-13  Martin Baulig  <martin@ximian.com>
4494
4495         * reflection.c (mono_reflection_define_generic_parameter): This
4496         method isn't called directly from the icall anymore; take a
4497         `MonoReflectionAssemblyBuilder *' so we can use this for type and
4498         method generic parameters.
4499         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
4500         (method_builder_encode_signature): Encode generic parameters.
4501         (mono_image_get_method_info): Write generic params to the
4502         MONO_TABLE_GENERICPARAM table.
4503
4504         * reflection.h (MonoReflectionMethodBuilder): Added
4505         `MonoArray *generic_params'.
4506
4507         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
4508
4509         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
4510         wrapper for mono_reflection_define_generic_parameter().
4511         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
4512
4513 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
4514
4515         * marshal.h: Add missing function to fix build.
4516
4517         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
4518         the SetLastError pinvoke attribute.
4519
4520         * marshal.c (mono_marshal_set_last_error): New helper function called
4521         by the generated code.
4522         
4523         * marshal.c (mono_mb_emit_branch): New helper function.
4524
4525         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
4526
4527         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
4528         classes as parameters and return values of delegates. Fixes #29256. 
4529
4530 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
4531
4532         * locales.c: use gint32 in non HAVE_ICU case
4533
4534 2003-10-11  Martin Baulig  <martin@ximian.com>
4535
4536         * mono-debug.c (mono_debug_add_method): Added a workaround for
4537         bug #48591.
4538
4539 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
4540
4541         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
4542         delegates passed to native code must use the STDCALL calling 
4543         convention. Fixes #35987.
4544
4545 2003-10-10  Martin Baulig  <martin@ximian.com>
4546
4547         * class.c (inflate_generic_type): If we're inflating for a generic
4548         type instance (and not for a generic method), return
4549         MONO_TYPE_MVAR unchanged.
4550
4551 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4552
4553         * string-icalls.c: Join ignores null strings in the source array.
4554         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
4555         * threads.c: GetAvailableTheads is slightly more accurate.
4556
4557 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
4558
4559         * threads.h threads.c : add mono_threads_set_default_stacksize
4560         and pass default to CreateThread calls.
4561
4562 2003-10-09  Dick Porter  <dick@ximian.com>
4563
4564         * icall.c:
4565         * locales.h:
4566         * locales.c: Internal calls for constructing CultureInfo and
4567         related objects from libicu (if its available.)
4568
4569 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
4570
4571         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
4572
4573 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4574
4575         * threadpool.c: added an argument to async_invoke_thread that is the
4576         item to process, pass the MonoAsyncResult to the thread start function
4577         when creating a new thread. This way we don't need to acquire any lock
4578         when we're creating a new thread. Readded a semaphore for faster
4579         response times (instead of that Sleep i added).
4580
4581 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
4582
4583         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
4584         get daylight change dates better on Windows, fix handling
4585         of platforms without tm_gmtoff.
4586
4587 2003-10-06  Martin Baulig  <martin@ximian.com>
4588
4589         * class.c (inflate_generic_method): Renamed to
4590         mono_class_inflate_generic_method() and made public.
4591         (mono_class_init): Don't inflate the generic methods here.
4592         (mono_class_from_generic): Added `gboolean inflate_methods'
4593         argument.  Inflate the methods here.
4594
4595         * loader.c (mono_method_get_param_names): Ignore instances of
4596         generic types for the moment.
4597
4598         * reflection.c (fixup_method): Added support for inflated methods.
4599         (mono_image_create_token): Use mono_image_get_methodref_token()
4600         for inflated methods.
4601         (mono_custom_attrs_from_param): Ignore instances of generic types
4602         for the moment.
4603         (mono_reflection_bind_generic_parameters): New public function.
4604         Moved all the functionality from
4605         ves_icall_Type_BindGenericParameters() here and added support for
4606         dynamic types.
4607         (mono_reflection_define_generic_parameter): Initialize
4608         `klass->methods' here.
4609
4610         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
4611         functionality into mono_reflection_define_generic_parameter().
4612         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
4613         TypeBuilder, return that TypeBuilder.
4614
4615 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4616
4617         * appdomain.c: removed mono_delegate_semaphore.
4618
4619         * threadpool.c:
4620         (mono_thread_pool_add): moved hash table creation inside and the thread 
4621         creation outside of the critical region.
4622         (mono_thread_pool_finish): removed obsolete code.
4623         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
4624         continue or exit the thread depending on the queue.
4625
4626 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
4627
4628         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
4629         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
4630         handle more bool marshalling options
4631
4632 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
4633
4634         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
4635         arrays of structs. Also add a more descriptive error message when
4636         a structure member is marshalled as LPArray.
4637
4638 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
4639
4640         * marshal.c (mono_marshal_get_native_wrapper): Add support for
4641         marshalling arrays of complex types. Fixes #29098. Also remove an
4642         usused and incomplete function.
4643
4644 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
4645
4646         * gc.c: report heap_size - free_bytes as total memory allocated
4647         (bug#49362).
4648
4649 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
4650
4651         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
4652         fix timezone handling problems on Windows.
4653         
4654         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
4655         asserts when the year is outside the range handled by ms the functions.
4656
4657         * class.c (setup_interface_offsets): If the class is an interface,
4658         fill out its interface_offsets slot.
4659
4660 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4661
4662         * threadpool.c: mark threadpool threads as background.
4663
4664 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
4665
4666         * decimal.c - define DECINLINE to nothing if not using GCC
4667
4668 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
4669
4670         * assembly.c: More refcount fixes.
4671
4672 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4673
4674         * string-icalls.c: if we're not trimming, return the same string.
4675         When not splitting, don't create a new string.
4676
4677 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4678
4679         * image.c:
4680         (mono_image_open): increment the ref_count inside the critical section.
4681
4682 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
4683
4684         * image.c (mono_image_open): Fix reference counting bug.
4685
4686 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
4687
4688         * marshal.c (mono_marshal_type_size) struct alignment changed for 
4689         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
4690         64bits. Avoid leak in mono_marshal_get_native_wrapper when
4691         mono_lookup_pinvoke_call throws.        
4692
4693 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
4694
4695         * reflection.c (mono_reflection_parse_type): Fix #49114.
4696
4697         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
4698         temporary workaround for cygwin header problem.
4699
4700         * object.c (mono_object_isinst): Synchronize this with the code
4701         generated by the JIT for casts.
4702
4703 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
4704
4705         * reflection.c (encode_type): Fix #38332.
4706
4707 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
4708
4709         * marshal.c (mono_marshal_method_from_wrapper): New function to return
4710         the original method from the wrapper method.
4711
4712 2003-09-25  Martin Baulig  <martin@ximian.com>
4713
4714         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
4715         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
4716         (ves_icall_Type_get_IsGenericInstance): New interncall.
4717
4718 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
4719
4720         * object.c: fix cast warning in big endian code.
4721
4722 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
4723
4724         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
4725         
4726 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4727
4728         * assembly.c: don't call check_env from mono_assembly_load. It's
4729         already done once in mono_assemblies_init and may cause headaches when
4730         multiple threads are loading assemblies.
4731
4732 2003-09-19  Martin Baulig  <martin@ximian.com>
4733
4734         * reflection.c (mono_reflection_define_generic_parameter): Don't
4735         allocate `klass->methods', set `klass->flags' to
4736         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
4737
4738 2003-09-18  Martin Baulig  <martin@ximian.com>
4739
4740         * class.c (mono_class_init): Don't create `class->methods' if it's
4741         already initialized.
4742
4743         * metadata.c (mono_metadata_load_generic_params): Make this
4744         actually work.
4745
4746         * reflection.c (mono_reflection_define_generic_parameter): Set
4747         parent class and interfaces from the constraints.
4748
4749         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
4750         to keep this struct in sync with the declaration in TypeBuilder.cs.
4751
4752 2003-09-17  Martin Baulig  <martin@ximian.com>
4753
4754         * metadata.h (MonoType): Replaced the data's `int type_param'
4755         field with `MonoGenericParam *generic_param'.
4756         (MonoGenericParam): Added `MonoClass *klass'.
4757
4758         * class.c (mono_class_from_gen_param): Removed the
4759         `MonoImage *image' and `int type_num' arguments.
4760
4761         * metadata.c (mono_metadata_parse_generic_param): New static
4762         method; creates a MonoGenericParam which just contains the index.
4763         (do_mono_metadata_parse_type): Call
4764         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
4765         MONO_TYPE_MVAR.
4766
4767         * reflection.c (mono_image_typedef_or_ref): Generic type
4768         parameters may be in the same assembly, but never use a typedef
4769         for them.
4770         (mono_reflection_define_generic_parameter): We're now creating a
4771         "real" class for the type parameter; it's now safe to call
4772         mono_class_from_mono_type() on the class'es type, it'll do the
4773         right thing.
4774
4775 2003-09-16  Martin Baulig  <martin@ximian.com>
4776
4777         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
4778         `symfile->range_entry_size' and `symfile->class_entry_size' here;
4779         the `symfile' data structure must be fully initialized before it
4780         gets added to the table.
4781
4782 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
4783
4784         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
4785
4786         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
4787         class init trampolines.
4788
4789 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
4790
4791         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
4792         to the built-in profiler to turn off time and allocation profiling
4793         respectively.
4794
4795 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
4796
4797         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
4798         g_direct_equal.
4799
4800         * debug-helpers.c (mono_method_full_name): Print the wrapper type
4801         in human readable form.
4802
4803 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
4804
4805         * reflection.c icall.c: Fixed warnings.
4806
4807         * image.c (load_class_names): Use a temporary hash table to hold the
4808         namespaces in order to avoid doing many string comparisons.
4809
4810         * image.h: Fix typo.
4811
4812         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
4813         Pass NULL instead of g_direct_equal to the GHashTable constructor 
4814         since the NULL case is short-circuited inside g_hash_table_lookup, 
4815         leading to better performance.  
4816
4817         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
4818         obtain the first custom attribute for a given index. Depends on the
4819         CustomAttribute table being sorted by the parent field.
4820
4821         * reflection.c (mono_custom_attrs_from_index): Use the new function 
4822         for better performance.
4823
4824 2003-09-07  Martin Baulig  <martin@ximian.com>
4825
4826         * class.c (mono_class_init): If we're a generic instance, inflate
4827         all our methods instead of loading them from the image.
4828         (mono_class_from_generic): Set `class->methods = gklass->methods'.
4829
4830 2003-09-07  Martin Baulig  <martin@ximian.com>
4831
4832         * mono-debug-debugger.c: Added support for constructors.
4833
4834 2003-09-06  Martin Baulig  <martin@ximian.com>
4835
4836         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
4837         New interncall.
4838
4839         * reflection.c (mono_reflection_setup_generic_class): Call
4840         ensure_runtime_vtable() to create the vtable.
4841
4842 2003-09-05  Martin Baulig  <martin@ximian.com>
4843
4844         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
4845         MONO_TYPE_MVAR.
4846
4847 2003-09-04  Martin Baulig  <martin@ximian.com>
4848
4849         * reflection.c (mono_reflection_define_generic_parameter): Generic
4850         parameters start with zero.
4851
4852 2003-09-04  Martin Baulig  <martin@ximian.com>
4853
4854         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
4855
4856         * reflection.h (MonoReflectionGenericParam): New typedef.
4857         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
4858         the generic parameters from the managed TypeBuilder.
4859
4860         * reflection.c (mono_reflection_define_generic_parameter): New function.
4861         (mono_reflection_create_runtime_class): Encode generic parameters.
4862         (mono_reflection_setup_generic_class): New function; this is
4863         called after adding adding all generic params to the TypeBuilder.
4864         (encode_type): Added MONO_TYPE_VAR.
4865
4866 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
4867
4868         * class.h class.c (mono_class_needs_cctor_run): Moved this method
4869         here from the JIT.
4870
4871         * assembly.h assembly.c: Moved the AOT loading code into an assembly
4872         load hook.
4873
4874 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
4875
4876         * reflection.h reflection.c class.h class.c: Delete duplicate 
4877         definition of mono_type_get_name () from reflection.c and export the
4878         one in class.c.
4879
4880         * class.c: Class loading fixes from Bernie Solomon 
4881         (bernard@ugsolutions.com).
4882
4883         * reflection.c: Endianness fixes from Bernie Solomon 
4884         (bernard@ugsolutions.com).
4885         
4886 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
4887
4888         * assembly.h assembly.c: Define a file format version for AOT
4889         libraries.
4890         
4891         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
4892
4893         * appdomain.h (MonoJitInfo): New field to determine whenever the
4894         code is domain neutral.
4895         
4896 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
4897
4898         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
4899
4900 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
4901
4902         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
4903         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
4904         Avoid caching the result since strings must be domain specific. Fixes
4905         #48050.
4906
4907 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
4908
4909         * marshal.c (mono_marshal_init): Make this callable multiple times
4910         since it is hard to find a correct place to call it.
4911
4912         * object.c (mono_runtime_class_init): Execute static constructors in
4913         the correct appdomain.
4914
4915         * image.c (build_guid_table): Handle the case when multiple images have
4916         the same GUID.
4917
4918 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4919
4920         * icall.c: added a couple of icalls for System.Web.
4921
4922 2003-08-28  Martin Baulig  <martin@ximian.com>
4923
4924         * icall.c (ves_icall_Type_BindGenericParameters): Use
4925         `klass->generic_inst' instead of `&klass->byval_arg' in the
4926         mono_type_get_object() call.  The returned type must be
4927         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
4928
4929 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
4930
4931         * NOTES: New file.
4932
4933         * object.c (mono_class_proxy_vtable): Make it thread safe.
4934
4935         * pedump.c: Fix warning.
4936
4937         * object.c appdomain.h: Get rid of metadata_section. 
4938         It is no longer needed and it was causing deadlocks with domain->lock.
4939
4940         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
4941
4942 2003-08-26  Martin Baulig  <martin@ximian.com>
4943
4944         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
4945
4946 2003-08-26  Martin Baulig  <martin@ximian.com>
4947
4948         * pedump.c (main): Call mono_metadata_init(),
4949         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
4950         and mono_loader_init().
4951
4952 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
4953
4954         * loader.h: Add missing include to fix build.
4955
4956         * image.h: mono_image_load_references is no more.
4957
4958         * assembly.c: Reworked assembly loading to make it really thread safe.
4959         After these changes, the assembly returned by mono_assembly_open is
4960         fully initialized, i.e. all its references assemblies are loaded.
4961
4962         * assembly.c (mono_image_load_references): Renamed to 
4963         mono_assembly_load_references, and made private, since clients no
4964         longer need to call it.
4965
4966         * class.c: Removed calls to mono_assembly_load_references, since it was
4967         a source of deadlocks.
4968
4969         * loader.h loader.c class.h class.c: Protect data structures using a 
4970         new lock, the loader lock.
4971
4972         * class.c (mono_class_setup_vtable): Create temporary hash tables and
4973         GPtrArrays only when needed.
4974
4975         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
4976         into empty structures by mcs. Fixes pinvoke7.cs.
4977         
4978         * domain.c (mono_init): Call a new initialization function.
4979
4980         * appdomain.c (mono_runtime_init): Call the new initializer function
4981         of the marshal module.
4982
4983         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
4984         inserted into empty structures by mcs. Fixes pinvoke7.cs.
4985
4986         * marshal.h marshal.c: Added locks around the wrapper caches to make
4987         this module thread safe.
4988
4989         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
4990         this argument. Fixes pinvoke1.exe.
4991
4992 2003-08-25  Lluis Sanchez <lluis@ximian.com>
4993
4994         * object.h: Added call_type field to MonoMethodMessage and the corresponding
4995         enumeration of values. Removed fields to store remote call output values in
4996         MonoAsyncResult. Not needed any more.
4997         * object.c: Initialize call_type and async_result fields in mono_message_init.
4998         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
4999         dispatching the message.
5000         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
5001         async call to finish. To do it use a message with EndInvoke call type.
5002
5003 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
5004
5005         * loader.h loader.c (mono_method_hash_marhal_info): New function which
5006         determines whenever a method has marshalling info.
5007
5008 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5009
5010         * assembly.c: fix the build on windows.
5011
5012 2003-08-22 Lluis Sanchez <lluis@ximian.com>
5013
5014         * object.cs: Fixed bug #47785.
5015
5016 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
5017
5018         * string-icalls.c (StringReplace): If their are no occurances of
5019         the old string found return a reference to the supplied
5020         string. This saves some memory and matches MS behavoir.
5021         
5022 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5023
5024         * socket-io.c: fixed compilation for systems that define AF_INET6
5025         and don't define SOL_IP/SOL_IPV6.
5026
5027 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
5028
5029         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
5030         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
5031
5032         * rawbuffer.c rawbuffer.h: Make this module thread safe.
5033
5034         * domain.c: Make this module thread safe.
5035
5036         * domain.c (mono_init): Call new initialization function.
5037
5038         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
5039         reference types too. Fixes #38812.
5040
5041         * image.c (mono_image_init): Fixed warnings.
5042
5043         * class.c (mono_class_from_typeref): Handle assembly load failure
5044         correctly.
5045
5046         * appdomain.c (add_assemblies_to_domain): Handle the case when
5047         the references of an assembly are not yet loaded.
5048
5049         * metadata.c image.c assembly.c: Moved initialization of global
5050         variables to a separate function called at startup since lazy 
5051         initialization of these variables is not thread safe.
5052         
5053         * image.c assembly.c: Made this module thread safe by adding locks in 
5054         the appropriate places.
5055
5056         * domain.c (mono_init): Call the new initialization functions of the
5057         three modules.
5058
5059 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
5060
5061         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
5062           make a direct call. It is proxy's work to make the call asynchronous.
5063           mono_delegate_end_invoke(): If the targe is a proxy, just collect
5064           the return values.
5065         * object.cs: mono_method_call_message_new(): read AsyncResult and
5066           state object from parameters list, if this info is requested.
5067         * object.h: Added fields to store remote call output values in
5068           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
5069
5070 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
5071
5072         * object.h: add needed fields to MonoThread.
5073         * threads.c, threads.h: allow registering a function to cleanup data
5074         allocated per thread by the JIT.
5075
5076 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
5077
5078         * loader.h: portability fix by Bernie Solomon
5079         * <bernard@ugsolutions.com>.
5080
5081 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
5082
5083         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
5084         return a MonoArray. This simplifies the code and also ensures that
5085         the cache allways contains an object reference as a value.
5086
5087         * icall.c (ves_icall_get_parameter_info): Simplified using the new
5088         function.
5089
5090 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5091
5092         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
5093         fixes a problem with byte ordering when getting the address family for
5094         a socket.
5095
5096 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
5097
5098         * .cvsignore: Added monosn.
5099
5100         * reflection.h reflection.c loader.c: Added support for parameter
5101         marshalling to dynamically created types. Fixes #47295.
5102
5103 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
5104
5105         * rand.c: remove useless warnings.
5106
5107 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
5108
5109         * class.c: implemented ldtoken for methods and fieldrefs.
5110
5111 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5112
5113         * threadpool.c: when mono_async_invoke was called, no one took care of
5114         monitoring the queue. So if the method invoked took some time and we
5115         got new async invoke requests after 500 ms (the thread created waited
5116         that long in WaitForSingleObject), the new async invoke was not called
5117         until the previous one finished.
5118
5119         This is fixed now. Thanks to Totte for helping with it.
5120
5121 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5122
5123         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
5124
5125 2003-08-11  Martin Baulig  <martin@ximian.com>
5126
5127         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
5128
5129 2003-08-06  Martin Baulig  <martin@ximian.com>
5130
5131         * mono-debug-debugger.c: Added support for static fields,
5132         properties and methods.
5133
5134 2003-08-06  Martin Baulig  <martin@ximian.com>
5135
5136         * mono-debug-debugger.c: Don't store the MonoString's vtable to
5137         make this work for applications with multiple application domains.
5138
5139 2003-08-04  Martin Baulig  <martin@ximian.com>
5140
5141         * mono-debug-debugger.c: Completely reworked the type support; the
5142         most important thing is that we're now just using one single
5143         `MonoType' instance per type.
5144
5145 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
5146
5147         * mono-endian.h, mono-endian.c, icall.c: Added icall
5148         ves_icall_System_Double_AssertEndianity to assert double word endianity
5149         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
5150
5151 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
5152
5153         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
5154         support, icalls and fixes.
5155
5156 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
5157
5158         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
5159         classes that are a punctuation character in .NET is not the same a
5160         g_unichar_ispunct.
5161
5162 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
5163
5164         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
5165
5166 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
5167
5168         * icall.c: Add new MemCopy internalcall.
5169         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
5170         Simplified code; It is not necessary to handle all the cases here,
5171         as the C# code takes care of it.  Only handle the case of the name
5172         resource embedded into the assembly.
5173
5174         Changed signature to return the data pointer and the size of the
5175         data. 
5176
5177 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
5178
5179         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
5180         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
5181
5182 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
5183
5184         * socket-io.c: ignore EINTR error in select.
5185
5186 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
5187
5188         * class.h, class.c: removed unused subclasses field in MonoClass.
5189
5190 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
5191
5192         * icall.c: improve fix of get_base_definition(). If the parent class
5193           doesn't have the mehod, look at the parent of the parent.
5194         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
5195           to check if a parameter is an in or out parameter
5196           (PARAM_ATTRIBUTE_IN is not set by default).
5197           mono_method_return_message_restore(): Use mono_class_value_size to
5198           get the size of a value type. mono_type_stack_size (parameterType)
5199           does not return the correct value if parameterType is byRef.
5200           mono_load_remote_field(), mono_load_remote_field_new(),
5201           mono_store_remote_field(), mono_store_remote_field_new():
5202           raise exception if the remote call returns an exception.
5203
5204 2003-07-28  Martin Baulig  <martin@ximian.com>
5205
5206         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
5207         method.  This is a wrapper around mono_runtime_invoke() which
5208         boxes the instance object if neccessary.
5209
5210 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
5211
5212         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
5213         metadata.h, row-indexes.h, verify.c: first cut of generics support.
5214
5215 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
5216
5217         * icall.c: disable mcs bug workaround.
5218
5219 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
5220
5221         * object.c (mono_runtime_class_init): Take the metadata_section
5222         mutex before obtaining the domain mutex.
5223
5224         * appdomain.h: Added definition of metadata_section mutex here. 
5225
5226         * object.c: define metadata_mutex here.
5227
5228 2003-07-24  Ravi Pratap  <ravi@ximian.com>
5229
5230         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
5231         fixed.
5232
5233 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
5234
5235         * reflection.c: Fix bug #46669
5236
5237 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5238
5239         * exception.c:
5240         * exception.h:
5241         * icall.c:
5242         * object.h: fill in the type name for TypeLoadException.
5243
5244 2003-07-23  Ravi Pratap  <ravi@ximian.com>
5245
5246         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
5247         relationship between TypeBuilders while compiling corlib) and bug
5248         45993 (Array types returned from the runtime while compiling
5249         corlib were from the loaded corlib).
5250
5251 2003-07-22  Martin Baulig  <martin@ximian.com>
5252
5253         * mono-debug-debugger.c: Reworked the type support a bit more;
5254         distinguish between types and classes.
5255
5256 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
5257
5258         * icall.c: add IsArrayImpl icall.
5259
5260 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
5261
5262         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
5263         initializing real_size only once. Also fix bug #46602.
5264
5265 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
5266
5267         * object.c: Renamed mono_metadata_section to metadata_section.
5268
5269 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
5270
5271         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
5272           empty array if the type is an array. Fixed.
5273           ves_icall_MonoMethod_get_base_definition: if the base method
5274           is abstract, get the MethodInfo from the list of methods of
5275           the class.
5276         * reflection.c: ParameterInfo.PositionImpl should be zero-based
5277           and it was 1-based. Fixed in mono_param_get_objects.
5278
5279 2003-07-20  Martin Baulig  <martin@ximian.com>
5280
5281         * mono-debug.h: Set version number to 31.
5282         (mono_debug_init): Added `MonoDomain *' argument.
5283
5284         * mono-debug-debugger.c: Reworked the type support; explicitly
5285         tell the debugger about builtin types; pass the `klass' address to
5286         the debugger.
5287
5288 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
5289
5290         * image.c: Allow new metadata tables to be loaded without a
5291         warning. Also update the warning message to give the new constant value.
5292                 
5293 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
5294
5295         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
5296         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
5297         array type representation changes.
5298
5299 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
5300
5301         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
5302         on Environment.Exit () call.
5303
5304 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
5305
5306         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
5307         requires a matching corlib.
5308
5309 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
5310
5311         * Changelog: My editor decided to add a CR to each line. Sorry about that.
5312           Committed again without the CRs.
5313         
5314 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
5315
5316         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
5317           getting it from the "this" socket instance. Did not work
5318           if the socket is a subclass of Socket.
5319           Also fixed bug #35371.
5320
5321 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
5322
5323         * metadata.c: fixed size for TypedByRef.
5324         * loader.c: when searching for a method, consider the vararg amrker.
5325         * unicode.c, decimal.c: constify some arrays.
5326
5327 2003-07-15  Dick Porter  <dick@ximian.com>
5328
5329         * socket-io.c: Fixed compilation for gcc < 3.2.
5330
5331         Fixed compilation for machines that don't have AF_INET6 (thanks to
5332         Bernie Solomon <bernard@ugsolutions.com> for that part.)
5333
5334         Fixed compile warnings.
5335         
5336         Fixed formatting and line endings.
5337
5338 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
5339
5340         * socket-io.h:
5341         * socket-io.c: Added IPv6 support.
5342
5343 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
5344
5345         * class.c (mono_class_is_assignable_from): New function to implement
5346         the is_assignable_from logic. Used by mono_object_isinst, 
5347         Type::IsAssignableFrom () and the interpreter.
5348
5349         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
5350         Object, even interfaces.
5351         
5352         * object.c (mono_object_isinst): Implement in terms of 
5353         is_assignable_from.
5354
5355         * icall.c (ves_icall_type_is_assignable_from): New icall.
5356
5357 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
5358
5359         * domain.c (foreach_domain): fix compiler warning.
5360
5361 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
5362
5363         * image.c (load_metadata_ptrs): use g_strndup because strndup is
5364         not available on all plattforms
5365
5366 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
5367
5368         * image.h image.c: Store the metadata version string in MonoImage.
5369         * icall.c: New icall to retrieve the image version.
5370         * reflection.c (create_dynamic_image): Fill in the image version field
5371         * reflection.c (build_compressed_metadata): Use the image version
5372         from the image structure.
5373
5374 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5375
5376         * appdomain.c: modified comment.
5377         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
5378         That will be its last iteration when mono_gc_cleanup is called from
5379         mono_runtime_cleanup and before the domain is unloaded.
5380
5381         Fixes bug #45962.
5382
5383 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
5384
5385         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
5386         attributes.
5387
5388 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
5389
5390         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
5391         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
5392         Bernie Solomon <bernard@ugsolutions.com>.
5393
5394 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
5395
5396         * object.c, object.h: provide mono_object_new_fast() for faster
5397         allocation in some special cases.
5398
5399 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
5400
5401         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
5402         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
5403
5404 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
5405
5406         * threadpool.c: fix leaks.
5407
5408 2003-07-01  Dick Porter  <dick@ximian.com>
5409
5410         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
5411         using MonoGHashTables.  Fixes threadpool bug posted to list.
5412
5413 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
5414
5415         * image.h, image.c: added support to load an assembly from a byte array.
5416         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
5417         assembly bundle support.
5418
5419 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
5420
5421         * threadpool.c (mono_thread_pool_add): keep a reference to the
5422         AsyncResult to prevent GC
5423
5424 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
5425
5426         * class.c: leak fix.
5427
5428 2003-06-25  Dick Porter  <dick@ximian.com>
5429
5430         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
5431         for the async object, the WaitHandle object will close the handle.
5432         Fixes bug 45321.
5433
5434 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
5435
5436         * class.c: in mono_array_class_get (), lookup from the hash with the
5437         same type we insert: this works around a bug in
5438         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
5439         lluis. The real fix will have to wait for after the release.
5440
5441 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
5442
5443         * icall.c: fix memory leak when getting type members.
5444
5445 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
5446
5447         * reflection.c: added more pubtoken special cases.
5448
5449 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
5450
5451         * class.c: handle field offset correctly when class size
5452         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
5453
5454 2003-06-20  Martin Baulig  <martin@ximian.com>
5455
5456         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
5457         *image' field.
5458
5459 2003-06-20  Martin Baulig  <martin@ximian.com>
5460
5461         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
5462
5463 2003-06-20  Martin Baulig  <martin@ximian.com>
5464
5465         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
5466         just distinguish between variables in registers and variables at
5467         an offset relative to a register.
5468
5469 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5470
5471         * icall.c: #ifdef out latest changes until mcs is fixed.
5472
5473 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
5474
5475         * icall.c: return members in metadata order.
5476
5477 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
5478
5479         * icall.c: avoid infinite loop in GetTimeZoneData.
5480
5481 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
5482
5483         * icall.c: added Marshal.Prelink/All icalls.
5484
5485 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
5486
5487         * object.c, object.h: fix warnings and do some overflow checking
5488         when creating arrays.
5489
5490 2003-06-17  Dick Porter  <dick@ximian.com>
5491
5492         * file-io.h:
5493         * file-io.c: File attributes need to be tweaked slightly when
5494         passed from the managed to the w32 world.
5495
5496 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
5497         * profiler.h profiler-private.h profiler.c: Rework last patch
5498         based on suggestion by Paolo.
5499         
5500 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
5501
5502         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
5503         instruction level coverage data collection.
5504         * profiler.h profiler.c (: Added new callback function which can be
5505         used by the profiler to limit which functions should have coverage
5506         instrumentation.
5507         * profiler.c (mono_profiler_load): Call g_module_build_path to
5508         generate the file name of the profiler library.
5509
5510 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
5511
5512         * profiler.c, profiler.h, profiler-private.h: added basic block 
5513         coverage profiling API.
5514
5515 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
5516
5517         * reflection.c (mono_reflection_create_runtime_class): Add support
5518         for events in dynamically generated code.
5519
5520         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
5521         not allocated.
5522
5523 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
5524
5525         * icall.c: when getting timezone info, return reasonable values if we
5526         can't get the actual data.
5527
5528 2003-06-14  Dick Porter  <dick@ximian.com>
5529
5530         * threads.c (start_wrapper): Remove the reference to the thread
5531         object in the TLS data, so the thread object can be finalized.
5532         This won't be reached if the thread threw an uncaught exception,
5533         so those thread handles will stay referenced :-( (This is due to
5534         missing support for scanning thread-specific data in the Boehm GC
5535         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
5536
5537 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
5538
5539         * reflection.c: ensure streams and tables are first allocated with
5540         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
5541
5542 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
5543
5544         * icall.c: fixed GetElementType for byrefs (bug# 44792).
5545
5546 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
5547
5548         * reflection.c (mono_reflection_create_runtime_class): Add support for
5549         properties to dynamically created classes.
5550         * reflection.c: Fix a few places where non-MonoObjects were inserted
5551         into the tokens hashtable.
5552
5553 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
5554
5555         * object.c: some support to handle out of memory exceptions.
5556
5557 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
5558
5559         * marshal.c (mono_marshal_get_native_wrapper): support reference
5560         return types
5561
5562 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
5563
5564         * object.h, object.c: more portability stuff from Bernie Solomon.
5565         Unexport mono_object_allocate(). Added mono_object_unbox ().
5566         Set exitcode when an unhandled exception is thrown.
5567
5568 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
5569
5570         * marshal.c (mono_marshal_get_native_wrapper): use custom
5571         marshaler for return types.
5572
5573 2003-06-10  Dick Porter  <dick@ximian.com>
5574
5575         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
5576         ip_mreq is available
5577
5578 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
5579
5580         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
5581         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
5582         by Bernie Solomon <bernard@ugsolutions.com>.
5583
5584 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
5585
5586         * gc.c (mono_gc_init): Avoid error message on shutdown when
5587         GC_DONT_GC=1 is used.
5588
5589         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
5590         New icall to return the GUID of a module.
5591
5592 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
5593
5594         * class.c: ensure instance size always includes the parent's size
5595         even whem class size is set explicitly (fixes bug#44294).
5596
5597 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
5598
5599         * profiler.h, profiler.c: made the simple profiler thread-safe,
5600         get more accurate timing info. Allow the loading of an
5601         externally-developed profiler module.
5602
5603 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
5604
5605         * marshal.c (mono_marshal_get_native_wrapper): improved
5606         class/byref arguments.
5607         (mono_marshal_get_native_wrapper): better string marshaling support.
5608
5609 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
5610
5611         * class.c: ensure .pack and .size are handled correctly and
5612         simplified layout of static fields.
5613
5614 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
5615
5616         * appdomain.c
5617         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
5618
5619         * loader.c (mono_lookup_pinvoke_call): look for modules in the
5620         current directory (fix bug 44008)
5621
5622 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
5623
5624         * marshal.c (mono_marshal_get_native_wrapper): started support for
5625         custom marshalers.
5626         (mono_delegate_to_ftnptr): consider marshalling specifications
5627
5628 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
5629
5630         * reflection.c, reflection.h: emit custom marshal info.
5631
5632 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5633
5634         * object.c: free the GError.
5635         * icall.c: added CloseEvent_internal.
5636         * threads.[ch]:
5637         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
5638         call.
5639
5640 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
5641
5642         * loader.c (mono_method_get_signature): Add support for dynamic
5643         assemblies.
5644
5645 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
5646
5647         * reflection.c: fixed bug #43905.
5648
5649 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
5650
5651         * class.c, domain.c, icall.c, metadata.h, object.h: support for
5652         handling TypedReference and ArgIterator.
5653         * loader.c, loader.h: added function to get signature at call site.
5654
5655 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
5656
5657         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
5658         data readonly. Buglets and warning fixes. Some MethodSpec support.
5659
5660 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
5661
5662         * class.h, class.c, object.c: remove relative numbering support.
5663
5664 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
5665
5666         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
5667         free the string, until we get a chance to fix Gtk#
5668
5669 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5670
5671         * marshal.c: revert last patch.
5672
5673 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
5674
5675         * icall.c: updates for new mono_class_vtable() not calling
5676         the type constructor anymore.
5677
5678 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
5679
5680         * object.h, object.c: separate vtable creation from type
5681         initialization. Make running the .cctor thread safe.
5682
5683 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
5684
5685         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
5686
5687 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
5688
5689         * loader.c (mono_get_method): consider calling convention
5690
5691 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
5692
5693         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
5694         to return the invisible global type for a module.
5695
5696         * reflection.c (mono_image_build_metadata): Emit global fields too.
5697
5698 2003-05-20  Peter Williams  <peterw@ximian.com>
5699
5700         * loader.c (mono_lookup_internal_call): Add a few newlines.
5701
5702 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
5703
5704         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
5705         literal strings.
5706
5707         * appdomain.c (set_domain_search_path): Recalculate search path when
5708         AppDomainSetup.PrivateBinPath changes.
5709
5710         * object.c (mono_class_compute_gc_descriptor): It turns out some
5711         parts of the class libs (like System.Thread) holds pointers to
5712         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
5713         to treat native int a pointer type here.
5714         
5715 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
5716
5717         * appdomain.h, domain.c: add hashtable for jump target resolution.
5718
5719 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
5720
5721         * reflection.h reflection.c icall.c: Added new icalls 
5722         GetManifestResourceInfoInternal, GetModulesInternal and support
5723         infrastructure.
5724
5725 2003-05-16  Dick Porter  <dick@ximian.com>
5726
5727         * icall.c:
5728         * file-io.h:
5729         * file-io.c: Implement System.IO.MonoIO::GetTempPath
5730
5731 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
5732
5733         * object.c: mono_store_remote_field: little fix to previous patch.
5734
5735 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
5736
5737         * class.c: add constructors to array classes.
5738         * icall.c: special case array construction for InternalInvoke (),
5739
5740 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
5741
5742         * class.h class.c reflection.c object.c: Added support for field
5743         defaults in dynamically generated classes.
5744
5745 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
5746
5747         * reflection.c: properly encode charset for ddlimport.
5748
5749 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
5750
5751         * threads.c: allow compiling without GC.
5752
5753 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
5754
5755         * appdomain.h, object.c, object.h, threads.c, threads.h: added
5756         handling of thread static data.
5757
5758 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
5759
5760         * reflection.h, reflection.c: added mono_custom_attrs_free ().
5761
5762 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
5763
5764         * class.c (mono_array_class_get): always set the serializable flags
5765         (mono_array_class_get): always set the SEALED attribute for array types
5766
5767 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
5768
5769         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
5770         attributes (fix for bug 42021).
5771
5772 2003-05-12  Dick Porter  <dick@ximian.com>
5773
5774         * gc.c: Don't run finalizers when the finalizer thread is
5775         finishing up, because the default domain has already been
5776         destroyed.
5777
5778 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
5779
5780         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
5781         value is null, we should throw an exception.   This is slightly
5782         different than the other conventions used for the constructor.
5783
5784 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5785
5786         * socket-io.c: fixed windows build.
5787
5788 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5789
5790         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
5791
5792 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
5793
5794         * object.c (mono_string_new_wrapper): Compatibility fix for MS
5795         compilers.
5796
5797 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
5798
5799         * class.c (mono_class_layout_fields): Add experimental GC aware
5800         auto layout facility. Requires class library changes to work correctly.
5801
5802         (mono_class_setup_vtable): Avoid overriding explicit interface
5803         method implementations. Fixes iface3.exe test.
5804
5805         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
5806         object reference.
5807         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
5808         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
5809
5810         * metadata.h: Add new type classification macro which determines
5811         whenever the type holds an object reference.
5812
5813 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
5814
5815         * marshal.c (mono_marshal_get_native_wrapper): cleanups
5816
5817 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
5818
5819         * gc.c (finalizer_thread): Work around a GC bug.
5820
5821 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
5822
5823         * marshal.c (emit_struct_conv): allow unions
5824
5825         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
5826
5827 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
5828
5829         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
5830
5831 2003-05-06  Martin Baulig  <martin@ximian.com>
5832
5833         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
5834
5835 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5836
5837         * socket-io.c:
5838         (Select_internal): allow NULLs, don't create arrays if not needed.
5839         Coupled with Socket.cs changes.
5840
5841         * threadpool.c:
5842         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
5843         register a finalizer for it that will close the semaphore handle. This
5844         fixes the leak and make Lupus' test run with > 4080 loops.
5845
5846 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
5847
5848         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
5849         Jerome Laban (bug #42287)
5850
5851 2003-05-02  Martin Baulig  <martin@ximian.com>
5852
5853         * debug-mono-symfile.h
5854         (MonoSymbolFile): Moved declaration into mono-debug.h.
5855         (MonoDebugMethodJitInfo): Likewise.
5856         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
5857         argument.
5858         (_mono_debug_address_from_il_offset): Take a
5859         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
5860
5861         * mono-debug.h
5862         (MonoDebugDomainData): New struct.
5863         (mono_debug_get_domain_data): New function.
5864         (mono_debug_add_method): Take an additional `MonoDomain *'
5865         argument.
5866         (mono_debug_source_location_from_address): Likewise.
5867         (mono_debug_il_offset_from_address): Likewise.
5868         (mono_debug_address_from_il_offset): Likewise.
5869
5870 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
5871
5872         * reflection.c: one more check for null type in custom attrs.
5873
5874 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5875
5876         * reflection.c: avoid warning (comparison is always false due to limited
5877         range of data type).
5878
5879 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5880
5881         * icall.c: throw an exception in Type.GetField if the argument 'name'
5882         is NULL.
5883
5884 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
5885
5886         * reflection.c: fixed handling of enums in named arguments to custom
5887         attributes (bug #42123).
5888
5889 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
5890
5891         * reflection.c: use the right array element type and handle
5892         a null for a Type argument, too.
5893
5894 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
5895
5896         * reflection.c: handle arrays as arguments to custom attributes.
5897
5898 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
5899
5900         * reflection.c: handle a string value in a custom attr
5901         ctor that takes an object.
5902
5903 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
5904
5905         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
5906         (fix bug #42063)
5907
5908 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
5909
5910         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
5911
5912 2003-04-27  Martin Baulig  <martin@ximian.com>
5913
5914         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
5915         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
5916         MONO_DEBUGGER_EVENT_BREAKPOINT.
5917         (mono_breakpoint_trampoline_code): Removed.
5918         (mono_debugger_event_handler): The last argument is now a
5919         `guint32'.
5920         (mono_debugger_insert_breakpoint_full): Removed the
5921         `use_trampoline' argument.
5922         (mono_debugger_method_has_breakpoint): Likewise.
5923         (mono_debugger_trampoline_breakpoint_callback): Renamed to
5924         mono_debugger_breakpoint_callback(); take the method and
5925         breakpoint number as arguments.
5926
5927 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
5928
5929         * metadata.c: fix off by one when loading parameters attributes.
5930
5931 2003-04-24  Martin Baulig  <martin@ximian.com>
5932
5933         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
5934
5935 2003-04-24  Martin Baulig  <martin@ximian.com>
5936
5937         * mono-debug-debugger.c: Moved all code which interacts with the
5938         Mono Debugger here.
5939
5940         * debug-mono-symfile.c: This code now just deals with the symbol
5941         file itself, the debugger code is now in mono-debug-debugger.c.
5942
5943 2003-04-23  Martin Baulig  <martin@ximian.com>
5944
5945         * mono-debug.c (mono_debug_source_location_from_il_offset):
5946         New method; like mono_debug_source_location_from_address(), but
5947         takes an IL offset instead of a machine address.
5948
5949 2003-04-23  Martin Baulig  <martin@ximian.com>
5950
5951         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
5952         `line' field; this is now computed by the debugger.
5953
5954 2003-04-23  Martin Baulig  <martin@ximian.com>
5955
5956         * mono-debug.[ch]: New files.  This is the new debugging interface.
5957
5958         * mono-debug-debugger.[ch]: New files.  Moved all code which
5959         interacts with the Mono Debugger here.
5960
5961 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
5962
5963         * domain.c (mono_init): initialize mono_defaults.monitor_class
5964
5965 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
5966
5967         * reflection.c (method_encode_code): Add a spicy exception to help
5968         future compiler authors.
5969
5970 2003-04-21  Martin Baulig  <martin@ximian.com>
5971
5972         * icall.c
5973         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
5974         Make this work with relative pathnames; g_filename_to_uri() needs
5975         an absolute filename.
5976
5977 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
5978
5979         * icall.c: Track name changes in Object and ValueType.
5980
5981 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
5982
5983         * metadata.c (mono_type_stack_size): size should be a multiple of
5984         sizeof (gpointer)
5985
5986 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5987
5988         * gc.c:
5989         (internal_domain_finalize): moved into mono_domain_finalize. No need
5990         to create another thread because the finalizers will be run in the
5991         finalizer thread.
5992         
5993         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
5994         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
5995         to be run (MS does this too).
5996
5997 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
5998
5999         * object.c (mono_class_compute_gc_descriptor): Update comment.
6000
6001         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
6002
6003         * image.h: Add synchronized wrapper cache.
6004
6005         * image.c (do_mono_image_open): Initialize cache.
6006
6007         * reflection.c (create_dynamic_mono_image): Initialize cache.
6008
6009 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6010
6011         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
6012         ves_icall_System_Buffer_ByteLengthInternal.
6013
6014 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
6015
6016         * reflection.c: setup klass->nested_in earlier. Allow
6017         a dash in the assembly name.
6018
6019 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
6020
6021         * metadata.c (mono_type_to_unmanaged): dont access
6022         type->data.klass for MONO_TYPE_OBJECT
6023         (mono_type_to_unmanaged): consider System.Delegate class
6024
6025 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
6026
6027         * class.c: just setup supertypes in the proper place instead of
6028         initializing the full element class for arrays.
6029
6030 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
6031
6032         * class.c: ensure the element class of arrays is initialized.
6033         Setup the supertype info for array classes, too.
6034
6035 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
6036
6037         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
6038
6039 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6040
6041         * Makefile.am: re-added -m option when running cygpath. This way,
6042         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
6043         separator.
6044         * mono-config.c: same codepath for locating mono config file for WIN32
6045         and the rest.
6046         * assembly.c: if mono_assembly_setrootdir is called, don't override
6047         the value set.
6048
6049 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6050
6051         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
6052         MONO_ASSEMBLIES variable.
6053
6054 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
6055
6056         * icall.c: added Assembly::GetNamespaces() icall.
6057
6058 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6059
6060         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
6061
6062 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
6063
6064         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
6065         * object.c: fixed bug in the construction of vtable for proxies
6066
6067 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
6068
6069         * object.c (mono_array_new): Mark mono_array_new as an icall.
6070
6071 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6072
6073         * class.c: fixed test for public method when overriding interfaces.
6074         Closes bug #40970.
6075
6076 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
6077
6078         * appdomain.h, domain.c: added mono_domain_foreach() to
6079         be able to access the currently loaded appdomains.
6080         * object.c: make string interning work across sppdomains.
6081         Mark some functions for use as icalls.
6082
6083 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
6084
6085         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
6086
6087         * reflection.h reflection.c: Allocate long living data using 
6088         GC_MALLOC_ATOMIC so the collector does not need to scan it.
6089
6090         * reflection.c: Double the allocation size in streams instead of
6091         increasing it, to prevent unneccesary copying on large assemblies.
6092         
6093         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
6094         creation if the assembly does not have the Run flag set.
6095
6096 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
6097
6098         * class.h: avoid the C++ keywords in header files (Jerome Laban
6099         spotted and fixed this).
6100
6101 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6102
6103         * object.c:
6104         (mono_unhandled_exception): fill in the arguments for the
6105         UnhandledException event. Only trigger that event for the default
6106         domain (as MS does).
6107
6108 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
6109
6110         * object.c: Improve typed allocation stuff based on suggestions from
6111         Paolo. Also turn it on if the GC library supports it.
6112
6113 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
6114
6115         * object.c object.h class.h: Added experimental typed allocation
6116         facility using the interfaces in gc_gcj.h.
6117
6118         * os/gc_wrapper.h: Added new include files.
6119         
6120 2003-04-03  Martin Baulig  <martin@ximian.com>
6121
6122         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
6123         which is not yet enabled by default.
6124
6125         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
6126         functions.
6127         (mono_gc_lock, mono_gc_unlock): New static functions.
6128
6129         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
6130         functions; stop/start the world for the garbage collector.  This
6131         is using the windows API; we need to complete the SuspendThread()/
6132         ResumeThread() implementation in the io-layer to make this work on Unix.
6133         (mono_gc_push_all_stacks): New public function; tells the garbage
6134         collector about the stack pointers from all managed threads.
6135
6136 2003-04-03  Martin Baulig  <martin@ximian.com>
6137
6138         * object.h (MonoThread): Added `gpointer stack_ptr'.
6139
6140         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
6141
6142 2003-04-03  Martin Baulig  <martin@ximian.com>
6143
6144         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
6145
6146 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
6147
6148         * reflection.c (typebuilder_setup_fields): Initialize field.first and
6149         field.last.
6150
6151 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
6152
6153         * loader.c (mono_lookup_internal_call): Report the corlib that is
6154         out of sync.
6155
6156 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
6157
6158         * icall.c (ves_icall_type_GetTypeCode): fixed check for
6159         System.DBNull (it's class not valuetype).
6160
6161 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
6162
6163         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
6164         if the array method was already assigned a token (fixes bug#40646).
6165
6166 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
6167
6168         * reflection.c (mono_reflection_get_type): Attempt type resolve even
6169         if no assembly is given.
6170
6171 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
6172
6173         * metadata.h: Added the new tables.
6174
6175         * row-indexes.h: Added definitions for new tables.
6176
6177         * metadata.c: Add schemas for new tables, and add support for
6178         computing the sizes of them.
6179
6180         * class.c: Update for handling the new type cases.
6181
6182 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
6183
6184         * metadata.h (MONO_TYPE_IS_VOID): new macro
6185
6186 2003-03-31  Martin Baulig  <martin@ximian.com>
6187
6188         * threads.h (MonoThreadCallbacks): Added `thread_created'.
6189
6190         * threads.c (mono_thread_new_init): Call `thread_created' in the
6191         mono_thread_callbacks.
6192
6193 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
6194
6195         * loader.h: added marshalbyrefobject_class to mono_defaults
6196         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
6197         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
6198           generation of output parameters.
6199           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
6200         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
6201           contextbound and the target object belongs to the context of the caller.
6202         * object.h: added context and unwrapped_server variables in MonoRealProxy.
6203         * object.c: Implemented support for interfaces and abstract classes
6204           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
6205           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
6206
6207 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
6208
6209         * class.h class.c (mono_class_is_subclass_of): New function.
6210         
6211         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
6212         routines for most common case (calls from ArrayList::ToArray).
6213
6214         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
6215         routine so programs which call Environment::Exit() can be profiled.
6216
6217         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
6218         Added MONO_ARCH_SAVE_REGS.
6219
6220         * icall.c (ves_icall_type_is_subtype_of): Use new function.
6221
6222 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
6223
6224         * blob.h: Add a couple of new MonoType types definitions.
6225
6226         * tabledefs.h: Add a couple of new call convs.
6227
6228 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
6229
6230         * reflection.h (MonoReflectionDynamicAssembly): track changes in
6231         the layout of the class.
6232
6233         * reflection.c (alloc_table): double the size on overflow to avoid
6234         unnecessary copying.
6235
6236         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
6237         avoid filling out metadata tables and blobs. Also set mb->ilgen to
6238         null so it can be garbage collected.
6239         
6240 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
6241
6242         * reflection.c (mono_reflection_get_type): Return the resolved type
6243         only if it is in the assembly we searched.
6244
6245         * reflection.c (ensure_runtime_vtable): Initialize method slots.
6246
6247         * class.c (mono_class_setup_vtable): Set the slot of the overriding
6248         method.
6249
6250 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6251
6252         * appdomain.c:
6253         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
6254         the right one is 'file:///blah', but MS allows it.
6255         * assembly.c:
6256         (mono_assembly_open): allow 'file://blah'
6257
6258         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
6259
6260 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
6261
6262         * socket-io.c: fixes bug #40310.
6263
6264 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
6265
6266         * reflection.c (mono_reflection_parse_type): handle deeply nested
6267         types correctly.
6268
6269         * reflection.c (mono_image_create_token): Use unique token values
6270         since they will be put into a hash table.
6271
6272         * class.c (mono_class_setup_vtable): If a method occurs in more than
6273         one place in the vtable, and it gets overriden, then change the
6274         other occurances too.
6275
6276         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
6277         object as return type.
6278
6279 2003-03-22  Pedro Martínez Juliá  <yoros@wanadoo.es>
6280
6281         * icall.c: Deleted "ToString" implementation for double and float
6282         because they are full implemented in managed code.
6283
6284 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
6285
6286         * reflection.c, reflection.h: implemented and exported functions
6287         to retrieve info about custom attributes.
6288
6289 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6290
6291         * appdomain.c: moved Uri handling to assembly.c
6292         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
6293         work when using a file Uri in *nix and windows.
6294
6295         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
6296         GetReferencedAssemblies.
6297
6298 2003-03-18  Dick Porter  <dick@ximian.com>
6299
6300         * icall.c: Rename a couple of internal calls
6301
6302         * threads.c: Set the thread state to Stopped when a thread exits.
6303         Fixes bug 39377.
6304
6305 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
6306
6307         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
6308         New icall.
6309
6310         * object.c (mono_class_vtable): fix warning.
6311
6312 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
6313
6314         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
6315
6316         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
6317         memory.
6318         (method_encode_clauses): Create exception info structures in the right
6319         order.
6320         (mono_reflection_setup_internal_class): Initialize supertypes field.
6321
6322         * class.c object.c: Handle interfaces which implement other interfaces 
6323         correctly.
6324
6325         * class.h class.c: Move the supertypes array initialization code into 
6326         a separate function so it can be used for dynamic types too. Also call
6327         it earlier, in mono_class_init(), since it can be used before the
6328         type is initialized.
6329
6330 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6331
6332         * Makefile.am:
6333         * assembly.c:
6334         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
6335
6336         * appdomain.c:
6337         * appdomain.h:
6338         * marshal.c:
6339         * object.c: remove warnings.
6340
6341 2003-03-13  Martin Baulig  <martin@ximian.com>
6342
6343         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
6344         (MonoDebugLexicalBlockEntry): New types.
6345
6346         * debug-mono-symfile.c
6347         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
6348
6349 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6350
6351         * process.c: ret can be any non-zero value accroding to MS doc.
6352
6353 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
6354
6355         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
6356         fixing a warning for a miss-used prototype, would have cause
6357         random memory corruption.
6358
6359 2003-03-07  Martin Baulig  <martin@ximian.com>
6360
6361         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
6362         getting really annoying ....
6363
6364 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
6365
6366         * reflection.c (fixup_method): added support for array methods.
6367
6368 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
6369
6370         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
6371         (pointed out by Michael Adams).
6372
6373 2003-03-04  Dick Porter  <dick@ximian.com>
6374
6375         * icall.c: Temporarily reverted the Double and Single ToString()
6376         change, because it broke nunit.
6377
6378 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
6379
6380         * object.h, threads.h: make include files compatible with C++
6381         (patch by Jerome Laban <jlaban@wanadoo.fr>).
6382
6383 2003-03-04  Pedro Martínez Juliá  <yoros@wanadoo.es>
6384
6385         * icall.c: Erased ToString helper functions for Double and Single.
6386         Now, that implementations ar all in managed code (Double and Single
6387         Formatters).
6388
6389 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
6390
6391         * appdomain.c: Added method for initializing the default context of
6392         a domain. Added internal call for getting the default context.
6393         * appdomain.h: Added context variable in MonoDomain struct.
6394         * domain.c: mono_domain_set also sets the default context of the domain
6395         * icall.c: Mapped internal method InternalGetDefaultContext.
6396         * object.c: mono_object_get_virtual_method returns always a remoting
6397         wrapper if the object is a transparent proxy.
6398         mono_runtime_invoke_array: when creating an object by calling the
6399         constructor, if the created object is a proxy, then the constructor should
6400         be called using the a remoting wrapper.
6401
6402 2003-03-03  Dick Porter  <dick@ximian.com>
6403
6404         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
6405         variable so it compiles on solaris.  Problem spotted by
6406         Christopher Taylor <ct@cs.clemson.edu>
6407
6408 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6409
6410         * appdomain.c:
6411         (get_info_from_assembly_name): don't leak value.
6412
6413         * icall.c:
6414         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
6415         result.
6416
6417 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
6418
6419         * assembly.c: export mono_image_load_references ().
6420         * class.c: handle function pointers. mono_class_from_name() now
6421         supports nested type names directly.
6422
6423 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
6424
6425         * reflection.h reflection.c: Encode already created dynamic methods 
6426         and fields correctly as a DEF instead of a REF.
6427
6428         * reflection.c: Get rid of the force_ref argument to 
6429         mono_image_typedef_or_ref since it was wrong in the first place.
6430
6431         * string-icalls.c: add error checking to string constructors according
6432         to the MSDN docs.
6433
6434         * reflection.c: Emit types in the order their TypeBuilders were 
6435         created. Previously, a new table index was assigned to each type before
6436         the tables were emitted. This was wrong because the signature blob
6437         might already refer to a type by its original table index.
6438
6439 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
6440
6441         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
6442         change.
6443         
6444 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6445
6446         * Makefile.am: make assemblies dir have \ instead of / on windows.
6447
6448 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
6449
6450         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
6451         iterate over the NESTEDCLASS table using a linear search since the
6452         table is not guaranteed to be sorted by the secondary key.
6453
6454         * class.c (mono_class_create_from_typedef): fixed up call to
6455         mono_metadata_nesting_typedef.
6456         
6457 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
6458
6459         * marshal.c (mono_string_to_byvalstr): clear the memory as
6460         suggested by Jerome Laban <jlaban@wanadoo.fr>
6461
6462 2003-02-26  Dick Porter  <dick@ximian.com>
6463
6464         * process.c: Cope with padding in .rsrc blocks
6465
6466 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
6467
6468         * metadata.h: reverted the filter_len change, it breaks reflection
6469         
6470 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
6471
6472         * metadata.h: added a new field to store the filter_len
6473         
6474
6475 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
6476
6477         * reflection.c: handle custom attributes for types and members
6478         created with Reflection.Emit (bug#38422).
6479
6480 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
6481
6482         * reflection.c: define RTSpecialName automatically for constructors for
6483         compatibility with MS.NET.
6484
6485         * reflection.c (mono_reflection_create_runtime_class): initialize
6486         nested_in field of dynamically created classes.
6487
6488 2003-02-22  Martin Baulig  <martin@ximian.com>
6489
6490         * debug-mono-symfile.h: Incremented version number.
6491
6492 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
6493
6494         * object.h icall.c process.c: fix warnings.
6495
6496 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
6497
6498         * appdomain.h appdomain.c:
6499         (mono_domain_try_type_resolve): split the 
6500         name_or_tb argument into a name and a tb argument.
6501         (mono_domain_has_type_resolve): new function to check whenever the
6502         application has registered a TypeResolve event handler.
6503         
6504         * icall.c reflection.h reflection.c: move the type resolve logic into
6505         mono_reflection_get_type () so it will be invoked when 
6506         Assembly::GetType () is called.
6507
6508         * reflection.c:
6509         (mono_reflection_get_type): renamed to get_type_internal.
6510         (mono_reflection_get_type): fixed type name generation so it works 
6511         for nested types too.
6512         (mono_reflection_get_type): call has_type_resolve () to avoid the 
6513         costly type name generation if there is no resolve event handler.
6514
6515 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
6516
6517         * class.c, image.c: load exported types from file references.
6518
6519 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
6520
6521         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
6522           used to cache the managed methods used to create proxies and make 
6523           remote invocation of methods.
6524         * class.h: Added in MonoVTable a flag to indicate that a class needs 
6525           to be remotely created.
6526         * object.c: Modified the method mono_class_vtable(). It now initializes 
6527           the remote flag of the vtable. Modified mono_object_new_specific(), 
6528           so now it checks the remote flag.
6529         * icall.c: Added a couple of internal methods, one for enabling instance 
6530           creation interception for a type, and one for creating objects bypassing
6531           the remote check.
6532
6533 2003-02-18  Martin Baulig  <martin@ximian.com>
6534
6535         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
6536         New interncall to get a method's metadata token.
6537
6538         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
6539         New interncall for the debugger.
6540
6541 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
6542
6543         * class.c (mono_class_setup_vtable): allocate supertype array
6544
6545 2003-02-18  Martin Baulig  <martin@ximian.com>
6546
6547         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
6548
6549 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6550
6551         * reflection.c:
6552         (assembly_name_to_aname): jump over unknown properties (i've found
6553         something like: 'type, assembly, version=xxx, custom=null, public...',
6554         so now will ignore custom=null and still get the rest of the values).
6555
6556 2003-02-17  Dick Porter  <dick@ximian.com>
6557
6558         * threads.c: Have Thread.Start() wait for a semaphore to signal
6559         that the thread has set up all its local data.  This fixes bug
6560         34323, where Abort() raced the new thread's TLS data.
6561
6562         Also removes the handle_store() call from start_wrapper, because
6563         threads are now always created suspended and there is no longer a
6564         race between the parent and child threads to store the info.
6565
6566 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
6567
6568         * image.c: explain the #- heap issue in a message, hopefully
6569         avoiding FAQs on mono-list.
6570
6571 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6572
6573         * icall.c:
6574         (GetEntryAssembly): if the domain has not invoked
6575         AppDomain.ExecuteAssembly yet, return the assembly of the default
6576         AppDomain.
6577
6578 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
6579
6580         * class.c (mono_ldtoken): make it work in dynamic assemblies.
6581
6582 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
6583
6584         * metadata.c, reflection.c: simple speedup to type hash
6585         and equals code.
6586
6587 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
6588
6589         * image.c, image.h, class.c, assembly.c: move module loading
6590         to MonoImage. When loading metadata, consider alignemnet from
6591         the start of metadata, not from the metadata address in memory.
6592
6593 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
6594
6595         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
6596         AssemblyBuilder objects. Factored out custom attribute creation into
6597         a separate function.
6598         (create_custom_attr): new function to create custom attributes.
6599
6600 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
6601
6602         * Makefile.am: Got tired of typing the full pathname to pedump.
6603         Until there is another option, am installing this.
6604
6605 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
6606
6607         * class.c (class_compute_field_layout): always set field->parent 
6608         (mono_ldtoken): use mono_defaults.fieldhandle_class;
6609
6610 2003-02-11  Dick Porter  <dick@ximian.com>
6611
6612         * threads-types.h:
6613         * monitor.c: Rewrote Monitor, making lock much faster and
6614         Pulse/Wait work as specified.  Also uses much fewer handles, and only
6615         creates them as needed.
6616
6617         * exception.c: Added SynchronizationLockException
6618
6619         * threads.c: Deleted old Monitor implementation.  The new one is
6620         in a new file.
6621
6622 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
6623
6624         * class.c: handled TypedReference type code. Set the correct size for
6625         class data. Setup interface_offsets for interface classes, too.
6626
6627 2003-02-09  Martin Baulig  <martin@ximian.com>
6628
6629         * debug-mono-symfile.h: Reflect latest symbol writer changes.
6630
6631 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
6632
6633         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
6634         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
6635         * object.c: fixed mono_object_get_virtual_method () for interfaces.
6636         * verify.c: check for code that runs after the end of the method.
6637
6638 2003-02-08  Pedro Martínez Juliá  <yoros@wanadoo.es>
6639
6640         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
6641         "System.Math::Round2".
6642         * sysmath.h: Added Floor, Round and Round2 definitions.
6643         * sysmath.c: Modified certain functions that were not 100% compliant
6644         with MS.NET (math precision) and added the implementation of Floor,
6645         Round and Round2.
6646
6647 2003-02-07  Martin Baulig  <martin@ximian.com>
6648
6649         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
6650
6651 2003-02-07  Martin Baulig  <martin@ximian.com>
6652
6653         * debug-mono-symfile.c: Reflected latest symwriter changes.
6654         (mono_debug_create_mono_symbol_file): Removed.
6655         (mono_debug_open_mono_symbol_file): Take an argument which
6656         specifies whether to create a dynamic symbol file.
6657
6658 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
6659
6660         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
6661
6662 2003-02-05  Martin Baulig  <martin@ximian.com>
6663
6664         * reflection.c (mono_image_build_metadata): Make this public,
6665         protect it against being called multiple times, don't create
6666         resources and don't build the compressed metadata here.
6667         (mono_image_create_pefile): Do this here.
6668
6669         * icall.c
6670         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
6671
6672 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6673
6674         * socket-io.c: fixed bug #36322.
6675
6676 2003-02-06  Piers Haken <piersh@friskit.com>
6677
6678         * appdomain.[ch]:
6679         * class.h:
6680         * debug-mono-symfile.c:
6681         * icall.c:
6682         * loader.c:
6683         * mono-config.c:
6684         * monosn.c:
6685         * reflection.c:
6686         * socket-io.c: warning cleanups
6687
6688 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
6689
6690         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
6691         function. works like remoting invoke, but does a check for the Proxy first.
6692
6693 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
6694
6695         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
6696
6697 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
6698
6699         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
6700         array of pointers.
6701         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
6702         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
6703
6704         * object.c (mono_store_remote_field_new): used by the new jit
6705         instead of mono_store_remote_field
6706         (mono_load_remote_field_new): used by the new jit
6707         instead of mono_load_remote_field
6708
6709 2003-02-05  Patrik Torstensson
6710
6711         * appdomain.c: changed unload to take the domain id instead
6712         of domain
6713         
6714         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
6715
6716
6717 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6718
6719         * appdomain.c: don't look for assemblies in ApplicationBase if
6720         PrivateBinPathProbe is set.
6721
6722 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6723
6724         * object.c: make the first argument in main_args contain the absolute
6725         path to the assembly. Fixes bug #37511.
6726
6727 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6728
6729         * icall.c: get correct UTC offset for countries not using daylight
6730         time saving. Fixes bug #30030.
6731
6732 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6733
6734         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
6735         and 1 are the family).
6736
6737 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
6738
6739         * icall.c (ves_icall_InternalExecute): removed wrong assertion
6740
6741         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
6742
6743 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
6744
6745         * reflection.c: added support for SignatureHelper tokens, which is
6746         needed by the Calli opcode.
6747
6748         * reflection.h: track changes to SignatureHelper class.
6749
6750         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
6751
6752 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6753
6754         * appdomain.c: fixed loading assemblies from PrivateBinPath.
6755
6756 2003-02-03  Patrik Torstensson
6757         * appdomain.[c|h], domain.c : 
6758          - Added support for getting a domain via domain id
6759          - Support for setting and getting domain from System.AppDomain 
6760            (used in cross appdomain channel)
6761          - Added support for get/set for a MonoAppContext on a thread 
6762            (Context class in System.Runtime.Remoting.Contexts),
6763          - Removed hack in Get/SetData and ExecuteAssembly.
6764         
6765         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
6766         the managed world to get control when a proxy is created.
6767
6768         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
6769         
6770 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
6771
6772         * icall.c
6773         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
6774         Populate the codebase field as well.
6775
6776 2003-02-02  Martin Baulig  <martin@ximian.com>
6777
6778         * debug-mono-symfile.c
6779         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
6780         (mono_debug_symfile_add_method): Allow interncalls.
6781
6782 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6783
6784         * icall.c: throw parse exception if strtod fails or the string is empty.
6785
6786 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
6787
6788         * marshal.c: handle object type separately from defined
6789         class types.
6790
6791 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
6792
6793         * marshal.c: handle NATIVE_LPSTR for strings when it's
6794         explicitly specified.
6795
6796 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
6797
6798         * reflection.c, reflection.h, icall.c: setup the reflection
6799         handle cache for ModuleBuilders and AssemblyBuilders.
6800
6801 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
6802
6803         * reflection.c (reflection_methodbuilder_to_mono_method): set
6804         pinvoke flag
6805
6806 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6807
6808         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
6809
6810 2003-01-29  Dick Porter  <dick@ximian.com>
6811
6812         * threads.c: No need for the fake_thread kludge now that Thread
6813         doesn't run a class constructor
6814         
6815 2003-01-29  Dick Porter  <dick@ximian.com>
6816
6817         * threads.c: Use g_direct_hash instead of the rather bogus
6818         g_int_hash
6819
6820 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
6821
6822         * marshal.c (mono_marshal_get_native_wrapper): add check for null
6823         (fix pinvoke12.exe)
6824         (mono_marshal_get_struct_to_ptr): generate valid IL code
6825         (mono_marshal_get_ptr_to_struct): generate valid IL code
6826         (*): correctly set sig->pinvoke, we need to memdup the signature
6827         to do that
6828
6829 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
6830
6831         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
6832         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
6833
6834 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
6835
6836         * profiler.c: provide more callers information.
6837
6838 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
6839
6840         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
6841
6842         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
6843
6844         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
6845
6846 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
6847
6848         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
6849         exception instead of going into an infinite loop on dates which it 
6850         can't yet handle.
6851
6852         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
6853         out-of-range exception if needed.
6854
6855         * class.c (mono_class_setup_vtable): allow a virtual method to provide
6856         an implementation for an interface method and to override an inherited
6857         method at the same time. 
6858         Imagine a scenario when a virtual method is used to override a
6859         virtual abstract method in a parent class, and this same method 
6860         provides an implementation for an method inherited from an interface. 
6861         In this case, the interface resolution code will set im->slot, which 
6862         means that the virtual method override pass will skip this method 
6863         which means a pointer to the abstract method inherited from the parent
6864         will remain in the vtable of this non-abstract class.
6865
6866         * class.c: (mono_class_setup_vtable): continue search for a real 
6867         method if only an abstract method is found.     
6868
6869 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
6870
6871         * reflection.c: add size to encoding for ByValStr and ByValArray
6872         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
6873
6874 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
6875
6876         * class.c (mono_class_setup_vtable): pass the override info as an
6877         argument.
6878
6879         * class.c (mono_class_setup_vtable): set the slot of overriding methods
6880         correctly.
6881         
6882         * reflection.c (ensure_runtime_vtable); add support for method 
6883         overrides.
6884         
6885 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
6886
6887         * reflection.c (resolution_scope_from_image): Hack to work to work with
6888         dynamic assemblies.
6889
6890         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
6891         added a 'force_ref' argument to force this function to allways return 
6892         a TypeRef. This is needed by mono_image_get_memberref_token ().
6893         
6894 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
6895
6896         * reflection.c (mono_image_get_type_info): interfaces really don't have
6897         a parent.
6898
6899         * reflection.c (mono_image_basic_init): fill out missing fields of
6900         image structure.
6901
6902         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
6903         dynamic assemblies. This is required so dynamic assemblies show up in
6904         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
6905         Type::GetType() etc. This is consistent with MS behaviour.
6906
6907         * image.c image.h reflection.c: add newly created classes to the name 
6908         cache so mono_class_get () will find them.      
6909
6910 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
6911
6912         First part of changes to get IKVM.NET running under mono.
6913         
6914         * appdomain.h, appdomain.c: added new function 
6915         mono_domain_try_type_resolve() which will emit TypeResolve events. 
6916         This function will call AppDomain::DoTypeResolve to do the actual work.
6917
6918         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
6919         moved existing code dealing with dynamic tokens to a new function 
6920         called mono_reflection_lookup_dynamic_token (). This function will 
6921         raise TypeResolve events when appropriate. Since reflection.c is not 
6922         part of libmetadata, a new hook function called 
6923         mono_lookup_dynamic_token() is added to class.c which will call this.
6924
6925         * assembly.h assembly.c: make the invoke_load_hook function public,
6926         so it can be called for dynamic assemblies.
6927
6928         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
6929
6930         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
6931         type isn't found.
6932
6933         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
6934         MonoGHashTable, since it contains pointers to objects which the GC 
6935         needs to track.
6936
6937         * assembly.c (search_loaded): remove unused variable.
6938         
6939 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
6940
6941         * object.c: fixed issue exposed by gcc-generated IL programs
6942         that use RVA data for pointers.
6943
6944 2003-01-25  Martin Baulig  <martin@ximian.com>
6945
6946         * threads.c (start_wrapper): Moved the initialization of
6947         `start_func' above the mono_new_thread_init() call to which we
6948         pass it as argument.
6949
6950 2003-01-24  Martin Baulig  <martin@ximian.com>
6951
6952         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
6953         the MonoThread pointer.
6954
6955 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
6956
6957         * icall.c: Rename `PowImpl' to Pow.
6958
6959 2003-01-23  Dick Porter  <dick@ximian.com>
6960
6961         * threads.c (start_wrapper): Create a Thread object if needed, so
6962         the Main() thread can do the class initialisation in a subthread
6963         that has been set up to allow managed code execution.
6964
6965         Pass the thread ID instead of the MonoThread pointer to the thread
6966         start and attach callbacks.  This change is required, because the
6967         jit thread start callback must be called _before_ the Thread
6968         object can be created.
6969         
6970         (mono_thread_init): Removed much object creation code that is no
6971         longer needed.  No managed code is called from here now.
6972
6973         * object.c (mono_runtime_exec_managed_code): Create a subthread
6974         for Main, and call back to the runtime to use it.
6975         Set the exit code when Main exits.
6976
6977         * gc.c: Make sure domain finalisation happens in a subthread.
6978         Re-enable threaded GC, fixing bug 31333 (again).
6979
6980         * environment.c: System.Environment internall calls (so far just
6981         ExitCode is here, the others are still in icall.c)
6982
6983         * appdomain.c (mono_runtime_cleanup): All threads running managed
6984         code should have finished before mono_runtime_cleanup() is
6985         reached, so no need to clean up threads.
6986
6987 2003-01-22  Martin Baulig  <martin@ximian.com>
6988
6989         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
6990         `gpointer func' arguments.      
6991         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
6992         but added `MonoThread *thread' argument.
6993         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
6994
6995         * threads.c (mono_new_thread_init): Added `gpointer func' argument
6996         and pass it to the mono_thread_start_cb callback.
6997         (mono_install_thread_callbacks): New public function to install a
6998         set of callbacks which are set by the debugger.
6999         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
7000
7001 2003-01-22  Martin Baulig  <martin@ximian.com>
7002
7003         * Makefile.am: Install debug-mono-symfile.h.
7004
7005 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
7006
7007         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
7008
7009 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
7010
7011         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
7012         * class.c (mono_ptr_class_get): correctly set access levels of pointers
7013         (mono_array_class_get): correctly set access levels of arrays
7014
7015 2003-01-20      Patrik Torstensson
7016         * image.h (MonoAssemblyName): changed major, minor, build, revision
7017         from signed to unsigned.
7018
7019 2003-01-20  sean kasun <skasun@azstarnet.com>
7020
7021         * reflection.c (load_cattr_value): Now this handles
7022         MONO_TYPE_SZARRAY.  Fixes bug #35629
7023
7024 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
7025
7026         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
7027         integer value
7028
7029 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7030
7031         * decimal.c: fixed bug #26056.
7032
7033 2003-01-17  Martin Baulig  <martin@ximian.com>
7034
7035         * gc.c: Raise an ExecutionEngineException instead of using g_error().
7036
7037 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7038
7039         * exception.[ch]:
7040         (mono_get_exception_type_initialization): new function.
7041
7042         * object.c: throw a TypeInitializationException when an exception is
7043         thrown invoking the class constructor.
7044
7045 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7046
7047         * reflection.c: fixed attribute reading.
7048
7049 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7050
7051         * icall.c:
7052         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
7053         provided, look for the type in the calling assembly and then in
7054         mscorlib; if the assembly name is provided, only try that one.
7055
7056 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
7057
7058         * object.c: register the vtable before there is a chance it's
7059         queried again recursively.
7060
7061 2003-01-13  Duncan Mak  <duncan@ximian.com>
7062
7063         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
7064         gc-internal.h. 
7065         
7066 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
7067
7068         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
7069
7070 2003-01-11  Martin Baulig  <martin@ximian.com>
7071
7072         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
7073         this to 20 for the release.
7074
7075 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
7076
7077         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
7078
7079         * loader.c (mono_method_get_marshal_info): bug fix
7080
7081         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
7082         structures with explicit layout
7083
7084 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
7085
7086         * profiler.c: made the output more readable (and sorted). 
7087         Added caller information for the allocation profiler.
7088
7089 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
7090
7091         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
7092
7093 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7094
7095         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
7096         to get value types.
7097         
7098 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
7099
7100         * object.c, profiler.h, profiler.c, profiler-private.h:
7101         Added object allocation profiler.
7102
7103 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
7104
7105         * reflection.h, reflection.c: handle global methods.
7106         Compress blob entries.
7107
7108 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
7109
7110         * marshal.c: fix compilation.
7111
7112 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
7113
7114         * loader.c (mono_method_get_marshal_info): impl.
7115
7116         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
7117
7118 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7119
7120         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
7121         for reference types.
7122
7123 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
7124
7125         * loader.c: fixed off by one error in loaded parameter names.
7126
7127 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
7128
7129         * marshal.c (mono_marshal_get_icall_wrapper): like
7130         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
7131         instead of a MonoMethod.
7132
7133 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7134
7135         * decimal.c: fixed bug #36537.
7136
7137 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
7138
7139         * marshal.c: throw a missing method exception if a
7140         P/Invoke method is not found.
7141
7142 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
7143
7144         * icall.c: allow a null this for constructors.
7145
7146 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
7147
7148         * icall.c: raise the proper exceptions if the arguments to the
7149         internal Invoke are incorrect.
7150
7151 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
7152
7153         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
7154
7155 2003-01-03  Martin Baulig  <martin@ximian.com>
7156
7157         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
7158
7159 2002-12-31  Martin Baulig  <martin@ximian.com>
7160
7161         * debug-mono-symfile.c: Completely rewrote the type section.
7162         Instead of using individual malloc()ed fields, we use one big
7163         continuous memory area and offsets into this area.
7164         See the comments in the source code for details.
7165
7166 2002-12-30  Martin Baulig  <martin@ximian.com>
7167
7168         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
7169
7170 2002-12-30  Martin Baulig  <martin@ximian.com>
7171
7172         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
7173         line number table in this data blob instead of using an external
7174         pointer.
7175
7176 2002-12-28  Martin Baulig  <martin@ximian.com>
7177
7178         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
7179
7180 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
7181
7182         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
7183         as a boxed return type.
7184
7185 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
7186
7187         * appdomain.c
7188         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
7189         g_build_filename to properly get separators on the filename created.
7190
7191         * object.h: Small change, introduce MonoMarshalByRefObject to
7192         track the layout of that structure in the C# universe as we make
7193         changes there.
7194
7195 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
7196
7197         * object.c: removed assert to allow static fields on interfaces.
7198         * loader.c: a TypeSpec may be used for any type, not just arrays.
7199
7200 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
7201
7202         * class.c, class.h: added mono_class_array_element_size ().
7203         Ignore static methods in interfaces.
7204
7205 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7206
7207         * threads.c: fixed the build under cygwin.
7208
7209 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
7210
7211         * reflection.c: handle nullref constants. Allocate keys for
7212         reflection handles with the GC.
7213
7214 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
7215
7216         * threads.c, threads.h: added mono_thread_get_abort_signal()
7217         to get a suitable signal for thread abort.
7218
7219 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
7220
7221         * metadata.c: fix handling of ExportedType table.
7222
7223 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7224
7225         * icall.c: added WriteWindowsDebugString internal call.
7226
7227 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7228
7229         * reflection.h: added fields to match C# implementation.
7230
7231 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7232
7233         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
7234
7235 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
7236
7237         * gc.h, gc-internal.h: Rename header for GC internal calls to
7238         gc-internal.h from gc.h as to not clash with Boehm GC having its
7239         header installed as <gc.h> in outside include paths.
7240         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
7241         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
7242
7243 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7244
7245         * icall.c: assign minor, build and revision in FillName.
7246
7247 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
7248
7249         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
7250         Added support for running code generated by Reflection.Emit.
7251
7252 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7253
7254         * appdomain.c: check for NULL argument in LoadFrom.
7255
7256 2002-12-10  Dick Porter  <dick@ximian.com>
7257
7258         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
7259
7260 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7261
7262         * appdomain.c: fix buglet when building exe file name.  Handle full
7263         assembly name (needed after latest changes to AssemblyName).
7264         * image.c:
7265         (mono_image_close): free some hashtables.
7266
7267 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
7268
7269         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
7270         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
7271         on some systems (redhat 7.3) 
7272
7273 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
7274
7275         * threads.c: delete the critical section of a sync block,
7276         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
7277
7278 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
7279
7280         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
7281
7282 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7283
7284         * appdomain.[ch]: handle the assembly preload event to try loading the
7285         assemblies using the paths we have in the current domain.
7286
7287         * assembly.[ch]: created an assembly preload hook that is called to try
7288         loading the assembly by other means that the ones provided here.
7289
7290         * domain.c: initialize the domain search path.
7291
7292         From now on, assemblies (TODO: except corlib and System) are loaded
7293         according to these rules when using mono_assembly_load ():
7294
7295                 1. It tries to load the assembly from the ApplicationBase
7296                 of the current domain appending .dll and .exe (TODO: have to
7297                 try loading from name/name.dll and name/name.exe).
7298
7299                 2. It tries the search path specified in PrivateBinPath for the
7300                 current domain (if any).
7301
7302                 3. Previous behavior.
7303
7304 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
7305
7306         * icall.c: implemented GetInterfaceMap() related icall.
7307         * domain.c, loader.h: load MethodInfo in mono_defaults.
7308
7309 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
7310
7311         * gc.c: disable the finalizer thread for now, untill all the issues
7312         with it are resolved.
7313
7314 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
7315
7316         * string-icalls.c: handle embedded nulls in string ctor when the
7317         length is specified.
7318
7319 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
7320
7321         * class.c: look for explicit interface implementation in parent
7322         classes, too.
7323
7324 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
7325
7326         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
7327
7328 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
7329
7330         * gc.c: protect handles with a critical section.
7331
7332 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7333
7334         * icall.c:
7335         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
7336         parameters. If no assembly specified, try getting the type from all
7337         the assemblies in the current domain, else, load the assembly and get
7338         the type from it.
7339
7340 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7341
7342         * marshal.c: applied patch from Aleksey Demakov that fixes
7343         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
7344
7345 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7346
7347         * icall.c: fixed get_location.
7348
7349 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
7350
7351         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
7352         declarations to make it work with older gcc. 
7353
7354         * loader.c (mono_get_method): set signature->pinvoke for native calls
7355
7356 2002-11-20  Dick Porter  <dick@ximian.com>
7357
7358         * threads.c (mono_thread_init): Set the main thread's handle
7359
7360 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
7361
7362         * gc.c: allow compilation without GC support. Changed to match the
7363         mono coding style.
7364
7365 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
7366
7367         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
7368
7369 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
7370
7371         * reflection.c: set a public key token on the core assemblies.
7372
7373 2002-11-18  Dick Porter  <dick@ximian.com>
7374
7375         * threads.c: Split out some thread initialisation so that other
7376         files can set the start callback function.
7377
7378         * gc.c: Run finalisers in a separate thread, to avoid stack
7379         overflow.  Fixes bug 31333.
7380
7381         * appdomain.c: Set up GC finalisation thread.
7382
7383         * reflection.c: 
7384         * object.c: 
7385         * domain.c: Use gc.h macros for GC_malloc
7386         
7387 2002-11-15  Dick Porter  <dick@ximian.com>
7388
7389         * threadpool.c: 
7390         * threads.c:
7391         * appdomain.c: Removed mono_runtime_init_with_attach(),
7392         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
7393         merging the extra parameter with the existing function.  Removed
7394         unneeded code in mono_thread_attach().
7395
7396 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
7397
7398         * image.c (mono_image_loaded_by_guid): a method to get loaded
7399         images by guid. 
7400         (load_metadata_ptrs): we store the guid as string.
7401
7402 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
7403
7404         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
7405
7406         * metadata.c (mono_guid_to_string): imported method form Zoltan
7407         Varga (slightly modified)
7408
7409         * assembly.c (mono_assembly_open): load precompiled code
7410
7411         * loader.h (MonoMethod): we store the method token for use in the
7412         aot compiler. 
7413
7414 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7415
7416         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
7417         the hook function called when an assembly is loaded.
7418         
7419         * domain.c: Modified file.
7420         (mono_domain_assembly_load): removed hash table insertion of assemblies.
7421
7422         Fixes bug #33196.
7423
7424 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
7425
7426         * reflection.c: Map PEFileKind to the value expected by the WinNT
7427         image loader. 
7428
7429 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7430
7431         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
7432         Read until the buffer is filled completely.
7433
7434 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7435
7436         * icall.c: implemented MonoType.InternalGetEvent ().
7437
7438 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7439
7440         * appdomain.c: implemented InitAppDomainSetup. Delayed
7441         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
7442         the entry_assembly.
7443
7444         * assembly.c: base_dir is now an absolute path ending with
7445         G_DIR_SEPARATOR.
7446
7447         * icall.c: modified get_location according to the above changes.
7448
7449         * object.c: init AppDomain.SetupInformation for the default domain after
7450         we have the entry assembly.
7451
7452         * domain.c: when unloading a domain, setup = NULL.
7453
7454 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
7455
7456         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
7457
7458 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
7459
7460         * object.h, object.c: introduced mono_object_get_virtual_method ()
7461         to lookup the method invoked on an object when a callvirt is done on
7462         a method.
7463         * icall.c: make MethodInfo::Invoke() always do a virtual call.
7464
7465 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7466
7467         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
7468         current domain when loaded an assembly and failed to load it.
7469
7470         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
7471
7472 2002-10-31  Dick Porter  <dick@ximian.com>
7473
7474         * icall.c: 
7475         * file-io.h: 
7476         * file-io.c: Return the error status in a parameter, as the
7477         GetLastError() value has long since been blown away if we try and
7478         look it up in a subsequent internal call invocation.  Delete the
7479         GetLastError() internal call, because it's useless.
7480
7481 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
7482
7483         * class.[ch]: added cast_class to fix bug 29517
7484
7485 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
7486
7487         * marshal.c: create valid IL code in the filter clause:
7488         the new JIT is less forgiving:-)
7489
7490 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7491
7492         * icall.c: removed get_property internal call.
7493
7494 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
7495
7496         * appdomain.h domain.c: Added an ID to appdomains.
7497         
7498         * threads.c threads.h icall.c: Implement icall
7499         Thread:GetDomainID(), and remove unused icall 
7500         CurrentThreadDomain_internal.
7501
7502 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7503
7504         * icall.c: Don't recurse through the base types in GetConstructor.
7505         Fixes bug #32063. 
7506
7507 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
7508
7509         * mempool.h, mempool.c: added mono_mempool_empty() and
7510         mono_mempool_stats().
7511
7512 2002-10-23  Dick Porter  <dick@ximian.com>
7513
7514         * file-io.c: 
7515         * file-io.h: 
7516         * icall.c: Added MonoIO.GetFileType internal call
7517
7518 2002-10-17  Dick Porter  <dick@ximian.com>
7519
7520         * appdomain.c (mono_runtime_cleanup): Don't signal the async
7521         delegate semaphore before waiting for all threads to finish,
7522         because new threads can also call async delegates.  Fixes bug
7523         32004.
7524
7525         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
7526         of 3 seconds, in case another async job is queued.  (This part is
7527         needed because the bug fix reintroduced the 3s exit lag.)  This
7528         makes the mono_runtime_shutdown flag superfluous.
7529
7530 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
7531
7532         * reflection.c: include ehader size in method section headers.
7533         Really check for suplicated modules entries.
7534
7535 2002-10-17  Martin Baulig  <martin@gnome.org>
7536
7537         * debug-mono-symfile.c: Added back support for locals.
7538
7539 2002-10-14  Martin Baulig  <martin@gnome.org>
7540
7541         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
7542         MONO_TYPE_VOID.
7543
7544 2002-10-14  Martin Baulig  <martin@gnome.org>
7545
7546         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
7547         mono_class_get() instead of looking in the class cache. 
7548
7549 2002-10-13  Martin Baulig  <martin@gnome.org>
7550
7551         * debug-mono-symfile.c: Set version number to 28, include the
7552         signature in method names.
7553
7554 2002-10-13  Martin Baulig  <martin@gnome.org>
7555
7556         * debug-mono-symfile.h: Set version number to 27.
7557
7558 2002-10-11  Martin Baulig  <martin@gnome.org>
7559
7560         * gc.c: Don't register/unregister NULL pointers as disappearing links.
7561
7562 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
7563
7564         * metadata.c, metadata.h: added helper function to allocate signatures.
7565
7566 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7567
7568         * icall.c: added internal call to get the location of machine.config.
7569
7570 2002-10-08  Martin Baulig  <martin@gnome.org>
7571
7572         * debug-mono-symfile.c: Ignore classes with a pending init for the
7573         moment.
7574
7575 2002-10-03  Dick Porter  <dick@ximian.com>
7576
7577         * threads.c: Freebsd pthread_t is a pointer
7578
7579 2002-10-03  Dick Porter  <dick@ximian.com>
7580
7581         * socket-io.c: Implemented GetHostName_internal
7582
7583 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7584
7585         * mono-config.c:
7586         (mono_config_parse_file): don't leak the text.
7587
7588 2002-10-02  Martin Baulig  <martin@gnome.org>
7589
7590         * debug-mono-symfile.c: Added support for methods.
7591
7592 2002-10-01  Martin Baulig  <martin@gnome.org>
7593
7594         * debug-mono-symfile.c: Don't emit methods and line numbers for
7595         the dynamic symbol file, just write the type table.  We can easily
7596         have an external helper program which creates a symbol file for an
7597         IL file.        
7598
7599 2002-10-01  Dick Porter  <dick@ximian.com>
7600
7601         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
7602         Only add the handle to the cleanup array when we're about to
7603         launch the thread.  Bug 31425 deadlocked when the test was run on
7604         mono under w32.
7605
7606 2002-10-01  Martin Baulig  <martin@gnome.org>
7607
7608         * debug-mono-symfile.c: Added support for properties.
7609
7610 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
7611
7612         * reflection.c: unaligned store fix from Mark Crichton
7613         <crichton@gimp.org>.
7614
7615 2002-09-27  Martin Baulig  <martin@gnome.org>
7616
7617         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
7618         New interncall.
7619
7620 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
7621
7622         * assembly.h, assembly.c: use a sane API to hook into the assembly
7623         loading process instead of a useless special-purpouse hack
7624         (ngen needs a hook, too, for example).
7625
7626 2002-09-27  Dick Porter  <dick@ximian.com>
7627
7628         * threads.c (mono_thread_init): Call GetCurrentProcess() so
7629         io-layer can set up some process handle info.  Not needed on w32,
7630         but doesn't hurt either.
7631
7632         * process.c: Pass the program name in the second parameter to
7633         CreateProcess, so the path is searched.  Include the working
7634         directory. Implemented process name, process enumeration, and some
7635         process detail internal calls.
7636         
7637         * icall.c: Added internal calls for process lookup, and some
7638         process details
7639
7640 2002-09-26  Martin Baulig  <martin@gnome.org>
7641
7642         * assembly.c (mono_install_open_assembly_hook): New global
7643         function to install a function to be invoked each time a new
7644         assembly is loaded.
7645         (mono_assembly_open): Run this callback function if set.
7646
7647         * debug-mono-symfile.c: Put back line numbers for the dynamic
7648         symbol file and also record the .il file as source file.  This
7649         allows us to install the temporary symbol file as `file.dbg' just
7650         like a compiler-generated one.
7651
7652 2002-09-26  Nick Zigarovich <nick@chemlab.org>
7653
7654         * Corrected typo in gc.c (BOHEM vs BOEHM).
7655
7656 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7657
7658         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
7659         GetProperties. Also avoid calling g_slist_length in GetProperties and
7660         GetMethods.
7661
7662 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
7663
7664         * reflection.c: avoid unaligned stores (bug spotted by
7665         Mark Crichton  <crichton@gimp.org>).
7666
7667 2002-09-25  Martin Baulig  <martin@gnome.org>
7668
7669         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
7670         instead of guint64 for addresses and added prologue/epilogue info.
7671
7672 2002-09-25  Martin Baulig  <martin@gnome.org>
7673
7674         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
7675         store line number info.  For the dynamic symbol file, we only need
7676         to provide the JIT generated dynamic line number info for the dynamic
7677         symbol file.
7678
7679 2002-09-25  Martin Baulig  <martin@gnome.org>
7680
7681         * debug-mono-symfile.h: Incremented version number.
7682
7683 2002-09-24  Martin Baulig  <martin@gnome.org>
7684
7685         * class.c (mono_debugger_class_init_func): New global function
7686         pointer variable.
7687         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
7688         call it.
7689
7690         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
7691         function.  This is called via the mono_debugger_class_init_func
7692         hook to add all types to the dynamic type table.
7693         (ves_icall_MonoDebugger_GetType): New interncall to get a class
7694         from its metadata token.
7695
7696         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
7697         New interncall for the debugger.
7698
7699 2002-09-24  Nick Drochak <ndrochak@gol.com>
7700
7701         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
7702         before using it in case it is null.
7703         
7704 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
7705
7706         * metadata.c: allow custom modifiers in local var signatures
7707         (bug spotted by Zoltan Varga).
7708
7709 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
7710
7711         * class.c: deal with the <Module> class that may have a NULL vtable.
7712         Eliminate warnings.
7713
7714 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
7715
7716         * image.c, image.h: more strong name helpers.
7717         * monosn.c: more work: convert pem keys to cryptoapi format.
7718
7719 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
7720
7721         * string-icalls.c: speedup IndexOf.
7722
7723 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
7724
7725         * icall.c: updates from Zoltan.2.Varga@nokia.com.
7726
7727 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
7728
7729         * icall.c: cleanup: use mono_object_domain ().
7730
7731 2002-09-23  Martin Baulig  <martin@gnome.org>
7732
7733         * debug-mono-symfile.c: Improved type support.
7734
7735 2002-09-22  Martin Baulig  <martin@gnome.org>
7736
7737         * debug-mono-symfile.c: Added support for reference types and strings.
7738
7739 2002-09-22  Martin Baulig  <martin@gnome.org>
7740
7741         * debug-mono-symfile.c: Started to work on the type table.
7742
7743 2002-09-21  Martin Baulig  <martin@gnome.org>
7744
7745         * debug-mono-symfile.c: Largely reworked the symbol table format.
7746         The symbol table is now incrementally updated each time a new
7747         method is added.  We're now also using our own magic and version
7748         so that you don't need to recompile all your classes if the
7749         dynamic table changes.
7750         (mono_debug_update_mono_symbol_file): Removed.
7751         (mono_debug_symfile_add_method): New function to add a method.
7752
7753 2002-09-21  Martin Baulig  <martin@gnome.org>
7754
7755         * icall.c
7756         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
7757         New interncall.
7758
7759         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
7760         New interncall to get a method from its metadata token.
7761
7762 2002-09-21  Martin Baulig  <martin@gnome.org>
7763
7764         * debug-mono-symfile.c: Create type table.
7765
7766 2002-09-20  Martin Baulig  <martin@gnome.org>
7767
7768         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
7769
7770 2002-09-20  Martin Baulig  <martin@gnome.org>
7771
7772         * debug-mono-symfile.c: Provide information about params and locals.
7773
7774 2002-09-20  Martin Baulig  <martin@gnome.org>
7775
7776         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
7777         New interncall.
7778
7779         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
7780         interncall to get a method from its metadata token.
7781
7782 2002-09-20  Martin Baulig  <martin@gnome.org>
7783
7784         * debug-mono-symfile.c: Added a few checks for method->header
7785         being non-NULL.  This should never happen, but for the moment
7786         let's use a g_warning() rather than a g_assert().
7787
7788 2002-09-19  Mark Crichton  <crichton@gimp.org>
7789
7790         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
7791         even if support for it isn't present.  Added an #ifdef to fix this.
7792
7793         * socket-io.c: Added checks back for Solaris support.
7794
7795 2002-09-19  Martin Baulig  <martin@gnome.org>
7796
7797         * debug-mono-symfile.c (read_string, write_string): Reflect latest
7798         changes in the symbol file format.
7799
7800 2002-09-18  Martin Baulig  <martin@gnome.org>
7801
7802         * debug-mono-symfile.c: Set version number to 21.
7803
7804 2002-09-18  Dick Porter  <dick@ximian.com>
7805
7806         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
7807         on netbsd.  Fixes bug 30051.
7808
7809 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7810
7811         * reflection.c:
7812         (set_version_from_string): little fix.
7813
7814 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
7815
7816         * monosn.c, Makefile.am: added strong name utility.
7817         * reflection.h, reflection.c: implemented delayed signing,
7818         locale, version and hash id assembly attributes.
7819
7820 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
7821
7822         * loader.c, metadata.c: load param attributes in signatures.
7823
7824 2002-09-16  Martin Baulig  <martin@gnome.org>
7825
7826         * debug-mono-symfile.c: Added string table with all method names.
7827
7828 2002-09-14  Martin Baulig  <martin@gnome.org>
7829
7830         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
7831         fast method lookup.
7832
7833 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
7834
7835         * reflection.c: record the public key token of referenced assemblies.
7836
7837 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
7838
7839         * image.c, image.h: added functions to get the strong name and the
7840         public key of an assembly.
7841         * pedump.c: use them.
7842
7843 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
7844
7845         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
7846
7847 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
7848
7849         * marshal.c (mono_marshal_get_managed_wrapper): Added
7850         MONO_TYPE_BOOLEAN 
7851
7852 2002-09-11  Martin Baulig  <martin@gnome.org>
7853
7854         * gc.c: Call GC_unregister_disappearing_link() on all links when
7855         finalizing them, this is necessary to aviod a crash in boehm's
7856         finalize handler.
7857
7858 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
7859
7860         * gc.c: handle GetTarget for finalized objects spotted and fixed by
7861         nick@chemlab.org.
7862
7863 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
7864
7865         * icall.c: implemented MonoType::Module.
7866         * reflection.c, reflection.h: mono_module_get_object () from
7867         Tomi Pakarinen <tomi.pakarinen@welho.com>.
7868
7869 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
7870
7871         * icall.c: ignore overridden methods in GetMethods ().
7872         Fix for FieldInfo::SetValue().
7873         * object.c: handle float/double in runtime invoke.
7874
7875 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
7876
7877         * object.c: allow a constructor to be called again on an object.
7878
7879 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
7880
7881         * class.h, class.c: move field layout code to it's own function and
7882         export it. Get an interface id earlier. Move fields in MonoClass
7883         so they are more cache friendly and align the bitfields.
7884         * loader.c: temporary handle get_param_names() for a runtime method.
7885         * reflection.c, reflection.h: more code to handle runtime creation of
7886         types.
7887
7888 2002-09-09  Martin Baulig  <martin@gnome.org>
7889
7890         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
7891         signature with the pinvoke field being set for the actual call.
7892
7893 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
7894
7895         * icall.c: removed some unused icalls. Start of map of glib charsets
7896         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
7897
7898 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
7899
7900         * debug-helpers.c: break infinite loop (found and fixed by
7901         Holger Arnold <harnold@gmx.de>).
7902
7903 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
7904
7905         * icall.c: target may be null in create_delegate.
7906
7907 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
7908
7909         * marshal.c: handle a boolean return type.
7910
7911 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
7912
7913         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
7914
7915 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
7916
7917         * gc.c: fix weakreferences.
7918
7919 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
7920
7921         * icall.c: added icall to get default codepage.
7922
7923 2002-09-03  Dick Porter  <dick@ximian.com>
7924
7925         * threads.h: 
7926         * threads.c: Use MonoThread instead of MonoObject where
7927         apropriate.
7928
7929         Store running thread objects in a hash table, so that we have all
7930         the info to hand when waiting for them to finish
7931         (means we don't need OpenThread() any more, so mingw builds should
7932         be fully functional again.)
7933
7934         * verify.c:
7935         * object.h: Added thread ID to MonoThread
7936
7937 2002-09-03  Martin Baulig  <martin@gnome.org>
7938
7939         * icall.c (System.Reflection.Assembly::get_location): New interncall.
7940
7941 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7942
7943         * icall.c: fixed leak in get_temp_path. Thanks lupus.
7944
7945 2002-09-03  Martin Baulig  <martin@gnome.org>
7946
7947         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
7948         argument to store the end address of the disassembled instruction.
7949
7950         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
7951         here from debug-symfile.h.
7952         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
7953         JIT into this struct.
7954         (MonoSymbolFile): Added `char *image_file' field.
7955         (MonoDebugGetMethodFunc): Removed.
7956         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
7957         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
7958         (mono_debug_find_method): New method.
7959
7960         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
7961         create a full symbol file.
7962         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
7963         and static symbol files.
7964         (mono_debug_find_method): The symbol file keeps an internal method hash,
7965         call this to get a MonoDebugMethodInfo from a MonoMethod.
7966
7967         * debug-symfile.[ch]: Removed.
7968
7969 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
7970
7971         * image.c (do_mono_image_open): Remove linker version check.
7972
7973 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
7974
7975         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
7976         wrappers for instance methods.
7977         
7978 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7979
7980         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
7981
7982 2002-08-28  Dick Porter  <dick@ximian.com>
7983
7984         * Makefile.am: Export HOST_CC for w32 builds
7985
7986 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
7987
7988         * file-io.c process.c: MonoString are null terminated, no
7989         need for mono_string_to_utf16() anymore.
7990
7991 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
7992
7993         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
7994
7995 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
7996
7997         * icall.c, reflection.h: speedup System.MonoType.
7998
7999 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
8000
8001         * reflection.c: allow null as the value of a string argument in
8002         custom attributes constructors.
8003
8004 2002-08-27  Martin Baulig  <martin@gnome.org>
8005
8006         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
8007         `trampoline_address' field.
8008
8009 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
8010
8011         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
8012         check (fixes bug #29486) 
8013
8014 2002-08-27  Martin Baulig  <martin@gnome.org>
8015
8016         * debug-mono-symfile.c: Changed the file format in a way that allows us
8017         open it read-only and to use a specially malloced area for all the
8018         dynamic data.  We can now also generate a symbol file on-the-fly if we're
8019         debugging IL code and there is no MCS generated symbol file for it.
8020
8021 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
8022
8023         * object.c: added a define for a good string and array
8024         creation speedup (not enabled by default because we need to deal with
8025         the synch stuff).
8026
8027 2002-08-26  Martin Baulig  <martin@gnome.org>
8028
8029         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
8030         function to create a dynamic symbol file.  This is used by the
8031         debugger to create a symbol file for IL code on-the-fly.
8032
8033 2002-08-26  Martin Baulig  <martin@gnome.org>
8034
8035         * loader.c (mono_lookup_pinvoke_call): Include the error message
8036         from g_module_error() in the error message.
8037
8038 2002-08-24  Martin Baulig  <martin@gnome.org>
8039
8040         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
8041         function to update the symbol file.  The symbol file is mmap()ed
8042         writable, but private.  This allows us to install the symbol file
8043         together with the assembly.
8044
8045 2002-08-24  Martin Baulig  <martin@gnome.org>
8046
8047         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
8048         but they can read the new symbol file format which mcs is now creating.
8049
8050         * debug-symfile.c (mono_debug_find_source_location): Moved to
8051         debug-mono-symfile.c; this is now operating on the new symbol file.
8052
8053 2002-08-23  Martin Baulig  <martin@gnome.org>
8054
8055         * debug-helpers.c (mono_method_desc_from_method): New function to get
8056         a MonoMethodDesc from a MonoMethod.
8057
8058 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
8059
8060         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
8061         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
8062
8063 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
8064
8065         * string-icalls.[ch]: make helper methods static.
8066
8067 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8068
8069         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
8070         types to it and to SetValueInternal.
8071
8072         * object.c: Moved handle_enum label to its proper place. This was the
8073         f... bug! ;-)
8074
8075         This time i compiled mcs and gtk-sharp and they both work.
8076
8077 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8078
8079         * icall.c: reverted partially my previous patch until 
8080         object.c:set_value handles enums correcly.
8081
8082 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8083
8084         * icall.c:
8085         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
8086         (ves_icall_System_Environment_get_MachineName): removed warning when
8087         compiling under cygwin.
8088
8089 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
8090
8091         * object.c: fixed field_get_value() for reference types.
8092
8093 2002-08-22  Dick Porter  <dick@ximian.com>
8094
8095         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
8096         Don't free a buffer while it's still needed.  Patch from Jonathan
8097         Liger <Jonathan.liger@wanadoo.fr>
8098
8099 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
8100
8101         * icall.c (ves_icall_System_Environment_get_Platform): Add new
8102         internal call.
8103
8104 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
8105
8106         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
8107         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
8108
8109         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
8110         we call unmanaged code which throws exceptions.
8111
8112 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
8113
8114         * appdomain.h: added per-domain entry_assembly.
8115         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
8116         arguments.
8117         * icall.c: Assembly::GetEntryAssembly icall.
8118         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
8119         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
8120
8121 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
8122
8123         * appdomain.h, gc.c: added mono_domain_finalize ().
8124
8125 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8126
8127         * object.c:
8128         (mono_print_unhandled_exception): changed g_warning by g_printerr
8129         because g_log has a 1024 characters limit (yeah, i got a big stack
8130         trace). Don't print exception name, that should be in ToString 
8131         returned string.
8132
8133 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8134
8135         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
8136         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
8137
8138 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8139
8140         * object.c:
8141         (mono_print_unhandled_exception): after previous commit, i realized
8142         that MS calls ToString on the exception. I changed this function to
8143         do that. This way we get stack_trace for free.
8144
8145 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8146
8147         * object.c:
8148         (mono_print_unhandled_exception): invoke Message property instead of
8149         getting 'message' field from Exception. Don't allocate memory for
8150         'trace' and 'message' if not needed.
8151
8152 2002-08-18  Dick Porter  <dick@ximian.com>
8153
8154         * unicode.c: Fix asserts to match Encoder.cs checks
8155
8156 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
8157
8158         * marshal.c: fix unaligned store issue and a few wrong
8159         opcode argument types.
8160
8161 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8162
8163         * icall.c: added GetUninitializedObjectInternal internal call.
8164
8165 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
8166
8167         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
8168         to the right domain.
8169
8170 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
8171
8172         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
8173
8174         * class.c (class_compute_field_layout): set blittable to false for Strings
8175
8176         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
8177
8178 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
8179
8180         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
8181         first chunk of code to create types at runtime. Code to
8182         handle ReflectedType/DeclaringType. Make reflection handles
8183         domain specific.
8184
8185 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
8186
8187         * class.c: set correct name in arrays.
8188
8189 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
8190
8191         * appdomain.c (mono_domain_transfer_object): make it work with
8192         valuetypes. bug fixes.
8193
8194 2002-08-12  Dick Porter  <dick@ximian.com>
8195
8196         * object.h: Rename some parameters to avoid c++ keywords (Patch
8197         from Joseph Wenninger <kde@jowenn.at>)
8198
8199 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
8200
8201         * icall.c: added icall to implement Assembly.GetFile*.
8202
8203 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
8204
8205         * reflection.h, reflection.c: code to embed managed resources.
8206
8207 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
8208
8209         * class.c: move all the type size stuff into
8210         class_compute_field_layout().
8211
8212 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
8213
8214         * class.c: ensure enums have always the correct instance size.
8215         * unicode.c: remove wrong assert.
8216
8217 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
8218
8219         * assembly.c: fix mem corruption issue.
8220         * image.h, image.c: added mono_image_get_resource () to access
8221         managed resources.
8222         * icall.c: implemented Assembly.EntryPoint property and some
8223         Managed Resources related internalcalls.
8224
8225
8226 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
8227
8228         * image.c, image.h: impemented mono_image_get_entry_point ().
8229         * appdomain.c: use mono_image_get_entry_point.
8230
8231 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
8232
8233         * reflection.c: support the object type argument when loading
8234         custom attributes.
8235
8236 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
8237
8238         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
8239         String as return type.
8240
8241 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
8242
8243         * reflection.c: fix encoding of named args for custom attrs to match
8244         the ms implementation. Read them back when instantiating custom
8245         attributes.
8246
8247 2002-08-02  Radek Doulik  <rodo@ximian.com>
8248
8249         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
8250         by Dietmar as quick fix
8251         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
8252         16 as stack size, used on more places as quick fix before Dietmar
8253         will fix it properly
8254
8255 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
8256
8257         * object.h, object.c: added accessors for fields and properties.
8258
8259 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
8260
8261         * class.c, class.h: made mono_class_get_field_from_name ()
8262         loop on parent types.
8263         Added mono_class_get_property_from_name ().
8264
8265 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
8266
8267         * class.c, class.h: move the code to setup the type vtable in its own
8268         function so that it can be reused also for types created at runtime.
8269         Eliminate the "class" identifier from the header file.
8270         * reflection.c: setup the vtable for enums so that we can create
8271         objects for use in SetConstant ().
8272
8273 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
8274
8275         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
8276         instead of the delegate itself as this pointer (bug #28383)
8277
8278 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
8279
8280         * marshal.c (mono_marshal_get_managed_wrapper): added return type
8281         conversions.
8282
8283 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
8284
8285         * loader.c: don't set the pinvoke bit on icalls.
8286
8287 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
8288
8289         * debug-helpers.c (mono_method_full_name): only print a number to
8290         indicate wrapper type (so that the output is more readable in traces).
8291
8292 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
8293
8294         * class.c (mono_class_init): include method override patch from Paolo
8295
8296 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
8297
8298         * icall.c: fixed GetTypeCode().
8299
8300 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
8301
8302         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
8303         use real delegate invoke function to make it work with multicast
8304         delegates (fix bug# 28291).
8305
8306 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
8307
8308         * object.c: load constant strings.
8309
8310 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
8311
8312         * reflection.c: no magic numbers.
8313         * tabledefs.h: security action enum.
8314
8315 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
8316
8317         * assembly.c: fix possible memory corruption.
8318
8319 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
8320
8321         * reflection.h, reflection.c: added support for linking resources.
8322         * verify.c: check we have an updated corlib.
8323
8324 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
8325
8326         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
8327         string arrays.
8328         (mono_marshal_string_array): null terminate unmanaged string arrays.
8329         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
8330
8331 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
8332
8333         * icall.c: Type.GetType () can now return also types from the
8334         calling assembly.
8335
8336 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
8337
8338         * loader.h, loader.c: stack walking support.
8339         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
8340         GetCallingAssembly.
8341
8342 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
8343
8344         * marshal.c: added optimisations for blittable types 
8345
8346         * class.c (mono_array_class_get): do not set blittable attribute on arrays
8347         (mono_class_setup_mono_type): set blittable attribute for single
8348         and double.
8349
8350         * marshal.c (mono_string_utf8_to_builder): impl.
8351         (mono_string_builder_to_utf8): impl.
8352         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
8353
8354 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
8355
8356         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
8357         (mono_marshal_get_managed_wrapper): impl. byref types
8358
8359 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8360
8361         * icall.c:
8362         (search_method): don't display debug message. 
8363
8364 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
8365
8366         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
8367
8368 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
8369
8370         * appdomain.c: set the missing filename when throwing exception.
8371
8372 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
8373
8374         * metadata.c (mono_type_size): code cleanup
8375         (mono_type_stack_size): removed some test code
8376
8377 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
8378
8379         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
8380         mono_get_exception_file_not_found now.
8381
8382         * exception.c (mono_exception_from_name_two_strings): New version
8383         that will call a constructor with two string arguments. 
8384         (mono_get_exception_file_not_found): New helper routine, used to
8385         report file-not-found errors.
8386
8387 2002-07-20  Dick Porter  <dick@ximian.com>
8388
8389         * process.h:
8390         * process.c: Pass file handles to CreateProcess
8391         
8392         * icall.c:
8393         * file-io.h:
8394         * file-io.c: Implemented CreatePipe
8395
8396 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
8397
8398         * metadata.c (mono_get_param_info): set alignment for value types
8399
8400 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
8401
8402         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
8403         Constify mono_domain_assembly_open().
8404         * loader.c: handle null namespace in icalls.
8405
8406 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
8407
8408         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
8409         (emit_str_to_ptr_conv): marshal object as structs
8410
8411         * metadata.c (mono_type_to_unmanaged): marshal object as structs
8412
8413         * marshal.c (mono_marshal_get_runtime_invoke): support value types
8414
8415 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
8416
8417         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
8418         (mono_marshal_get_native_wrapper): we an now return value types
8419
8420 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
8421
8422         * verify.c: more checks implemented.
8423
8424 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
8425
8426         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
8427         (fix bug #27695)
8428         (mono_marshal_get_native_wrapper): allow byref arguments
8429         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
8430         impl. PtrToStringXXX methods
8431         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
8432         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
8433         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
8434         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
8435         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
8436
8437 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
8438
8439         * reflection.c: fix buglet in parsing an assembly name.
8440
8441 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
8442
8443         * marshal.c (emit_ptr_to_str_conv): first impl.
8444
8445 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
8446
8447         * object.c, class.h: cache the vtable in the class as suggested by
8448         vargaz@freemail.hu (Zoltan Varga).
8449
8450 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
8451
8452         * class.h, loader.c: added mono_field_from_token().
8453         * verify.c: first cut of type checking code.
8454
8455 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
8456
8457         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
8458
8459 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
8460
8461         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
8462         (fix bug #27782)
8463         (mono_marshal_get_remoting_invoke): impl.
8464         (mono_delegate_begin_invoke): impl.
8465         (mono_mb_emit_save_args): impl.
8466         (mono_delegate_end_invoke): impl.
8467         (mono_marshal_get_delegate_begin_invoke):
8468         (mono_marshal_get_delegate_end_invoke):
8469         (mono_marshal_get_delegate_invoke): generate a special name for
8470         those methods (including the signature) and associate them whith
8471         the delegate class. 
8472
8473 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
8474
8475         * reflection.[ch]: 
8476         (mono_reflection_type_from_name): now it has a MonoImage parameter
8477         which is used as the default image to search the type in. If the image
8478         is NULL or getting the type from it fails, it defaults to corlib.
8479
8480         * icall.c: changed 1 call to mono_reflection_type_from_name to match
8481         new parameter.
8482
8483 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
8484
8485         * reflection.c: update the parameter table index.
8486
8487 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
8488
8489         * domain.c: don't include the mark byte in the string hash.
8490
8491 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
8492
8493         * icall.cs: icall for Type.GetTypeCode ().
8494         * verify: a couple of fixes and disabled local initialization checks.
8495
8496 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
8497
8498         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
8499
8500         * debug-helpers.c (mono_method_full_name): print the type of the
8501         runtime wrapper
8502
8503         * metadata.c (mono_signature_hash): a hash function for signatures
8504         (mono_signature_hash): better hash algorithm
8505
8506         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
8507
8508         * debug-helpers.c (mono_method_full_name): this can now generate
8509         method names with signatures
8510
8511         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
8512         method dont have this pointers.
8513
8514 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
8515
8516         * reflection.c: fixup typebuilder tokens.
8517         * image.c: fix buglet.
8518         * marshal.h: remove whitespace.
8519         * metadata.h, metadata.c: reinstate code that was removed.
8520         * verify.c: handle catch directives and fix another couple of bugs.
8521
8522 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
8523
8524         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
8525         (mono_marshal_get_native_wrapper): make it comp. with the old code
8526         (mono_marshal_get_native_wrapper): support boolean
8527         (mono_marshal_get_managed_wrapper): support more types
8528
8529 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
8530
8531         * class.c (class_compute_field_layout): compute class->blittable attribute.
8532
8533 2002-07-09  Dick Porter  <dick@ximian.com>
8534
8535         * threads.c: Make the thread cleaning up cope with threads that
8536         call ExitThread()
8537
8538 2002-07-08  Radek Doulik  <rodo@ximian.com>
8539
8540         * reflection.c (method_encode_code): use non-translated values to
8541         compute finally_start, this fixes exception handling on ppc, yay!
8542
8543         * decimal.h (struct signscale): fix endianess
8544
8545 2002-07-07  Radek Doulik  <rodo@ximian.com>
8546
8547         * reflection.c: swap box_val and not val
8548
8549 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
8550
8551         * reflection.c, reflection.h: handle full assembly info in type name.
8552         Handle Type arguments when loading custom attributes.
8553         * icall.c: updated to use new mono_reflection_type_from_name () method.
8554
8555 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8556
8557         * loader.c:
8558         (method_from_memberref): also print assembly name when method not found.
8559
8560 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8561
8562         * icall.c:
8563         (ves_icall_TypeGetProperties): fixed bug #27473. 
8564
8565 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8566
8567         * reflection.c: display image name and token when cannot find the
8568         .ctor for an attribute.
8569
8570 2002-07-05  Martin Baulig  <martin@gnome.org>
8571
8572         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
8573
8574 2002-07-04  Dick Porter  <dick@ximian.com>
8575
8576         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
8577         compile on mingw.  This will cause mingw builds to not wait for
8578         subthreads to terminate after the main thread does.  I've lodged a
8579         bug with the mingw developers for them to wrap OpenThread().
8580
8581 2002-07-03  Dick Porter  <dick@ximian.com>
8582
8583         * threads.c: Store thread IDs instead of handles, because
8584         GetCurrentThread() returns a pseudohandle and therefore stores
8585         useless values.  mono_thread_cleanup() continues checking the
8586         array of threads until it is empty, to cope with subthreads
8587         spawning new threads after the main thread has finished.
8588
8589         * profiler.h:
8590         * profiler.c:
8591         * profiler-private.h: Pass the thread ID to thread profiler
8592         functions, instead of a handle
8593
8594 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
8595
8596         * verify.c: fixes to make it more usable.
8597         * pedump.c: added --verify code to verify IL code in an assembly.
8598
8599 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
8600
8601         * reflection.c: turn errors into warnings to allow compiling corlib.
8602
8603 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
8604
8605         * reflection.c: add special cases to compile corlib.
8606
8607 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
8608
8609         * reflection.c: handle properties with only a set method.
8610
8611 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
8612
8613         * opcodes.h: add enum with opcodes in opval order.
8614
8615 2002-07-01  Dick Porter  <dick@ximian.com>
8616         
8617         * object.h:
8618         * object.c (mono_runtime_run_main): Removed unneeded argument
8619
8620 2002-06-28  Martin Baulig  <martin@gnome.org>
8621
8622         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
8623
8624 2002-06-27  Dick Porter  <dick@ximian.com>
8625
8626         * threads.c: Store the handle in both the parent thread and in the
8627         subthread, to minimise the time between starting a new thread and
8628         storing its ID.
8629
8630 2002-06-26  Dick Porter  <dick@ximian.com>
8631
8632         * appdomain.c (mono_runtime_cleanup): Close the socket library
8633         after all the threads have finished, not before
8634
8635 2002-06-26  Martin Baulig  <martin@gnome.org>
8636
8637         * debug-symfile.c (mono_debug_find_source_location): Added
8638         `guint32 *line_number' argument.  If it's not NULL, store the line number
8639         there and return the file name without the line number.
8640
8641 2002-06-25  Dick Porter  <dick@ximian.com>
8642
8643         * icall.c:
8644         * process.h:
8645         * process.c: Process forking and other support functions
8646
8647 2002-06-25  Dick Porter  <dick@ximian.com>
8648
8649         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
8650         things dont happen when the image is closed.
8651         (mono_image_lookup_resource): Walk the resource section looking
8652         for a particular entry
8653
8654         * cil-coff.h: PE resource section decoding
8655
8656 2002-06-25  Dick Porter  <dick@ximian.com>
8657         
8658         * assembly.h:
8659         * assembly.c: 
8660         (mono_assembly_foreach): Accessor functions to walk the list of
8661         loaded assemblies
8662         (mono_assembly_set_main):
8663         (mono_assembly_get_main): Process methods need to know which
8664         assembly is the "main" one
8665
8666         * object.c (mono_runtime_run_main): Record the main assembly
8667
8668         * debug-helpers.c: Fix typo
8669
8670 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
8671
8672         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
8673         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
8674
8675 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
8676
8677         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
8678
8679 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
8680
8681         * image.c (do_mono_image_open): Initialize reference count,
8682         otherwise we leak the MonoImage.
8683
8684 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
8685
8686         * reflection.c: small tweak to handle self-hosting.
8687
8688 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
8689
8690         * reflection.c: fix type name parse code.
8691
8692 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
8693
8694         * reflection.c: break out of the loop.
8695         * image.c: special case corlib.
8696
8697 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
8698
8699         * reflection.c: add all the custom attrs at the end to ensure the
8700         ctors have been properly initialized when the attributes are defined
8701         in the current assembly.
8702
8703 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
8704
8705         * reflection.c: handle correctly multiple-nested types.
8706
8707 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
8708
8709         * row-indexes.h: fix typos.
8710         * reflection.c: adjust for typos and fix method_def_or_ref
8711         encoding in MethodImpl table.
8712
8713 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
8714
8715         * reflection.c: fix entry point patching (thanks Serge!).
8716
8717 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
8718
8719         * verify.c: add check for System.Exception
8720
8721 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
8722
8723         * image.c, class.c: minifix for code just c&p'ed.
8724         * reflection.c: warning fix.
8725         * object.h, loader.h, domain.c: load also StringBuilder.
8726
8727 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
8728
8729         * marshal.h, marshal.c: some support code to handle complex marshaling.
8730
8731 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
8732
8733         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
8734         Better signatures with vtable error dump.
8735
8736 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
8737
8738         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
8739
8740 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
8741
8742         * icall.c (ves_icall_Type_GetField): impl.
8743
8744 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
8745
8746         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
8747         to retrieve a marshal description blob for a field or param.
8748
8749 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
8750
8751         * reflection.h, reflection.c: change order of nested type emission
8752         to avoid table corruption. The NestedTypes table is sorted.
8753         * icall.c: change order of GetConstructor results to workaround mcs bug.
8754
8755 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
8756
8757         * reflection.h, reflection.c: handle field and param marshal
8758         information.
8759
8760 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
8761
8762         * icall.c, marshal.c marshal.h: more Marshal class implementation.
8763
8764 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
8765
8766         * reflection.c: fix call convention.
8767
8768 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
8769
8770         * reflection.h, reflection.c: mono_image_get_memberref_token()
8771         takes a type instead of a class, now. Added
8772         mono_image_get_array_token() to create tokens for the special
8773         multi-dim array methods.
8774
8775 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
8776
8777         * assembly.c: handle modules (no assembly table). Split
8778         loading references in its own function.
8779         * class.c: handle moduleref resolution scope.
8780         * image.c, image.h: cache module name in image.
8781
8782 2002-06-07  Martin Baulig  <martin@gnome.org>
8783
8784         * reflection.c (mono_image_get_type_info): Only add a class layout entry
8785         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
8786
8787 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
8788
8789         * icall.c: more signature fixes that used uint instead of int.
8790
8791 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
8792
8793         * reflection.c: fixed signature of field refs.
8794
8795 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
8796
8797         * class.c, reflection.c: handle typerefs of nested types
8798         (both on read and when writing files).
8799
8800 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
8801
8802         * icall.c: fix method signatures that tried to workaround the previous
8803         typo, d'oh!
8804
8805 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
8806
8807         * debug-helpers.c: fix typo.
8808
8809 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
8810
8811         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
8812         rewrote the PE/COFF writing code (our programs are understood by the
8813         ms runtime, now).
8814
8815 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
8816
8817         * gc.c, gc.h, icall.c: weakreference support.
8818
8819 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
8820
8821         * Makefile.am, mono-config.c: use $(sysconfdir).
8822
8823 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
8824
8825         * icall.c: changed default precision of Double.ToString() to 15.
8826         Fixed memory leak. Unified with Single.ToString.
8827
8828 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
8829
8830         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
8831
8832 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
8833
8834         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
8835         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
8836         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
8837         and myself.
8838
8839 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
8840
8841         * debug-symfile.c, sysmath.c: yet more compilation fixes.
8842
8843 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
8844
8845         * reflection.c, socket-io.c: more compilation fixes.
8846
8847 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
8848
8849         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
8850         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
8851         unicode.c: warning and compiler compatibility fixes.
8852
8853 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
8854
8855         * class.h, metadata.c: fixed warnings/compilation errors.
8856
8857 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
8858
8859         * Makefile.am, mono-config.c, mono-config.h: configuration file
8860         support routines.
8861         * loader.c, loader.h: make Dll mapping configurable at runtime in the
8862         config file. Export methods to insert and lookup mappings.
8863
8864 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
8865
8866         * reflection.c: handle types and boxed objects in custom attr
8867         constructors.
8868
8869 2002-05-30  Martin Baulig  <martin@gnome.org>
8870
8871         * debug-symfile.c
8872         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
8873
8874 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
8875
8876         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
8877         to lookup the implmap row for a P/Invoke method.
8878         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
8879         P/Invoke method from the runtime on an as needed basis.
8880
8881 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
8882
8883         * metadata.c (mono_metadata_parse_signature): impl.
8884
8885 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
8886
8887         * class.c: handle .pack directive.
8888
8889 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
8890
8891         * object.c: initialize static fields with RVA data.
8892
8893 2002-05-25  Martin Baulig  <martin@gnome.org>
8894
8895         * debug-symfile.c
8896         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
8897
8898 2002-05-24  Martin Baulig  <martin@gnome.org>
8899
8900         * debug-symfile.c
8901         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
8902         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
8903         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
8904
8905 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
8906
8907         * object.c: special case string ctros in invoke.
8908         * gc.c: silly whitespace changes.
8909
8910 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
8911
8912         * threadpool.[ch]: impl. a threadpool that can
8913         be used by mint and mono.
8914
8915 2002-05-22  Martin Baulig  <martin@gnome.org>
8916
8917         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
8918         The first argument is now a `MonoReflectionModuleBuilder *', the return
8919         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
8920         `methods' field to get the method builder.  The `token' argument is the
8921         unfixed token.
8922
8923         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
8924         invalid characters instead of g_assert_not_reached()ing.  This seems
8925         to be the behaviour of mscorlib.
8926
8927 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
8928
8929         * object.c (mono_runtime_invoke_array): applied patch from Rachel
8930         Hestilow to fix bug #25104
8931
8932 2002-05-21  Martin Baulig  <martin@gnome.org>
8933
8934         * debug-symfile.c (mono_debug_find_source_location): New function.
8935         Looks up an IL offset in the line number table and returns the source
8936         location as a string.
8937
8938 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8939
8940         * icall.c:
8941         (mono_double_ToStringImpl): changed %f by %g until we have something
8942         better.
8943
8944 2002-05-21  Nick Drochak  <ndrochak@gol.com>
8945
8946         * icall.c : Use different name for Math.Pow's icall.  Needed to check
8947         parameters first in C#.
8948
8949 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
8950
8951         * icall.c, reflection.h: added icall to get info about an event.
8952
8953 2002-05-20  Radek Doulik  <rodo@ximian.com>
8954
8955         * object.c (mono_value_box): don't use memcpy for boxing on BIG
8956         endian
8957         (mono_value_box): don't use memcpy for small sizes on
8958         architectures with unaligned access
8959
8960 2002-05-20  Martin Baulig  <martin@gnome.org>
8961
8962         * reflection.c (mono_reflection_setup_internal_class): Don't crash
8963         if `tb->parent == NULL'.
8964         (mono_reflection_create_internal_class): New function.  This is
8965         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
8966         for enum types.
8967
8968         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
8969         New interncall.
8970
8971 2002-05-19  Martin Baulig  <martin@gnome.org>
8972
8973         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
8974         argument to get the length, don't default to the array length.
8975
8976 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
8977
8978         * assembly.c (mono_assembly_setrootdir): New function used to
8979         override the MONO_ASSEMBLIES directory.
8980
8981 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
8982
8983         * icall.c: ValueType_GetHashCode() initialize local var.
8984
8985 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
8986
8987         * reflection.c: sort custom attributes table.
8988
8989 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
8990
8991         * reflection.c: support named args in custom attributes (write support).
8992
8993 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
8994
8995         * reflection.c: fix finally position calculation.
8996
8997 2002-05-15  Radek Doulik  <rodo@ximian.com>
8998
8999         * reflection.c: fixed endianess at many places
9000
9001         * icall.c (ves_icall_InitializeArray): comment out debug msg
9002
9003 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
9004
9005         * object.c (mono_unhandled_exception): new function to handle
9006         unhandled exceptions.
9007         (mono_unhandled_exception): call the UnhandledException event.
9008         (mono_runtime_delegate_invoke): impl.
9009
9010 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
9011
9012         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
9013         returns the RVA, not the direct pointer to the data. Handle the case
9014         when the class size is fixed.
9015
9016 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
9017
9018         * reflection.c: fix some endianess issues.
9019
9020 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
9021
9022         * object.c (mono_runtime_invoke): is now able to catch exceptions.
9023
9024         * threads.c (mono_thread_init): added a callback which is invoked
9025         at thread start.
9026
9027 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
9028         
9029         * icall.c: make GetHashCode return non-negative values.
9030
9031 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
9032
9033         * object.c, icall.c, gc.c: revert to address-based hashcode.
9034
9035 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
9036
9037         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
9038
9039 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
9040
9041         * icall.c, class.c: special case <Module>.
9042
9043 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
9044
9045         * icall.c: fix bug in GetNow().
9046
9047 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
9048
9049         * object.c (mono_runtime_class_init): make sure that we call all
9050         static class constructors.
9051
9052 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
9053
9054         * reflection.c: sort methodsemantics table.
9055
9056 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
9057
9058         * reflection.h, reflection.c: honour init locals setting.
9059
9060 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
9061
9062         * icall.c: copied Double ToStringImpl for Single ToStringImpl
9063
9064 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
9065
9066         * reflection.c: support ContructorBuilders in attribute blob creation.
9067
9068 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
9069
9070         * reflection.c: some changes to build a binary that can be run
9071         directly in windows.
9072
9073 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
9074
9075         * loader.c: print a big message when an icall can't be found.
9076
9077 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9078
9079         * string-icalls.c: fix bug 24248.
9080
9081 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
9082
9083         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
9084         icall.c, reflection.h: separate assembly loading by pathname and by
9085         assembly name. Use the MONO_PATH env var to search for assemblies.
9086
9087 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
9088
9089         * assembly.c, image.h: add some support for assemblies
9090         with multiple modules.
9091         * class.c, class.h: export mono_class_from_typeref().
9092         * loader.c: remove duplicated code and use mono_class_from_typeref(),
9093         instead.
9094
9095 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
9096
9097         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
9098         documentation says (the ECMA one is correct).
9099
9100 2002-05-02  Dick Porter  <dick@ximian.com>
9101
9102         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
9103         Don't name the synchronisation mutex.
9104
9105 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
9106
9107         * rand.c
9108         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
9109         Make the prototypes match.
9110         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
9111         Same.
9112
9113         * icall.c
9114         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
9115         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
9116         all systems have tm.tm_zone, so use strftime() with %Z to print
9117         the timezone abreviation into a temp string.
9118
9119         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
9120         rather than mono_array_addr() on a MonoString on Big Endian
9121         machines.
9122
9123 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
9124
9125         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
9126         fix bug 24041
9127
9128 2002-04-30  Dick Porter  <dick@ximian.com>
9129
9130         * socket-io.c: Cope with SOCKET being an integer rather than a
9131         pointer now.
9132
9133         * threads.c: Added Thread_free_internal, to deal with thread
9134         handle cleanup.  Moved calls to handle_store() and handle_remove()
9135         to start_wrapper(), so each can only be called once.  Allocate
9136         synchronisation blocks with GC_malloc(), and use GC finalisation
9137         to close the handles.
9138
9139         * icall.c: added System.Threading.Thread::Thread_free_internal
9140
9141 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
9142
9143         * icall.c: support Environment.Exit, CommandLineArgs().
9144
9145 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
9146
9147         * object.c, object.h: added mono_runtime_run_main () and
9148         mono_runtime_get_main_args () for use in System.Environment.
9149
9150 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
9151
9152         * gc.c: fix thinko, enable actual finalization since the jit is now
9153         fixed.
9154
9155 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
9156
9157         * gc.c, object.c: take into account that an object may be offset wrt the address
9158         returned by GC_malloc().
9159
9160 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
9161
9162         * image.c: handle files without entries in the assembly table (modules).
9163
9164 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
9165
9166         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
9167         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
9168         allowed to be null when it's System.Object class setup.
9169
9170 2002-04-27  Martin Baulig  <martin@gnome.org>
9171
9172         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
9173         if `tb->parent == NULL' rather than crashing.
9174
9175 2002-04-28  Nick Drochak  <ndrochak@gol.com>
9176
9177         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
9178         calling acos() where asin() should have been called.
9179
9180 2002-04-26  Martin Baulig  <martin@gnome.org>
9181
9182         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
9183         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
9184         there's a subdirectory called `System', but we don't want to read that
9185         subdirectory as an assembly.
9186
9187 2002-04-25  Martin Baulig  <martin@gnome.org>
9188
9189         * debug-symfile.c: Reflect latest MonoString changes.
9190
9191 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
9192
9193         * rand.c, rand.h: instance method icalls need to have an explicit
9194         this pointer as first argument in the C implementation.
9195
9196 2002-04-25  Nick Drochak <ndrochak@gol.com>
9197
9198         * icall.c: Fix typo in map for GetNonZeroBytes
9199
9200 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
9201
9202         * string-icalls.c : String does now passes unit tests without any 
9203         errors, the following changes has been made:
9204         
9205         Implemented replace methods.
9206         Renaming of methods to (try) follow the standard.
9207         Fixed compare ordinal
9208         Made all memory allocated directly to function instead of via icall function.
9209         Small performance fix in is_in_array function
9210                         
9211  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
9212
9213         c (mono_string_Internal_ctor_charp_int_int):
9214         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
9215         sindex < 0, throw ArgumentOutOfRangeException instead of
9216         ArgumentNullException.
9217
9218         Added new check for length == 0, however
9219         I need to make it return String.Empty from the C code.
9220         
9221         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
9222         that calculate the length for us here.
9223         
9224         (mono_string_Internal_ctor_sbytep_int_int): Replaced
9225         mono_string_new_utf16 with mono_string_new, since value is utf8.
9226
9227 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9228
9229         * object.c: register the object for finalization if needed.
9230         Allocate one more char in the string for the terminating 0 char.
9231
9232 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
9233
9234         * class.c, class.h, image.c: check if a type implemenst a destructor.
9235         Use the proper key for array class lookups.
9236         * icall.c: register the icalls in the System.GC class.
9237         * gc.c, gc.h: GC-related functions and icalls.
9238
9239 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9240
9241         * icall.c:
9242         * socket-io.c:
9243         * unicode.c: free some strings gotten from mono_string_to_utf8 and
9244         changed a couple of free () by g_free ().
9245
9246         * decimal.c: one-liner in the comments for decimal2string ().
9247
9248 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
9249
9250         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
9251
9252 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
9253
9254         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
9255         * object.c (mono_runtime_invoke_array) : handle null in params
9256
9257 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
9258
9259         * string-icalls.c: fixed bug in split (one off bug)
9260
9261 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
9262
9263         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
9264         * icalls.c: added String::Equals as internal method
9265
9266 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
9267
9268         * threads.c: fixed bug in the double interlocked functions
9269
9270 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
9271
9272         * threads.c: implemented all of the new interlocked icalls.
9273         * string-icalls.c: fix a bug in insert.
9274         * icalls.c: added the icalls for interlocked, removed old string functions.
9275         
9276 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
9277
9278         * loader.c: fix off-by-one error when reading argument names.
9279
9280 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
9281
9282         * profiler.c: win32 counter implementation (untested).
9283         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
9284         (the latter needs testing and more complete impl. from win32 folks).
9285
9286 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
9287
9288         * object.c: mono_array_new_full workaround mono_array_class_get
9289         problem.
9290
9291 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
9292
9293         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
9294         * object.h (mono_string_chars): Changed casting type.
9295
9296 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
9297
9298         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
9299                            method signatures to use gunichar2 instead of gint16.
9300
9301 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
9302
9303         * object.h, object.c: domain-specific versions of mono_object_new and
9304         mono_array_new.
9305
9306 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
9307
9308         * object.c: changed String layout
9309
9310         * string-icalls.c (mono_string_Internal_ctor_chara): added
9311         internal string constructors.
9312
9313 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
9314
9315         * threads.c: pass 'this' to the thread start routine.
9316
9317 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9318
9319         * string-icalls.c: fix IndexOf and LastIndexOf. Now
9320         InternalCompareStr don't call twice mono_string_cmp_char for the last
9321         character. Improved performance in mono_string_cmp_char.
9322
9323 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
9324
9325         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
9326         code into its own library: libmonoruntime.
9327
9328 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
9329
9330         * object.h, object.c: changed array format so that szarrays do not
9331         require a bounds structure.
9332         * icall.c, appdomain.c: support for new szarray format.
9333
9334 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
9335
9336         * metadata.c: compare also the retuns type when comparing signatures:
9337         we didn't do this as an optimization since really overloaded methods
9338         must differ also in the arguments, but this doesn't work with
9339         low-level IL code (or when using explicit conversion operators: see
9340         bug#23498 for an example).
9341
9342 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
9343
9344         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
9345
9346 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
9347
9348         * icall.c: make MonoType::GetElementType its own icall.
9349
9350 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
9351
9352         * icall.c: remove MonoMethod_get_Name().
9353         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
9354         object.
9355
9356 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
9357
9358         * string-icalls.c: optimized a few methods.
9359
9360 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
9361
9362         * icall.c: added all new string internal calls
9363         * string-icalls.c: added, new string internal call implementation.
9364         * object.c: added mono_string_new_size for allocating a string a size
9365
9366 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
9367
9368         * object.c (mono_object_isinst): use the same code as in the
9369         optimized x86 version.
9370
9371 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
9372
9373         * profiler.c: TSC-based timer code (faster and more accurate).
9374         Not hooked up in configure, yet (set USE_X86TSC to 1).
9375
9376 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
9377
9378         * profiler.c, profiler.h: track time spent compiling methods.
9379         * threads.c: track thread creation/destruction.
9380
9381 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
9382
9383         * profiler.c, profiler.h, profiler-private.h: profiling interface
9384         and sample implementation. Moved here so that it can be used also by
9385         the jit.
9386
9387 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
9388
9389         * reflection.c, reflection.h: keep types and other handles separate in
9390         the hash tables for referred tokens. Add guid for modules.
9391
9392 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
9393
9394         * assembly.c: fix bugs found with valgrind.
9395         * metadata.h, metadata.c: added mono_metadata_guid_heap().
9396
9397 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
9398
9399         * threads: added icall support for getting current domain for
9400                    the thread.
9401  
9402 2002-04-13  Martin Baulig  <martin@gnome.org>
9403
9404         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
9405         (MonoDebugVarInfo): Added `index' field for register based addresses.
9406         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
9407         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
9408         `MonoDebugVarInfo *params' and `guint32 this_offset' with
9409         `MonoDebugVarInfo *this_var'.
9410
9411         * debug-symfile.c (relocate_variable): New static function to write
9412         a location description for a local variable or method parameter.
9413
9414 2002-04-12  Martin Baulig  <martin@gnome.org>
9415
9416         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
9417         stack offset and begin/end scope address of a local variable.
9418         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
9419         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
9420         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
9421
9422         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
9423         Added new relocation types for start/end scope of a local variable.
9424
9425 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9426
9427         * object.h: add mono_object_domain() macro.
9428         * reflection.c: handle typespecs.
9429         * icall.c: MonoMethod::get_Name() implementation.
9430
9431 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
9432
9433         * icall.c: String::GetHashCode() icall implementation.
9434
9435 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9436
9437         * icall.c: String::IndexOfAny icall.
9438         * object.c, object.h: make array->max_length more useful.
9439         Intrduced mono_object_class() and mono_string_length() macros.
9440
9441 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9442
9443         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
9444         instead of g_unichar_isdigit.
9445
9446 2002-04-11  Nick Drochak  <ndrochak@gol.com>
9447
9448         * icall.c: Implement a simple Double.ToString().
9449
9450 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
9451
9452         * appdomain.h: only io-layer.h is supposed to be included.
9453         * icall.c: explicitly import environ. Fix warning.
9454
9455 2002-04-10  Nick Drochak  <ndrochak@gol.com>
9456
9457         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
9458                 return true even if it's not Daylight Savings time.
9459                 Only return false for the case where the function isn't
9460                 implemented for a plaform (read Windows).
9461
9462 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9463
9464         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
9465         data with a mutex.
9466
9467 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
9468
9469         * mempool.c (mono_mempool_alloc): only use g_malloc when
9470         absolutely necessary.
9471
9472 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
9473
9474         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
9475
9476         * class.c (mono_class_vtable): use domain mempool to allocate vtable
9477         (mono_class_proxy_vtable): use domain mempool
9478
9479 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
9480
9481         * appdomain.h, appdomain.c: split initialization that requires the
9482         execution engine support into mono_runtime_init().
9483
9484 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
9485
9486         * class.c (mono_class_init): don't include vtable inside MonoClass
9487         to save some memory, gather some statistics.
9488         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
9489
9490 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
9491
9492         * icall.c: internalcall implementation for ValueType.Equals().
9493
9494 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
9495
9496         * object.c (mono_message_init): moved 
9497         (mono_runtime_exec_main): new arch. independent impl.
9498         (mono_runtime_invoke_array): new method - like
9499         mono_runtime_invoke, but you can pass an array of objects.
9500         (mono_remoting_invoke): new arch. independent impl.
9501         (mono_message_invoke): new arch. independent impl.
9502         (mono_runtime_class_init): new arch. independent impl.
9503         (mono_runtime_object_init): new arch. independent impl.
9504
9505 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
9506
9507         * metadata.c, object.c, reflection.c: documented the exported
9508         functions.
9509
9510 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
9511
9512         * icall.c: simpler code to pass the assembly builder data to corlib.
9513         Implement GetNestedTypes() internalcall.
9514
9515 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
9516
9517         * class.c: warn if a type can't be loaded.
9518
9519 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
9520
9521         * image.h: typedef MonoImageOpenStatus
9522         * types.h: removed unused file
9523         
9524 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
9525
9526         * icall.c: Enum_ToObject accepts enum value arguments.
9527
9528 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
9529
9530         * class.c: move initialization of properties, events and nested
9531         classes, so that they happen for interfaces, too.
9532
9533 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
9534
9535         * icall.c: cleanup some ugly casts in Array_SetValue*.
9536
9537 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
9538
9539         * icall.c: the values array fro enums is of the correct type, now.
9540         Implement (correctly) getFullName instead of assQualifiedName for
9541         MonoType.
9542         * reflection.h, reflection.c: added mono_type_get_name ().
9543
9544 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
9545
9546         * assembly.c, image.h: for each MonoImage, record from wich assembly
9547         it was loaded.
9548         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
9549         Make Type.Assembly work.
9550
9551 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
9552
9553         * debug-symfile.h: use char* instead of gpointer to avoid
9554         unnecessary casts.
9555
9556         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
9557
9558         * icall.c (ves_icall_InternalExecute): impl. FielSetter
9559         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
9560
9561 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
9562
9563         * icall.c (mono_message_init): impl. (code cleanup)
9564         (ves_icall_InternalExecute): impl. FieldGetter
9565
9566         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
9567         defined we call all (non-static)methods through the vtable. 
9568
9569 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
9570
9571         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
9572         finalizer even though the memory is still referenced (and the chunk of
9573         memory is not freed).
9574
9575 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
9576
9577         * assembly.c: fix brokeness.
9578
9579 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
9580
9581         * class.c: kill some warnings. Check explicit interface method
9582         implementation also without considering the namespace.
9583         Load also literal strings in static class data.
9584
9585 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
9586
9587         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
9588         (default_assembly_name_resolver): Make the resolver take the
9589         "base" directory where the assembly was originally defined, so we
9590         can load DLLs that are in the same directory as the assembly that
9591         is being referenced.
9592
9593 2002-03-28  Dick Porter  <dick@ximian.com>
9594
9595         * file-io.h: 
9596         * file-io.c:
9597         * socket-io.c: 
9598         * unicode.h: 
9599         * unicode.c: Warning cleanups
9600
9601 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
9602
9603         * object.h, reflection.h: use the correct type instead of MonoObject.
9604
9605 2002-03-28  Martin Baulig  <martin@gnome.org>
9606
9607         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
9608         (mono_debug_update_symbol_file): Initialize classes if necessary.
9609
9610 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
9611
9612         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
9613         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
9614
9615 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
9616
9617         * assembly.h: fix function prototype.
9618         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
9619         * mono-endian.h: use const cast.
9620
9621 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
9622
9623         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
9624
9625 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
9626
9627         * loader.c: don't assert when a typeref can't be loaded, give
9628         a chance to the runtime to trow an exception instead.
9629         * loader.h: fix warning.
9630
9631 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
9632
9633         * class.c (mono_class_proxy_vtable): added proxy support
9634
9635 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
9636
9637         * icall.c: removed last of PAL calls, added System.Environment
9638         * file-io.h, file-io.c: MonoIO implementation
9639         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
9640
9641 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
9642
9643         * appdomain.c: do not use the byte marker in ldstr table lookup.
9644         * debug-helpers.c: allow two ':' to separate class and method name.
9645         * object.c: allocate arrays bounds with the GC, too.
9646         * verify: add a few more checks.
9647
9648 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
9649
9650         * reflection.c: output also literal strings. Allocate parameter data
9651         with GC_malloc() (thanks, Martin, for catching this!).
9652
9653 2002-03-26  Martin Baulig  <martin@gnome.org>
9654
9655         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
9656         include the `this' offset in the `param_offsets'.
9657
9658 2002-03-25  Martin Baulig  <martin@gnome.org>
9659
9660         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
9661         mono_debug_get_class() function to get the classes. Added new
9662         relocation types for arrays and strings.
9663         (mono_debug_get_class): New static function to search in all
9664         referenced assemblies for a metadata token.
9665
9666         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
9667
9668 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
9669
9670         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
9671         hold gc-allocated objects. Make the string heap a stream like the
9672         others. Removed duplicated code when writing stream info.
9673         Added asserts to catch possible buffer overflows. Set the sorted map
9674         for tables that need sorting. Added some documentation.
9675
9676 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
9677
9678         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
9679         for interned strings and vtables.
9680
9681 2002-03-24  Martin Baulig  <martin@gnome.org>
9682
9683         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
9684         it in the array since it was created with g_slist_prepend().
9685
9686 2002-03-24  Martin Baulig  <martin@gnome.org>
9687
9688         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
9689         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
9690         (mono_debug_method_from_token): Renamed to
9691         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
9692         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
9693
9694         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
9695         relocation types.
9696
9697         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
9698
9699 2002-03-24  Martin Baulig  <martin@gnome.org>
9700
9701         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
9702         (mono_debug_method_from_token): New func.
9703
9704         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
9705         New interncall, calls mono_debug_local_type_from_signature().
9706         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
9707         calls mono_debug_method_from_token().
9708
9709 2002-03-23  Martin Baulig  <martin@gnome.org>
9710
9711         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
9712         specifies the number of bytes to be converted, not the array size.
9713         Return the number of chars, not the number of bytes.
9714         (ves_icall_iconv_get_chars): The `byteCount' argument
9715         specifies the number of bytes to be converted, not the array size.
9716
9717 2002-03-23  Martin Baulig  <martin@gnome.org>
9718
9719         * reflection.h (MonoReflectionSigHelper): New type.
9720
9721         * reflection.c (mono_reflection_sighelper_get_signature_local),
9722         (mono_reflection_sighelper_get_signature_local): New functions.
9723
9724         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
9725         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
9726         interncalls.
9727
9728 2002-03-23  Martin Baulig  <martin@gnome.org>
9729
9730         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
9731         is_writeable is set.
9732         (mono_raw_buffer_update): New function to write the modified map
9733         back to disk.
9734
9735         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
9736
9737         * debug-symfile.c (mono_debug_update_symbol_file): Call
9738         mono_raw_buffer_update() when done writing.
9739
9740 2002-03-23  Martin Baulig  <martin@gnome.org>
9741
9742         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
9743
9744         * debug-symfile.c: Added support for arguments and local variables.
9745
9746 2002-03-23  Dick Porter  <dick@ximian.com>
9747
9748         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
9749         protected by ifdefs, hence breaking the w32 build.
9750
9751 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
9752
9753         * object.c: implement is_interned() the right way.
9754
9755 2002-03-21  Martin Baulig  <martin@gnome.org>
9756
9757         * debug-symfile.[ch]: New files to handle debugging information
9758         files. There's also support to dynamically update these symbol
9759         files to include machine dependent information.
9760
9761 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
9762
9763         * threads.c (mono_thread_create): new function to create thread
9764         from C
9765
9766 2002-03-20  Martin Baulig  <martin@gnome.org>
9767
9768         * icall.c (ves_icall_InternalInvoke): Create a new object if the
9769         method is a constructor.
9770         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
9771         points to ves_icall_InternalInvoke().
9772
9773 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
9774
9775         * file-io.c: Flush shouldn't throw exceptions.
9776
9777 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
9778
9779         * file-io.c: FileStream flush support; FileSetLength now
9780         restores file pointer.
9781
9782 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
9783
9784         * class.c: set image for pointer classes.
9785
9786 2002/03/19  Nick Drochak <ndrochak@gol.com>
9787
9788         * sysmath.c: Forgot one.
9789
9790 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
9791
9792         * sysmath.c: Avoid redefining existing names.
9793
9794 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
9795
9796         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
9797         handled by runtime as icall rather than dllimport from libm.so
9798         * file-io.c, file-io.h: fixed handle argument type.
9799
9800 2002-03-18  Dick Porter  <dick@ximian.com>
9801
9802         * reflection.c (mono_image_get_type_info): rename interface to
9803         iface, because of "#define interface struct" on windows.
9804
9805 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
9806
9807         * class.c, class.h: rename and export mono_ptr_class_get().
9808         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
9809         * reflection.c, reflection.h, icall.c: better/saner type name
9810         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
9811         method signatures.
9812
9813 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
9814
9815         * class.c (mono_class_init): removed hardcoded GHC_SLOT
9816
9817         * icall.c (ves_icall_InternalInvoke): impl.
9818
9819 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
9820
9821         * reflection.c: output the interface map table, too.
9822
9823 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
9824
9825         * class.c (class_compute_field_layout): separate computation of 
9826         static field layout
9827
9828 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
9829
9830         * icall.c: added System.Buffer support.
9831         * file-io.c: moved file icalls from PAL to FileStream.
9832
9833 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
9834
9835         * icall.c (ves_icall_System_Object_GetHashCode): impl.
9836
9837 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
9838
9839         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
9840
9841 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
9842
9843         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
9844
9845 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
9846
9847         * debug-helpers.{c,h}: moved here from monograph some useful functions
9848         to locate a method by name/signature in a class or image. Included
9849         also a small and flexible IL disassembler.
9850
9851 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
9852
9853         * reflection.c: fixup tokens in methods with small header size, too.
9854
9855 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
9856
9857         * object.c (mono_string_to_utf8): remove assert(!error), instead
9858         print a warning. 
9859
9860 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
9861
9862         * icall.c: update to the new mono_Array_class_get interface.
9863
9864 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
9865
9866         * appdomain.c, object.c: Boehm-GC enable.
9867         * icall.c: make get_data_chunk() support split data requests.
9868         Ensure a class is initialized in more cases. Return only the first
9869         property found in GetProperties() or the compiler gets confused. 
9870         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
9871         * reflection.h, reflection.c: add fixup mechanism for field and method
9872         tokens. Initialize assembly->typeref in a single place. Output
9873         properties after events. Support custom attributes for events, too.
9874         Typo fix for paramter custom attrs.
9875
9876 2002-03-07  Martin Baulig  <martin@gnome.org>
9877
9878         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
9879
9880 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
9881
9882         * class.c (mono_array_class_get): fix. for multi. dim. arrays
9883
9884 2002-03-06  Martin Baulig  <martin@gnome.org>
9885
9886         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
9887         non-zero lower bounds. See testcases #F10-#F13.
9888
9889 2002-03-05  Martin Baulig  <martin@gnome.org>
9890
9891         * exception.c (mono_get_exception_argument_out_of_range): New exception.
9892
9893         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
9894         ves_icall_System_Array_GetValue(), only calculate the absolute array position
9895         here.
9896         (ves_icall_System_Array_SetValue): Likewise.
9897         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
9898         as argument and does the actual work. This function is used when copying a
9899         multi-dimensional array.
9900         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
9901         now do all the widening conversions of value types.
9902         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
9903
9904 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
9905
9906         * class.c: remove some magic numbers and use the smbolic names,
9907         instead. Added init_events() to load event info at class init time.
9908         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
9909         and mono_metadata_methods_from_event().
9910         * reflection.h, reflection.c: added support for writing out the evnets
9911         related information.
9912
9913 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
9914
9915         * reflection.h, icall.c: use a different method (GetInterfaces)
9916         to gather interface info and add isbyref, isprimitive and
9917         ispointer to the ves_icall_get_type_info() return value.
9918
9919 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
9920
9921         * class.h: stared adding support for events.
9922         * icall.c: split find_members implementation. Added debug icall to get
9923         the address of an object.
9924         * reflection.c: handle TypeBuilders in mono_type_get_object().
9925
9926 2002-03-01  Martin Baulig  <martin@gnome.org>
9927
9928         * icall.c (ves_icall_System_Array_GetLength): This must throw an
9929         ArgumentOutOfRangeException(), not an ArgumentException().
9930         (ves_icall_System_Array_GetLowerBound): Likewise.
9931         (ves_icall_System_Array_GetValue): Improved argument checking.
9932         (ves_icall_System_Array_SetValue): Improved argument checking.
9933
9934 2002-03-01  Martin Baulig  <martin@gnome.org>
9935
9936         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
9937         called with invalid arguments rather than just dying with g_assert().
9938         (ves_icall_System_Array_SetValue): Likewise.
9939         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
9940         raise a NotImplementedException instead.
9941         (ves_icall_System_Array_GetLength): Added argument checking.
9942         (ves_icall_System_Array_GetLowerBound): Added argument checking.
9943
9944 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
9945
9946         * object.h (mono_assert): new macros mono_assert and
9947         mono_assert_not_reached
9948
9949 2002-02-28  Martin Baulig  <martin@gnome.org>
9950
9951         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
9952         and "System::String::IsInterned" to "System::String::_IsInterned".
9953
9954 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
9955
9956         * icall.c: remove hacks for typebuilder. Added icall to create a
9957         modified type from a tybebuilder.
9958         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
9959         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
9960         to create a backing MonoClass for a TypeBuilder.
9961
9962 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
9963
9964         * class.c, class.h: more refactoring of class init.
9965         Export mono_class_setup_mono_type() and mono_class_setup_parent().
9966
9967 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
9968
9969         * marshal.c, marshal.h: start of marshaling interface.
9970
9971 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
9972
9973         * icall.c: fix order in assembly qualified name icall.
9974
9975 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
9976
9977         * class.c: do not free str, since we store it in the hash table.
9978         * reflection.h: add label field to MonoILExceptionInfo.
9979         * reflection.c: handle references to more than one assembly. Handle
9980         case when there isn't a module created in the assembly.
9981
9982 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
9983
9984         * class.c: Fix typo. Start refactoring of class init code.
9985
9986 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
9987
9988         * appdomain.c: exit with 1 on error.
9989         * class.c: we already have the name in MonoClassField.
9990         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
9991         MonoStreamHeader instead of an offset of image->raw_metadata.
9992
9993 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
9994
9995         * appdomain.c (mono_init): Be even more descriptive about the error.
9996
9997 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
9998
9999         * appdomain.c: give the user an informative message when corlib can't
10000         be loaded.
10001
10002 2002-02-26  Martin Baulig  <martin@gnome.org>
10003
10004         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
10005         New icall to get the time zone data.
10006
10007 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
10008
10009         * reflection.c: set virtual and raw size of section correctly.
10010         * threads.c: transfer domain information to newly created threads.
10011
10012 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
10013
10014         * class.c: when instancing a class in a domain, load the default
10015         vaules for static fields from the constant table. Fix System.Enum to
10016         not be an enum.
10017         * icall.c: implement Object::GetType() internalcall. Implemented
10018         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
10019         Fixed checking of binding flags in find_members().
10020         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
10021         * reflection.c: handle enumerations when writing to the constant
10022         table. Use a different object cache for types.
10023
10024
10025 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
10026
10027         * object.c (mono_object_isinst): fix for arrays
10028
10029         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
10030
10031 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
10032
10033         * object.c: don't use mprotect ()  and fix intern pool hash table
10034         lookup for big endian systems.
10035
10036 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
10037
10038         * icall.c: change type_is_subtype_of () signature.
10039
10040 2002-02-21  Mark Crichton  <crichton@gimp.org>
10041
10042         * rand.c, rand.h: Added random number generator for
10043         System.Security.Cryptography classes.
10044
10045         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
10046
10047         * icall.c: Added System.Security.Cryptography calls.
10048
10049 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
10050
10051         * class.c, icall.c, metadata.c: better support for pointer types.
10052         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
10053         * reflection.c: Add support for getting custom attrs for properties
10054         and simplify some code.
10055
10056 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
10057
10058         * icall.c: change getToken () and add custom attribute GetBlob()helper
10059         method.
10060         * reflection.h: add custom attrs array to the reflection builder structures.
10061         * reflection.c: encode and emit custom attributes for all the relevant
10062         reflection objects. Cache fieldref and methodref tokens. Change
10063         mono_image_create_token() interface to take a MonoDynamicAssembly.
10064         More complete custom attributes decoder. Load custom attributes for
10065         Assembly, Field, Method and Constructor objects, too. Make the
10066         returned array an Attribute[] one, not object[]. Added
10067         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
10068         custom attribute constructor.
10069
10070 2002-02-20  Dick Porter  <dick@ximian.com>
10071
10072         * icall.c:
10073         * rawbuffer.c:
10074         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
10075         problem code out for now).
10076
10077 2002-02-19  Radek Doulik  <rodo@ximian.com>
10078
10079         * object.c (mono_ldstr): use hash table to avoid multiple swapping
10080
10081 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
10082
10083         * icall.c: register the GetCustomAttributes method.
10084         * object.c, object.h: add mono_string_new_len ().
10085         * reflection.h, reflection.c: added mono_runtime_invoke(),
10086         mono_install_runtime_invoke(). Added
10087         mono_reflection_get_custom_attrs () to load custom attributes and
10088         create the attribute objects.
10089
10090 2002-02-19  Dick Porter  <dick@ximian.com>
10091         * threads-dummy-types.c:
10092         * threads-dummy-types.h:
10093         * threads-dummy.c:
10094         * threads-dummy.h:
10095         * threads-pthread-types.c:
10096         * threads-pthread-types.h:
10097         * threads-pthread.c:
10098         * threads-pthread.h:  Deleted obsolete files
10099
10100 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
10101
10102         * class.c (mono_class_vtable): runtime init the class when we
10103         allocate static class data.
10104
10105         * icall.c (ves_icall_System_Array_SetValue): check for null values.
10106
10107         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
10108         and String - but we will need generic marshalling support in the
10109         future. 
10110         (mono_init): set the domain name in a ms compatible way
10111
10112         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
10113         String[].
10114
10115 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
10116
10117         * object.c (mono_array_clone): use alloca() instead of g_malloc  
10118         for sizes
10119
10120         * appdomain.c (mono_domain_unload): impl.
10121
10122 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
10123
10124         * appdomain.c, object.c: fix intern pool implementation.
10125         * class.c: fix alignment code.
10126
10127 2002-02-16  Radek Doulik  <rodo@ximian.com>
10128
10129         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
10130         and s2 > s1, just copy lower bytes to be compatible with little
10131         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
10132         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
10133
10134         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
10135         force big_endian to be 1 for big endian machines 
10136         (ves_icall_iconv_new_decoder): ditto
10137
10138 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
10139
10140         * socket-io.c (convert_sockopt_level_and_name): If the system
10141         doesn't define SOL_IP or SOL_TCP, get them by hand using
10142         getprotobyname() and caching the values (because this could be a
10143         slow operation).
10144         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
10145         Use the appropriate struct when the system does support it. Ie,
10146         not all systems have struct ip_mreqn so use struct ip_mreq when
10147         appropriate.
10148
10149 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
10150
10151         * reflection.c: handle finally clauses.
10152
10153 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
10154
10155         * socket-io.c: use g_snprintf() instead of snprintf.
10156
10157 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
10158
10159         * reflection.c (mono_param_get_objects): Cast second argument to
10160         mono_method_get_param_names to a const char** to silence the
10161         compiler warning.
10162
10163         * appdomain.c (mono_domain_assembly_open): Put parens around the
10164         truth statement in the for-loop.
10165
10166         * unicode.c (iconv_convert): Got rid of a compiler warning about
10167         int i being unused when the system has a new iconv.
10168         (iconv_get_length): Same.
10169
10170         * image.c (load_class_names): Cast the second argument to
10171         g_hash_table_insert() to char* to hush compiler warnings about the
10172         arg being a const.
10173         (mono_image_open): Same here.
10174
10175         * socket-io.c: Don't conditionally include sys/filio.h or
10176         sys/sockio.h here anymore since we now get them from
10177         io-layer/io-layer.h
10178         (inet_pton): If the system doesn't support inet_aton, implement
10179         using inet_addr and also #define INADDR_NONE if it isn't defined
10180         by the system.
10181
10182 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
10183
10184         * metadata.c, metadata.h: added function to get packing and size info
10185         of a typedef.
10186         * reflection.h, reflection.c: handle field RVA data. Save info about
10187         the table layout if needed. Assign typedef indexes to all the types
10188         before dumping the info about them to avoid forward reference problems.
10189
10190 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
10191
10192         * socket-io.c (convert_sockopt_level_and_name): ifdef
10193         SO_ACCEPTCONN because it is not defined on my system (old debian)
10194
10195 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
10196
10197         * opcode.c: use stddef.h to get NULL.
10198
10199 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
10200
10201         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
10202         for FIONBIO, FIONREAD and SIOCATMARK.
10203         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
10204         define INADDR_NONE and besides, inet_addr() is deprecated and
10205         should not be used. Use inet_pton() instead - it also has the
10206         added bonus that it can easily handle IPv6 addresses as well.
10207         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
10208
10209 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
10210
10211         * decimal.c: remove _MSC_VER conditional.
10212
10213 2002-02-13  Dick Porter  <dick@ximian.com>
10214
10215         * socket-io.c: 
10216         * icall.c: Internal calls for Blocking, Select, Shutdown,
10217         GetSocketOption and SetSocketOption
10218
10219 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
10220
10221         * assembly.cs: better resolver: use it instead of some kludgy
10222         code.
10223
10224 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
10225
10226         * reflection.c: the best way to speed-up the compiler is to avoid
10227         infinite loops.
10228
10229 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
10230
10231         * class.c (mono_class_vtable): changed the object layout
10232         (obj->vtable->class). 
10233         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
10234
10235 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
10236
10237         * assembly.c: look for assemblies in the assembly dir, too.
10238
10239 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
10240
10241         * class.c: fix thinko in mono_class_from_type().
10242
10243 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
10244
10245         * exception.h, exception.c: added TypeLoadException.
10246         * object.h, object.c: added mono_array_clone ().
10247         * icall.c: handle throwOnError in AssemblyGetType().
10248         Added Array.Clone().
10249         * opcode.h, opcode.c: use a single value for the opcode val.
10250         Compile fix for non-gcc compilers.
10251
10252 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
10253
10254         * opcodes.c, opcodes.h: export interesting info about opcodes.
10255
10256 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
10257
10258         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
10259         icalls. 
10260
10261         * class.c (class_compute_field_layout): set element_class for enums
10262         (mono_class_create_from_typedef): set element_class for normal classes
10263
10264         * icall.c (ves_icall_System_Enum_get_value): impl.
10265
10266         * class.c (mono_class_create_from_typedef): do not set valuetype
10267         flag for System.ValueType and System.Enum
10268
10269 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
10270
10271         * unicode.c (iconv_convert): fix big endian problem.
10272
10273 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
10274
10275         * class.c: add asserts if we are ever going to scribble over memory.
10276         * socket-io.c: not all systems have AF_IRDA defined.
10277
10278 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
10279
10280         * class.c (class_compute_field_layout): do not consider static
10281         fields to compute alignment
10282
10283 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
10284
10285         * appdomain.c (mono_appdomain_get): impl.
10286         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
10287
10288 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
10289
10290         * icall.c: ignore "file://" prefix when loading an assembly.
10291
10292 2002-01-23  Dick Porter  <dick@ximian.com>
10293
10294         * socket-io.c:
10295         * icall.c:
10296         * Makefile.am: Added socket support
10297
10298 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
10299
10300         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
10301         code back.  This should return the assemblies that are loaded by
10302         the runtime on behalf of an application domain. 
10303
10304         The current implementation is still broken, it just returns every
10305         assembly loaded, but until we get real applications domain this
10306         will do.
10307
10308 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
10309
10310         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
10311         AppDomain object.
10312
10313 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
10314
10315         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
10316         the mono_class_from_name lookup.
10317         (ves_icall_get_parameter_info): ditto.
10318         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
10319         method.
10320         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
10321
10322 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
10323
10324         * class.c: load also nested classes on class init.
10325         System.ValueType instance methods gets passed boxed
10326         values, unless methods in derived classed that get a pointer to the
10327         data.
10328         * icall.c: use better name parsing code in GetType().
10329         * image.c, image.h: add mono_image_loaded ().
10330         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
10331         * reflection.c, reflection.h: added mono_reflection_parse_type().
10332
10333 2002-01-22  Veronica De Santis <veron78@interfree.it>
10334
10335         * icall.c : Added mapping of internal calls for Manual and Auto reset events
10336         * threads.c : Added the implementation of internal calls for events
10337         * threads.h : Added prototypes of internal calls for events
10338         
10339 2002-01-21  Radek Doulik  <rodo@ximian.com>
10340
10341         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
10342
10343 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
10344
10345         * class.c (mono_class_init): set min_align to 1 (instead of 0)
10346         (mono_class_value_size): use min_align
10347
10348 2002-01-20  Dick Porter  <dick@ximian.com>
10349
10350         * threads.h:
10351         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
10352         so it compiles on w32.
10353
10354 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
10355
10356         * metadata.c (mono_type_stack_size): impl.
10357
10358         * class.c (mono_class_get_field): impl. memberref token
10359
10360 2002-01-16 Veronica De Santis <veron78@@interfree.it>
10361
10362         * icall.h : Added the internal calls mapping for CreateMutex_internal
10363                     and ReleaseMutex_internal.
10364         * threads.h : Added the prototype of mutexes internal calls.
10365         * threads.c : Added the implementations of mutexes internal calls.
10366
10367 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
10368
10369         * metaparse.h: removed unused file.
10370         * reflection.c, reflection.h: added stream_data_align () function 
10371         to align data in streams and keep stream aligned. Add support for
10372         exception support in method headers.
10373
10374 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
10375
10376         * unicode.c: make iconv_convert () return the number of bytess written
10377         in the output buffer.
10378
10379 2002-01-15  Dick Porter  <dick@ximian.com>
10380         * threads.c: Make the runtime's idea of infinite timeouts coincide
10381         with the class library's
10382
10383         Fix a particularly egregious bug in mono_thread_cleanup(). That
10384         code was so utterly bogus it must have been written on a Monday.
10385
10386 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
10387
10388         * reflection.h: add subtypes field to TypeBuilder.
10389         * reflection.c: encode constants for literal fields.
10390         Handle subtypes. Fix user string token (and add a zero byte)
10391         at the end.
10392         
10393 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
10394
10395         * class.c (mono_class_init): bug fix: assign slot numbers for
10396         abstract methods.
10397
10398 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
10399
10400         * reflection.c: don't try to output a code RVA for abstract methods.
10401         Small fixes for method header format. Output parameter info to the
10402         ParamDef table. Save method overriding info to MethodImpl table.
10403         Fix property support. Allow typedef.extends to be a type in the
10404         building assembly.
10405         * verify.c: fix off-by-one error.
10406
10407 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
10408
10409         * class.c: fix mono_class_from_mono_type () for szarray types.
10410         Remove unused cache check in mono_class_from_type_spec().
10411         * icall.c: *type_from_name () functions handle simple arrays and byref.
10412         * reflection.c: handle byref and szarray types. Handle methods without
10413         body (gets P/Invoke compilation working). Handle types and fields in
10414         get_token ().
10415         * reflection.h: add rank to MonoTypeInfo.
10416
10417 2002-01-10  Dick Porter  <dick@ximian.com>
10418
10419         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
10420         internal calls
10421
10422 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
10423
10424         * icall.c: initialize class in type_from_handle ().
10425         Loop also in parent classes for get_method ().
10426         * reflection.c: properly encode class and valuetype types.
10427         Start on encoding TypeBuilder types. Handle fieldrefs.
10428         Use correct length when registering a user string.
10429         Handle ConstructorBuilder and MonoMethod in get_token ().
10430         Make mono_type_get_object () aware of cached types.
10431         * object.c: back out change to mono_string_new ().
10432
10433 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
10434         * object.c: mono_string_new should return a NULL when the string 
10435         passed in is NULL -- not try to deference it.
10436         
10437 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
10438
10439         * icall.c: hack to make IsSubType work for TypeBuilders.
10440         * reflection.c: emit constructors before methods.
10441         Retrieve param names in mono_param_get_objects().
10442
10443 2002/01/05  Nick Drochak  <ndrochak@gol.com>
10444
10445         * Makefile.am: fix list of headers and sources so automake 1.5
10446         doesn't complain. Removed \# at end of list.
10447
10448 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
10449
10450         * reflection.c: get token for a method ref. Set return type of
10451         constructor to void.
10452         * loader.c: debug message.
10453         * class.c: typo fix.
10454
10455 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
10456
10457         * icall.c: fix array init with rank > 1. FindMembers
10458         loops in parent class as well.
10459         * image.c: do not insert nested types in name cache.
10460         * reflection.c: warning fix.
10461         * reflection.h: add override method (for interface impl).
10462
10463 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
10464
10465         * metadata.c: fix customattr decoding.
10466
10467 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
10468
10469         * rawbuffer.cs: Added native Win32 implementation, avoids using
10470         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
10471
10472 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
10473
10474         * class.c: make the low-level routines handle the cache.
10475
10476 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
10477
10478         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
10479
10480 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
10481
10482         * class.c: fix mono_array_element_size() for objects.
10483         * class.h, class.c: add properties to MonoClass and load them
10484         at init time.
10485         * icall.c: check with isinst() when assigning a value to an array
10486         instead of requiring the classes to match exactly.
10487         Implemented icall for System.Type::GetType().
10488         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
10489         enums. Handle bindingflags when looking for methods and fields.
10490         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
10491         and mono_metadata_methods_from_property().
10492         * reflection.h, reflection.c: added structures for propreties,
10493         parameters and enums. Implemented mono_property_get_object() and
10494         mono_param_get_objects().
10495
10496 2001-12-18  Dick Porter  <dick@ximian.com>
10497
10498         * file-io.c: Use mono_string_to_utf16() instead of
10499         mono_string_chars()
10500
10501         * object.c: Added mono_string_to_utf16(), which copies the non
10502         NULL-terminated MonoString into a new double-null-terminated
10503         buffer.
10504
10505 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
10506
10507         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
10508
10509 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
10510
10511         * file-io.c: raise exceptions if handle is invalid.
10512
10513 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
10514
10515         * assembly.c: yet another check for mscorlib.
10516         * class.c, class.h: load nesting info for classes.
10517         * icall.c: many new functions to support the Reflection classes.
10518         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
10519         * reflection.h, reflection.c: mono_image_create_token(),
10520         mono_assembly_get_object(), mono_type_get_object(),
10521         mono_method_get_object(), mono_field_get_object(): methods to return
10522         objects that parallel the C representation of assemblies, types,
10523         methods, fields.
10524
10525 2001-12-11  Dick Porter  <dick@ximian.com>
10526
10527         * icall.c:
10528         * file-io.c: Internal calls for file IO.
10529
10530 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
10531
10532         * tabledefs.h: missing FileAttributes.
10533         * verify.h, verify.c: use is_valid_string () to simplify and check for
10534         valid strings more correctly. Fix warnings and speeling.
10535         Check more tables: Filed, File, ModuleRef, StandAloneSig.
10536         Check code: branches, maxstack, method calls.
10537
10538 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
10539
10540         * object.c (mono_object_allocate): removed static, so that the jit
10541         can allocate value types.
10542
10543         * icall.c (ves_icall_System_DateTime_GetNow): impl.
10544
10545 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
10546
10547         * class.c: init enum types right away and register the
10548         token->MonoClass map in mono_class_create_from_typedef ().
10549         * verify.h, verify.c: first cut of the verifier.
10550         * pedump.c: add --verify switch to verify metadata tables.
10551         * tabledefs.h: add some missing enums.
10552
10553 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
10554
10555         * class.c (mono_install_runtime_class_init): impl.
10556         (mono_class_init): renamed mono_class_metadata_init to
10557         mono_class_init, also removed the metadata_inited flag
10558
10559         * object.c (mono_object_isinst): use faster algorithm
10560
10561 2001-11-30  Radek Doulik  <rodo@ximian.com>
10562
10563         * mono-endian.h: reverted last change
10564         added function prototypes
10565
10566         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
10567         add mono-endian.c back
10568
10569         * mono-endian.c: returned back, as Paolo pointed out, it's needed
10570         for unaligned access, I've mistaked it with endianess. I am
10571         sorry.
10572         (mono_read16): fix reverted endianess
10573         (mono_read64): ditto
10574         (mono_read32): ditto
10575
10576 2001-11-30  Dick Porter  <dick@ximian.com>
10577
10578         * exception.c: Implement mono_exception_from_name()
10579
10580 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
10581
10582         * metadata.h, metadata.c: remove params_size and locals_size and their
10583         calculation from the metadata code: they are only usefult to the
10584         interp.
10585
10586 2001-11-29  Radek Doulik  <rodo@ximian.com>
10587
10588         * object.c (mono_ldstr): swap bytes here, it's probably not the
10589         best place, but works for me now, I'll redo it once I know mono
10590         better, also note that I add PROT_WRITE and don't reset back, also
10591         note that it's only affects big endians, so x86 should be OK
10592
10593         * mono-endian.h (read16): use just glib macros for both endians
10594
10595         * mono-endian.c: removed as glib macros are used in in
10596         mono-endian.h so we don't need to care about endianess for read
10597         macros as glib does that for us already
10598
10599 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
10600
10601         * class.h, class.h: take minimum alignment into consideration so
10602         that the fields of a class remain aligned also when in an array.
10603
10604 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
10605
10606         * loader.h, loader.c: add mono_method_get_param_names().
10607         * class.c: 0-init class fields.
10608
10609 2001-11-26  Dick Porter  <dick@ximian.com>
10610
10611         * icall.c:
10612         * threads-types.h:
10613         * threads.c: New file that handles System.Threading on all platforms
10614
10615         * object.c: 
10616         * object.h: Remove the synchronisation struct from MonoObject,
10617         replace it with a pointer that gets initialised on demand
10618
10619         * Makefile.am: Replace all the system-specific threading code with
10620         a single file that uses the new wrapper library
10621
10622 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
10623
10624         * class.c, class.h: add mono_install_trampoline() so that the runtime
10625         can register a function to create a trampoline: removes the ugly
10626         requirement that a runtime needed to export arch_create_jit_trampoline.
10627         * object.h, object.c: added mono_install_handler() so that the runtime
10628         can install an handler for exceptions generated in C code (with
10629         mono_raise_exception()). Added C struct for System.Delegate.
10630         * pedump.c: removed arch_create_jit_trampoline.
10631         * reflection.c: some cleanups to allow registering user strings and
10632         later getting a token for methodrefs and fieldrefs before the assembly
10633         is built.
10634         * row-indexes.h: updates and fixes from the new ECMA specs.
10635
10636 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
10637
10638         * class.h, class.c: add enum_basetype field to MonoClass.
10639         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
10640         to get index in the constant table reated to a field, param or
10641         property.
10642         * reflection.h, reflection.c: handle constructors. Set public-key and
10643         version number of the built assembly to 0.
10644         * row-indexes.h: update from new ECMA spec.
10645
10646 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
10647
10648         * class.h, class.c: add a max_interface_id to MonoClass.
10649         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
10650         since it's used to do that. Added mono_type_type_from_obj().
10651         Make GetType() return NULL instead of segfaulting if the type was not
10652         found. Handle simple arrays in assQualifiedName.
10653         * object.h: add a struct to represent an Exception.
10654         * reflection.c: output call convention in method signature.
10655         Add code to support P/Invoke methods and fixed offsets for fields.
10656
10657 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
10658
10659         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
10660         the value.
10661         * icall.c: use mono_array_addr instead of array->vector: fixes the
10662         reflection image writing.
10663         * reflection.c: init call convention byte to 0 in method signature.
10664         Encode the property signature. Don't output property-related methods
10665         twice. Really process the properties for a type (don't cast a field to
10666         a property, my mom always told me that).
10667         Fix 64 bit issues in pointer alignment in a different and more
10668         readable way.
10669
10670 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
10671
10672         * loader.h: Removed type class from MonoDefaults, added monotype
10673
10674         * loader.c: Loaded MonoType, removed loading of Type
10675
10676         * icall.c (my_mono_new_object): Now returns a System.MonoType,
10677         and fills in System.Type._impl with a RuntimeTypeHandle rather
10678         than the actual MonoClass *
10679
10680         (ves_icall_type_from_handle): change from type_class to
10681         monotype_class
10682
10683         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
10684         implemented
10685
10686         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
10687         implemented
10688
10689         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
10690
10691         (ves_icall_System_Reflection_Assembly_GetType): implemented
10692
10693         (ves_icall_System_MonoType_assQualifiedName): implemented
10694
10695         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
10696
10697 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
10698
10699         * assembly.c (mono_assembly_open): Implement a cache for the
10700         assemblies. 
10701
10702         (mono_assembly_close): only destroy the assembly when the last
10703         reference is gone.
10704         
10705 2001-11-09  Dick Porter  <dick@ximian.com>
10706
10707         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
10708
10709 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
10710
10711         * class.c (mono_class_metadata_init): bug fix: compute the right slot
10712
10713 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
10714
10715         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
10716         from Martin Weindel.
10717         * object.h: add mono_string_chars ().
10718
10719 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
10720
10721         * reflection.c (build_compressed_metadata): Eliminates warnings
10722         and uses 64-bit clean code.
10723
10724         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
10725         (mono_type_equal): Change signature to eliminate warnings.
10726
10727 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
10728
10729         * icall.c, loader.c: remove the internalcall array constructors.
10730         Changes to match the new MonoArray structure.
10731         * object.h, object.c: an array object doesn't allocate an extra
10732         vector. Add mono_array_new_full () to create jagged arrays easily.
10733
10734 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
10735
10736         * metadata.h, metadata.c: add mono_metadata_field_info () to
10737         retreive all the info about a field from vairous tables.
10738         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
10739         * class.h, class.c: augment MonoClassField with more info.
10740         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
10741         policy and load a field's RVA if needed.
10742
10743 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
10744
10745         * class.c (mono_class_metadata_init): create a trampoline for all
10746         virtual functions instead of actually compiling them.
10747
10748 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
10749
10750         * class.h, class.c: include name in MonoClassField.
10751         * class.c: fix fundamental type of System.Object and System.String.
10752         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
10753         tokens in ldtoken.
10754         * icall.c: remove internalcalls for the Reflection stuff that is now
10755         done in C# code.
10756         * loader.c: mono_field_from_memberref () implementation.
10757         * mono-endian.c: thinko (s/struct/union/g).
10758         * object.c, object.h: make the mono_string_* prototypes actually use
10759         MonoString instead of MonoObject.
10760         * reflection.c, reflection.h: updates for changes in the reflection
10761         code in corlib: we use C structures that map to the actual C# classes.
10762         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
10763         fat method header if needed and use the info from the ILGenerator for
10764         methods. Handle fields in types. Misc fixes.
10765
10766 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
10767
10768         * class.c (mono_class_metadata_init): bug fix: always allocate
10769         space for static class data
10770
10771 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
10772
10773         * class.c (mono_compute_relative_numbering): use relative
10774         numbering to support fast runtime type checks.
10775
10776 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
10777
10778         * class.c (mono_class_create_from_typeref): added debugging output
10779         to print class name when MonoDummy is returned instead of real class
10780
10781 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
10782
10783         * class.c (mono_class_metadata_init): interface offset table now
10784         contains pointers into the vtable - this is more efficient for the jit
10785
10786 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
10787
10788         * class.c (mono_class_metadata_init): use a temporary vtable (the
10789         old algorithm only worked for the interpreter, but not for the jit)
10790
10791 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
10792
10793         * loader.c (method_from_memberref): use mono_class_get to get the
10794         class of an array instead of using System.Array directly.
10795         (mono_get_method): also add MEMBERREF methods to the method cache
10796         which usefull for arrays.
10797
10798 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
10799
10800         * pedump.c (arch_compile_method): added to compute vtable entry
10801
10802         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
10803         number of interfaces.
10804         
10805         * class.h: merged MonoArrayClass into MonoClass
10806
10807         * class.c (mono_class_create_from_typedef): compute the vtable size and
10808         allocate space to include the vtable inside MonoClass
10809         (mono_class_metadata_init): initialize the vtable
10810
10811 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
10812
10813         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
10814         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
10815         * image.c: endian fixes by Laurent Rioux.
10816         * object.h, object.c: rename MonoStringObject to MonoString and
10817         MonoArrayObject to MonoArray. Change some function names to conform to
10818         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
10819         guint16* as first argument, so don't use char*.
10820         Provide macros to do the interesting things on arrays in a portable way.
10821         * threads-pthread.c: updates for the API changes and #include <sched.h>
10822         (required for sched_yield()).
10823         * icall.c: updates for the API changes above.
10824         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
10825         platforms that need them.
10826
10827 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
10828
10829         * class.c: set the correct type for all the fundamental
10830         type when loading the class.
10831
10832 2001-10-05  Dick Porter  <dick@ximian.com>
10833
10834         * threads-pthread.c (pthread_mutex_timedlock): Simple
10835         compatibility version for C libraries that lack this call.
10836
10837 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
10838
10839         * class.c: MonoTypes stored in MonoClass are stored as
10840         fundamental MonoTypes when the class represents a
10841         fundamental type (System.Int32, ...).
10842         The TypeHandle return by ldtoken is a MonoType*.
10843         * icall.c: ves_icall_get_data_chunk () write out all the
10844         PE/COFF stuff. Implement ves_icall_define_method (),
10845         ves_icall_set_method_body (), ves_icall_type_from_handle ().
10846         * image.c: properly skip unknown streams.
10847         * loader.h, loader.c: add type_class to mono_defaults.
10848         * metadata.c, metadata.h: export compute_size () as
10849         mono_metadata_compute_size () with a better interface.
10850         Typo and C&P fixes.
10851         * pedump.c: don't try to print the entry point RVA if there is no entry point.
10852         * reflection.c, reflection.h: many cleanups, fixes, output method
10853         signatures and headers, typedef and typeref info, compress the metadata
10854         tables, output all the heap streams, cli header etc.
10855         * row-indexes.h: typo fixes.
10856
10857 2001-10-04  Dick Porter  <dick@ximian.com>
10858
10859         * object.h: Add a synchronisation mutex struct to MonoObject
10860
10861         * object.c (mono_new_object): Initialise the object
10862         synchronisation mutexes
10863
10864         * icall.c: System.Threading.Monitor internal calls
10865         
10866         * threads-pthread.h:
10867         * threads-pthread.c: System.Threading.Monitor internal calls
10868
10869         * threads-types.h: New file, includes the system-specific thread
10870         structures
10871         
10872         * threads-pthread-types.h:
10873         * threads-pthread-types.c: New files, handle pthread-specific
10874         synchronisation types
10875
10876         * threads-dummy-types.h: 
10877         * threads-dummy-types.c: New files of dummy support for
10878         thread-specific types
10879
10880         * metadata.c:
10881         * image.c:
10882         * pedump.c: include mono-endian.h not endian.h
10883         
10884         * Makefile.am: More threads files.
10885         Name mono-endian.h not endian.h
10886
10887 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
10888
10889         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
10890         stuff and implement a few more bits.
10891         * icall.c: a field needs to be dereferenced twice. Do not use the same
10892         name for two variables in the same scope.
10893         * image.c, image.h: cleanups.
10894
10895 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
10896
10897         * class.c (mono_class_metadata_init): bug fix: compute the right size
10898
10899 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
10900
10901         * icall.c: implemented some of the Reflection internalcalls.
10902         * image.c, image.h: start writing out the PE/COFF image.
10903         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
10904         that does the reverse than decode_blob_size ().
10905         * object.c: use mono_metadata_encode_value (). Move here
10906         temporary implementation of mono_string_to_utf8 ().
10907         * rawbuffer.c: make malloc_map static.
10908
10909 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
10910
10911         * metadata.c: fix type comparison for arrays.
10912         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
10913         Added a couple of new classes to monodefaults.
10914         * icall.c: added a couple of Reflection-related internalcalls.
10915         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
10916         Added a byval_arg MonoType to MonoClass.
10917
10918 2001-09-28  Dick Porter  <dick@ximian.com>
10919
10920         * icall.c:
10921         * threads-pthread.h: 
10922         * threads-pthread.c: Implemented internal calls for
10923         LocalDataStoreSlot operations.  Applied mutexes around all shared
10924         data.  Reworked the thread creation and Start() operations to
10925         avoid a race condition.
10926         
10927         * threads-dummy.h:
10928         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
10929
10930 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
10931
10932         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
10933
10934 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
10935
10936         * class.c, loader.c: warn and return NULL instead of erroring out.
10937         * icall.c: added System.AppDomain::getCurDomain().
10938         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
10939
10940 2001-09-25  Dick Porter  <dick@ximian.com>
10941
10942         * threads-pthread.h:
10943         * threads-pthread.c: Implemented timed thread joining and added
10944         System.Threading.Thread::Join_internal internal call
10945
10946         * icall.c: Added System.Threading.Thread::Join_internal internal call
10947
10948         * threads-dummy.h:
10949         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
10950
10951 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
10952
10953         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
10954         mono_string_intern () to implement the semantics of the ldstr opcode
10955         and the interning of System.Strings.
10956         * icall.c: provide hooks to make String::IsIntern and String::Intern
10957         internalcalls.
10958
10959 2001-09-23  Dick Porter  <dick@ximian.com>
10960
10961         * threads-dummy.c: 
10962         * threads-dummy.h: New files of dummy threading routines
10963
10964         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
10965         support code based on system specifics
10966
10967         Rename PTHREAD_LIBS to THREAD_LIBS
10968         
10969 2001-09-23  Dick Porter  <dick@ximian.com>
10970
10971         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
10972         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
10973         internal calls.
10974         (mono_thread_init): Set up a Thread object instance to return when
10975         the main thread calls Thread.CurrentThread
10976         (mono_thread_cleanup): Wait for all subthreads to exit
10977
10978         * icall.c: New internal calls for System.Threading.Thread::Sleep
10979         (including Schedule) and CurrentThread
10980
10981         * threads.h: New file, to insulate thread-specific stuff from the
10982         rest of the code
10983
10984 2001-09-21  Dick Porter  <dick@ximian.com>
10985
10986         * threads-pthread.h: 
10987         * threads-pthread.c: New file, for handling pthreads-style
10988         threading support.  Start() now starts a new thread and executes
10989         the ThreadStart delegate instance.
10990
10991         * icall.c: Added the internalcall for
10992         System.Threading.Thread::Start_internal
10993
10994         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
10995
10996 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
10997
10998         * loader.c: work around the different signatures for delegates
10999         constructors csc generates in compiled code vs the ones compiled in mscorlib.
11000
11001 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
11002
11003         * class.h, class.c: add mono_class_get_field_from_name ().
11004         * *: Fix C comments and other ANSI C issues.
11005
11006 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
11007
11008         * endian.h, assembly.c: fix some endianness issues.
11009
11010 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
11011
11012         * loader.h, load.c: add delegate_class to mono_defaults.
11013         Handle runtime provided methods in mono_get_method ().
11014
11015 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
11016
11017         * loader.c (mono_get_method): use pinvoke for internal call
11018
11019         * icall.c: use pinvoke for internal call
11020
11021         * loader.c (method_from_memberref): set the method name
11022
11023 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
11024
11025         * metadata.c: help the compiler generate better code for
11026         mono_class_from_mono_type ().
11027
11028 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
11029
11030         * class.c (mono_class_metadata_init): delayed computing of the
11031         class size to mono_class_metadata_init ()
11032
11033 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
11034
11035         * class.c, class.h: add an interfaces member to MonoClass.
11036         * image.c, image.h: add assembly_name field to MonoImage
11037         from the assembly table.
11038         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
11039
11040 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
11041
11042         * class.c: Handle Array in mono_class_from_mono_type ().
11043         * metadata.c, pedump.c: some endian fixes.
11044
11045 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
11046
11047         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
11048         * metadata.c: fix small problem introduced with the latest commit.
11049
11050 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
11051
11052         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
11053         We don't need a MonoMetadata pointer anymore to compare signatures in
11054         mono_metadata_signature_equal (), update callers.
11055         Reduced memory usage an number of allocations for MonoMethodHeader and
11056         MonoMethodSignature.
11057
11058 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
11059
11060         * metadata.c: added compare for szarray.
11061
11062 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
11063
11064         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
11065         and add a couple more types to it and mono_defaults. Give an hint on
11066         classes that need implementing in our corlib and are referenced
11067         in mscorlib.
11068
11069 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
11070
11071         * class.h, class.c: keep track if a class is also an Enum.
11072         * loader.c: Implement a couple more types for use in libffi
11073         marshalling. Gives better diagnostics when failing to dlopen
11074         a library. Set method->klass for P/Invoke methods, too.
11075
11076 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
11077
11078         * class.c, class.h: add a MonoType this_arg to MonoClass that
11079         represents a pointer to an object of the class' type that
11080         can be used by the interpreter and later the type cache.
11081         Add best guess alignment info for valuetype objects.
11082
11083 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
11084
11085         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
11086         into MonoType: one less level of indirection and allocation and
11087         simplifies quite a bit of code. Added cache for MonoTypes that are
11088         used frequently, so that we don't need to allocate them all the time.
11089
11090 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
11091
11092         * class.c (mono_class_create_from_typedef): System.Enum is also a
11093         value type, although it does not derive from System.ValueType
11094         (maybe a bug in the ms compiler?)
11095
11096         * metadata.c (mono_type_size): return the right size for value types
11097
11098         * loader.c (mono_get_method): only initialize method header if not abstract
11099
11100         * class.c (mono_class_from_mono_type): use mono_default values. 
11101
11102 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
11103
11104         * *: use MonoClass pointers instead of <type_tokens>
11105         
11106         * class.h: new flag: metadata_inited.
11107
11108         * class.c (mono_class_metadata_init): impl.
11109         (mono_class_instance_size): impl.
11110         (mono_class_data_size): impl.
11111
11112 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
11113
11114         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
11115         MonoClass now has the name and name_space fields. 
11116         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
11117         mono_get_method () takes and optional MonoClass as argument.
11118         Removed mono_typedef_from_name() and added mono_class_token_from_name()
11119         instead that takes advantage of a map from class names to typedef
11120         tokens in MonoImage.
11121
11122 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
11123
11124         * metadata.c: zero is not a valid alignment boundary.
11125         Merge MONO_TYPE_VOID in default decoding code.
11126
11127 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
11128
11129         * image.h: merged MonoMetadata into MonoImage
11130
11131         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
11132         identify the type of elements.
11133
11134 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
11135
11136         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
11137         * cil-coff.h: split MonoMSDOSHeader and add size info.
11138         * image.c: add some consistency checks.
11139         * metadata.c: fix row size computation: one programmer
11140         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
11141         add explanation for the locator routine.
11142         Fix decoding of size in method header.
11143         
11144 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
11145
11146         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
11147         (g_concat_dir_and_file): Bring g_concat_dir_and_file
11148         function from gnome-libs.  This uses the right path separator
11149         based on the OS, and also works around a bug in some systems where
11150         a double slash is not allowed. 
11151         (default_assembly_name_resolver): Use g_concat_dir_and_file
11152         (mono_assembly_open): ditto.
11153
11154 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
11155
11156         * metadata.c (mono_metadata_signature_equal): impl.
11157
11158         * *: void is now a realy MonoType (instead of using NULL)
11159         
11160         * metadata.c (do_mono_metadata_parse_type): use
11161         mono_metadata_parse_type to parse void value.
11162
11163 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
11164
11165         * metadata.c, metadata.h: in the signature and method header store
11166         only the space required for holding the loca vars and incoming arguments.
11167
11168 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
11169
11170         * metadata.c (do_mono_metadata_parse_type): treat void like any
11171         other type (instead of assigning NULL);
11172
11173 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
11174
11175         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
11176
11177 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
11178
11179         * image.c (do_mono_image_open): added a cache for arrays.
11180
11181 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
11182
11183         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
11184         decode a single column from a row in a metadata table and changes
11185         to take advantage of it in the typedef locator (gives a nice speed up).
11186         Store offset info for function params.
11187
11188 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
11189
11190         * image.h (MONO_IMAGE_IS_CORLIB): removed 
11191
11192 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
11193
11194         * assembly.c: how could mono_assembly_close () had ever worked?
11195         * metadata.c, metadata.h: provide offset info for local vars.
11196         Implement mono_type_size () to take care of alignment as well
11197         as size (it was mono_field_type_size in cli/class.c before).
11198
11199 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
11200
11201         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
11202
11203         * assembly.h (CORLIB_NAME): set to corlib.dll
11204
11205         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
11206
11207 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
11208
11209         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
11210         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
11211         tokentype.h: massive namespace cleanup.
11212
11213 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
11214
11215         * metadata.h, metadata.c: decode exception clauses when parsing method header.
11216
11217 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
11218
11219         * metadata.c (mono_metadata_free_type): added check for type !=
11220         NULL (void) before calling mono_metadata_free_type()
11221
11222 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
11223
11224         * metadata.h, row_indexes.h: added header with enumerations to use
11225         to index in the columns from tables in metadata and to decode coded
11226         tokens: we should start using this instead of embedding magic numbers
11227         all over the code.
11228
11229 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
11230
11231         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
11232         Move metadata_t info from cli_image_info_t to MonoImage, where
11233         it's easily accessible. Changed all the uses accordingly.
11234         Added the method and class caches to MonoImage.
11235         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
11236         and mono_metadata_decode_value () signature to be more consistent
11237         with the other parse functions (and simplify code). Taken advantage
11238         of zero-length array allocation with GCC. Removed reduntant (and
11239         wrong) MonoFieldType struct and use MonoParam instead. Changed
11240         mono_metadata_parse_field_type () to use common code for parsing.
11241         Added mono_metadata_typedef_from_field () and
11242         mono_metadata_typedef_from_method () to lookup a typedef index from a
11243         field or method token.
11244         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
11245
11246 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
11247
11248         * metadata.c (mono_metadata_parse_field_type): Implement. 
11249         (do_mono_metadata_parse_type): Split engine from
11250         mono_metadata_parse_type, so that we can create smaller structures
11251         for things that just have one pointer to the MonoType (look at
11252         the MonoFieldType)
11253
11254 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
11255
11256         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
11257         as Jan Gray found out, it is incorrect. 
11258
11259 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
11260
11261         * assembly.c: Implement asssembly loading.  This loads an image
11262         and loads all the referenced assemblies.  Come to think of it, we
11263         could always do lazy loading of the assemblies. 
11264
11265         * image.c (mono_image_open): Keep loaded images in a hashtable.
11266
11267         * image.h (MonoImage): Add reference count.
11268
11269 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
11270
11271         * assembly.c (mono_assembly_open): Keep track of the file name in
11272         case the assembly has no ASSEMBLY table.
11273
11274         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
11275         from get.c here.
11276
11277 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
11278
11279         * metadata.c, metadata.h: decode local vars in method header
11280         parse function. Change callers accordingly.
11281
11282 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
11283
11284         * metadata.h, cil-coff.h: protect against multiple inclusion.
11285         Added some new structures to hold information decoded from metadata:
11286         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
11287         and relevant decoding/free functions.
11288         * metadata.c: implement decoding functions. Add warning for out of bounds
11289         index in mono_metadata_locate(). Implement mono_get_method () to retreive
11290         all the info about a method signature and invocation. Remove check on
11291         uninitialized local var in parse_mh() and fix memory leak.
11292
11293 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
11294
11295         * metadata.h: More macros.
11296
11297         * tokentype.h: New file.
11298
11299 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
11300
11301         * assembly.c: added a consistency check and initialize
11302         some structures with g_new0().
11303         * metadata.c: fixed a couple more bugs in table size computation
11304         and add other checks for out-of bound access to metadata.
11305
11306 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
11307
11308         * metatada.c: fix bugs computing table sizes. Spew a
11309         warning when index in string heap is out of bounds.
11310
11311 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
11312
11313         * metadata.h: Add a couple of macros to manipulate tokens. 
11314
11315 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
11316
11317         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
11318         cli_section_tables).
11319
11320 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
11321
11322         * metadata.c (mono_metadata_user_string): New function, provides
11323         access to the UserString heap. 
11324
11325 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
11326
11327         * metadata.c: Add inline documentation.
11328
11329 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
11330
11331         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
11332         files. 
11333
11334 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
11335
11336         * typeattr.h: New file, TypeAttribute flags. 
11337
11338 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
11339
11340         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
11341         mono_assembly_ensure_section): Section loading code.
11342         (load_section_tables): Load the sections.
11343
11344         * mono/metadata/metadata.c (mono_metadata_locate_token,
11345         mono_metadata_locate): Functions to locate the information
11346         definition given a token or a table and an index.
11347         (mono_metadata_compute_table_bases): New.
11348         (compute_size): New function to compute the sizes of the various
11349         tables.
11350
11351         * mono/metadata/metadata.h: Finish listing the different index
11352         types. 
11353
11354         * mono/metadata/pedump.c: Improve to dump new information.
11355
11356 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
11357
11358         * mono/metadata/metadata.c: Entered all the tables matching
11359         Beta2. 
11360
11361         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
11362