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