Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
[mono.git] / mono / metadata / ChangeLog
1
2 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
3
4         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
5         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
6         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
7         and myself.
8
9 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
10
11         * debug-symfile.c, sysmath.c: yet more compilation fixes.
12
13 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
14
15         * reflection.c, socket-io.c: more compilation fixes.
16
17 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18
19         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
20         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
21         unicode.c: warning and compiler compatibility fixes.
22
23 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
24
25         * class.h, metadata.c: fixed warnings/compilation errors.
26
27 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
28
29         * Makefile.am, mono-config.c, mono-config.h: configuration file
30         support routines.
31         * loader.c, loader.h: make Dll mapping configurable at runtime in the
32         config file. Export methods to insert and lookup mappings.
33
34 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
35
36         * reflection.c: handle types and boxed objects in custom attr
37         constructors.
38
39 2002-05-30  Martin Baulig  <martin@gnome.org>
40
41         * debug-symfile.c
42         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
43
44 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
45
46         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
47         to lookup the implmap row for a P/Invoke method.
48         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
49         P/Invoke method from the runtime on an as needed basis.
50
51 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
52
53         * metadata.c (mono_metadata_parse_signature): impl.
54
55 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
56
57         * class.c: handle .pack directive.
58
59 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
60
61         * object.c: initialize static fields with RVA data.
62
63 2002-05-25  Martin Baulig  <martin@gnome.org>
64
65         * debug-symfile.c
66         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
67
68 2002-05-24  Martin Baulig  <martin@gnome.org>
69
70         * debug-symfile.c
71         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
72         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
73         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
74
75 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
76
77         * object.c: special case string ctros in invoke.
78         * gc.c: silly whitespace changes.
79
80 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
81
82         * threadpool.[ch]: impl. a threadpool that can
83         be used by mint and mono.
84
85 2002-05-22  Martin Baulig  <martin@gnome.org>
86
87         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
88         The first argument is now a `MonoReflectionModuleBuilder *', the return
89         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
90         `methods' field to get the method builder.  The `token' argument is the
91         unfixed token.
92
93         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
94         invalid characters instead of g_assert_not_reached()ing.  This seems
95         to be the behaviour of mscorlib.
96
97 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
98
99         * object.c (mono_runtime_invoke_array): applied patch from Rachel
100         Hestilow to fix bug #25104
101
102 2002-05-21  Martin Baulig  <martin@gnome.org>
103
104         * debug-symfile.c (mono_debug_find_source_location): New function.
105         Looks up an IL offset in the line number table and returns the source
106         location as a string.
107
108 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
109
110         * icall.c:
111         (mono_double_ToStringImpl): changed %f by %g until we have something
112         better.
113
114 2002-05-21  Nick Drochak  <ndrochak@gol.com>
115
116         * icall.c : Use different name for Math.Pow's icall.  Needed to check
117         parameters first in C#.
118
119 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
120
121         * icall.c, reflection.h: added icall to get info about an event.
122
123 2002-05-20  Radek Doulik  <rodo@ximian.com>
124
125         * object.c (mono_value_box): don't use memcpy for boxing on BIG
126         endian
127         (mono_value_box): don't use memcpy for small sizes on
128         architectures with unaligned access
129
130 2002-05-20  Martin Baulig  <martin@gnome.org>
131
132         * reflection.c (mono_reflection_setup_internal_class): Don't crash
133         if `tb->parent == NULL'.
134         (mono_reflection_create_internal_class): New function.  This is
135         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
136         for enum types.
137
138         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
139         New interncall.
140
141 2002-05-19  Martin Baulig  <martin@gnome.org>
142
143         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
144         argument to get the length, don't default to the array length.
145
146 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
147
148         * assembly.c (mono_assembly_setrootdir): New function used to
149         override the MONO_ASSEMBLIES directory.
150
151 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
152
153         * icall.c: ValueType_GetHashCode() initialize local var.
154
155 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
156
157         * reflection.c: sort custom attributes table.
158
159 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
160
161         * reflection.c: support named args in custom attributes (write support).
162
163 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
164
165         * reflection.c: fix finally position calculation.
166
167 2002-05-15  Radek Doulik  <rodo@ximian.com>
168
169         * reflection.c: fixed endianess at many places
170
171         * icall.c (ves_icall_InitializeArray): comment out debug msg
172
173 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
174
175         * object.c (mono_unhandled_exception): new function to handle
176         unhandled exceptions.
177         (mono_unhandled_exception): call the UnhandledException event.
178         (mono_runtime_delegate_invoke): impl.
179
180 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
181
182         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
183         returns the RVA, not the direct pointer to the data. Handle the case
184         when the class size is fixed.
185
186 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
187
188         * reflection.c: fix some endianess issues.
189
190 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
191
192         * object.c (mono_runtime_invoke): is now able to catch exceptions.
193
194         * threads.c (mono_thread_init): added a callback which is invoked
195         at thread start.
196
197 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
198         
199         * icall.c: make GetHashCode return non-negative values.
200
201 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
202
203         * object.c, icall.c, gc.c: revert to address-based hashcode.
204
205 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
206
207         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
208
209 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
210
211         * icall.c, class.c: special case <Module>.
212
213 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
214
215         * icall.c: fix bug in GetNow().
216
217 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
218
219         * object.c (mono_runtime_class_init): make sure that we call all
220         static class constructors.
221
222 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
223
224         * reflection.c: sort methodsemantics table.
225
226 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
227
228         * reflection.h, reflection.c: honour init locals setting.
229
230 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
231
232         * icall.c: copied Double ToStringImpl for Single ToStringImpl
233
234 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
235
236         * reflection.c: support ContructorBuilders in attribute blob creation.
237
238 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
239
240         * reflection.c: some changes to build a binary that can be run
241         directly in windows.
242
243 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
244
245         * loader.c: print a big message when an icall can't be found.
246
247 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
248
249         * string-icalls.c: fix bug 24248.
250
251 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
252
253         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
254         icall.c, reflection.h: separate assembly loading by pathname and by
255         assembly name. Use the MONO_PATH env var to search for assemblies.
256
257 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
258
259         * assembly.c, image.h: add some support for assemblies
260         with multiple modules.
261         * class.c, class.h: export mono_class_from_typeref().
262         * loader.c: remove duplicated code and use mono_class_from_typeref(),
263         instead.
264
265 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
266
267         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
268         documentation says (the ECMA one is correct).
269
270 2002-05-02  Dick Porter  <dick@ximian.com>
271
272         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
273         Don't name the synchronisation mutex.
274
275 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
276
277         * rand.c
278         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
279         Make the prototypes match.
280         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
281         Same.
282
283         * icall.c
284         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
285         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
286         all systems have tm.tm_zone, so use strftime() with %Z to print
287         the timezone abreviation into a temp string.
288
289         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
290         rather than mono_array_addr() on a MonoString on Big Endian
291         machines.
292
293 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
294
295         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
296         fix bug 24041
297
298 2002-04-30  Dick Porter  <dick@ximian.com>
299
300         * socket-io.c: Cope with SOCKET being an integer rather than a
301         pointer now.
302
303         * threads.c: Added Thread_free_internal, to deal with thread
304         handle cleanup.  Moved calls to handle_store() and handle_remove()
305         to start_wrapper(), so each can only be called once.  Allocate
306         synchronisation blocks with GC_malloc(), and use GC finalisation
307         to close the handles.
308
309         * icall.c: added System.Threading.Thread::Thread_free_internal
310
311 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
312
313         * icall.c: support Environment.Exit, CommandLineArgs().
314
315 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
316
317         * object.c, object.h: added mono_runtime_run_main () and
318         mono_runtime_get_main_args () for use in System.Environment.
319
320 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
321
322         * gc.c: fix thinko, enable actual finalization since the jit is now
323         fixed.
324
325 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
326
327         * gc.c, object.c: take into account that an object may be offset wrt the address
328         returned by GC_malloc().
329
330 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
331
332         * image.c: handle files without entries in the assembly table (modules).
333
334 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
335
336         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
337         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
338         allowed to be null when it's System.Object class setup.
339
340 2002-04-27  Martin Baulig  <martin@gnome.org>
341
342         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
343         if `tb->parent == NULL' rather than crashing.
344
345 2002-04-28  Nick Drochak  <ndrochak@gol.com>
346
347         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
348         calling acos() where asin() should have been called.
349
350 2002-04-26  Martin Baulig  <martin@gnome.org>
351
352         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
353         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
354         there's a subdirectory called `System', but we don't want to read that
355         subdirectory as an assembly.
356
357 2002-04-25  Martin Baulig  <martin@gnome.org>
358
359         * debug-symfile.c: Reflect latest MonoString changes.
360
361 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
362
363         * rand.c, rand.h: instance method icalls need to have an explicit
364         this pointer as first argument in the C implementation.
365
366 2002-04-25  Nick Drochak <ndrochak@gol.com>
367
368         * icall.c: Fix typo in map for GetNonZeroBytes
369
370 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
371
372         * string-icalls.c : String does now passes unit tests without any 
373         errors, the following changes has been made:
374         
375         Implemented replace methods.
376         Renaming of methods to (try) follow the standard.
377         Fixed compare ordinal
378         Made all memory allocated directly to function instead of via icall function.
379         Small performance fix in is_in_array function
380                         
381  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
382
383         c (mono_string_Internal_ctor_charp_int_int):
384         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
385         sindex < 0, throw ArgumentOutOfRangeException instead of
386         ArgumentNullException.
387
388         Added new check for length == 0, however
389         I need to make it return String.Empty from the C code.
390         
391         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
392         that calculate the length for us here.
393         
394         (mono_string_Internal_ctor_sbytep_int_int): Replaced
395         mono_string_new_utf16 with mono_string_new, since value is utf8.
396
397 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
398
399         * object.c: register the object for finalization if needed.
400         Allocate one more char in the string for the terminating 0 char.
401
402 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
403
404         * class.c, class.h, image.c: check if a type implemenst a destructor.
405         Use the proper key for array class lookups.
406         * icall.c: register the icalls in the System.GC class.
407         * gc.c, gc.h: GC-related functions and icalls.
408
409 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
410
411         * icall.c:
412         * socket-io.c:
413         * unicode.c: free some strings gotten from mono_string_to_utf8 and
414         changed a couple of free () by g_free ().
415
416         * decimal.c: one-liner in the comments for decimal2string ().
417
418 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
419
420         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
421
422 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
423
424         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
425         * object.c (mono_runtime_invoke_array) : handle null in params
426
427 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
428
429         * string-icalls.c: fixed bug in split (one off bug)
430
431 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
432
433         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
434         * icalls.c: added String::Equals as internal method
435
436 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
437
438         * threads.c: fixed bug in the double interlocked functions
439
440 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
441
442         * threads.c: implemented all of the new interlocked icalls.
443         * string-icalls.c: fix a bug in insert.
444         * icalls.c: added the icalls for interlocked, removed old string functions.
445         
446 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
447
448         * loader.c: fix off-by-one error when reading argument names.
449
450 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
451
452         * profiler.c: win32 counter implementation (untested).
453         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
454         (the latter needs testing and more complete impl. from win32 folks).
455
456 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
457
458         * object.c: mono_array_new_full workaround mono_array_class_get
459         problem.
460
461 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
462
463         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
464         * object.h (mono_string_chars): Changed casting type.
465
466 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
467
468         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
469                            method signatures to use gunichar2 instead of gint16.
470
471 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
472
473         * object.h, object.c: domain-specific versions of mono_object_new and
474         mono_array_new.
475
476 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
477
478         * object.c: changed String layout
479
480         * string-icalls.c (mono_string_Internal_ctor_chara): added
481         internal string constructors.
482
483 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
484
485         * threads.c: pass 'this' to the thread start routine.
486
487 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
488
489         * string-icalls.c: fix IndexOf and LastIndexOf. Now
490         InternalCompareStr don't call twice mono_string_cmp_char for the last
491         character. Improved performance in mono_string_cmp_char.
492
493 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
494
495         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
496         code into its own library: libmonoruntime.
497
498 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
499
500         * object.h, object.c: changed array format so that szarrays do not
501         require a bounds structure.
502         * icall.c, appdomain.c: support for new szarray format.
503
504 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
505
506         * metadata.c: compare also the retuns type when comparing signatures:
507         we didn't do this as an optimization since really overloaded methods
508         must differ also in the arguments, but this doesn't work with
509         low-level IL code (or when using explicit conversion operators: see
510         bug#23498 for an example).
511
512 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
513
514         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
515
516 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
517
518         * icall.c: make MonoType::GetElementType its own icall.
519
520 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
521
522         * icall.c: remove MonoMethod_get_Name().
523         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
524         object.
525
526 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
527
528         * string-icalls.c: optimized a few methods.
529
530 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
531
532         * icall.c: added all new string internal calls
533         * string-icalls.c: added, new string internal call implementation.
534         * object.c: added mono_string_new_size for allocating a string a size
535
536 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
537
538         * object.c (mono_object_isinst): use the same code as in the
539         optimized x86 version.
540
541 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
542
543         * profiler.c: TSC-based timer code (faster and more accurate).
544         Not hooked up in configure, yet (set USE_X86TSC to 1).
545
546 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
547
548         * profiler.c, profiler.h: track time spent compiling methods.
549         * threads.c: track thread creation/destruction.
550
551 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
552
553         * profiler.c, profiler.h, profiler-private.h: profiling interface
554         and sample implementation. Moved here so that it can be used also by
555         the jit.
556
557 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
558
559         * reflection.c, reflection.h: keep types and other handles separate in
560         the hash tables for referred tokens. Add guid for modules.
561
562 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
563
564         * assembly.c: fix bugs found with valgrind.
565         * metadata.h, metadata.c: added mono_metadata_guid_heap().
566
567 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
568
569         * threads: added icall support for getting current domain for
570                    the thread.
571  
572 2002-04-13  Martin Baulig  <martin@gnome.org>
573
574         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
575         (MonoDebugVarInfo): Added `index' field for register based addresses.
576         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
577         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
578         `MonoDebugVarInfo *params' and `guint32 this_offset' with
579         `MonoDebugVarInfo *this_var'.
580
581         * debug-symfile.c (relocate_variable): New static function to write
582         a location description for a local variable or method parameter.
583
584 2002-04-12  Martin Baulig  <martin@gnome.org>
585
586         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
587         stack offset and begin/end scope address of a local variable.
588         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
589         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
590         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
591
592         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
593         Added new relocation types for start/end scope of a local variable.
594
595 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
596
597         * object.h: add mono_object_domain() macro.
598         * reflection.c: handle typespecs.
599         * icall.c: MonoMethod::get_Name() implementation.
600
601 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
602
603         * icall.c: String::GetHashCode() icall implementation.
604
605 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
606
607         * icall.c: String::IndexOfAny icall.
608         * object.c, object.h: make array->max_length more useful.
609         Intrduced mono_object_class() and mono_string_length() macros.
610
611 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
612
613         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
614         instead of g_unichar_isdigit.
615
616 2002-04-11  Nick Drochak  <ndrochak@gol.com>
617
618         * icall.c: Implement a simple Double.ToString().
619
620 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
621
622         * appdomain.h: only io-layer.h is supposed to be included.
623         * icall.c: explicitly import environ. Fix warning.
624
625 2002-04-10  Nick Drochak  <ndrochak@gol.com>
626
627         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
628                 return true even if it's not Daylight Savings time.
629                 Only return false for the case where the function isn't
630                 implemented for a plaform (read Windows).
631
632 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
633
634         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
635         data with a mutex.
636
637 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
638
639         * mempool.c (mono_mempool_alloc): only use g_malloc when
640         absolutely necessary.
641
642 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
643
644         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
645
646         * class.c (mono_class_vtable): use domain mempool to allocate vtable
647         (mono_class_proxy_vtable): use domain mempool
648
649 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
650
651         * appdomain.h, appdomain.c: split initialization that requires the
652         execution engine support into mono_runtime_init().
653
654 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
655
656         * class.c (mono_class_init): don't include vtable inside MonoClass
657         to save some memory, gather some statistics.
658         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
659
660 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
661
662         * icall.c: internalcall implementation for ValueType.Equals().
663
664 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
665
666         * object.c (mono_message_init): moved 
667         (mono_runtime_exec_main): new arch. independent impl.
668         (mono_runtime_invoke_array): new method - like
669         mono_runtime_invoke, but you can pass an array of objects.
670         (mono_remoting_invoke): new arch. independent impl.
671         (mono_message_invoke): new arch. independent impl.
672         (mono_runtime_class_init): new arch. independent impl.
673         (mono_runtime_object_init): new arch. independent impl.
674
675 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
676
677         * metadata.c, object.c, reflection.c: documented the exported
678         functions.
679
680 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
681
682         * icall.c: simpler code to pass the assembly builder data to corlib.
683         Implement GetNestedTypes() internalcall.
684
685 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
686
687         * class.c: warn if a type can't be loaded.
688
689 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
690
691         * image.h: typedef MonoImageOpenStatus
692         * types.h: removed unused file
693         
694 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
695
696         * icall.c: Enum_ToObject accepts enum value arguments.
697
698 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
699
700         * class.c: move initialization of properties, events and nested
701         classes, so that they happen for interfaces, too.
702
703 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
704
705         * icall.c: cleanup some ugly casts in Array_SetValue*.
706
707 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
708
709         * icall.c: the values array fro enums is of the correct type, now.
710         Implement (correctly) getFullName instead of assQualifiedName for
711         MonoType.
712         * reflection.h, reflection.c: added mono_type_get_name ().
713
714 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
715
716         * assembly.c, image.h: for each MonoImage, record from wich assembly
717         it was loaded.
718         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
719         Make Type.Assembly work.
720
721 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
722
723         * debug-symfile.h: use char* instead of gpointer to avoid
724         unnecessary casts.
725
726         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
727
728         * icall.c (ves_icall_InternalExecute): impl. FielSetter
729         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
730
731 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
732
733         * icall.c (mono_message_init): impl. (code cleanup)
734         (ves_icall_InternalExecute): impl. FieldGetter
735
736         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
737         defined we call all (non-static)methods through the vtable. 
738
739 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
740
741         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
742         finalizer even though the memory is still referenced (and the chunk of
743         memory is not freed).
744
745 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
746
747         * assembly.c: fix brokeness.
748
749 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
750
751         * class.c: kill some warnings. Check explicit interface method
752         implementation also without considering the namespace.
753         Load also literal strings in static class data.
754
755 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
756
757         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
758         (default_assembly_name_resolver): Make the resolver take the
759         "base" directory where the assembly was originally defined, so we
760         can load DLLs that are in the same directory as the assembly that
761         is being referenced.
762
763 2002-03-28  Dick Porter  <dick@ximian.com>
764
765         * file-io.h: 
766         * file-io.c:
767         * socket-io.c: 
768         * unicode.h: 
769         * unicode.c: Warning cleanups
770
771 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
772
773         * object.h, reflection.h: use the correct type instead of MonoObject.
774
775 2002-03-28  Martin Baulig  <martin@gnome.org>
776
777         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
778         (mono_debug_update_symbol_file): Initialize classes if necessary.
779
780 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
781
782         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
783         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
784
785 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
786
787         * assembly.h: fix function prototype.
788         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
789         * mono-endian.h: use const cast.
790
791 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
792
793         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
794
795 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
796
797         * loader.c: don't assert when a typeref can't be loaded, give
798         a chance to the runtime to trow an exception instead.
799         * loader.h: fix warning.
800
801 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
802
803         * class.c (mono_class_proxy_vtable): added proxy support
804
805 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
806
807         * icall.c: removed last of PAL calls, added System.Environment
808         * file-io.h, file-io.c: MonoIO implementation
809         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
810
811 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
812
813         * appdomain.c: do not use the byte marker in ldstr table lookup.
814         * debug-helpers.c: allow two ':' to separate class and method name.
815         * object.c: allocate arrays bounds with the GC, too.
816         * verify: add a few more checks.
817
818 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
819
820         * reflection.c: output also literal strings. Allocate parameter data
821         with GC_malloc() (thanks, Martin, for catching this!).
822
823 2002-03-26  Martin Baulig  <martin@gnome.org>
824
825         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
826         include the `this' offset in the `param_offsets'.
827
828 2002-03-25  Martin Baulig  <martin@gnome.org>
829
830         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
831         mono_debug_get_class() function to get the classes. Added new
832         relocation types for arrays and strings.
833         (mono_debug_get_class): New static function to search in all
834         referenced assemblies for a metadata token.
835
836         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
837
838 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
839
840         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
841         hold gc-allocated objects. Make the string heap a stream like the
842         others. Removed duplicated code when writing stream info.
843         Added asserts to catch possible buffer overflows. Set the sorted map
844         for tables that need sorting. Added some documentation.
845
846 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
847
848         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
849         for interned strings and vtables.
850
851 2002-03-24  Martin Baulig  <martin@gnome.org>
852
853         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
854         it in the array since it was created with g_slist_prepend().
855
856 2002-03-24  Martin Baulig  <martin@gnome.org>
857
858         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
859         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
860         (mono_debug_method_from_token): Renamed to
861         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
862         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
863
864         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
865         relocation types.
866
867         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
868
869 2002-03-24  Martin Baulig  <martin@gnome.org>
870
871         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
872         (mono_debug_method_from_token): New func.
873
874         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
875         New interncall, calls mono_debug_local_type_from_signature().
876         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
877         calls mono_debug_method_from_token().
878
879 2002-03-23  Martin Baulig  <martin@gnome.org>
880
881         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
882         specifies the number of bytes to be converted, not the array size.
883         Return the number of chars, not the number of bytes.
884         (ves_icall_iconv_get_chars): The `byteCount' argument
885         specifies the number of bytes to be converted, not the array size.
886
887 2002-03-23  Martin Baulig  <martin@gnome.org>
888
889         * reflection.h (MonoReflectionSigHelper): New type.
890
891         * reflection.c (mono_reflection_sighelper_get_signature_local),
892         (mono_reflection_sighelper_get_signature_local): New functions.
893
894         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
895         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
896         interncalls.
897
898 2002-03-23  Martin Baulig  <martin@gnome.org>
899
900         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
901         is_writeable is set.
902         (mono_raw_buffer_update): New function to write the modified map
903         back to disk.
904
905         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
906
907         * debug-symfile.c (mono_debug_update_symbol_file): Call
908         mono_raw_buffer_update() when done writing.
909
910 2002-03-23  Martin Baulig  <martin@gnome.org>
911
912         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
913
914         * debug-symfile.c: Added support for arguments and local variables.
915
916 2002-03-23  Dick Porter  <dick@ximian.com>
917
918         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
919         protected by ifdefs, hence breaking the w32 build.
920
921 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
922
923         * object.c: implement is_interned() the right way.
924
925 2002-03-21  Martin Baulig  <martin@gnome.org>
926
927         * debug-symfile.[ch]: New files to handle debugging information
928         files. There's also support to dynamically update these symbol
929         files to include machine dependent information.
930
931 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
932
933         * threads.c (mono_thread_create): new function to create thread
934         from C
935
936 2002-03-20  Martin Baulig  <martin@gnome.org>
937
938         * icall.c (ves_icall_InternalInvoke): Create a new object if the
939         method is a constructor.
940         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
941         points to ves_icall_InternalInvoke().
942
943 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
944
945         * file-io.c: Flush shouldn't throw exceptions.
946
947 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
948
949         * file-io.c: FileStream flush support; FileSetLength now
950         restores file pointer.
951
952 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
953
954         * class.c: set image for pointer classes.
955
956 2002/03/19  Nick Drochak <ndrochak@gol.com>
957
958         * sysmath.c: Forgot one.
959
960 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
961
962         * sysmath.c: Avoid redefining existing names.
963
964 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
965
966         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
967         handled by runtime as icall rather than dllimport from libm.so
968         * file-io.c, file-io.h: fixed handle argument type.
969
970 2002-03-18  Dick Porter  <dick@ximian.com>
971
972         * reflection.c (mono_image_get_type_info): rename interface to
973         iface, because of "#define interface struct" on windows.
974
975 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
976
977         * class.c, class.h: rename and export mono_ptr_class_get().
978         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
979         * reflection.c, reflection.h, icall.c: better/saner type name
980         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
981         method signatures.
982
983 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
984
985         * class.c (mono_class_init): removed hardcoded GHC_SLOT
986
987         * icall.c (ves_icall_InternalInvoke): impl.
988
989 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
990
991         * reflection.c: output the interface map table, too.
992
993 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
994
995         * class.c (class_compute_field_layout): separate computation of 
996         static field layout
997
998 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
999
1000         * icall.c: added System.Buffer support.
1001         * file-io.c: moved file icalls from PAL to FileStream.
1002
1003 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
1004
1005         * icall.c (ves_icall_System_Object_GetHashCode): impl.
1006
1007 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
1008
1009         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
1010
1011 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
1012
1013         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
1014
1015 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
1016
1017         * debug-helpers.{c,h}: moved here from monograph some useful functions
1018         to locate a method by name/signature in a class or image. Included
1019         also a small and flexible IL disassembler.
1020
1021 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
1022
1023         * reflection.c: fixup tokens in methods with small header size, too.
1024
1025 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
1026
1027         * object.c (mono_string_to_utf8): remove assert(!error), instead
1028         print a warning. 
1029
1030 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
1031
1032         * icall.c: update to the new mono_Array_class_get interface.
1033
1034 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
1035
1036         * appdomain.c, object.c: Boehm-GC enable.
1037         * icall.c: make get_data_chunk() support split data requests.
1038         Ensure a class is initialized in more cases. Return only the first
1039         property found in GetProperties() or the compiler gets confused. 
1040         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
1041         * reflection.h, reflection.c: add fixup mechanism for field and method
1042         tokens. Initialize assembly->typeref in a single place. Output
1043         properties after events. Support custom attributes for events, too.
1044         Typo fix for paramter custom attrs.
1045
1046 2002-03-07  Martin Baulig  <martin@gnome.org>
1047
1048         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
1049
1050 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
1051
1052         * class.c (mono_array_class_get): fix. for multi. dim. arrays
1053
1054 2002-03-06  Martin Baulig  <martin@gnome.org>
1055
1056         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
1057         non-zero lower bounds. See testcases #F10-#F13.
1058
1059 2002-03-05  Martin Baulig  <martin@gnome.org>
1060
1061         * exception.c (mono_get_exception_argument_out_of_range): New exception.
1062
1063         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
1064         ves_icall_System_Array_GetValue(), only calculate the absolute array position
1065         here.
1066         (ves_icall_System_Array_SetValue): Likewise.
1067         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
1068         as argument and does the actual work. This function is used when copying a
1069         multi-dimensional array.
1070         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
1071         now do all the widening conversions of value types.
1072         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
1073
1074 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
1075
1076         * class.c: remove some magic numbers and use the smbolic names,
1077         instead. Added init_events() to load event info at class init time.
1078         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
1079         and mono_metadata_methods_from_event().
1080         * reflection.h, reflection.c: added support for writing out the evnets
1081         related information.
1082
1083 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
1084
1085         * reflection.h, icall.c: use a different method (GetInterfaces)
1086         to gather interface info and add isbyref, isprimitive and
1087         ispointer to the ves_icall_get_type_info() return value.
1088
1089 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
1090
1091         * class.h: stared adding support for events.
1092         * icall.c: split find_members implementation. Added debug icall to get
1093         the address of an object.
1094         * reflection.c: handle TypeBuilders in mono_type_get_object().
1095
1096 2002-03-01  Martin Baulig  <martin@gnome.org>
1097
1098         * icall.c (ves_icall_System_Array_GetLength): This must throw an
1099         ArgumentOutOfRangeException(), not an ArgumentException().
1100         (ves_icall_System_Array_GetLowerBound): Likewise.
1101         (ves_icall_System_Array_GetValue): Improved argument checking.
1102         (ves_icall_System_Array_SetValue): Improved argument checking.
1103
1104 2002-03-01  Martin Baulig  <martin@gnome.org>
1105
1106         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
1107         called with invalid arguments rather than just dying with g_assert().
1108         (ves_icall_System_Array_SetValue): Likewise.
1109         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
1110         raise a NotImplementedException instead.
1111         (ves_icall_System_Array_GetLength): Added argument checking.
1112         (ves_icall_System_Array_GetLowerBound): Added argument checking.
1113
1114 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
1115
1116         * object.h (mono_assert): new macros mono_assert and
1117         mono_assert_not_reached
1118
1119 2002-02-28  Martin Baulig  <martin@gnome.org>
1120
1121         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
1122         and "System::String::IsInterned" to "System::String::_IsInterned".
1123
1124 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
1125
1126         * icall.c: remove hacks for typebuilder. Added icall to create a
1127         modified type from a tybebuilder.
1128         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
1129         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
1130         to create a backing MonoClass for a TypeBuilder.
1131
1132 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
1133
1134         * class.c, class.h: more refactoring of class init.
1135         Export mono_class_setup_mono_type() and mono_class_setup_parent().
1136
1137 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
1138
1139         * marshal.c, marshal.h: start of marshaling interface.
1140
1141 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
1142
1143         * icall.c: fix order in assembly qualified name icall.
1144
1145 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
1146
1147         * class.c: do not free str, since we store it in the hash table.
1148         * reflection.h: add label field to MonoILExceptionInfo.
1149         * reflection.c: handle references to more than one assembly. Handle
1150         case when there isn't a module created in the assembly.
1151
1152 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
1153
1154         * class.c: Fix typo. Start refactoring of class init code.
1155
1156 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
1157
1158         * appdomain.c: exit with 1 on error.
1159         * class.c: we already have the name in MonoClassField.
1160         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
1161         MonoStreamHeader instead of an offset of image->raw_metadata.
1162
1163 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
1164
1165         * appdomain.c (mono_init): Be even more descriptive about the error.
1166
1167 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
1168
1169         * appdomain.c: give the user an informative message when corlib can't
1170         be loaded.
1171
1172 2002-02-26  Martin Baulig  <martin@gnome.org>
1173
1174         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
1175         New icall to get the time zone data.
1176
1177 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
1178
1179         * reflection.c: set virtual and raw size of section correctly.
1180         * threads.c: transfer domain information to newly created threads.
1181
1182 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
1183
1184         * class.c: when instancing a class in a domain, load the default
1185         vaules for static fields from the constant table. Fix System.Enum to
1186         not be an enum.
1187         * icall.c: implement Object::GetType() internalcall. Implemented
1188         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
1189         Fixed checking of binding flags in find_members().
1190         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
1191         * reflection.c: handle enumerations when writing to the constant
1192         table. Use a different object cache for types.
1193
1194
1195 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
1196
1197         * object.c (mono_object_isinst): fix for arrays
1198
1199         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
1200
1201 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
1202
1203         * object.c: don't use mprotect ()  and fix intern pool hash table
1204         lookup for big endian systems.
1205
1206 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
1207
1208         * icall.c: change type_is_subtype_of () signature.
1209
1210 2002-02-21  Mark Crichton  <crichton@gimp.org>
1211
1212         * rand.c, rand.h: Added random number generator for
1213         System.Security.Cryptography classes.
1214
1215         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
1216
1217         * icall.c: Added System.Security.Cryptography calls.
1218
1219 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
1220
1221         * class.c, icall.c, metadata.c: better support for pointer types.
1222         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
1223         * reflection.c: Add support for getting custom attrs for properties
1224         and simplify some code.
1225
1226 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
1227
1228         * icall.c: change getToken () and add custom attribute GetBlob()helper
1229         method.
1230         * reflection.h: add custom attrs array to the reflection builder structures.
1231         * reflection.c: encode and emit custom attributes for all the relevant
1232         reflection objects. Cache fieldref and methodref tokens. Change
1233         mono_image_create_token() interface to take a MonoDynamicAssembly.
1234         More complete custom attributes decoder. Load custom attributes for
1235         Assembly, Field, Method and Constructor objects, too. Make the
1236         returned array an Attribute[] one, not object[]. Added
1237         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
1238         custom attribute constructor.
1239
1240 2002-02-20  Dick Porter  <dick@ximian.com>
1241
1242         * icall.c:
1243         * rawbuffer.c:
1244         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
1245         problem code out for now).
1246
1247 2002-02-19  Radek Doulik  <rodo@ximian.com>
1248
1249         * object.c (mono_ldstr): use hash table to avoid multiple swapping
1250
1251 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
1252
1253         * icall.c: register the GetCustomAttributes method.
1254         * object.c, object.h: add mono_string_new_len ().
1255         * reflection.h, reflection.c: added mono_runtime_invoke(),
1256         mono_install_runtime_invoke(). Added
1257         mono_reflection_get_custom_attrs () to load custom attributes and
1258         create the attribute objects.
1259
1260 2002-02-19  Dick Porter  <dick@ximian.com>
1261         * threads-dummy-types.c:
1262         * threads-dummy-types.h:
1263         * threads-dummy.c:
1264         * threads-dummy.h:
1265         * threads-pthread-types.c:
1266         * threads-pthread-types.h:
1267         * threads-pthread.c:
1268         * threads-pthread.h:  Deleted obsolete files
1269
1270 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
1271
1272         * class.c (mono_class_vtable): runtime init the class when we
1273         allocate static class data.
1274
1275         * icall.c (ves_icall_System_Array_SetValue): check for null values.
1276
1277         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
1278         and String - but we will need generic marshalling support in the
1279         future. 
1280         (mono_init): set the domain name in a ms compatible way
1281
1282         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
1283         String[].
1284
1285 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
1286
1287         * object.c (mono_array_clone): use alloca() instead of g_malloc  
1288         for sizes
1289
1290         * appdomain.c (mono_domain_unload): impl.
1291
1292 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
1293
1294         * appdomain.c, object.c: fix intern pool implementation.
1295         * class.c: fix alignment code.
1296
1297 2002-02-16  Radek Doulik  <rodo@ximian.com>
1298
1299         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
1300         and s2 > s1, just copy lower bytes to be compatible with little
1301         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
1302         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
1303
1304         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
1305         force big_endian to be 1 for big endian machines 
1306         (ves_icall_iconv_new_decoder): ditto
1307
1308 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
1309
1310         * socket-io.c (convert_sockopt_level_and_name): If the system
1311         doesn't define SOL_IP or SOL_TCP, get them by hand using
1312         getprotobyname() and caching the values (because this could be a
1313         slow operation).
1314         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
1315         Use the appropriate struct when the system does support it. Ie,
1316         not all systems have struct ip_mreqn so use struct ip_mreq when
1317         appropriate.
1318
1319 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
1320
1321         * reflection.c: handle finally clauses.
1322
1323 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
1324
1325         * socket-io.c: use g_snprintf() instead of snprintf.
1326
1327 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
1328
1329         * reflection.c (mono_param_get_objects): Cast second argument to
1330         mono_method_get_param_names to a const char** to silence the
1331         compiler warning.
1332
1333         * appdomain.c (mono_domain_assembly_open): Put parens around the
1334         truth statement in the for-loop.
1335
1336         * unicode.c (iconv_convert): Got rid of a compiler warning about
1337         int i being unused when the system has a new iconv.
1338         (iconv_get_length): Same.
1339
1340         * image.c (load_class_names): Cast the second argument to
1341         g_hash_table_insert() to char* to hush compiler warnings about the
1342         arg being a const.
1343         (mono_image_open): Same here.
1344
1345         * socket-io.c: Don't conditionally include sys/filio.h or
1346         sys/sockio.h here anymore since we now get them from
1347         io-layer/io-layer.h
1348         (inet_pton): If the system doesn't support inet_aton, implement
1349         using inet_addr and also #define INADDR_NONE if it isn't defined
1350         by the system.
1351
1352 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
1353
1354         * metadata.c, metadata.h: added function to get packing and size info
1355         of a typedef.
1356         * reflection.h, reflection.c: handle field RVA data. Save info about
1357         the table layout if needed. Assign typedef indexes to all the types
1358         before dumping the info about them to avoid forward reference problems.
1359
1360 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
1361
1362         * socket-io.c (convert_sockopt_level_and_name): ifdef
1363         SO_ACCEPTCONN because it is not defined on my system (old debian)
1364
1365 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
1366
1367         * opcode.c: use stddef.h to get NULL.
1368
1369 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
1370
1371         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
1372         for FIONBIO, FIONREAD and SIOCATMARK.
1373         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
1374         define INADDR_NONE and besides, inet_addr() is deprecated and
1375         should not be used. Use inet_pton() instead - it also has the
1376         added bonus that it can easily handle IPv6 addresses as well.
1377         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
1378
1379 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
1380
1381         * decimal.c: remove _MSC_VER conditional.
1382
1383 2002-02-13  Dick Porter  <dick@ximian.com>
1384
1385         * socket-io.c: 
1386         * icall.c: Internal calls for Blocking, Select, Shutdown,
1387         GetSocketOption and SetSocketOption
1388
1389 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
1390
1391         * assembly.cs: better resolver: use it instead of some kludgy
1392         code.
1393
1394 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
1395
1396         * reflection.c: the best way to speed-up the compiler is to avoid
1397         infinite loops.
1398
1399 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
1400
1401         * class.c (mono_class_vtable): changed the object layout
1402         (obj->vtable->class). 
1403         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
1404
1405 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
1406
1407         * assembly.c: look for assemblies in the assembly dir, too.
1408
1409 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
1410
1411         * class.c: fix thinko in mono_class_from_type().
1412
1413 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
1414
1415         * exception.h, exception.c: added TypeLoadException.
1416         * object.h, object.c: added mono_array_clone ().
1417         * icall.c: handle throwOnError in AssemblyGetType().
1418         Added Array.Clone().
1419         * opcode.h, opcode.c: use a single value for the opcode val.
1420         Compile fix for non-gcc compilers.
1421
1422 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
1423
1424         * opcodes.c, opcodes.h: export interesting info about opcodes.
1425
1426 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
1427
1428         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
1429         icalls. 
1430
1431         * class.c (class_compute_field_layout): set element_class for enums
1432         (mono_class_create_from_typedef): set element_class for normal classes
1433
1434         * icall.c (ves_icall_System_Enum_get_value): impl.
1435
1436         * class.c (mono_class_create_from_typedef): do not set valuetype
1437         flag for System.ValueType and System.Enum
1438
1439 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
1440
1441         * unicode.c (iconv_convert): fix big endian problem.
1442
1443 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
1444
1445         * class.c: add asserts if we are ever going to scribble over memory.
1446         * socket-io.c: not all systems have AF_IRDA defined.
1447
1448 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
1449
1450         * class.c (class_compute_field_layout): do not consider static
1451         fields to compute alignment
1452
1453 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
1454
1455         * appdomain.c (mono_appdomain_get): impl.
1456         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
1457
1458 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
1459
1460         * icall.c: ignore "file://" prefix when loading an assembly.
1461
1462 2002-01-23  Dick Porter  <dick@ximian.com>
1463
1464         * socket-io.c:
1465         * icall.c:
1466         * Makefile.am: Added socket support
1467
1468 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
1469
1470         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
1471         code back.  This should return the assemblies that are loaded by
1472         the runtime on behalf of an application domain. 
1473
1474         The current implementation is still broken, it just returns every
1475         assembly loaded, but until we get real applications domain this
1476         will do.
1477
1478 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
1479
1480         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
1481         AppDomain object.
1482
1483 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
1484
1485         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
1486         the mono_class_from_name lookup.
1487         (ves_icall_get_parameter_info): ditto.
1488         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
1489         method.
1490         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
1491
1492 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
1493
1494         * class.c: load also nested classes on class init.
1495         System.ValueType instance methods gets passed boxed
1496         values, unless methods in derived classed that get a pointer to the
1497         data.
1498         * icall.c: use better name parsing code in GetType().
1499         * image.c, image.h: add mono_image_loaded ().
1500         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
1501         * reflection.c, reflection.h: added mono_reflection_parse_type().
1502
1503 2002-01-22  Veronica De Santis <veron78@interfree.it>
1504
1505         * icall.c : Added mapping of internal calls for Manual and Auto reset events
1506         * threads.c : Added the implementation of internal calls for events
1507         * threads.h : Added prototypes of internal calls for events
1508         
1509 2002-01-21  Radek Doulik  <rodo@ximian.com>
1510
1511         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
1512
1513 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
1514
1515         * class.c (mono_class_init): set min_align to 1 (instead of 0)
1516         (mono_class_value_size): use min_align
1517
1518 2002-01-20  Dick Porter  <dick@ximian.com>
1519
1520         * threads.h:
1521         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
1522         so it compiles on w32.
1523
1524 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
1525
1526         * metadata.c (mono_type_stack_size): impl.
1527
1528         * class.c (mono_class_get_field): impl. memberref token
1529
1530 2002-01-16 Veronica De Santis <veron78@@interfree.it>
1531
1532         * icall.h : Added the internal calls mapping for CreateMutex_internal
1533                     and ReleaseMutex_internal.
1534         * threads.h : Added the prototype of mutexes internal calls.
1535         * threads.c : Added the implementations of mutexes internal calls.
1536
1537 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
1538
1539         * metaparse.h: removed unused file.
1540         * reflection.c, reflection.h: added stream_data_align () function 
1541         to align data in streams and keep stream aligned. Add support for
1542         exception support in method headers.
1543
1544 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
1545
1546         * unicode.c: make iconv_convert () return the number of bytess written
1547         in the output buffer.
1548
1549 2002-01-15  Dick Porter  <dick@ximian.com>
1550         * threads.c: Make the runtime's idea of infinite timeouts coincide
1551         with the class library's
1552
1553         Fix a particularly egregious bug in mono_thread_cleanup(). That
1554         code was so utterly bogus it must have been written on a Monday.
1555
1556 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
1557
1558         * reflection.h: add subtypes field to TypeBuilder.
1559         * reflection.c: encode constants for literal fields.
1560         Handle subtypes. Fix user string token (and add a zero byte)
1561         at the end.
1562         
1563 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
1564
1565         * class.c (mono_class_init): bug fix: assign slot numbers for
1566         abstract methods.
1567
1568 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
1569
1570         * reflection.c: don't try to output a code RVA for abstract methods.
1571         Small fixes for method header format. Output parameter info to the
1572         ParamDef table. Save method overriding info to MethodImpl table.
1573         Fix property support. Allow typedef.extends to be a type in the
1574         building assembly.
1575         * verify.c: fix off-by-one error.
1576
1577 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
1578
1579         * class.c: fix mono_class_from_mono_type () for szarray types.
1580         Remove unused cache check in mono_class_from_type_spec().
1581         * icall.c: *type_from_name () functions handle simple arrays and byref.
1582         * reflection.c: handle byref and szarray types. Handle methods without
1583         body (gets P/Invoke compilation working). Handle types and fields in
1584         get_token ().
1585         * reflection.h: add rank to MonoTypeInfo.
1586
1587 2002-01-10  Dick Porter  <dick@ximian.com>
1588
1589         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
1590         internal calls
1591
1592 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
1593
1594         * icall.c: initialize class in type_from_handle ().
1595         Loop also in parent classes for get_method ().
1596         * reflection.c: properly encode class and valuetype types.
1597         Start on encoding TypeBuilder types. Handle fieldrefs.
1598         Use correct length when registering a user string.
1599         Handle ConstructorBuilder and MonoMethod in get_token ().
1600         Make mono_type_get_object () aware of cached types.
1601         * object.c: back out change to mono_string_new ().
1602
1603 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
1604         * object.c: mono_string_new should return a NULL when the string 
1605         passed in is NULL -- not try to deference it.
1606         
1607 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
1608
1609         * icall.c: hack to make IsSubType work for TypeBuilders.
1610         * reflection.c: emit constructors before methods.
1611         Retrieve param names in mono_param_get_objects().
1612
1613 2002/01/05  Nick Drochak  <ndrochak@gol.com>
1614
1615         * Makefile.am: fix list of headers and sources so automake 1.5
1616         doesn't complain. Removed \# at end of list.
1617
1618 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
1619
1620         * reflection.c: get token for a method ref. Set return type of
1621         constructor to void.
1622         * loader.c: debug message.
1623         * class.c: typo fix.
1624
1625 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
1626
1627         * icall.c: fix array init with rank > 1. FindMembers
1628         loops in parent class as well.
1629         * image.c: do not insert nested types in name cache.
1630         * reflection.c: warning fix.
1631         * reflection.h: add override method (for interface impl).
1632
1633 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
1634
1635         * metadata.c: fix customattr decoding.
1636
1637 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
1638
1639         * rawbuffer.cs: Added native Win32 implementation, avoids using
1640         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
1641
1642 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
1643
1644         * class.c: make the low-level routines handle the cache.
1645
1646 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
1647
1648         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
1649
1650 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
1651
1652         * class.c: fix mono_array_element_size() for objects.
1653         * class.h, class.c: add properties to MonoClass and load them
1654         at init time.
1655         * icall.c: check with isinst() when assigning a value to an array
1656         instead of requiring the classes to match exactly.
1657         Implemented icall for System.Type::GetType().
1658         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
1659         enums. Handle bindingflags when looking for methods and fields.
1660         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
1661         and mono_metadata_methods_from_property().
1662         * reflection.h, reflection.c: added structures for propreties,
1663         parameters and enums. Implemented mono_property_get_object() and
1664         mono_param_get_objects().
1665
1666 2001-12-18  Dick Porter  <dick@ximian.com>
1667
1668         * file-io.c: Use mono_string_to_utf16() instead of
1669         mono_string_chars()
1670
1671         * object.c: Added mono_string_to_utf16(), which copies the non
1672         NULL-terminated MonoString into a new double-null-terminated
1673         buffer.
1674
1675 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
1676
1677         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
1678
1679 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
1680
1681         * file-io.c: raise exceptions if handle is invalid.
1682
1683 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
1684
1685         * assembly.c: yet another check for mscorlib.
1686         * class.c, class.h: load nesting info for classes.
1687         * icall.c: many new functions to support the Reflection classes.
1688         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
1689         * reflection.h, reflection.c: mono_image_create_token(),
1690         mono_assembly_get_object(), mono_type_get_object(),
1691         mono_method_get_object(), mono_field_get_object(): methods to return
1692         objects that parallel the C representation of assemblies, types,
1693         methods, fields.
1694
1695 2001-12-11  Dick Porter  <dick@ximian.com>
1696
1697         * icall.c:
1698         * file-io.c: Internal calls for file IO.
1699
1700 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
1701
1702         * tabledefs.h: missing FileAttributes.
1703         * verify.h, verify.c: use is_valid_string () to simplify and check for
1704         valid strings more correctly. Fix warnings and speeling.
1705         Check more tables: Filed, File, ModuleRef, StandAloneSig.
1706         Check code: branches, maxstack, method calls.
1707
1708 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
1709
1710         * object.c (mono_object_allocate): removed static, so that the jit
1711         can allocate value types.
1712
1713         * icall.c (ves_icall_System_DateTime_GetNow): impl.
1714
1715 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
1716
1717         * class.c: init enum types right away and register the
1718         token->MonoClass map in mono_class_create_from_typedef ().
1719         * verify.h, verify.c: first cut of the verifier.
1720         * pedump.c: add --verify switch to verify metadata tables.
1721         * tabledefs.h: add some missing enums.
1722
1723 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
1724
1725         * class.c (mono_install_runtime_class_init): impl.
1726         (mono_class_init): renamed mono_class_metadata_init to
1727         mono_class_init, also removed the metadata_inited flag
1728
1729         * object.c (mono_object_isinst): use faster algorithm
1730
1731 2001-11-30  Radek Doulik  <rodo@ximian.com>
1732
1733         * mono-endian.h: reverted last change
1734         added function prototypes
1735
1736         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
1737         add mono-endian.c back
1738
1739         * mono-endian.c: returned back, as Paolo pointed out, it's needed
1740         for unaligned access, I've mistaked it with endianess. I am
1741         sorry.
1742         (mono_read16): fix reverted endianess
1743         (mono_read64): ditto
1744         (mono_read32): ditto
1745
1746 2001-11-30  Dick Porter  <dick@ximian.com>
1747
1748         * exception.c: Implement mono_exception_from_name()
1749
1750 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
1751
1752         * metadata.h, metadata.c: remove params_size and locals_size and their
1753         calculation from the metadata code: they are only usefult to the
1754         interp.
1755
1756 2001-11-29  Radek Doulik  <rodo@ximian.com>
1757
1758         * object.c (mono_ldstr): swap bytes here, it's probably not the
1759         best place, but works for me now, I'll redo it once I know mono
1760         better, also note that I add PROT_WRITE and don't reset back, also
1761         note that it's only affects big endians, so x86 should be OK
1762
1763         * mono-endian.h (read16): use just glib macros for both endians
1764
1765         * mono-endian.c: removed as glib macros are used in in
1766         mono-endian.h so we don't need to care about endianess for read
1767         macros as glib does that for us already
1768
1769 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
1770
1771         * class.h, class.h: take minimum alignment into consideration so
1772         that the fields of a class remain aligned also when in an array.
1773
1774 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
1775
1776         * loader.h, loader.c: add mono_method_get_param_names().
1777         * class.c: 0-init class fields.
1778
1779 2001-11-26  Dick Porter  <dick@ximian.com>
1780
1781         * icall.c:
1782         * threads-types.h:
1783         * threads.c: New file that handles System.Threading on all platforms
1784
1785         * object.c: 
1786         * object.h: Remove the synchronisation struct from MonoObject,
1787         replace it with a pointer that gets initialised on demand
1788
1789         * Makefile.am: Replace all the system-specific threading code with
1790         a single file that uses the new wrapper library
1791
1792 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
1793
1794         * class.c, class.h: add mono_install_trampoline() so that the runtime
1795         can register a function to create a trampoline: removes the ugly
1796         requirement that a runtime needed to export arch_create_jit_trampoline.
1797         * object.h, object.c: added mono_install_handler() so that the runtime
1798         can install an handler for exceptions generated in C code (with
1799         mono_raise_exception()). Added C struct for System.Delegate.
1800         * pedump.c: removed arch_create_jit_trampoline.
1801         * reflection.c: some cleanups to allow registering user strings and
1802         later getting a token for methodrefs and fieldrefs before the assembly
1803         is built.
1804         * row-indexes.h: updates and fixes from the new ECMA specs.
1805
1806 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
1807
1808         * class.h, class.c: add enum_basetype field to MonoClass.
1809         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
1810         to get index in the constant table reated to a field, param or
1811         property.
1812         * reflection.h, reflection.c: handle constructors. Set public-key and
1813         version number of the built assembly to 0.
1814         * row-indexes.h: update from new ECMA spec.
1815
1816 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
1817
1818         * class.h, class.c: add a max_interface_id to MonoClass.
1819         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
1820         since it's used to do that. Added mono_type_type_from_obj().
1821         Make GetType() return NULL instead of segfaulting if the type was not
1822         found. Handle simple arrays in assQualifiedName.
1823         * object.h: add a struct to represent an Exception.
1824         * reflection.c: output call convention in method signature.
1825         Add code to support P/Invoke methods and fixed offsets for fields.
1826
1827 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
1828
1829         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
1830         the value.
1831         * icall.c: use mono_array_addr instead of array->vector: fixes the
1832         reflection image writing.
1833         * reflection.c: init call convention byte to 0 in method signature.
1834         Encode the property signature. Don't output property-related methods
1835         twice. Really process the properties for a type (don't cast a field to
1836         a property, my mom always told me that).
1837         Fix 64 bit issues in pointer alignment in a different and more
1838         readable way.
1839
1840 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
1841
1842         * loader.h: Removed type class from MonoDefaults, added monotype
1843
1844         * loader.c: Loaded MonoType, removed loading of Type
1845
1846         * icall.c (my_mono_new_object): Now returns a System.MonoType,
1847         and fills in System.Type._impl with a RuntimeTypeHandle rather
1848         than the actual MonoClass *
1849
1850         (ves_icall_type_from_handle): change from type_class to
1851         monotype_class
1852
1853         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
1854         implemented
1855
1856         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
1857         implemented
1858
1859         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
1860
1861         (ves_icall_System_Reflection_Assembly_GetType): implemented
1862
1863         (ves_icall_System_MonoType_assQualifiedName): implemented
1864
1865         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
1866
1867 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
1868
1869         * assembly.c (mono_assembly_open): Implement a cache for the
1870         assemblies. 
1871
1872         (mono_assembly_close): only destroy the assembly when the last
1873         reference is gone.
1874         
1875 2001-11-09  Dick Porter  <dick@ximian.com>
1876
1877         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
1878
1879 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
1880
1881         * class.c (mono_class_metadata_init): bug fix: compute the right slot
1882
1883 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
1884
1885         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
1886         from Martin Weindel.
1887         * object.h: add mono_string_chars ().
1888
1889 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
1890
1891         * reflection.c (build_compressed_metadata): Eliminates warnings
1892         and uses 64-bit clean code.
1893
1894         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
1895         (mono_type_equal): Change signature to eliminate warnings.
1896
1897 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
1898
1899         * icall.c, loader.c: remove the internalcall array constructors.
1900         Changes to match the new MonoArray structure.
1901         * object.h, object.c: an array object doesn't allocate an extra
1902         vector. Add mono_array_new_full () to create jagged arrays easily.
1903
1904 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
1905
1906         * metadata.h, metadata.c: add mono_metadata_field_info () to
1907         retreive all the info about a field from vairous tables.
1908         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
1909         * class.h, class.c: augment MonoClassField with more info.
1910         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
1911         policy and load a field's RVA if needed.
1912
1913 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
1914
1915         * class.c (mono_class_metadata_init): create a trampoline for all
1916         virtual functions instead of actually compiling them.
1917
1918 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
1919
1920         * class.h, class.c: include name in MonoClassField.
1921         * class.c: fix fundamental type of System.Object and System.String.
1922         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
1923         tokens in ldtoken.
1924         * icall.c: remove internalcalls for the Reflection stuff that is now
1925         done in C# code.
1926         * loader.c: mono_field_from_memberref () implementation.
1927         * mono-endian.c: thinko (s/struct/union/g).
1928         * object.c, object.h: make the mono_string_* prototypes actually use
1929         MonoString instead of MonoObject.
1930         * reflection.c, reflection.h: updates for changes in the reflection
1931         code in corlib: we use C structures that map to the actual C# classes.
1932         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
1933         fat method header if needed and use the info from the ILGenerator for
1934         methods. Handle fields in types. Misc fixes.
1935
1936 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
1937
1938         * class.c (mono_class_metadata_init): bug fix: always allocate
1939         space for static class data
1940
1941 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
1942
1943         * class.c (mono_compute_relative_numbering): use relative
1944         numbering to support fast runtime type checks.
1945
1946 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
1947
1948         * class.c (mono_class_create_from_typeref): added debugging output
1949         to print class name when MonoDummy is returned instead of real class
1950
1951 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
1952
1953         * class.c (mono_class_metadata_init): interface offset table now
1954         contains pointers into the vtable - this is more efficient for the jit
1955
1956 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
1957
1958         * class.c (mono_class_metadata_init): use a temporary vtable (the
1959         old algorithm only worked for the interpreter, but not for the jit)
1960
1961 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
1962
1963         * loader.c (method_from_memberref): use mono_class_get to get the
1964         class of an array instead of using System.Array directly.
1965         (mono_get_method): also add MEMBERREF methods to the method cache
1966         which usefull for arrays.
1967
1968 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
1969
1970         * pedump.c (arch_compile_method): added to compute vtable entry
1971
1972         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
1973         number of interfaces.
1974         
1975         * class.h: merged MonoArrayClass into MonoClass
1976
1977         * class.c (mono_class_create_from_typedef): compute the vtable size and
1978         allocate space to include the vtable inside MonoClass
1979         (mono_class_metadata_init): initialize the vtable
1980
1981 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
1982
1983         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
1984         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
1985         * image.c: endian fixes by Laurent Rioux.
1986         * object.h, object.c: rename MonoStringObject to MonoString and
1987         MonoArrayObject to MonoArray. Change some function names to conform to
1988         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
1989         guint16* as first argument, so don't use char*.
1990         Provide macros to do the interesting things on arrays in a portable way.
1991         * threads-pthread.c: updates for the API changes and #include <sched.h>
1992         (required for sched_yield()).
1993         * icall.c: updates for the API changes above.
1994         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
1995         platforms that need them.
1996
1997 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
1998
1999         * class.c: set the correct type for all the fundamental
2000         type when loading the class.
2001
2002 2001-10-05  Dick Porter  <dick@ximian.com>
2003
2004         * threads-pthread.c (pthread_mutex_timedlock): Simple
2005         compatibility version for C libraries that lack this call.
2006
2007 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
2008
2009         * class.c: MonoTypes stored in MonoClass are stored as
2010         fundamental MonoTypes when the class represents a
2011         fundamental type (System.Int32, ...).
2012         The TypeHandle return by ldtoken is a MonoType*.
2013         * icall.c: ves_icall_get_data_chunk () write out all the
2014         PE/COFF stuff. Implement ves_icall_define_method (),
2015         ves_icall_set_method_body (), ves_icall_type_from_handle ().
2016         * image.c: properly skip unknown streams.
2017         * loader.h, loader.c: add type_class to mono_defaults.
2018         * metadata.c, metadata.h: export compute_size () as
2019         mono_metadata_compute_size () with a better interface.
2020         Typo and C&P fixes.
2021         * pedump.c: don't try to print the entry point RVA if there is no entry point.
2022         * reflection.c, reflection.h: many cleanups, fixes, output method
2023         signatures and headers, typedef and typeref info, compress the metadata
2024         tables, output all the heap streams, cli header etc.
2025         * row-indexes.h: typo fixes.
2026
2027 2001-10-04  Dick Porter  <dick@ximian.com>
2028
2029         * object.h: Add a synchronisation mutex struct to MonoObject
2030
2031         * object.c (mono_new_object): Initialise the object
2032         synchronisation mutexes
2033
2034         * icall.c: System.Threading.Monitor internal calls
2035         
2036         * threads-pthread.h:
2037         * threads-pthread.c: System.Threading.Monitor internal calls
2038
2039         * threads-types.h: New file, includes the system-specific thread
2040         structures
2041         
2042         * threads-pthread-types.h:
2043         * threads-pthread-types.c: New files, handle pthread-specific
2044         synchronisation types
2045
2046         * threads-dummy-types.h: 
2047         * threads-dummy-types.c: New files of dummy support for
2048         thread-specific types
2049
2050         * metadata.c:
2051         * image.c:
2052         * pedump.c: include mono-endian.h not endian.h
2053         
2054         * Makefile.am: More threads files.
2055         Name mono-endian.h not endian.h
2056
2057 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
2058
2059         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
2060         stuff and implement a few more bits.
2061         * icall.c: a field needs to be dereferenced twice. Do not use the same
2062         name for two variables in the same scope.
2063         * image.c, image.h: cleanups.
2064
2065 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
2066
2067         * class.c (mono_class_metadata_init): bug fix: compute the right size
2068
2069 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
2070
2071         * icall.c: implemented some of the Reflection internalcalls.
2072         * image.c, image.h: start writing out the PE/COFF image.
2073         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
2074         that does the reverse than decode_blob_size ().
2075         * object.c: use mono_metadata_encode_value (). Move here
2076         temporary implementation of mono_string_to_utf8 ().
2077         * rawbuffer.c: make malloc_map static.
2078
2079 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
2080
2081         * metadata.c: fix type comparison for arrays.
2082         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
2083         Added a couple of new classes to monodefaults.
2084         * icall.c: added a couple of Reflection-related internalcalls.
2085         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
2086         Added a byval_arg MonoType to MonoClass.
2087
2088 2001-09-28  Dick Porter  <dick@ximian.com>
2089
2090         * icall.c:
2091         * threads-pthread.h: 
2092         * threads-pthread.c: Implemented internal calls for
2093         LocalDataStoreSlot operations.  Applied mutexes around all shared
2094         data.  Reworked the thread creation and Start() operations to
2095         avoid a race condition.
2096         
2097         * threads-dummy.h:
2098         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
2099
2100 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
2101
2102         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
2103
2104 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
2105
2106         * class.c, loader.c: warn and return NULL instead of erroring out.
2107         * icall.c: added System.AppDomain::getCurDomain().
2108         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
2109
2110 2001-09-25  Dick Porter  <dick@ximian.com>
2111
2112         * threads-pthread.h:
2113         * threads-pthread.c: Implemented timed thread joining and added
2114         System.Threading.Thread::Join_internal internal call
2115
2116         * icall.c: Added System.Threading.Thread::Join_internal internal call
2117
2118         * threads-dummy.h:
2119         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
2120
2121 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
2122
2123         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
2124         mono_string_intern () to implement the semantics of the ldstr opcode
2125         and the interning of System.Strings.
2126         * icall.c: provide hooks to make String::IsIntern and String::Intern
2127         internalcalls.
2128
2129 2001-09-23  Dick Porter  <dick@ximian.com>
2130
2131         * threads-dummy.c: 
2132         * threads-dummy.h: New files of dummy threading routines
2133
2134         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
2135         support code based on system specifics
2136
2137         Rename PTHREAD_LIBS to THREAD_LIBS
2138         
2139 2001-09-23  Dick Porter  <dick@ximian.com>
2140
2141         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
2142         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
2143         internal calls.
2144         (mono_thread_init): Set up a Thread object instance to return when
2145         the main thread calls Thread.CurrentThread
2146         (mono_thread_cleanup): Wait for all subthreads to exit
2147
2148         * icall.c: New internal calls for System.Threading.Thread::Sleep
2149         (including Schedule) and CurrentThread
2150
2151         * threads.h: New file, to insulate thread-specific stuff from the
2152         rest of the code
2153
2154 2001-09-21  Dick Porter  <dick@ximian.com>
2155
2156         * threads-pthread.h: 
2157         * threads-pthread.c: New file, for handling pthreads-style
2158         threading support.  Start() now starts a new thread and executes
2159         the ThreadStart delegate instance.
2160
2161         * icall.c: Added the internalcall for
2162         System.Threading.Thread::Start_internal
2163
2164         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
2165
2166 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
2167
2168         * loader.c: work around the different signatures for delegates
2169         constructors csc generates in compiled code vs the ones compiled in mscorlib.
2170
2171 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
2172
2173         * class.h, class.c: add mono_class_get_field_from_name ().
2174         * *: Fix C comments and other ANSI C issues.
2175
2176 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
2177
2178         * endian.h, assembly.c: fix some endianness issues.
2179
2180 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
2181
2182         * loader.h, load.c: add delegate_class to mono_defaults.
2183         Handle runtime provided methods in mono_get_method ().
2184
2185 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
2186
2187         * loader.c (mono_get_method): use pinvoke for internal call
2188
2189         * icall.c: use pinvoke for internal call
2190
2191         * loader.c (method_from_memberref): set the method name
2192
2193 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
2194
2195         * metadata.c: help the compiler generate better code for
2196         mono_class_from_mono_type ().
2197
2198 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
2199
2200         * class.c (mono_class_metadata_init): delayed computing of the
2201         class size to mono_class_metadata_init ()
2202
2203 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
2204
2205         * class.c, class.h: add an interfaces member to MonoClass.
2206         * image.c, image.h: add assembly_name field to MonoImage
2207         from the assembly table.
2208         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
2209
2210 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
2211
2212         * class.c: Handle Array in mono_class_from_mono_type ().
2213         * metadata.c, pedump.c: some endian fixes.
2214
2215 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
2216
2217         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
2218         * metadata.c: fix small problem introduced with the latest commit.
2219
2220 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
2221
2222         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
2223         We don't need a MonoMetadata pointer anymore to compare signatures in
2224         mono_metadata_signature_equal (), update callers.
2225         Reduced memory usage an number of allocations for MonoMethodHeader and
2226         MonoMethodSignature.
2227
2228 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
2229
2230         * metadata.c: added compare for szarray.
2231
2232 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
2233
2234         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
2235         and add a couple more types to it and mono_defaults. Give an hint on
2236         classes that need implementing in our corlib and are referenced
2237         in mscorlib.
2238
2239 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
2240
2241         * class.h, class.c: keep track if a class is also an Enum.
2242         * loader.c: Implement a couple more types for use in libffi
2243         marshalling. Gives better diagnostics when failing to dlopen
2244         a library. Set method->klass for P/Invoke methods, too.
2245
2246 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
2247
2248         * class.c, class.h: add a MonoType this_arg to MonoClass that
2249         represents a pointer to an object of the class' type that
2250         can be used by the interpreter and later the type cache.
2251         Add best guess alignment info for valuetype objects.
2252
2253 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
2254
2255         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
2256         into MonoType: one less level of indirection and allocation and
2257         simplifies quite a bit of code. Added cache for MonoTypes that are
2258         used frequently, so that we don't need to allocate them all the time.
2259
2260 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
2261
2262         * class.c (mono_class_create_from_typedef): System.Enum is also a
2263         value type, although it does not derive from System.ValueType
2264         (maybe a bug in the ms compiler?)
2265
2266         * metadata.c (mono_type_size): return the right size for value types
2267
2268         * loader.c (mono_get_method): only initialize method header if not abstract
2269
2270         * class.c (mono_class_from_mono_type): use mono_default values. 
2271
2272 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
2273
2274         * *: use MonoClass pointers instead of <type_tokens>
2275         
2276         * class.h: new flag: metadata_inited.
2277
2278         * class.c (mono_class_metadata_init): impl.
2279         (mono_class_instance_size): impl.
2280         (mono_class_data_size): impl.
2281
2282 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
2283
2284         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
2285         MonoClass now has the name and name_space fields. 
2286         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
2287         mono_get_method () takes and optional MonoClass as argument.
2288         Removed mono_typedef_from_name() and added mono_class_token_from_name()
2289         instead that takes advantage of a map from class names to typedef
2290         tokens in MonoImage.
2291
2292 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
2293
2294         * metadata.c: zero is not a valid alignment boundary.
2295         Merge MONO_TYPE_VOID in default decoding code.
2296
2297 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
2298
2299         * image.h: merged MonoMetadata into MonoImage
2300
2301         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
2302         identify the type of elements.
2303
2304 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
2305
2306         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
2307         * cil-coff.h: split MonoMSDOSHeader and add size info.
2308         * image.c: add some consistency checks.
2309         * metadata.c: fix row size computation: one programmer
2310         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
2311         add explanation for the locator routine.
2312         Fix decoding of size in method header.
2313         
2314 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
2315
2316         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
2317         (g_concat_dir_and_file): Bring g_concat_dir_and_file
2318         function from gnome-libs.  This uses the right path separator
2319         based on the OS, and also works around a bug in some systems where
2320         a double slash is not allowed. 
2321         (default_assembly_name_resolver): Use g_concat_dir_and_file
2322         (mono_assembly_open): ditto.
2323
2324 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
2325
2326         * metadata.c (mono_metadata_signature_equal): impl.
2327
2328         * *: void is now a realy MonoType (instead of using NULL)
2329         
2330         * metadata.c (do_mono_metadata_parse_type): use
2331         mono_metadata_parse_type to parse void value.
2332
2333 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
2334
2335         * metadata.c, metadata.h: in the signature and method header store
2336         only the space required for holding the loca vars and incoming arguments.
2337
2338 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
2339
2340         * metadata.c (do_mono_metadata_parse_type): treat void like any
2341         other type (instead of assigning NULL);
2342
2343 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
2344
2345         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
2346
2347 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
2348
2349         * image.c (do_mono_image_open): added a cache for arrays.
2350
2351 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
2352
2353         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
2354         decode a single column from a row in a metadata table and changes
2355         to take advantage of it in the typedef locator (gives a nice speed up).
2356         Store offset info for function params.
2357
2358 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
2359
2360         * image.h (MONO_IMAGE_IS_CORLIB): removed 
2361
2362 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
2363
2364         * assembly.c: how could mono_assembly_close () had ever worked?
2365         * metadata.c, metadata.h: provide offset info for local vars.
2366         Implement mono_type_size () to take care of alignment as well
2367         as size (it was mono_field_type_size in cli/class.c before).
2368
2369 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
2370
2371         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
2372
2373         * assembly.h (CORLIB_NAME): set to corlib.dll
2374
2375         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
2376
2377 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
2378
2379         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
2380         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
2381         tokentype.h: massive namespace cleanup.
2382
2383 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
2384
2385         * metadata.h, metadata.c: decode exception clauses when parsing method header.
2386
2387 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
2388
2389         * metadata.c (mono_metadata_free_type): added check for type !=
2390         NULL (void) before calling mono_metadata_free_type()
2391
2392 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
2393
2394         * metadata.h, row_indexes.h: added header with enumerations to use
2395         to index in the columns from tables in metadata and to decode coded
2396         tokens: we should start using this instead of embedding magic numbers
2397         all over the code.
2398
2399 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
2400
2401         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
2402         Move metadata_t info from cli_image_info_t to MonoImage, where
2403         it's easily accessible. Changed all the uses accordingly.
2404         Added the method and class caches to MonoImage.
2405         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
2406         and mono_metadata_decode_value () signature to be more consistent
2407         with the other parse functions (and simplify code). Taken advantage
2408         of zero-length array allocation with GCC. Removed reduntant (and
2409         wrong) MonoFieldType struct and use MonoParam instead. Changed
2410         mono_metadata_parse_field_type () to use common code for parsing.
2411         Added mono_metadata_typedef_from_field () and
2412         mono_metadata_typedef_from_method () to lookup a typedef index from a
2413         field or method token.
2414         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
2415
2416 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
2417
2418         * metadata.c (mono_metadata_parse_field_type): Implement. 
2419         (do_mono_metadata_parse_type): Split engine from
2420         mono_metadata_parse_type, so that we can create smaller structures
2421         for things that just have one pointer to the MonoType (look at
2422         the MonoFieldType)
2423
2424 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
2425
2426         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
2427         as Jan Gray found out, it is incorrect. 
2428
2429 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
2430
2431         * assembly.c: Implement asssembly loading.  This loads an image
2432         and loads all the referenced assemblies.  Come to think of it, we
2433         could always do lazy loading of the assemblies. 
2434
2435         * image.c (mono_image_open): Keep loaded images in a hashtable.
2436
2437         * image.h (MonoImage): Add reference count.
2438
2439 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
2440
2441         * assembly.c (mono_assembly_open): Keep track of the file name in
2442         case the assembly has no ASSEMBLY table.
2443
2444         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
2445         from get.c here.
2446
2447 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
2448
2449         * metadata.c, metadata.h: decode local vars in method header
2450         parse function. Change callers accordingly.
2451
2452 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
2453
2454         * metadata.h, cil-coff.h: protect against multiple inclusion.
2455         Added some new structures to hold information decoded from metadata:
2456         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
2457         and relevant decoding/free functions.
2458         * metadata.c: implement decoding functions. Add warning for out of bounds
2459         index in mono_metadata_locate(). Implement mono_get_method () to retreive
2460         all the info about a method signature and invocation. Remove check on
2461         uninitialized local var in parse_mh() and fix memory leak.
2462
2463 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
2464
2465         * metadata.h: More macros.
2466
2467         * tokentype.h: New file.
2468
2469 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
2470
2471         * assembly.c: added a consistency check and initialize
2472         some structures with g_new0().
2473         * metadata.c: fixed a couple more bugs in table size computation
2474         and add other checks for out-of bound access to metadata.
2475
2476 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
2477
2478         * metatada.c: fix bugs computing table sizes. Spew a
2479         warning when index in string heap is out of bounds.
2480
2481 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
2482
2483         * metadata.h: Add a couple of macros to manipulate tokens. 
2484
2485 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
2486
2487         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
2488         cli_section_tables).
2489
2490 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
2491
2492         * metadata.c (mono_metadata_user_string): New function, provides
2493         access to the UserString heap. 
2494
2495 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
2496
2497         * metadata.c: Add inline documentation.
2498
2499 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
2500
2501         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
2502         files. 
2503
2504 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
2505
2506         * typeattr.h: New file, TypeAttribute flags. 
2507
2508 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
2509
2510         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
2511         mono_assembly_ensure_section): Section loading code.
2512         (load_section_tables): Load the sections.
2513
2514         * mono/metadata/metadata.c (mono_metadata_locate_token,
2515         mono_metadata_locate): Functions to locate the information
2516         definition given a token or a table and an index.
2517         (mono_metadata_compute_table_bases): New.
2518         (compute_size): New function to compute the sizes of the various
2519         tables.
2520
2521         * mono/metadata/metadata.h: Finish listing the different index
2522         types. 
2523
2524         * mono/metadata/pedump.c: Improve to dump new information.
2525
2526 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
2527
2528         * mono/metadata/metadata.c: Entered all the tables matching
2529         Beta2. 
2530
2531         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
2532