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