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