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