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