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