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