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