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