2003-03-29 Miguel de Icaza <miguel@ximian.com>
[mono.git] / mono / metadata / ChangeLog
1 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
2
3         * blob.h: Add a couple of new MonoType types definitions.
4
5         * tabledefs.h: Add a couple of new call convs.
6
7 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
8
9         * reflection.h (MonoReflectionDynamicAssembly): track changes in
10         the layout of the class.
11
12         * reflection.c (alloc_table): double the size on overflow to avoid
13         unnecessary copying.
14
15         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
16         avoid filling out metadata tables and blobs. Also set mb->ilgen to
17         null so it can be garbage collected.
18         
19 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
20
21         * reflection.c (mono_reflection_get_type): Return the resolved type
22         only if it is in the assembly we searched.
23
24         * reflection.c (ensure_runtime_vtable): Initialize method slots.
25
26         * class.c (mono_class_setup_vtable): Set the slot of the overriding
27         method.
28
29 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30
31         * appdomain.c:
32         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
33         the right one is 'file:///blah', but MS allows it.
34         * assembly.c:
35         (mono_assembly_open): allow 'file://blah'
36
37         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
38
39 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
40
41         * socket-io.c: fixes bug #40310.
42
43 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
44
45         * reflection.c (mono_reflection_parse_type): handle deeply nested
46         types correctly.
47
48         * reflection.c (mono_image_create_token): Use unique token values
49         since they will be put into a hash table.
50
51         * class.c (mono_class_setup_vtable): If a method occurs in more than
52         one place in the vtable, and it gets overriden, then change the
53         other occurances too.
54
55         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
56         object as return type.
57
58 2003-03-22  Pedro Martínez Juliá  <yoros@wanadoo.es>
59
60         * icall.c: Deleted "ToString" implementation for double and float
61         because they are full implemented in managed code.
62
63 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
64
65         * reflection.c, reflection.h: implemented and exported functions
66         to retrieve info about custom attributes.
67
68 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
69
70         * appdomain.c: moved Uri handling to assembly.c
71         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
72         work when using a file Uri in *nix and windows.
73
74         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
75         GetReferencedAssemblies.
76
77 2003-03-18  Dick Porter  <dick@ximian.com>
78
79         * icall.c: Rename a couple of internal calls
80
81         * threads.c: Set the thread state to Stopped when a thread exits.
82         Fixes bug 39377.
83
84 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
85
86         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
87         New icall.
88
89         * object.c (mono_class_vtable): fix warning.
90
91 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
92
93         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
94
95         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
96         memory.
97         (method_encode_clauses): Create exception info structures in the right
98         order.
99         (mono_reflection_setup_internal_class): Initialize supertypes field.
100
101         * class.c object.c: Handle interfaces which implement other interfaces 
102         correctly.
103
104         * class.h class.c: Move the supertypes array initialization code into 
105         a separate function so it can be used for dynamic types too. Also call
106         it earlier, in mono_class_init(), since it can be used before the
107         type is initialized.
108
109 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
110
111         * Makefile.am:
112         * assembly.c:
113         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
114
115         * appdomain.c:
116         * appdomain.h:
117         * marshal.c:
118         * object.c: remove warnings.
119
120 2003-03-13  Martin Baulig  <martin@ximian.com>
121
122         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
123         (MonoDebugLexicalBlockEntry): New types.
124
125         * debug-mono-symfile.c
126         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
127
128 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
129
130         * process.c: ret can be any non-zero value accroding to MS doc.
131
132 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
133
134         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
135         fixing a warning for a miss-used prototype, would have cause
136         random memory corruption.
137
138 2003-03-07  Martin Baulig  <martin@ximian.com>
139
140         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
141         getting really annoying ....
142
143 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
144
145         * reflection.c (fixup_method): added support for array methods.
146
147 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
148
149         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
150         (pointed out by Michael Adams).
151
152 2003-03-04  Dick Porter  <dick@ximian.com>
153
154         * icall.c: Temporarily reverted the Double and Single ToString()
155         change, because it broke nunit.
156
157 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
158
159         * object.h, threads.h: make include files compatible with C++
160         (patch by Jerome Laban <jlaban@wanadoo.fr>).
161
162 2003-03-04  Pedro Martínez Juliá  <yoros@wanadoo.es>
163
164         * icall.c: Erased ToString helper functions for Double and Single.
165         Now, that implementations ar all in managed code (Double and Single
166         Formatters).
167
168 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
169
170         * appdomain.c: Added method for initializing the default context of
171         a domain. Added internal call for getting the default context.
172         * appdomain.h: Added context variable in MonoDomain struct.
173         * domain.c: mono_domain_set also sets the default context of the domain
174         * icall.c: Mapped internal method InternalGetDefaultContext.
175         * object.c: mono_object_get_virtual_method returns always a remoting
176         wrapper if the object is a transparent proxy.
177         mono_runtime_invoke_array: when creating an object by calling the\r
178         constructor, if the created object is a proxy, then the constructor should\r
179         be called using the a remoting wrapper.\r
180
181 2003-03-03  Dick Porter  <dick@ximian.com>
182
183         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
184         variable so it compiles on solaris.  Problem spotted by
185         Christopher Taylor <ct@cs.clemson.edu>
186
187 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
188
189         * appdomain.c:
190         (get_info_from_assembly_name): don't leak value.
191
192         * icall.c:
193         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
194         result.
195
196 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
197
198         * assembly.c: export mono_image_load_references ().
199         * class.c: handle function pointers. mono_class_from_name() now
200         supports nested type names directly.
201
202 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
203
204         * reflection.h reflection.c: Encode already created dynamic methods 
205         and fields correctly as a DEF instead of a REF.
206
207         * reflection.c: Get rid of the force_ref argument to 
208         mono_image_typedef_or_ref since it was wrong in the first place.
209
210         * string-icalls.c: add error checking to string constructors according
211         to the MSDN docs.
212
213         * reflection.c: Emit types in the order their TypeBuilders were 
214         created. Previously, a new table index was assigned to each type before
215         the tables were emitted. This was wrong because the signature blob
216         might already refer to a type by its original table index.
217
218 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
219
220         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
221         change.
222         
223 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
224
225         * Makefile.am: make assemblies dir have \ instead of / on windows.
226
227 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
228
229         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
230         iterate over the NESTEDCLASS table using a linear search since the
231         table is not guaranteed to be sorted by the secondary key.
232
233         * class.c (mono_class_create_from_typedef): fixed up call to
234         mono_metadata_nesting_typedef.
235         
236 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
237
238         * marshal.c (mono_string_to_byvalstr): clear the memory as
239         suggested by Jerome Laban <jlaban@wanadoo.fr>
240
241 2003-02-26  Dick Porter  <dick@ximian.com>
242
243         * process.c: Cope with padding in .rsrc blocks
244
245 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
246
247         * metadata.h: reverted the filter_len change, it breaks reflection
248         
249 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
250
251         * metadata.h: added a new field to store the filter_len
252         
253
254 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
255
256         * reflection.c: handle custom attributes for types and members
257         created with Reflection.Emit (bug#38422).
258
259 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
260
261         * reflection.c: define RTSpecialName automatically for constructors for
262         compatibility with MS.NET.
263
264         * reflection.c (mono_reflection_create_runtime_class): initialize
265         nested_in field of dynamically created classes.
266
267 2003-02-22  Martin Baulig  <martin@ximian.com>
268
269         * debug-mono-symfile.h: Incremented version number.
270
271 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
272
273         * object.h icall.c process.c: fix warnings.
274
275 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
276
277         * appdomain.h appdomain.c:
278         (mono_domain_try_type_resolve): split the 
279         name_or_tb argument into a name and a tb argument.
280         (mono_domain_has_type_resolve): new function to check whenever the
281         application has registered a TypeResolve event handler.
282         
283         * icall.c reflection.h reflection.c: move the type resolve logic into
284         mono_reflection_get_type () so it will be invoked when 
285         Assembly::GetType () is called.
286
287         * reflection.c:
288         (mono_reflection_get_type): renamed to get_type_internal.
289         (mono_reflection_get_type): fixed type name generation so it works 
290         for nested types too.
291         (mono_reflection_get_type): call has_type_resolve () to avoid the 
292         costly type name generation if there is no resolve event handler.
293
294 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
295
296         * class.c, image.c: load exported types from file references.
297
298 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
299
300         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables\r
301           used to cache the managed methods used to create proxies and make \r
302           remote invocation of methods.
303         * class.h: Added in MonoVTable a flag to indicate that a class needs \r
304           to be remotely created.\r
305         * object.c: Modified the method mono_class_vtable(). It now initializes \r
306           the remote flag of the vtable. Modified mono_object_new_specific(), \r
307           so now it checks the remote flag.
308         * icall.c: Added a couple of internal methods, one for enabling instance \r
309           creation interception for a type, and one for creating objects bypassing\r
310           the remote check.\r
311
312 2003-02-18  Martin Baulig  <martin@ximian.com>
313
314         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
315         New interncall to get a method's metadata token.
316
317         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
318         New interncall for the debugger.
319
320 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
321
322         * class.c (mono_class_setup_vtable): allocate supertype array
323
324 2003-02-18  Martin Baulig  <martin@ximian.com>
325
326         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
327
328 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
329
330         * reflection.c:
331         (assembly_name_to_aname): jump over unknown properties (i've found
332         something like: 'type, assembly, version=xxx, custom=null, public...',
333         so now will ignore custom=null and still get the rest of the values).
334
335 2003-02-17  Dick Porter  <dick@ximian.com>
336
337         * threads.c: Have Thread.Start() wait for a semaphore to signal
338         that the thread has set up all its local data.  This fixes bug
339         34323, where Abort() raced the new thread's TLS data.
340
341         Also removes the handle_store() call from start_wrapper, because
342         threads are now always created suspended and there is no longer a
343         race between the parent and child threads to store the info.
344
345 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
346
347         * image.c: explain the #- heap issue in a message, hopefully
348         avoiding FAQs on mono-list.
349
350 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
351
352         * icall.c:
353         (GetEntryAssembly): if the domain has not invoked
354         AppDomain.ExecuteAssembly yet, return the assembly of the default
355         AppDomain.
356
357 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
358
359         * class.c (mono_ldtoken): make it work in dynamic assemblies.
360
361 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
362
363         * metadata.c, reflection.c: simple speedup to type hash
364         and equals code.
365
366 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
367
368         * image.c, image.h, class.c, assembly.c: move module loading
369         to MonoImage. When loading metadata, consider alignemnet from
370         the start of metadata, not from the metadata address in memory.
371
372 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
373
374         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
375         AssemblyBuilder objects. Factored out custom attribute creation into
376         a separate function.
377         (create_custom_attr): new function to create custom attributes.
378
379 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
380
381         * Makefile.am: Got tired of typing the full pathname to pedump.
382         Until there is another option, am installing this.
383
384 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
385
386         * class.c (class_compute_field_layout): always set field->parent 
387         (mono_ldtoken): use mono_defaults.fieldhandle_class;
388
389 2003-02-11  Dick Porter  <dick@ximian.com>
390
391         * threads-types.h:
392         * monitor.c: Rewrote Monitor, making lock much faster and
393         Pulse/Wait work as specified.  Also uses much fewer handles, and only
394         creates them as needed.
395
396         * exception.c: Added SynchronizationLockException
397
398         * threads.c: Deleted old Monitor implementation.  The new one is
399         in a new file.
400
401 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
402
403         * class.c: handled TypedReference type code. Set the correct size for
404         class data. Setup interface_offsets for interface classes, too.
405
406 2003-02-09  Martin Baulig  <martin@ximian.com>
407
408         * debug-mono-symfile.h: Reflect latest symbol writer changes.
409
410 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
411
412         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
413         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
414         * object.c: fixed mono_object_get_virtual_method () for interfaces.
415         * verify.c: check for code that runs after the end of the method.
416
417 2003-02-08  Pedro Martínez Juliá  <yoros@wanadoo.es>
418
419         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
420         "System.Math::Round2".
421         * sysmath.h: Added Floor, Round and Round2 definitions.
422         * sysmath.c: Modified certain functions that were not 100% compliant
423         with MS.NET (math precision) and added the implementation of Floor,
424         Round and Round2.
425
426 2003-02-07  Martin Baulig  <martin@ximian.com>
427
428         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
429
430 2003-02-07  Martin Baulig  <martin@ximian.com>
431
432         * debug-mono-symfile.c: Reflected latest symwriter changes.
433         (mono_debug_create_mono_symbol_file): Removed.
434         (mono_debug_open_mono_symbol_file): Take an argument which
435         specifies whether to create a dynamic symbol file.
436
437 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
438
439         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
440
441 2003-02-05  Martin Baulig  <martin@ximian.com>
442
443         * reflection.c (mono_image_build_metadata): Make this public,
444         protect it against being called multiple times, don't create
445         resources and don't build the compressed metadata here.
446         (mono_image_create_pefile): Do this here.
447
448         * icall.c
449         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
450
451 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
452
453         * socket-io.c: fixed bug #36322.
454
455 2003-02-06  Piers Haken <piersh@friskit.com>
456
457         * appdomain.[ch]:
458         * class.h:
459         * debug-mono-symfile.c:
460         * icall.c:
461         * loader.c:
462         * mono-config.c:
463         * monosn.c:
464         * reflection.c:
465         * socket-io.c: warning cleanups
466
467 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
468
469         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
470         function. works like remoting invoke, but does a check for the Proxy first.
471
472 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
473
474         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
475
476 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
477
478         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
479         array of pointers.
480         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
481         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
482
483         * object.c (mono_store_remote_field_new): used by the new jit
484         instead of mono_store_remote_field
485         (mono_load_remote_field_new): used by the new jit
486         instead of mono_load_remote_field
487
488 2003-02-05  Patrik Torstensson
489
490         * appdomain.c: changed unload to take the domain id instead
491         of domain
492         
493         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
494
495
496 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
497
498         * appdomain.c: don't look for assemblies in ApplicationBase if
499         PrivateBinPathProbe is set.
500
501 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
502
503         * object.c: make the first argument in main_args contain the absolute
504         path to the assembly. Fixes bug #37511.
505
506 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
507
508         * icall.c: get correct UTC offset for countries not using daylight
509         time saving. Fixes bug #30030.
510
511 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
512
513         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
514         and 1 are the family).
515
516 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
517
518         * icall.c (ves_icall_InternalExecute): removed wrong assertion
519
520         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
521
522 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
523
524         * reflection.c: added support for SignatureHelper tokens, which is
525         needed by the Calli opcode.
526
527         * reflection.h: track changes to SignatureHelper class.
528
529         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
530
531 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
532
533         * appdomain.c: fixed loading assemblies from PrivateBinPath.
534
535 2003-02-03  Patrik Torstensson
536         * appdomain.[c|h], domain.c : 
537          - Added support for getting a domain via domain id
538          - Support for setting and getting domain from System.AppDomain 
539            (used in cross appdomain channel)
540          - Added support for get/set for a MonoAppContext on a thread 
541            (Context class in System.Runtime.Remoting.Contexts),
542          - Removed hack in Get/SetData and ExecuteAssembly.
543         
544         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
545         the managed world to get control when a proxy is created.
546 \r
547         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
548         
549 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
550
551         * icall.c
552         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
553         Populate the codebase field as well.
554
555 2003-02-02  Martin Baulig  <martin@ximian.com>
556
557         * debug-mono-symfile.c
558         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
559         (mono_debug_symfile_add_method): Allow interncalls.
560
561 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
562
563         * icall.c: throw parse exception if strtod fails or the string is empty.
564
565 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
566
567         * marshal.c: handle object type separately from defined
568         class types.
569
570 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
571
572         * marshal.c: handle NATIVE_LPSTR for strings when it's
573         explicitly specified.
574
575 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
576
577         * reflection.c, reflection.h, icall.c: setup the reflection
578         handle cache for ModuleBuilders and AssemblyBuilders.
579
580 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
581
582         * reflection.c (reflection_methodbuilder_to_mono_method): set
583         pinvoke flag
584
585 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
586
587         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
588
589 2003-01-29  Dick Porter  <dick@ximian.com>
590
591         * threads.c: No need for the fake_thread kludge now that Thread
592         doesn't run a class constructor
593         
594 2003-01-29  Dick Porter  <dick@ximian.com>
595
596         * threads.c: Use g_direct_hash instead of the rather bogus
597         g_int_hash
598
599 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
600
601         * marshal.c (mono_marshal_get_native_wrapper): add check for null
602         (fix pinvoke12.exe)
603         (mono_marshal_get_struct_to_ptr): generate valid IL code
604         (mono_marshal_get_ptr_to_struct): generate valid IL code
605         (*): correctly set sig->pinvoke, we need to memdup the signature
606         to do that
607
608 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
609
610         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
611         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
612
613 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
614
615         * profiler.c: provide more callers information.
616
617 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
618
619         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
620
621         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
622
623         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
624
625 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
626
627         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
628         exception instead of going into an infinite loop on dates which it 
629         can't yet handle.
630
631         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
632         out-of-range exception if needed.
633
634         * class.c (mono_class_setup_vtable): allow a virtual method to provide
635         an implementation for an interface method and to override an inherited
636         method at the same time. 
637         Imagine a scenario when a virtual method is used to override a
638         virtual abstract method in a parent class, and this same method 
639         provides an implementation for an method inherited from an interface. 
640         In this case, the interface resolution code will set im->slot, which 
641         means that the virtual method override pass will skip this method 
642         which means a pointer to the abstract method inherited from the parent
643         will remain in the vtable of this non-abstract class.
644
645         * class.c: (mono_class_setup_vtable): continue search for a real 
646         method if only an abstract method is found.     
647
648 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
649
650         * reflection.c: add size to encoding for ByValStr and ByValArray
651         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
652
653 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
654
655         * class.c (mono_class_setup_vtable): pass the override info as an
656         argument.
657
658         * class.c (mono_class_setup_vtable): set the slot of overriding methods
659         correctly.
660         
661         * reflection.c (ensure_runtime_vtable); add support for method 
662         overrides.
663         
664 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
665
666         * reflection.c (resolution_scope_from_image): Hack to work to work with
667         dynamic assemblies.
668
669         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
670         added a 'force_ref' argument to force this function to allways return 
671         a TypeRef. This is needed by mono_image_get_memberref_token ().
672         
673 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
674
675         * reflection.c (mono_image_get_type_info): interfaces really don't have
676         a parent.
677
678         * reflection.c (mono_image_basic_init): fill out missing fields of
679         image structure.
680
681         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
682         dynamic assemblies. This is required so dynamic assemblies show up in
683         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
684         Type::GetType() etc. This is consistent with MS behaviour.
685
686         * image.c image.h reflection.c: add newly created classes to the name 
687         cache so mono_class_get () will find them.      
688
689 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
690
691         First part of changes to get IKVM.NET running under mono.
692         
693         * appdomain.h, appdomain.c: added new function 
694         mono_domain_try_type_resolve() which will emit TypeResolve events. 
695         This function will call AppDomain::DoTypeResolve to do the actual work.
696
697         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
698         moved existing code dealing with dynamic tokens to a new function 
699         called mono_reflection_lookup_dynamic_token (). This function will 
700         raise TypeResolve events when appropriate. Since reflection.c is not 
701         part of libmetadata, a new hook function called 
702         mono_lookup_dynamic_token() is added to class.c which will call this.
703
704         * assembly.h assembly.c: make the invoke_load_hook function public,
705         so it can be called for dynamic assemblies.
706
707         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
708
709         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
710         type isn't found.
711
712         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
713         MonoGHashTable, since it contains pointers to objects which the GC 
714         needs to track.
715
716         * assembly.c (search_loaded): remove unused variable.
717         
718 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
719
720         * object.c: fixed issue exposed by gcc-generated IL programs
721         that use RVA data for pointers.
722
723 2003-01-25  Martin Baulig  <martin@ximian.com>
724
725         * threads.c (start_wrapper): Moved the initialization of
726         `start_func' above the mono_new_thread_init() call to which we
727         pass it as argument.
728
729 2003-01-24  Martin Baulig  <martin@ximian.com>
730
731         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
732         the MonoThread pointer.
733
734 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
735
736         * icall.c: Rename `PowImpl' to Pow.
737
738 2003-01-23  Dick Porter  <dick@ximian.com>
739
740         * threads.c (start_wrapper): Create a Thread object if needed, so
741         the Main() thread can do the class initialisation in a subthread
742         that has been set up to allow managed code execution.
743
744         Pass the thread ID instead of the MonoThread pointer to the thread
745         start and attach callbacks.  This change is required, because the
746         jit thread start callback must be called _before_ the Thread
747         object can be created.
748         
749         (mono_thread_init): Removed much object creation code that is no
750         longer needed.  No managed code is called from here now.
751
752         * object.c (mono_runtime_exec_managed_code): Create a subthread
753         for Main, and call back to the runtime to use it.
754         Set the exit code when Main exits.
755
756         * gc.c: Make sure domain finalisation happens in a subthread.
757         Re-enable threaded GC, fixing bug 31333 (again).
758
759         * environment.c: System.Environment internall calls (so far just
760         ExitCode is here, the others are still in icall.c)
761
762         * appdomain.c (mono_runtime_cleanup): All threads running managed
763         code should have finished before mono_runtime_cleanup() is
764         reached, so no need to clean up threads.
765
766 2003-01-22  Martin Baulig  <martin@ximian.com>
767
768         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
769         `gpointer func' arguments.      
770         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
771         but added `MonoThread *thread' argument.
772         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
773
774         * threads.c (mono_new_thread_init): Added `gpointer func' argument
775         and pass it to the mono_thread_start_cb callback.
776         (mono_install_thread_callbacks): New public function to install a
777         set of callbacks which are set by the debugger.
778         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
779
780 2003-01-22  Martin Baulig  <martin@ximian.com>
781
782         * Makefile.am: Install debug-mono-symfile.h.
783
784 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
785
786         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
787
788 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
789
790         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
791         * class.c (mono_ptr_class_get): correctly set access levels of pointers
792         (mono_array_class_get): correctly set access levels of arrays
793
794 2003-01-20      Patrik Torstensson
795         * image.h (MonoAssemblyName): changed major, minor, build, revision
796         from signed to unsigned.
797
798 2003-01-20  sean kasun <skasun@azstarnet.com>
799
800         * reflection.c (load_cattr_value): Now this handles
801         MONO_TYPE_SZARRAY.  Fixes bug #35629
802
803 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
804
805         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
806         integer value
807
808 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
809
810         * decimal.c: fixed bug #26056.
811
812 2003-01-17  Martin Baulig  <martin@ximian.com>
813
814         * gc.c: Raise an ExecutionEngineException instead of using g_error().
815
816 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
817
818         * exception.[ch]:
819         (mono_get_exception_type_initialization): new function.
820
821         * object.c: throw a TypeInitializationException when an exception is
822         thrown invoking the class constructor.
823
824 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
825
826         * reflection.c: fixed attribute reading.
827
828 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
829
830         * icall.c:
831         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
832         provided, look for the type in the calling assembly and then in
833         mscorlib; if the assembly name is provided, only try that one.
834
835 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
836
837         * object.c: register the vtable before there is a chance it's
838         queried again recursively.
839
840 2003-01-13  Duncan Mak  <duncan@ximian.com>
841
842         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
843         gc-internal.h. 
844         
845 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
846
847         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
848
849 2003-01-11  Martin Baulig  <martin@ximian.com>
850
851         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
852         this to 20 for the release.
853
854 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
855
856         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
857
858         * loader.c (mono_method_get_marshal_info): bug fix
859
860         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
861         structures with explicit layout
862
863 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
864
865         * profiler.c: made the output more readable (and sorted). 
866         Added caller information for the allocation profiler.
867
868 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
869
870         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
871
872 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
873
874         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
875         to get value types.
876         
877 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
878
879         * object.c, profiler.h, profiler.c, profiler-private.h:
880         Added object allocation profiler.
881
882 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
883
884         * reflection.h, reflection.c: handle global methods.
885         Compress blob entries.
886
887 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
888
889         * marshal.c: fix compilation.
890
891 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
892
893         * loader.c (mono_method_get_marshal_info): impl.
894
895         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
896
897 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
898
899         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
900         for reference types.
901
902 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
903
904         * loader.c: fixed off by one error in loaded parameter names.
905
906 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
907
908         * marshal.c (mono_marshal_get_icall_wrapper): like
909         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
910         instead of a MonoMethod.
911
912 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
913
914         * decimal.c: fixed bug #36537.
915
916 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
917
918         * marshal.c: throw a missing method exception if a
919         P/Invoke method is not found.
920
921 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
922
923         * icall.c: allow a null this for constructors.
924
925 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
926
927         * icall.c: raise the proper exceptions if the arguments to the
928         internal Invoke are incorrect.
929
930 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
931
932         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
933
934 2003-01-03  Martin Baulig  <martin@ximian.com>
935
936         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
937
938 2002-12-31  Martin Baulig  <martin@ximian.com>
939
940         * debug-mono-symfile.c: Completely rewrote the type section.
941         Instead of using individual malloc()ed fields, we use one big
942         continuous memory area and offsets into this area.
943         See the comments in the source code for details.
944
945 2002-12-30  Martin Baulig  <martin@ximian.com>
946
947         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
948
949 2002-12-30  Martin Baulig  <martin@ximian.com>
950
951         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
952         line number table in this data blob instead of using an external
953         pointer.
954
955 2002-12-28  Martin Baulig  <martin@ximian.com>
956
957         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
958
959 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
960
961         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
962         as a boxed return type.
963
964 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
965
966         * appdomain.c
967         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
968         g_build_filename to properly get separators on the filename created.
969
970         * object.h: Small change, introduce MonoMarshalByRefObject to
971         track the layout of that structure in the C# universe as we make
972         changes there.
973
974 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
975
976         * object.c: removed assert to allow static fields on interfaces.
977         * loader.c: a TypeSpec may be used for any type, not just arrays.
978
979 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
980
981         * class.c, class.h: added mono_class_array_element_size ().
982         Ignore static methods in interfaces.
983
984 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
985
986         * threads.c: fixed the build under cygwin.
987
988 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
989
990         * reflection.c: handle nullref constants. Allocate keys for
991         reflection handles with the GC.
992
993 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
994
995         * threads.c, threads.h: added mono_thread_get_abort_signal()
996         to get a suitable signal for thread abort.
997
998 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
999
1000         * metadata.c: fix handling of ExportedType table.
1001
1002 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1003
1004         * icall.c: added WriteWindowsDebugString internal call.
1005
1006 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1007
1008         * reflection.h: added fields to match C# implementation.
1009
1010 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1011
1012         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
1013
1014 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
1015
1016         * gc.h, gc-internal.h: Rename header for GC internal calls to
1017         gc-internal.h from gc.h as to not clash with Boehm GC having its
1018         header installed as <gc.h> in outside include paths.
1019         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
1020         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
1021
1022 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1023
1024         * icall.c: assign minor, build and revision in FillName.
1025
1026 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
1027
1028         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
1029         Added support for running code generated by Reflection.Emit.
1030
1031 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1032
1033         * appdomain.c: check for NULL argument in LoadFrom.
1034
1035 2002-12-10  Dick Porter  <dick@ximian.com>
1036
1037         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
1038
1039 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1040
1041         * appdomain.c: fix buglet when building exe file name.  Handle full
1042         assembly name (needed after latest changes to AssemblyName).
1043         * image.c:
1044         (mono_image_close): free some hashtables.
1045
1046 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
1047
1048         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
1049         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
1050         on some systems (redhat 7.3) 
1051
1052 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
1053
1054         * threads.c: delete the critical section of a sync block,
1055         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
1056
1057 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
1058
1059         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
1060
1061 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1062
1063         * appdomain.[ch]: handle the assembly preload event to try loading the
1064         assemblies using the paths we have in the current domain.
1065
1066         * assembly.[ch]: created an assembly preload hook that is called to try
1067         loading the assembly by other means that the ones provided here.
1068
1069         * domain.c: initialize the domain search path.
1070
1071         From now on, assemblies (TODO: except corlib and System) are loaded
1072         according to these rules when using mono_assembly_load ():
1073
1074                 1. It tries to load the assembly from the ApplicationBase
1075                 of the current domain appending .dll and .exe (TODO: have to
1076                 try loading from name/name.dll and name/name.exe).
1077
1078                 2. It tries the search path specified in PrivateBinPath for the
1079                 current domain (if any).
1080
1081                 3. Previous behavior.
1082
1083 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
1084
1085         * icall.c: implemented GetInterfaceMap() related icall.
1086         * domain.c, loader.h: load MethodInfo in mono_defaults.
1087
1088 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
1089
1090         * gc.c: disable the finalizer thread for now, untill all the issues
1091         with it are resolved.
1092
1093 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
1094
1095         * string-icalls.c: handle embedded nulls in string ctor when the
1096         length is specified.
1097
1098 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
1099
1100         * class.c: look for explicit interface implementation in parent
1101         classes, too.
1102
1103 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
1104
1105         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
1106
1107 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
1108
1109         * gc.c: protect handles with a critical section.
1110
1111 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1112
1113         * icall.c:
1114         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
1115         parameters. If no assembly specified, try getting the type from all
1116         the assemblies in the current domain, else, load the assembly and get
1117         the type from it.
1118
1119 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1120
1121         * marshal.c: applied patch from Aleksey Demakov that fixes
1122         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
1123
1124 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1125
1126         * icall.c: fixed get_location.
1127
1128 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
1129
1130         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
1131         declarations to make it work with older gcc. 
1132
1133         * loader.c (mono_get_method): set signature->pinvoke for native calls
1134
1135 2002-11-20  Dick Porter  <dick@ximian.com>
1136
1137         * threads.c (mono_thread_init): Set the main thread's handle
1138
1139 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
1140
1141         * gc.c: allow compilation without GC support. Changed to match the
1142         mono coding style.
1143
1144 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
1145
1146         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
1147
1148 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
1149
1150         * reflection.c: set a public key token on the core assemblies.
1151
1152 2002-11-18  Dick Porter  <dick@ximian.com>
1153
1154         * threads.c: Split out some thread initialisation so that other
1155         files can set the start callback function.
1156
1157         * gc.c: Run finalisers in a separate thread, to avoid stack
1158         overflow.  Fixes bug 31333.
1159
1160         * appdomain.c: Set up GC finalisation thread.
1161
1162         * reflection.c: 
1163         * object.c: 
1164         * domain.c: Use gc.h macros for GC_malloc
1165         
1166 2002-11-15  Dick Porter  <dick@ximian.com>
1167
1168         * threadpool.c: 
1169         * threads.c:
1170         * appdomain.c: Removed mono_runtime_init_with_attach(),
1171         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
1172         merging the extra parameter with the existing function.  Removed
1173         unneeded code in mono_thread_attach().
1174
1175 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
1176
1177         * image.c (mono_image_loaded_by_guid): a method to get loaded
1178         images by guid. 
1179         (load_metadata_ptrs): we store the guid as string.
1180
1181 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
1182
1183         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
1184
1185         * metadata.c (mono_guid_to_string): imported method form Zoltan
1186         Varga (slightly modified)
1187
1188         * assembly.c (mono_assembly_open): load precompiled code
1189
1190         * loader.h (MonoMethod): we store the method token for use in the
1191         aot compiler. 
1192
1193 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1194
1195         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
1196         the hook function called when an assembly is loaded.
1197         
1198         * domain.c: Modified file.
1199         (mono_domain_assembly_load): removed hash table insertion of assemblies.
1200
1201         Fixes bug #33196.
1202
1203 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
1204
1205         * reflection.c: Map PEFileKind to the value expected by the WinNT
1206         image loader. 
1207
1208 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1209
1210         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
1211         Read until the buffer is filled completely.
1212
1213 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1214
1215         * icall.c: implemented MonoType.InternalGetEvent ().
1216
1217 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1218
1219         * appdomain.c: implemented InitAppDomainSetup. Delayed
1220         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
1221         the entry_assembly.
1222
1223         * assembly.c: base_dir is now an absolute path ending with
1224         G_DIR_SEPARATOR.
1225
1226         * icall.c: modified get_location according to the above changes.
1227
1228         * object.c: init AppDomain.SetupInformation for the default domain after
1229         we have the entry assembly.
1230
1231         * domain.c: when unloading a domain, setup = NULL.
1232
1233 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
1234
1235         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
1236
1237 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
1238
1239         * object.h, object.c: introduced mono_object_get_virtual_method ()
1240         to lookup the method invoked on an object when a callvirt is done on
1241         a method.
1242         * icall.c: make MethodInfo::Invoke() always do a virtual call.
1243
1244 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1245
1246         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
1247         current domain when loaded an assembly and failed to load it.
1248
1249         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
1250
1251 2002-10-31  Dick Porter  <dick@ximian.com>
1252
1253         * icall.c: 
1254         * file-io.h: 
1255         * file-io.c: Return the error status in a parameter, as the
1256         GetLastError() value has long since been blown away if we try and
1257         look it up in a subsequent internal call invocation.  Delete the
1258         GetLastError() internal call, because it's useless.
1259
1260 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
1261
1262         * class.[ch]: added cast_class to fix bug 29517
1263
1264 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
1265
1266         * marshal.c: create valid IL code in the filter clause:
1267         the new JIT is less forgiving:-)
1268
1269 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1270
1271         * icall.c: removed get_property internal call.
1272
1273 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
1274
1275         * appdomain.h domain.c: Added an ID to appdomains.
1276         
1277         * threads.c threads.h icall.c: Implement icall
1278         Thread:GetDomainID(), and remove unused icall 
1279         CurrentThreadDomain_internal.
1280
1281 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1282
1283         * icall.c: Don't recurse through the base types in GetConstructor.
1284         Fixes bug #32063. 
1285
1286 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
1287
1288         * mempool.h, mempool.c: added mono_mempool_empty() and
1289         mono_mempool_stats().
1290
1291 2002-10-23  Dick Porter  <dick@ximian.com>
1292
1293         * file-io.c: 
1294         * file-io.h: 
1295         * icall.c: Added MonoIO.GetFileType internal call
1296
1297 2002-10-17  Dick Porter  <dick@ximian.com>
1298
1299         * appdomain.c (mono_runtime_cleanup): Don't signal the async
1300         delegate semaphore before waiting for all threads to finish,
1301         because new threads can also call async delegates.  Fixes bug
1302         32004.
1303
1304         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
1305         of 3 seconds, in case another async job is queued.  (This part is
1306         needed because the bug fix reintroduced the 3s exit lag.)  This
1307         makes the mono_runtime_shutdown flag superfluous.
1308
1309 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
1310
1311         * reflection.c: include ehader size in method section headers.
1312         Really check for suplicated modules entries.
1313
1314 2002-10-17  Martin Baulig  <martin@gnome.org>
1315
1316         * debug-mono-symfile.c: Added back support for locals.
1317
1318 2002-10-14  Martin Baulig  <martin@gnome.org>
1319
1320         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
1321         MONO_TYPE_VOID.
1322
1323 2002-10-14  Martin Baulig  <martin@gnome.org>
1324
1325         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
1326         mono_class_get() instead of looking in the class cache. 
1327
1328 2002-10-13  Martin Baulig  <martin@gnome.org>
1329
1330         * debug-mono-symfile.c: Set version number to 28, include the
1331         signature in method names.
1332
1333 2002-10-13  Martin Baulig  <martin@gnome.org>
1334
1335         * debug-mono-symfile.h: Set version number to 27.
1336
1337 2002-10-11  Martin Baulig  <martin@gnome.org>
1338
1339         * gc.c: Don't register/unregister NULL pointers as disappearing links.
1340
1341 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
1342
1343         * metadata.c, metadata.h: added helper function to allocate signatures.
1344
1345 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1346
1347         * icall.c: added internal call to get the location of machine.config.
1348
1349 2002-10-08  Martin Baulig  <martin@gnome.org>
1350
1351         * debug-mono-symfile.c: Ignore classes with a pending init for the
1352         moment.
1353
1354 2002-10-03  Dick Porter  <dick@ximian.com>
1355
1356         * threads.c: Freebsd pthread_t is a pointer
1357
1358 2002-10-03  Dick Porter  <dick@ximian.com>
1359
1360         * socket-io.c: Implemented GetHostName_internal
1361
1362 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1363
1364         * mono-config.c:
1365         (mono_config_parse_file): don't leak the text.
1366
1367 2002-10-02  Martin Baulig  <martin@gnome.org>
1368
1369         * debug-mono-symfile.c: Added support for methods.
1370
1371 2002-10-01  Martin Baulig  <martin@gnome.org>
1372
1373         * debug-mono-symfile.c: Don't emit methods and line numbers for
1374         the dynamic symbol file, just write the type table.  We can easily
1375         have an external helper program which creates a symbol file for an
1376         IL file.        
1377
1378 2002-10-01  Dick Porter  <dick@ximian.com>
1379
1380         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
1381         Only add the handle to the cleanup array when we're about to
1382         launch the thread.  Bug 31425 deadlocked when the test was run on
1383         mono under w32.
1384
1385 2002-10-01  Martin Baulig  <martin@gnome.org>
1386
1387         * debug-mono-symfile.c: Added support for properties.
1388
1389 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
1390
1391         * reflection.c: unaligned store fix from Mark Crichton
1392         <crichton@gimp.org>.
1393
1394 2002-09-27  Martin Baulig  <martin@gnome.org>
1395
1396         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
1397         New interncall.
1398
1399 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
1400
1401         * assembly.h, assembly.c: use a sane API to hook into the assembly
1402         loading process instead of a useless special-purpouse hack
1403         (ngen needs a hook, too, for example).
1404
1405 2002-09-27  Dick Porter  <dick@ximian.com>
1406
1407         * threads.c (mono_thread_init): Call GetCurrentProcess() so
1408         io-layer can set up some process handle info.  Not needed on w32,
1409         but doesn't hurt either.
1410
1411         * process.c: Pass the program name in the second parameter to
1412         CreateProcess, so the path is searched.  Include the working
1413         directory. Implemented process name, process enumeration, and some
1414         process detail internal calls.
1415         
1416         * icall.c: Added internal calls for process lookup, and some
1417         process details
1418
1419 2002-09-26  Martin Baulig  <martin@gnome.org>
1420
1421         * assembly.c (mono_install_open_assembly_hook): New global
1422         function to install a function to be invoked each time a new
1423         assembly is loaded.
1424         (mono_assembly_open): Run this callback function if set.
1425
1426         * debug-mono-symfile.c: Put back line numbers for the dynamic
1427         symbol file and also record the .il file as source file.  This
1428         allows us to install the temporary symbol file as `file.dbg' just
1429         like a compiler-generated one.
1430
1431 2002-09-26  Nick Zigarovich <nick@chemlab.org>
1432
1433         * Corrected typo in gc.c (BOHEM vs BOEHM).
1434
1435 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1436
1437         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
1438         GetProperties. Also avoid calling g_slist_length in GetProperties and
1439         GetMethods.
1440
1441 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
1442
1443         * reflection.c: avoid unaligned stores (bug spotted by
1444         Mark Crichton  <crichton@gimp.org>).
1445
1446 2002-09-25  Martin Baulig  <martin@gnome.org>
1447
1448         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
1449         instead of guint64 for addresses and added prologue/epilogue info.
1450
1451 2002-09-25  Martin Baulig  <martin@gnome.org>
1452
1453         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
1454         store line number info.  For the dynamic symbol file, we only need
1455         to provide the JIT generated dynamic line number info for the dynamic
1456         symbol file.
1457
1458 2002-09-25  Martin Baulig  <martin@gnome.org>
1459
1460         * debug-mono-symfile.h: Incremented version number.
1461
1462 2002-09-24  Martin Baulig  <martin@gnome.org>
1463
1464         * class.c (mono_debugger_class_init_func): New global function
1465         pointer variable.
1466         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
1467         call it.
1468
1469         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
1470         function.  This is called via the mono_debugger_class_init_func
1471         hook to add all types to the dynamic type table.
1472         (ves_icall_MonoDebugger_GetType): New interncall to get a class
1473         from its metadata token.
1474
1475         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
1476         New interncall for the debugger.
1477
1478 2002-09-24  Nick Drochak <ndrochak@gol.com>
1479
1480         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
1481         before using it in case it is null.
1482         
1483 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
1484
1485         * metadata.c: allow custom modifiers in local var signatures
1486         (bug spotted by Zoltan Varga).
1487
1488 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
1489
1490         * class.c: deal with the <Module> class that may have a NULL vtable.
1491         Eliminate warnings.
1492
1493 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
1494
1495         * image.c, image.h: more strong name helpers.
1496         * monosn.c: more work: convert pem keys to cryptoapi format.
1497
1498 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
1499
1500         * string-icalls.c: speedup IndexOf.
1501
1502 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
1503
1504         * icall.c: updates from Zoltan.2.Varga@nokia.com.
1505
1506 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
1507
1508         * icall.c: cleanup: use mono_object_domain ().
1509
1510 2002-09-23  Martin Baulig  <martin@gnome.org>
1511
1512         * debug-mono-symfile.c: Improved type support.
1513
1514 2002-09-22  Martin Baulig  <martin@gnome.org>
1515
1516         * debug-mono-symfile.c: Added support for reference types and strings.
1517
1518 2002-09-22  Martin Baulig  <martin@gnome.org>
1519
1520         * debug-mono-symfile.c: Started to work on the type table.
1521
1522 2002-09-21  Martin Baulig  <martin@gnome.org>
1523
1524         * debug-mono-symfile.c: Largely reworked the symbol table format.
1525         The symbol table is now incrementally updated each time a new
1526         method is added.  We're now also using our own magic and version
1527         so that you don't need to recompile all your classes if the
1528         dynamic table changes.
1529         (mono_debug_update_mono_symbol_file): Removed.
1530         (mono_debug_symfile_add_method): New function to add a method.
1531
1532 2002-09-21  Martin Baulig  <martin@gnome.org>
1533
1534         * icall.c
1535         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
1536         New interncall.
1537
1538         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
1539         New interncall to get a method from its metadata token.
1540
1541 2002-09-21  Martin Baulig  <martin@gnome.org>
1542
1543         * debug-mono-symfile.c: Create type table.
1544
1545 2002-09-20  Martin Baulig  <martin@gnome.org>
1546
1547         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
1548
1549 2002-09-20  Martin Baulig  <martin@gnome.org>
1550
1551         * debug-mono-symfile.c: Provide information about params and locals.
1552
1553 2002-09-20  Martin Baulig  <martin@gnome.org>
1554
1555         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
1556         New interncall.
1557
1558         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
1559         interncall to get a method from its metadata token.
1560
1561 2002-09-20  Martin Baulig  <martin@gnome.org>
1562
1563         * debug-mono-symfile.c: Added a few checks for method->header
1564         being non-NULL.  This should never happen, but for the moment
1565         let's use a g_warning() rather than a g_assert().
1566
1567 2002-09-19  Mark Crichton  <crichton@gimp.org>
1568
1569         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
1570         even if support for it isn't present.  Added an #ifdef to fix this.
1571
1572         * socket-io.c: Added checks back for Solaris support.
1573
1574 2002-09-19  Martin Baulig  <martin@gnome.org>
1575
1576         * debug-mono-symfile.c (read_string, write_string): Reflect latest
1577         changes in the symbol file format.
1578
1579 2002-09-18  Martin Baulig  <martin@gnome.org>
1580
1581         * debug-mono-symfile.c: Set version number to 21.
1582
1583 2002-09-18  Dick Porter  <dick@ximian.com>
1584
1585         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
1586         on netbsd.  Fixes bug 30051.
1587
1588 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1589
1590         * reflection.c:
1591         (set_version_from_string): little fix.
1592
1593 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
1594
1595         * monosn.c, Makefile.am: added strong name utility.
1596         * reflection.h, reflection.c: implemented delayed signing,
1597         locale, version and hash id assembly attributes.
1598
1599 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
1600
1601         * loader.c, metadata.c: load param attributes in signatures.
1602
1603 2002-09-16  Martin Baulig  <martin@gnome.org>
1604
1605         * debug-mono-symfile.c: Added string table with all method names.
1606
1607 2002-09-14  Martin Baulig  <martin@gnome.org>
1608
1609         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
1610         fast method lookup.
1611
1612 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
1613
1614         * reflection.c: record the public key token of referenced assemblies.
1615
1616 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
1617
1618         * image.c, image.h: added functions to get the strong name and the
1619         public key of an assembly.
1620         * pedump.c: use them.
1621
1622 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
1623
1624         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
1625
1626 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
1627
1628         * marshal.c (mono_marshal_get_managed_wrapper): Added
1629         MONO_TYPE_BOOLEAN 
1630
1631 2002-09-11  Martin Baulig  <martin@gnome.org>
1632
1633         * gc.c: Call GC_unregister_disappearing_link() on all links when
1634         finalizing them, this is necessary to aviod a crash in boehm's
1635         finalize handler.
1636
1637 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
1638
1639         * gc.c: handle GetTarget for finalized objects spotted and fixed by
1640         nick@chemlab.org.
1641
1642 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
1643
1644         * icall.c: implemented MonoType::Module.
1645         * reflection.c, reflection.h: mono_module_get_object () from
1646         Tomi Pakarinen <tomi.pakarinen@welho.com>.
1647
1648 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
1649
1650         * icall.c: ignore overridden methods in GetMethods ().
1651         Fix for FieldInfo::SetValue().
1652         * object.c: handle float/double in runtime invoke.
1653
1654 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
1655
1656         * object.c: allow a constructor to be called again on an object.
1657
1658 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
1659
1660         * class.h, class.c: move field layout code to it's own function and
1661         export it. Get an interface id earlier. Move fields in MonoClass
1662         so they are more cache friendly and align the bitfields.
1663         * loader.c: temporary handle get_param_names() for a runtime method.
1664         * reflection.c, reflection.h: more code to handle runtime creation of
1665         types.
1666
1667 2002-09-09  Martin Baulig  <martin@gnome.org>
1668
1669         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
1670         signature with the pinvoke field being set for the actual call.
1671
1672 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
1673
1674         * icall.c: removed some unused icalls. Start of map of glib charsets
1675         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
1676
1677 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
1678
1679         * debug-helpers.c: break infinite loop (found and fixed by
1680         Holger Arnold <harnold@gmx.de>).
1681
1682 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
1683
1684         * icall.c: target may be null in create_delegate.
1685
1686 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
1687
1688         * marshal.c: handle a boolean return type.
1689
1690 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
1691
1692         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
1693
1694 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
1695
1696         * gc.c: fix weakreferences.
1697
1698 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
1699
1700         * icall.c: added icall to get default codepage.
1701
1702 2002-09-03  Dick Porter  <dick@ximian.com>
1703
1704         * threads.h: 
1705         * threads.c: Use MonoThread instead of MonoObject where
1706         apropriate.
1707
1708         Store running thread objects in a hash table, so that we have all
1709         the info to hand when waiting for them to finish
1710         (means we don't need OpenThread() any more, so mingw builds should
1711         be fully functional again.)
1712
1713         * verify.c:
1714         * object.h: Added thread ID to MonoThread
1715
1716 2002-09-03  Martin Baulig  <martin@gnome.org>
1717
1718         * icall.c (System.Reflection.Assembly::get_location): New interncall.
1719
1720 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1721
1722         * icall.c: fixed leak in get_temp_path. Thanks lupus.
1723
1724 2002-09-03  Martin Baulig  <martin@gnome.org>
1725
1726         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
1727         argument to store the end address of the disassembled instruction.
1728
1729         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
1730         here from debug-symfile.h.
1731         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
1732         JIT into this struct.
1733         (MonoSymbolFile): Added `char *image_file' field.
1734         (MonoDebugGetMethodFunc): Removed.
1735         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
1736         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
1737         (mono_debug_find_method): New method.
1738
1739         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
1740         create a full symbol file.
1741         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
1742         and static symbol files.
1743         (mono_debug_find_method): The symbol file keeps an internal method hash,
1744         call this to get a MonoDebugMethodInfo from a MonoMethod.
1745
1746         * debug-symfile.[ch]: Removed.
1747
1748 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
1749
1750         * image.c (do_mono_image_open): Remove linker version check.
1751
1752 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
1753
1754         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
1755         wrappers for instance methods.
1756         
1757 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1758
1759         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
1760
1761 2002-08-28  Dick Porter  <dick@ximian.com>
1762
1763         * Makefile.am: Export HOST_CC for w32 builds
1764
1765 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
1766
1767         * file-io.c process.c: MonoString are null terminated, no
1768         need for mono_string_to_utf16() anymore.
1769
1770 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
1771
1772         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
1773
1774 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
1775
1776         * icall.c, reflection.h: speedup System.MonoType.
1777
1778 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
1779
1780         * reflection.c: allow null as the value of a string argument in
1781         custom attributes constructors.
1782
1783 2002-08-27  Martin Baulig  <martin@gnome.org>
1784
1785         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
1786         `trampoline_address' field.
1787
1788 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
1789
1790         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
1791         check (fixes bug #29486) 
1792
1793 2002-08-27  Martin Baulig  <martin@gnome.org>
1794
1795         * debug-mono-symfile.c: Changed the file format in a way that allows us
1796         open it read-only and to use a specially malloced area for all the
1797         dynamic data.  We can now also generate a symbol file on-the-fly if we're
1798         debugging IL code and there is no MCS generated symbol file for it.
1799
1800 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
1801
1802         * object.c: added a define for a good string and array
1803         creation speedup (not enabled by default because we need to deal with
1804         the synch stuff).
1805
1806 2002-08-26  Martin Baulig  <martin@gnome.org>
1807
1808         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
1809         function to create a dynamic symbol file.  This is used by the
1810         debugger to create a symbol file for IL code on-the-fly.
1811
1812 2002-08-26  Martin Baulig  <martin@gnome.org>
1813
1814         * loader.c (mono_lookup_pinvoke_call): Include the error message
1815         from g_module_error() in the error message.
1816
1817 2002-08-24  Martin Baulig  <martin@gnome.org>
1818
1819         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
1820         function to update the symbol file.  The symbol file is mmap()ed
1821         writable, but private.  This allows us to install the symbol file
1822         together with the assembly.
1823
1824 2002-08-24  Martin Baulig  <martin@gnome.org>
1825
1826         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
1827         but they can read the new symbol file format which mcs is now creating.
1828
1829         * debug-symfile.c (mono_debug_find_source_location): Moved to
1830         debug-mono-symfile.c; this is now operating on the new symbol file.
1831
1832 2002-08-23  Martin Baulig  <martin@gnome.org>
1833
1834         * debug-helpers.c (mono_method_desc_from_method): New function to get
1835         a MonoMethodDesc from a MonoMethod.
1836
1837 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
1838
1839         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
1840         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
1841
1842 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
1843
1844         * string-icalls.[ch]: make helper methods static.
1845
1846 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1847
1848         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
1849         types to it and to SetValueInternal.
1850
1851         * object.c: Moved handle_enum label to its proper place. This was the
1852         f... bug! ;-)
1853
1854         This time i compiled mcs and gtk-sharp and they both work.
1855
1856 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1857
1858         * icall.c: reverted partially my previous patch until 
1859         object.c:set_value handles enums correcly.
1860
1861 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1862
1863         * icall.c:
1864         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
1865         (ves_icall_System_Environment_get_MachineName): removed warning when
1866         compiling under cygwin.
1867
1868 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
1869
1870         * object.c: fixed field_get_value() for reference types.
1871
1872 2002-08-22  Dick Porter  <dick@ximian.com>
1873
1874         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
1875         Don't free a buffer while it's still needed.  Patch from Jonathan
1876         Liger <Jonathan.liger@wanadoo.fr>
1877
1878 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
1879
1880         * icall.c (ves_icall_System_Environment_get_Platform): Add new
1881         internal call.
1882
1883 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
1884
1885         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
1886         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
1887
1888         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
1889         we call unmanaged code which throws exceptions.
1890
1891 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
1892
1893         * appdomain.h: added per-domain entry_assembly.
1894         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
1895         arguments.
1896         * icall.c: Assembly::GetEntryAssembly icall.
1897         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
1898         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
1899
1900 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
1901
1902         * appdomain.h, gc.c: added mono_domain_finalize ().
1903
1904 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1905
1906         * object.c:
1907         (mono_print_unhandled_exception): changed g_warning by g_printerr
1908         because g_log has a 1024 characters limit (yeah, i got a big stack
1909         trace). Don't print exception name, that should be in ToString 
1910         returned string.
1911
1912 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1913
1914         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
1915         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
1916
1917 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1918
1919         * object.c:
1920         (mono_print_unhandled_exception): after previous commit, i realized
1921         that MS calls ToString on the exception. I changed this function to
1922         do that. This way we get stack_trace for free.
1923
1924 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1925
1926         * object.c:
1927         (mono_print_unhandled_exception): invoke Message property instead of
1928         getting 'message' field from Exception. Don't allocate memory for
1929         'trace' and 'message' if not needed.
1930
1931 2002-08-18  Dick Porter  <dick@ximian.com>
1932
1933         * unicode.c: Fix asserts to match Encoder.cs checks
1934
1935 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
1936
1937         * marshal.c: fix unaligned store issue and a few wrong
1938         opcode argument types.
1939
1940 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1941
1942         * icall.c: added GetUninitializedObjectInternal internal call.
1943
1944 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
1945
1946         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
1947         to the right domain.
1948
1949 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
1950
1951         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
1952
1953         * class.c (class_compute_field_layout): set blittable to false for Strings
1954
1955         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
1956
1957 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
1958
1959         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
1960         first chunk of code to create types at runtime. Code to
1961         handle ReflectedType/DeclaringType. Make reflection handles
1962         domain specific.
1963
1964 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
1965
1966         * class.c: set correct name in arrays.
1967
1968 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
1969
1970         * appdomain.c (mono_domain_transfer_object): make it work with
1971         valuetypes. bug fixes.
1972
1973 2002-08-12  Dick Porter  <dick@ximian.com>
1974
1975         * object.h: Rename some parameters to avoid c++ keywords (Patch
1976         from Joseph Wenninger <kde@jowenn.at>)
1977
1978 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
1979
1980         * icall.c: added icall to implement Assembly.GetFile*.
1981
1982 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
1983
1984         * reflection.h, reflection.c: code to embed managed resources.
1985
1986 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
1987
1988         * class.c: move all the type size stuff into
1989         class_compute_field_layout().
1990
1991 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
1992
1993         * class.c: ensure enums have always the correct instance size.
1994         * unicode.c: remove wrong assert.
1995
1996 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
1997
1998         * assembly.c: fix mem corruption issue.
1999         * image.h, image.c: added mono_image_get_resource () to access
2000         managed resources.
2001         * icall.c: implemented Assembly.EntryPoint property and some
2002         Managed Resources related internalcalls.
2003
2004
2005 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
2006
2007         * image.c, image.h: impemented mono_image_get_entry_point ().
2008         * appdomain.c: use mono_image_get_entry_point.
2009
2010 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
2011
2012         * reflection.c: support the object type argument when loading
2013         custom attributes.
2014
2015 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
2016
2017         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
2018         String as return type.
2019
2020 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
2021
2022         * reflection.c: fix encoding of named args for custom attrs to match
2023         the ms implementation. Read them back when instantiating custom
2024         attributes.
2025
2026 2002-08-02  Radek Doulik  <rodo@ximian.com>
2027
2028         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
2029         by Dietmar as quick fix
2030         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
2031         16 as stack size, used on more places as quick fix before Dietmar
2032         will fix it properly
2033
2034 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
2035
2036         * object.h, object.c: added accessors for fields and properties.
2037
2038 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
2039
2040         * class.c, class.h: made mono_class_get_field_from_name ()
2041         loop on parent types.
2042         Added mono_class_get_property_from_name ().
2043
2044 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
2045
2046         * class.c, class.h: move the code to setup the type vtable in its own
2047         function so that it can be reused also for types created at runtime.
2048         Eliminate the "class" identifier from the header file.
2049         * reflection.c: setup the vtable for enums so that we can create
2050         objects for use in SetConstant ().
2051
2052 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
2053
2054         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
2055         instead of the delegate itself as this pointer (bug #28383)
2056
2057 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
2058
2059         * marshal.c (mono_marshal_get_managed_wrapper): added return type
2060         conversions.
2061
2062 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
2063
2064         * loader.c: don't set the pinvoke bit on icalls.
2065
2066 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
2067
2068         * debug-helpers.c (mono_method_full_name): only print a number to
2069         indicate wrapper type (so that the output is more readable in traces).
2070
2071 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
2072
2073         * class.c (mono_class_init): include method override patch from Paolo
2074
2075 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
2076
2077         * icall.c: fixed GetTypeCode().
2078
2079 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
2080
2081         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
2082         use real delegate invoke function to make it work with multicast
2083         delegates (fix bug# 28291).
2084
2085 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
2086
2087         * object.c: load constant strings.
2088
2089 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
2090
2091         * reflection.c: no magic numbers.
2092         * tabledefs.h: security action enum.
2093
2094 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
2095
2096         * assembly.c: fix possible memory corruption.
2097
2098 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
2099
2100         * reflection.h, reflection.c: added support for linking resources.
2101         * verify.c: check we have an updated corlib.
2102
2103 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
2104
2105         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
2106         string arrays.
2107         (mono_marshal_string_array): null terminate unmanaged string arrays.
2108         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
2109
2110 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
2111
2112         * icall.c: Type.GetType () can now return also types from the
2113         calling assembly.
2114
2115 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
2116
2117         * loader.h, loader.c: stack walking support.
2118         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
2119         GetCallingAssembly.
2120
2121 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
2122
2123         * marshal.c: added optimisations for blittable types 
2124
2125         * class.c (mono_array_class_get): do not set blittable attribute on arrays
2126         (mono_class_setup_mono_type): set blittable attribute for single
2127         and double.
2128
2129         * marshal.c (mono_string_utf8_to_builder): impl.
2130         (mono_string_builder_to_utf8): impl.
2131         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
2132
2133 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
2134
2135         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
2136         (mono_marshal_get_managed_wrapper): impl. byref types
2137
2138 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2139
2140         * icall.c:
2141         (search_method): don't display debug message. 
2142
2143 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
2144
2145         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
2146
2147 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
2148
2149         * appdomain.c: set the missing filename when throwing exception.
2150
2151 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
2152
2153         * metadata.c (mono_type_size): code cleanup
2154         (mono_type_stack_size): removed some test code
2155
2156 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
2157
2158         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
2159         mono_get_exception_file_not_found now.
2160
2161         * exception.c (mono_exception_from_name_two_strings): New version
2162         that will call a constructor with two string arguments. 
2163         (mono_get_exception_file_not_found): New helper routine, used to
2164         report file-not-found errors.
2165
2166 2002-07-20  Dick Porter  <dick@ximian.com>
2167
2168         * process.h:
2169         * process.c: Pass file handles to CreateProcess
2170         
2171         * icall.c:
2172         * file-io.h:
2173         * file-io.c: Implemented CreatePipe
2174
2175 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
2176
2177         * metadata.c (mono_get_param_info): set alignment for value types
2178
2179 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
2180
2181         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
2182         Constify mono_domain_assembly_open().
2183         * loader.c: handle null namespace in icalls.
2184
2185 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
2186
2187         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
2188         (emit_str_to_ptr_conv): marshal object as structs
2189
2190         * metadata.c (mono_type_to_unmanaged): marshal object as structs
2191
2192         * marshal.c (mono_marshal_get_runtime_invoke): support value types
2193
2194 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
2195
2196         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
2197         (mono_marshal_get_native_wrapper): we an now return value types
2198
2199 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
2200
2201         * verify.c: more checks implemented.
2202
2203 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
2204
2205         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
2206         (fix bug #27695)
2207         (mono_marshal_get_native_wrapper): allow byref arguments
2208         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
2209         impl. PtrToStringXXX methods
2210         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
2211         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
2212         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
2213         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
2214         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
2215
2216 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
2217
2218         * reflection.c: fix buglet in parsing an assembly name.
2219
2220 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
2221
2222         * marshal.c (emit_ptr_to_str_conv): first impl.
2223
2224 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
2225
2226         * object.c, class.h: cache the vtable in the class as suggested by
2227         vargaz@freemail.hu (Zoltan Varga).
2228
2229 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
2230
2231         * class.h, loader.c: added mono_field_from_token().
2232         * verify.c: first cut of type checking code.
2233
2234 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
2235
2236         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
2237
2238 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
2239
2240         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
2241         (fix bug #27782)
2242         (mono_marshal_get_remoting_invoke): impl.
2243         (mono_delegate_begin_invoke): impl.
2244         (mono_mb_emit_save_args): impl.
2245         (mono_delegate_end_invoke): impl.
2246         (mono_marshal_get_delegate_begin_invoke):
2247         (mono_marshal_get_delegate_end_invoke):
2248         (mono_marshal_get_delegate_invoke): generate a special name for
2249         those methods (including the signature) and associate them whith
2250         the delegate class. 
2251
2252 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
2253
2254         * reflection.[ch]: 
2255         (mono_reflection_type_from_name): now it has a MonoImage parameter
2256         which is used as the default image to search the type in. If the image
2257         is NULL or getting the type from it fails, it defaults to corlib.
2258
2259         * icall.c: changed 1 call to mono_reflection_type_from_name to match
2260         new parameter.
2261
2262 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
2263
2264         * reflection.c: update the parameter table index.
2265
2266 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
2267
2268         * domain.c: don't include the mark byte in the string hash.
2269
2270 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
2271
2272         * icall.cs: icall for Type.GetTypeCode ().
2273         * verify: a couple of fixes and disabled local initialization checks.
2274
2275 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
2276
2277         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
2278
2279         * debug-helpers.c (mono_method_full_name): print the type of the
2280         runtime wrapper
2281
2282         * metadata.c (mono_signature_hash): a hash function for signatures
2283         (mono_signature_hash): better hash algorithm
2284
2285         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
2286
2287         * debug-helpers.c (mono_method_full_name): this can now generate
2288         method names with signatures
2289
2290         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
2291         method dont have this pointers.
2292
2293 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
2294
2295         * reflection.c: fixup typebuilder tokens.
2296         * image.c: fix buglet.
2297         * marshal.h: remove whitespace.
2298         * metadata.h, metadata.c: reinstate code that was removed.
2299         * verify.c: handle catch directives and fix another couple of bugs.
2300
2301 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
2302
2303         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
2304         (mono_marshal_get_native_wrapper): make it comp. with the old code
2305         (mono_marshal_get_native_wrapper): support boolean
2306         (mono_marshal_get_managed_wrapper): support more types
2307
2308 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
2309
2310         * class.c (class_compute_field_layout): compute class->blittable attribute.
2311
2312 2002-07-09  Dick Porter  <dick@ximian.com>
2313
2314         * threads.c: Make the thread cleaning up cope with threads that
2315         call ExitThread()
2316
2317 2002-07-08  Radek Doulik  <rodo@ximian.com>
2318
2319         * reflection.c (method_encode_code): use non-translated values to
2320         compute finally_start, this fixes exception handling on ppc, yay!
2321
2322         * decimal.h (struct signscale): fix endianess
2323
2324 2002-07-07  Radek Doulik  <rodo@ximian.com>
2325
2326         * reflection.c: swap box_val and not val
2327
2328 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
2329
2330         * reflection.c, reflection.h: handle full assembly info in type name.
2331         Handle Type arguments when loading custom attributes.
2332         * icall.c: updated to use new mono_reflection_type_from_name () method.
2333
2334 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2335
2336         * loader.c:
2337         (method_from_memberref): also print assembly name when method not found.
2338
2339 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2340
2341         * icall.c:
2342         (ves_icall_TypeGetProperties): fixed bug #27473. 
2343
2344 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2345
2346         * reflection.c: display image name and token when cannot find the
2347         .ctor for an attribute.
2348
2349 2002-07-05  Martin Baulig  <martin@gnome.org>
2350
2351         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
2352
2353 2002-07-04  Dick Porter  <dick@ximian.com>
2354
2355         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
2356         compile on mingw.  This will cause mingw builds to not wait for
2357         subthreads to terminate after the main thread does.  I've lodged a
2358         bug with the mingw developers for them to wrap OpenThread().
2359
2360 2002-07-03  Dick Porter  <dick@ximian.com>
2361
2362         * threads.c: Store thread IDs instead of handles, because
2363         GetCurrentThread() returns a pseudohandle and therefore stores
2364         useless values.  mono_thread_cleanup() continues checking the
2365         array of threads until it is empty, to cope with subthreads
2366         spawning new threads after the main thread has finished.
2367
2368         * profiler.h:
2369         * profiler.c:
2370         * profiler-private.h: Pass the thread ID to thread profiler
2371         functions, instead of a handle
2372
2373 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
2374
2375         * verify.c: fixes to make it more usable.
2376         * pedump.c: added --verify code to verify IL code in an assembly.
2377
2378 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
2379
2380         * reflection.c: turn errors into warnings to allow compiling corlib.
2381
2382 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
2383
2384         * reflection.c: add special cases to compile corlib.
2385
2386 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
2387
2388         * reflection.c: handle properties with only a set method.
2389
2390 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
2391
2392         * opcodes.h: add enum with opcodes in opval order.
2393
2394 2002-07-01  Dick Porter  <dick@ximian.com>
2395         
2396         * object.h:
2397         * object.c (mono_runtime_run_main): Removed unneeded argument
2398
2399 2002-06-28  Martin Baulig  <martin@gnome.org>
2400
2401         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
2402
2403 2002-06-27  Dick Porter  <dick@ximian.com>
2404
2405         * threads.c: Store the handle in both the parent thread and in the
2406         subthread, to minimise the time between starting a new thread and
2407         storing its ID.
2408
2409 2002-06-26  Dick Porter  <dick@ximian.com>
2410
2411         * appdomain.c (mono_runtime_cleanup): Close the socket library
2412         after all the threads have finished, not before
2413
2414 2002-06-26  Martin Baulig  <martin@gnome.org>
2415
2416         * debug-symfile.c (mono_debug_find_source_location): Added
2417         `guint32 *line_number' argument.  If it's not NULL, store the line number
2418         there and return the file name without the line number.
2419
2420 2002-06-25  Dick Porter  <dick@ximian.com>
2421
2422         * icall.c:
2423         * process.h:
2424         * process.c: Process forking and other support functions
2425
2426 2002-06-25  Dick Porter  <dick@ximian.com>
2427
2428         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
2429         things dont happen when the image is closed.
2430         (mono_image_lookup_resource): Walk the resource section looking
2431         for a particular entry
2432
2433         * cil-coff.h: PE resource section decoding
2434
2435 2002-06-25  Dick Porter  <dick@ximian.com>
2436         
2437         * assembly.h:
2438         * assembly.c: 
2439         (mono_assembly_foreach): Accessor functions to walk the list of
2440         loaded assemblies
2441         (mono_assembly_set_main):
2442         (mono_assembly_get_main): Process methods need to know which
2443         assembly is the "main" one
2444
2445         * object.c (mono_runtime_run_main): Record the main assembly
2446
2447         * debug-helpers.c: Fix typo
2448
2449 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
2450
2451         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
2452         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
2453
2454 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
2455
2456         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
2457
2458 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
2459
2460         * image.c (do_mono_image_open): Initialize reference count,
2461         otherwise we leak the MonoImage.
2462
2463 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
2464
2465         * reflection.c: small tweak to handle self-hosting.
2466
2467 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
2468
2469         * reflection.c: fix type name parse code.
2470
2471 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
2472
2473         * reflection.c: break out of the loop.
2474         * image.c: special case corlib.
2475
2476 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
2477
2478         * reflection.c: add all the custom attrs at the end to ensure the
2479         ctors have been properly initialized when the attributes are defined
2480         in the current assembly.
2481
2482 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
2483
2484         * reflection.c: handle correctly multiple-nested types.
2485
2486 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
2487
2488         * row-indexes.h: fix typos.
2489         * reflection.c: adjust for typos and fix method_def_or_ref
2490         encoding in MethodImpl table.
2491
2492 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
2493
2494         * reflection.c: fix entry point patching (thanks Serge!).
2495
2496 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
2497
2498         * verify.c: add check for System.Exception
2499
2500 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
2501
2502         * image.c, class.c: minifix for code just c&p'ed.
2503         * reflection.c: warning fix.
2504         * object.h, loader.h, domain.c: load also StringBuilder.
2505
2506 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
2507
2508         * marshal.h, marshal.c: some support code to handle complex marshaling.
2509
2510 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
2511
2512         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
2513         Better signatures with vtable error dump.
2514
2515 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
2516
2517         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
2518
2519 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
2520
2521         * icall.c (ves_icall_Type_GetField): impl.
2522
2523 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
2524
2525         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
2526         to retrieve a marshal description blob for a field or param.
2527
2528 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
2529
2530         * reflection.h, reflection.c: change order of nested type emission
2531         to avoid table corruption. The NestedTypes table is sorted.
2532         * icall.c: change order of GetConstructor results to workaround mcs bug.
2533
2534 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
2535
2536         * reflection.h, reflection.c: handle field and param marshal
2537         information.
2538
2539 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
2540
2541         * icall.c, marshal.c marshal.h: more Marshal class implementation.
2542
2543 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
2544
2545         * reflection.c: fix call convention.
2546
2547 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
2548
2549         * reflection.h, reflection.c: mono_image_get_memberref_token()
2550         takes a type instead of a class, now. Added
2551         mono_image_get_array_token() to create tokens for the special
2552         multi-dim array methods.
2553
2554 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
2555
2556         * assembly.c: handle modules (no assembly table). Split
2557         loading references in its own function.
2558         * class.c: handle moduleref resolution scope.
2559         * image.c, image.h: cache module name in image.
2560
2561 2002-06-07  Martin Baulig  <martin@gnome.org>
2562
2563         * reflection.c (mono_image_get_type_info): Only add a class layout entry
2564         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
2565
2566 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
2567
2568         * icall.c: more signature fixes that used uint instead of int.
2569
2570 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
2571
2572         * reflection.c: fixed signature of field refs.
2573
2574 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
2575
2576         * class.c, reflection.c: handle typerefs of nested types
2577         (both on read and when writing files).
2578
2579 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
2580
2581         * icall.c: fix method signatures that tried to workaround the previous
2582         typo, d'oh!
2583
2584 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
2585
2586         * debug-helpers.c: fix typo.
2587
2588 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
2589
2590         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
2591         rewrote the PE/COFF writing code (our programs are understood by the
2592         ms runtime, now).
2593
2594 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
2595
2596         * gc.c, gc.h, icall.c: weakreference support.
2597
2598 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
2599
2600         * Makefile.am, mono-config.c: use $(sysconfdir).
2601
2602 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
2603
2604         * icall.c: changed default precision of Double.ToString() to 15.
2605         Fixed memory leak. Unified with Single.ToString.
2606
2607 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
2608
2609         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
2610
2611 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
2612
2613         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
2614         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
2615         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
2616         and myself.
2617
2618 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
2619
2620         * debug-symfile.c, sysmath.c: yet more compilation fixes.
2621
2622 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
2623
2624         * reflection.c, socket-io.c: more compilation fixes.
2625
2626 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
2627
2628         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
2629         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
2630         unicode.c: warning and compiler compatibility fixes.
2631
2632 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
2633
2634         * class.h, metadata.c: fixed warnings/compilation errors.
2635
2636 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
2637
2638         * Makefile.am, mono-config.c, mono-config.h: configuration file
2639         support routines.
2640         * loader.c, loader.h: make Dll mapping configurable at runtime in the
2641         config file. Export methods to insert and lookup mappings.
2642
2643 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
2644
2645         * reflection.c: handle types and boxed objects in custom attr
2646         constructors.
2647
2648 2002-05-30  Martin Baulig  <martin@gnome.org>
2649
2650         * debug-symfile.c
2651         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
2652
2653 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
2654
2655         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
2656         to lookup the implmap row for a P/Invoke method.
2657         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
2658         P/Invoke method from the runtime on an as needed basis.
2659
2660 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
2661
2662         * metadata.c (mono_metadata_parse_signature): impl.
2663
2664 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
2665
2666         * class.c: handle .pack directive.
2667
2668 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
2669
2670         * object.c: initialize static fields with RVA data.
2671
2672 2002-05-25  Martin Baulig  <martin@gnome.org>
2673
2674         * debug-symfile.c
2675         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
2676
2677 2002-05-24  Martin Baulig  <martin@gnome.org>
2678
2679         * debug-symfile.c
2680         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
2681         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
2682         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
2683
2684 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
2685
2686         * object.c: special case string ctros in invoke.
2687         * gc.c: silly whitespace changes.
2688
2689 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
2690
2691         * threadpool.[ch]: impl. a threadpool that can
2692         be used by mint and mono.
2693
2694 2002-05-22  Martin Baulig  <martin@gnome.org>
2695
2696         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
2697         The first argument is now a `MonoReflectionModuleBuilder *', the return
2698         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
2699         `methods' field to get the method builder.  The `token' argument is the
2700         unfixed token.
2701
2702         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
2703         invalid characters instead of g_assert_not_reached()ing.  This seems
2704         to be the behaviour of mscorlib.
2705
2706 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
2707
2708         * object.c (mono_runtime_invoke_array): applied patch from Rachel
2709         Hestilow to fix bug #25104
2710
2711 2002-05-21  Martin Baulig  <martin@gnome.org>
2712
2713         * debug-symfile.c (mono_debug_find_source_location): New function.
2714         Looks up an IL offset in the line number table and returns the source
2715         location as a string.
2716
2717 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2718
2719         * icall.c:
2720         (mono_double_ToStringImpl): changed %f by %g until we have something
2721         better.
2722
2723 2002-05-21  Nick Drochak  <ndrochak@gol.com>
2724
2725         * icall.c : Use different name for Math.Pow's icall.  Needed to check
2726         parameters first in C#.
2727
2728 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
2729
2730         * icall.c, reflection.h: added icall to get info about an event.
2731
2732 2002-05-20  Radek Doulik  <rodo@ximian.com>
2733
2734         * object.c (mono_value_box): don't use memcpy for boxing on BIG
2735         endian
2736         (mono_value_box): don't use memcpy for small sizes on
2737         architectures with unaligned access
2738
2739 2002-05-20  Martin Baulig  <martin@gnome.org>
2740
2741         * reflection.c (mono_reflection_setup_internal_class): Don't crash
2742         if `tb->parent == NULL'.
2743         (mono_reflection_create_internal_class): New function.  This is
2744         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
2745         for enum types.
2746
2747         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
2748         New interncall.
2749
2750 2002-05-19  Martin Baulig  <martin@gnome.org>
2751
2752         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
2753         argument to get the length, don't default to the array length.
2754
2755 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
2756
2757         * assembly.c (mono_assembly_setrootdir): New function used to
2758         override the MONO_ASSEMBLIES directory.
2759
2760 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
2761
2762         * icall.c: ValueType_GetHashCode() initialize local var.
2763
2764 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
2765
2766         * reflection.c: sort custom attributes table.
2767
2768 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
2769
2770         * reflection.c: support named args in custom attributes (write support).
2771
2772 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
2773
2774         * reflection.c: fix finally position calculation.
2775
2776 2002-05-15  Radek Doulik  <rodo@ximian.com>
2777
2778         * reflection.c: fixed endianess at many places
2779
2780         * icall.c (ves_icall_InitializeArray): comment out debug msg
2781
2782 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
2783
2784         * object.c (mono_unhandled_exception): new function to handle
2785         unhandled exceptions.
2786         (mono_unhandled_exception): call the UnhandledException event.
2787         (mono_runtime_delegate_invoke): impl.
2788
2789 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
2790
2791         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
2792         returns the RVA, not the direct pointer to the data. Handle the case
2793         when the class size is fixed.
2794
2795 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
2796
2797         * reflection.c: fix some endianess issues.
2798
2799 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
2800
2801         * object.c (mono_runtime_invoke): is now able to catch exceptions.
2802
2803         * threads.c (mono_thread_init): added a callback which is invoked
2804         at thread start.
2805
2806 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
2807         
2808         * icall.c: make GetHashCode return non-negative values.
2809
2810 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
2811
2812         * object.c, icall.c, gc.c: revert to address-based hashcode.
2813
2814 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
2815
2816         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
2817
2818 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
2819
2820         * icall.c, class.c: special case <Module>.
2821
2822 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
2823
2824         * icall.c: fix bug in GetNow().
2825
2826 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
2827
2828         * object.c (mono_runtime_class_init): make sure that we call all
2829         static class constructors.
2830
2831 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
2832
2833         * reflection.c: sort methodsemantics table.
2834
2835 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
2836
2837         * reflection.h, reflection.c: honour init locals setting.
2838
2839 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
2840
2841         * icall.c: copied Double ToStringImpl for Single ToStringImpl
2842
2843 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
2844
2845         * reflection.c: support ContructorBuilders in attribute blob creation.
2846
2847 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
2848
2849         * reflection.c: some changes to build a binary that can be run
2850         directly in windows.
2851
2852 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
2853
2854         * loader.c: print a big message when an icall can't be found.
2855
2856 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2857
2858         * string-icalls.c: fix bug 24248.
2859
2860 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
2861
2862         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
2863         icall.c, reflection.h: separate assembly loading by pathname and by
2864         assembly name. Use the MONO_PATH env var to search for assemblies.
2865
2866 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
2867
2868         * assembly.c, image.h: add some support for assemblies
2869         with multiple modules.
2870         * class.c, class.h: export mono_class_from_typeref().
2871         * loader.c: remove duplicated code and use mono_class_from_typeref(),
2872         instead.
2873
2874 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
2875
2876         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
2877         documentation says (the ECMA one is correct).
2878
2879 2002-05-02  Dick Porter  <dick@ximian.com>
2880
2881         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
2882         Don't name the synchronisation mutex.
2883
2884 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
2885
2886         * rand.c
2887         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
2888         Make the prototypes match.
2889         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
2890         Same.
2891
2892         * icall.c
2893         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
2894         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
2895         all systems have tm.tm_zone, so use strftime() with %Z to print
2896         the timezone abreviation into a temp string.
2897
2898         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
2899         rather than mono_array_addr() on a MonoString on Big Endian
2900         machines.
2901
2902 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
2903
2904         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
2905         fix bug 24041
2906
2907 2002-04-30  Dick Porter  <dick@ximian.com>
2908
2909         * socket-io.c: Cope with SOCKET being an integer rather than a
2910         pointer now.
2911
2912         * threads.c: Added Thread_free_internal, to deal with thread
2913         handle cleanup.  Moved calls to handle_store() and handle_remove()
2914         to start_wrapper(), so each can only be called once.  Allocate
2915         synchronisation blocks with GC_malloc(), and use GC finalisation
2916         to close the handles.
2917
2918         * icall.c: added System.Threading.Thread::Thread_free_internal
2919
2920 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
2921
2922         * icall.c: support Environment.Exit, CommandLineArgs().
2923
2924 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
2925
2926         * object.c, object.h: added mono_runtime_run_main () and
2927         mono_runtime_get_main_args () for use in System.Environment.
2928
2929 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
2930
2931         * gc.c: fix thinko, enable actual finalization since the jit is now
2932         fixed.
2933
2934 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
2935
2936         * gc.c, object.c: take into account that an object may be offset wrt the address
2937         returned by GC_malloc().
2938
2939 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
2940
2941         * image.c: handle files without entries in the assembly table (modules).
2942
2943 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
2944
2945         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
2946         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
2947         allowed to be null when it's System.Object class setup.
2948
2949 2002-04-27  Martin Baulig  <martin@gnome.org>
2950
2951         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
2952         if `tb->parent == NULL' rather than crashing.
2953
2954 2002-04-28  Nick Drochak  <ndrochak@gol.com>
2955
2956         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
2957         calling acos() where asin() should have been called.
2958
2959 2002-04-26  Martin Baulig  <martin@gnome.org>
2960
2961         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
2962         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
2963         there's a subdirectory called `System', but we don't want to read that
2964         subdirectory as an assembly.
2965
2966 2002-04-25  Martin Baulig  <martin@gnome.org>
2967
2968         * debug-symfile.c: Reflect latest MonoString changes.
2969
2970 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
2971
2972         * rand.c, rand.h: instance method icalls need to have an explicit
2973         this pointer as first argument in the C implementation.
2974
2975 2002-04-25  Nick Drochak <ndrochak@gol.com>
2976
2977         * icall.c: Fix typo in map for GetNonZeroBytes
2978
2979 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
2980
2981         * string-icalls.c : String does now passes unit tests without any 
2982         errors, the following changes has been made:
2983         
2984         Implemented replace methods.
2985         Renaming of methods to (try) follow the standard.
2986         Fixed compare ordinal
2987         Made all memory allocated directly to function instead of via icall function.
2988         Small performance fix in is_in_array function
2989                         
2990  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
2991
2992         c (mono_string_Internal_ctor_charp_int_int):
2993         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
2994         sindex < 0, throw ArgumentOutOfRangeException instead of
2995         ArgumentNullException.
2996
2997         Added new check for length == 0, however
2998         I need to make it return String.Empty from the C code.
2999         
3000         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
3001         that calculate the length for us here.
3002         
3003         (mono_string_Internal_ctor_sbytep_int_int): Replaced
3004         mono_string_new_utf16 with mono_string_new, since value is utf8.
3005
3006 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
3007
3008         * object.c: register the object for finalization if needed.
3009         Allocate one more char in the string for the terminating 0 char.
3010
3011 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
3012
3013         * class.c, class.h, image.c: check if a type implemenst a destructor.
3014         Use the proper key for array class lookups.
3015         * icall.c: register the icalls in the System.GC class.
3016         * gc.c, gc.h: GC-related functions and icalls.
3017
3018 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3019
3020         * icall.c:
3021         * socket-io.c:
3022         * unicode.c: free some strings gotten from mono_string_to_utf8 and
3023         changed a couple of free () by g_free ().
3024
3025         * decimal.c: one-liner in the comments for decimal2string ().
3026
3027 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
3028
3029         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
3030
3031 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
3032
3033         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
3034         * object.c (mono_runtime_invoke_array) : handle null in params
3035
3036 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
3037
3038         * string-icalls.c: fixed bug in split (one off bug)
3039
3040 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
3041
3042         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
3043         * icalls.c: added String::Equals as internal method
3044
3045 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
3046
3047         * threads.c: fixed bug in the double interlocked functions
3048
3049 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
3050
3051         * threads.c: implemented all of the new interlocked icalls.
3052         * string-icalls.c: fix a bug in insert.
3053         * icalls.c: added the icalls for interlocked, removed old string functions.
3054         
3055 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
3056
3057         * loader.c: fix off-by-one error when reading argument names.
3058
3059 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
3060
3061         * profiler.c: win32 counter implementation (untested).
3062         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
3063         (the latter needs testing and more complete impl. from win32 folks).
3064
3065 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
3066
3067         * object.c: mono_array_new_full workaround mono_array_class_get
3068         problem.
3069
3070 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
3071
3072         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
3073         * object.h (mono_string_chars): Changed casting type.
3074
3075 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
3076
3077         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
3078                            method signatures to use gunichar2 instead of gint16.
3079
3080 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
3081
3082         * object.h, object.c: domain-specific versions of mono_object_new and
3083         mono_array_new.
3084
3085 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
3086
3087         * object.c: changed String layout
3088
3089         * string-icalls.c (mono_string_Internal_ctor_chara): added
3090         internal string constructors.
3091
3092 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
3093
3094         * threads.c: pass 'this' to the thread start routine.
3095
3096 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3097
3098         * string-icalls.c: fix IndexOf and LastIndexOf. Now
3099         InternalCompareStr don't call twice mono_string_cmp_char for the last
3100         character. Improved performance in mono_string_cmp_char.
3101
3102 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
3103
3104         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
3105         code into its own library: libmonoruntime.
3106
3107 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
3108
3109         * object.h, object.c: changed array format so that szarrays do not
3110         require a bounds structure.
3111         * icall.c, appdomain.c: support for new szarray format.
3112
3113 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
3114
3115         * metadata.c: compare also the retuns type when comparing signatures:
3116         we didn't do this as an optimization since really overloaded methods
3117         must differ also in the arguments, but this doesn't work with
3118         low-level IL code (or when using explicit conversion operators: see
3119         bug#23498 for an example).
3120
3121 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
3122
3123         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
3124
3125 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
3126
3127         * icall.c: make MonoType::GetElementType its own icall.
3128
3129 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
3130
3131         * icall.c: remove MonoMethod_get_Name().
3132         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
3133         object.
3134
3135 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
3136
3137         * string-icalls.c: optimized a few methods.
3138
3139 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
3140
3141         * icall.c: added all new string internal calls
3142         * string-icalls.c: added, new string internal call implementation.
3143         * object.c: added mono_string_new_size for allocating a string a size
3144
3145 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
3146
3147         * object.c (mono_object_isinst): use the same code as in the
3148         optimized x86 version.
3149
3150 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
3151
3152         * profiler.c: TSC-based timer code (faster and more accurate).
3153         Not hooked up in configure, yet (set USE_X86TSC to 1).
3154
3155 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
3156
3157         * profiler.c, profiler.h: track time spent compiling methods.
3158         * threads.c: track thread creation/destruction.
3159
3160 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
3161
3162         * profiler.c, profiler.h, profiler-private.h: profiling interface
3163         and sample implementation. Moved here so that it can be used also by
3164         the jit.
3165
3166 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
3167
3168         * reflection.c, reflection.h: keep types and other handles separate in
3169         the hash tables for referred tokens. Add guid for modules.
3170
3171 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
3172
3173         * assembly.c: fix bugs found with valgrind.
3174         * metadata.h, metadata.c: added mono_metadata_guid_heap().
3175
3176 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
3177
3178         * threads: added icall support for getting current domain for
3179                    the thread.
3180  
3181 2002-04-13  Martin Baulig  <martin@gnome.org>
3182
3183         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
3184         (MonoDebugVarInfo): Added `index' field for register based addresses.
3185         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
3186         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
3187         `MonoDebugVarInfo *params' and `guint32 this_offset' with
3188         `MonoDebugVarInfo *this_var'.
3189
3190         * debug-symfile.c (relocate_variable): New static function to write
3191         a location description for a local variable or method parameter.
3192
3193 2002-04-12  Martin Baulig  <martin@gnome.org>
3194
3195         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
3196         stack offset and begin/end scope address of a local variable.
3197         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
3198         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
3199         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
3200
3201         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
3202         Added new relocation types for start/end scope of a local variable.
3203
3204 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
3205
3206         * object.h: add mono_object_domain() macro.
3207         * reflection.c: handle typespecs.
3208         * icall.c: MonoMethod::get_Name() implementation.
3209
3210 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
3211
3212         * icall.c: String::GetHashCode() icall implementation.
3213
3214 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
3215
3216         * icall.c: String::IndexOfAny icall.
3217         * object.c, object.h: make array->max_length more useful.
3218         Intrduced mono_object_class() and mono_string_length() macros.
3219
3220 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3221
3222         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
3223         instead of g_unichar_isdigit.
3224
3225 2002-04-11  Nick Drochak  <ndrochak@gol.com>
3226
3227         * icall.c: Implement a simple Double.ToString().
3228
3229 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
3230
3231         * appdomain.h: only io-layer.h is supposed to be included.
3232         * icall.c: explicitly import environ. Fix warning.
3233
3234 2002-04-10  Nick Drochak  <ndrochak@gol.com>
3235
3236         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
3237                 return true even if it's not Daylight Savings time.
3238                 Only return false for the case where the function isn't
3239                 implemented for a plaform (read Windows).
3240
3241 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
3242
3243         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
3244         data with a mutex.
3245
3246 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
3247
3248         * mempool.c (mono_mempool_alloc): only use g_malloc when
3249         absolutely necessary.
3250
3251 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
3252
3253         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
3254
3255         * class.c (mono_class_vtable): use domain mempool to allocate vtable
3256         (mono_class_proxy_vtable): use domain mempool
3257
3258 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
3259
3260         * appdomain.h, appdomain.c: split initialization that requires the
3261         execution engine support into mono_runtime_init().
3262
3263 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
3264
3265         * class.c (mono_class_init): don't include vtable inside MonoClass
3266         to save some memory, gather some statistics.
3267         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
3268
3269 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
3270
3271         * icall.c: internalcall implementation for ValueType.Equals().
3272
3273 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
3274
3275         * object.c (mono_message_init): moved 
3276         (mono_runtime_exec_main): new arch. independent impl.
3277         (mono_runtime_invoke_array): new method - like
3278         mono_runtime_invoke, but you can pass an array of objects.
3279         (mono_remoting_invoke): new arch. independent impl.
3280         (mono_message_invoke): new arch. independent impl.
3281         (mono_runtime_class_init): new arch. independent impl.
3282         (mono_runtime_object_init): new arch. independent impl.
3283
3284 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
3285
3286         * metadata.c, object.c, reflection.c: documented the exported
3287         functions.
3288
3289 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
3290
3291         * icall.c: simpler code to pass the assembly builder data to corlib.
3292         Implement GetNestedTypes() internalcall.
3293
3294 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
3295
3296         * class.c: warn if a type can't be loaded.
3297
3298 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
3299
3300         * image.h: typedef MonoImageOpenStatus
3301         * types.h: removed unused file
3302         
3303 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
3304
3305         * icall.c: Enum_ToObject accepts enum value arguments.
3306
3307 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
3308
3309         * class.c: move initialization of properties, events and nested
3310         classes, so that they happen for interfaces, too.
3311
3312 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
3313
3314         * icall.c: cleanup some ugly casts in Array_SetValue*.
3315
3316 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
3317
3318         * icall.c: the values array fro enums is of the correct type, now.
3319         Implement (correctly) getFullName instead of assQualifiedName for
3320         MonoType.
3321         * reflection.h, reflection.c: added mono_type_get_name ().
3322
3323 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
3324
3325         * assembly.c, image.h: for each MonoImage, record from wich assembly
3326         it was loaded.
3327         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
3328         Make Type.Assembly work.
3329
3330 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
3331
3332         * debug-symfile.h: use char* instead of gpointer to avoid
3333         unnecessary casts.
3334
3335         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
3336
3337         * icall.c (ves_icall_InternalExecute): impl. FielSetter
3338         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
3339
3340 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
3341
3342         * icall.c (mono_message_init): impl. (code cleanup)
3343         (ves_icall_InternalExecute): impl. FieldGetter
3344
3345         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
3346         defined we call all (non-static)methods through the vtable. 
3347
3348 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
3349
3350         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
3351         finalizer even though the memory is still referenced (and the chunk of
3352         memory is not freed).
3353
3354 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
3355
3356         * assembly.c: fix brokeness.
3357
3358 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
3359
3360         * class.c: kill some warnings. Check explicit interface method
3361         implementation also without considering the namespace.
3362         Load also literal strings in static class data.
3363
3364 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
3365
3366         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
3367         (default_assembly_name_resolver): Make the resolver take the
3368         "base" directory where the assembly was originally defined, so we
3369         can load DLLs that are in the same directory as the assembly that
3370         is being referenced.
3371
3372 2002-03-28  Dick Porter  <dick@ximian.com>
3373
3374         * file-io.h: 
3375         * file-io.c:
3376         * socket-io.c: 
3377         * unicode.h: 
3378         * unicode.c: Warning cleanups
3379
3380 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
3381
3382         * object.h, reflection.h: use the correct type instead of MonoObject.
3383
3384 2002-03-28  Martin Baulig  <martin@gnome.org>
3385
3386         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
3387         (mono_debug_update_symbol_file): Initialize classes if necessary.
3388
3389 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
3390
3391         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
3392         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
3393
3394 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
3395
3396         * assembly.h: fix function prototype.
3397         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
3398         * mono-endian.h: use const cast.
3399
3400 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
3401
3402         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
3403
3404 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
3405
3406         * loader.c: don't assert when a typeref can't be loaded, give
3407         a chance to the runtime to trow an exception instead.
3408         * loader.h: fix warning.
3409
3410 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
3411
3412         * class.c (mono_class_proxy_vtable): added proxy support
3413
3414 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
3415
3416         * icall.c: removed last of PAL calls, added System.Environment
3417         * file-io.h, file-io.c: MonoIO implementation
3418         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
3419
3420 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
3421
3422         * appdomain.c: do not use the byte marker in ldstr table lookup.
3423         * debug-helpers.c: allow two ':' to separate class and method name.
3424         * object.c: allocate arrays bounds with the GC, too.
3425         * verify: add a few more checks.
3426
3427 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
3428
3429         * reflection.c: output also literal strings. Allocate parameter data
3430         with GC_malloc() (thanks, Martin, for catching this!).
3431
3432 2002-03-26  Martin Baulig  <martin@gnome.org>
3433
3434         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
3435         include the `this' offset in the `param_offsets'.
3436
3437 2002-03-25  Martin Baulig  <martin@gnome.org>
3438
3439         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
3440         mono_debug_get_class() function to get the classes. Added new
3441         relocation types for arrays and strings.
3442         (mono_debug_get_class): New static function to search in all
3443         referenced assemblies for a metadata token.
3444
3445         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
3446
3447 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
3448
3449         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
3450         hold gc-allocated objects. Make the string heap a stream like the
3451         others. Removed duplicated code when writing stream info.
3452         Added asserts to catch possible buffer overflows. Set the sorted map
3453         for tables that need sorting. Added some documentation.
3454
3455 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
3456
3457         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
3458         for interned strings and vtables.
3459
3460 2002-03-24  Martin Baulig  <martin@gnome.org>
3461
3462         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
3463         it in the array since it was created with g_slist_prepend().
3464
3465 2002-03-24  Martin Baulig  <martin@gnome.org>
3466
3467         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
3468         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
3469         (mono_debug_method_from_token): Renamed to
3470         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
3471         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
3472
3473         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
3474         relocation types.
3475
3476         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
3477
3478 2002-03-24  Martin Baulig  <martin@gnome.org>
3479
3480         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
3481         (mono_debug_method_from_token): New func.
3482
3483         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
3484         New interncall, calls mono_debug_local_type_from_signature().
3485         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
3486         calls mono_debug_method_from_token().
3487
3488 2002-03-23  Martin Baulig  <martin@gnome.org>
3489
3490         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
3491         specifies the number of bytes to be converted, not the array size.
3492         Return the number of chars, not the number of bytes.
3493         (ves_icall_iconv_get_chars): The `byteCount' argument
3494         specifies the number of bytes to be converted, not the array size.
3495
3496 2002-03-23  Martin Baulig  <martin@gnome.org>
3497
3498         * reflection.h (MonoReflectionSigHelper): New type.
3499
3500         * reflection.c (mono_reflection_sighelper_get_signature_local),
3501         (mono_reflection_sighelper_get_signature_local): New functions.
3502
3503         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
3504         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
3505         interncalls.
3506
3507 2002-03-23  Martin Baulig  <martin@gnome.org>
3508
3509         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
3510         is_writeable is set.
3511         (mono_raw_buffer_update): New function to write the modified map
3512         back to disk.
3513
3514         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
3515
3516         * debug-symfile.c (mono_debug_update_symbol_file): Call
3517         mono_raw_buffer_update() when done writing.
3518
3519 2002-03-23  Martin Baulig  <martin@gnome.org>
3520
3521         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
3522
3523         * debug-symfile.c: Added support for arguments and local variables.
3524
3525 2002-03-23  Dick Porter  <dick@ximian.com>
3526
3527         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
3528         protected by ifdefs, hence breaking the w32 build.
3529
3530 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
3531
3532         * object.c: implement is_interned() the right way.
3533
3534 2002-03-21  Martin Baulig  <martin@gnome.org>
3535
3536         * debug-symfile.[ch]: New files to handle debugging information
3537         files. There's also support to dynamically update these symbol
3538         files to include machine dependent information.
3539
3540 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
3541
3542         * threads.c (mono_thread_create): new function to create thread
3543         from C
3544
3545 2002-03-20  Martin Baulig  <martin@gnome.org>
3546
3547         * icall.c (ves_icall_InternalInvoke): Create a new object if the
3548         method is a constructor.
3549         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
3550         points to ves_icall_InternalInvoke().
3551
3552 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
3553
3554         * file-io.c: Flush shouldn't throw exceptions.
3555
3556 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
3557
3558         * file-io.c: FileStream flush support; FileSetLength now
3559         restores file pointer.
3560
3561 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
3562
3563         * class.c: set image for pointer classes.
3564
3565 2002/03/19  Nick Drochak <ndrochak@gol.com>
3566
3567         * sysmath.c: Forgot one.
3568
3569 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
3570
3571         * sysmath.c: Avoid redefining existing names.
3572
3573 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
3574
3575         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
3576         handled by runtime as icall rather than dllimport from libm.so
3577         * file-io.c, file-io.h: fixed handle argument type.
3578
3579 2002-03-18  Dick Porter  <dick@ximian.com>
3580
3581         * reflection.c (mono_image_get_type_info): rename interface to
3582         iface, because of "#define interface struct" on windows.
3583
3584 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
3585
3586         * class.c, class.h: rename and export mono_ptr_class_get().
3587         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
3588         * reflection.c, reflection.h, icall.c: better/saner type name
3589         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
3590         method signatures.
3591
3592 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
3593
3594         * class.c (mono_class_init): removed hardcoded GHC_SLOT
3595
3596         * icall.c (ves_icall_InternalInvoke): impl.
3597
3598 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
3599
3600         * reflection.c: output the interface map table, too.
3601
3602 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
3603
3604         * class.c (class_compute_field_layout): separate computation of 
3605         static field layout
3606
3607 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
3608
3609         * icall.c: added System.Buffer support.
3610         * file-io.c: moved file icalls from PAL to FileStream.
3611
3612 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
3613
3614         * icall.c (ves_icall_System_Object_GetHashCode): impl.
3615
3616 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
3617
3618         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
3619
3620 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
3621
3622         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
3623
3624 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
3625
3626         * debug-helpers.{c,h}: moved here from monograph some useful functions
3627         to locate a method by name/signature in a class or image. Included
3628         also a small and flexible IL disassembler.
3629
3630 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
3631
3632         * reflection.c: fixup tokens in methods with small header size, too.
3633
3634 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
3635
3636         * object.c (mono_string_to_utf8): remove assert(!error), instead
3637         print a warning. 
3638
3639 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
3640
3641         * icall.c: update to the new mono_Array_class_get interface.
3642
3643 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
3644
3645         * appdomain.c, object.c: Boehm-GC enable.
3646         * icall.c: make get_data_chunk() support split data requests.
3647         Ensure a class is initialized in more cases. Return only the first
3648         property found in GetProperties() or the compiler gets confused. 
3649         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
3650         * reflection.h, reflection.c: add fixup mechanism for field and method
3651         tokens. Initialize assembly->typeref in a single place. Output
3652         properties after events. Support custom attributes for events, too.
3653         Typo fix for paramter custom attrs.
3654
3655 2002-03-07  Martin Baulig  <martin@gnome.org>
3656
3657         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
3658
3659 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
3660
3661         * class.c (mono_array_class_get): fix. for multi. dim. arrays
3662
3663 2002-03-06  Martin Baulig  <martin@gnome.org>
3664
3665         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
3666         non-zero lower bounds. See testcases #F10-#F13.
3667
3668 2002-03-05  Martin Baulig  <martin@gnome.org>
3669
3670         * exception.c (mono_get_exception_argument_out_of_range): New exception.
3671
3672         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
3673         ves_icall_System_Array_GetValue(), only calculate the absolute array position
3674         here.
3675         (ves_icall_System_Array_SetValue): Likewise.
3676         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
3677         as argument and does the actual work. This function is used when copying a
3678         multi-dimensional array.
3679         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
3680         now do all the widening conversions of value types.
3681         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
3682
3683 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
3684
3685         * class.c: remove some magic numbers and use the smbolic names,
3686         instead. Added init_events() to load event info at class init time.
3687         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
3688         and mono_metadata_methods_from_event().
3689         * reflection.h, reflection.c: added support for writing out the evnets
3690         related information.
3691
3692 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
3693
3694         * reflection.h, icall.c: use a different method (GetInterfaces)
3695         to gather interface info and add isbyref, isprimitive and
3696         ispointer to the ves_icall_get_type_info() return value.
3697
3698 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
3699
3700         * class.h: stared adding support for events.
3701         * icall.c: split find_members implementation. Added debug icall to get
3702         the address of an object.
3703         * reflection.c: handle TypeBuilders in mono_type_get_object().
3704
3705 2002-03-01  Martin Baulig  <martin@gnome.org>
3706
3707         * icall.c (ves_icall_System_Array_GetLength): This must throw an
3708         ArgumentOutOfRangeException(), not an ArgumentException().
3709         (ves_icall_System_Array_GetLowerBound): Likewise.
3710         (ves_icall_System_Array_GetValue): Improved argument checking.
3711         (ves_icall_System_Array_SetValue): Improved argument checking.
3712
3713 2002-03-01  Martin Baulig  <martin@gnome.org>
3714
3715         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
3716         called with invalid arguments rather than just dying with g_assert().
3717         (ves_icall_System_Array_SetValue): Likewise.
3718         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
3719         raise a NotImplementedException instead.
3720         (ves_icall_System_Array_GetLength): Added argument checking.
3721         (ves_icall_System_Array_GetLowerBound): Added argument checking.
3722
3723 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
3724
3725         * object.h (mono_assert): new macros mono_assert and
3726         mono_assert_not_reached
3727
3728 2002-02-28  Martin Baulig  <martin@gnome.org>
3729
3730         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
3731         and "System::String::IsInterned" to "System::String::_IsInterned".
3732
3733 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
3734
3735         * icall.c: remove hacks for typebuilder. Added icall to create a
3736         modified type from a tybebuilder.
3737         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
3738         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
3739         to create a backing MonoClass for a TypeBuilder.
3740
3741 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
3742
3743         * class.c, class.h: more refactoring of class init.
3744         Export mono_class_setup_mono_type() and mono_class_setup_parent().
3745
3746 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
3747
3748         * marshal.c, marshal.h: start of marshaling interface.
3749
3750 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
3751
3752         * icall.c: fix order in assembly qualified name icall.
3753
3754 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
3755
3756         * class.c: do not free str, since we store it in the hash table.
3757         * reflection.h: add label field to MonoILExceptionInfo.
3758         * reflection.c: handle references to more than one assembly. Handle
3759         case when there isn't a module created in the assembly.
3760
3761 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
3762
3763         * class.c: Fix typo. Start refactoring of class init code.
3764
3765 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
3766
3767         * appdomain.c: exit with 1 on error.
3768         * class.c: we already have the name in MonoClassField.
3769         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
3770         MonoStreamHeader instead of an offset of image->raw_metadata.
3771
3772 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
3773
3774         * appdomain.c (mono_init): Be even more descriptive about the error.
3775
3776 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
3777
3778         * appdomain.c: give the user an informative message when corlib can't
3779         be loaded.
3780
3781 2002-02-26  Martin Baulig  <martin@gnome.org>
3782
3783         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
3784         New icall to get the time zone data.
3785
3786 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
3787
3788         * reflection.c: set virtual and raw size of section correctly.
3789         * threads.c: transfer domain information to newly created threads.
3790
3791 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
3792
3793         * class.c: when instancing a class in a domain, load the default
3794         vaules for static fields from the constant table. Fix System.Enum to
3795         not be an enum.
3796         * icall.c: implement Object::GetType() internalcall. Implemented
3797         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
3798         Fixed checking of binding flags in find_members().
3799         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
3800         * reflection.c: handle enumerations when writing to the constant
3801         table. Use a different object cache for types.
3802
3803
3804 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
3805
3806         * object.c (mono_object_isinst): fix for arrays
3807
3808         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
3809
3810 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
3811
3812         * object.c: don't use mprotect ()  and fix intern pool hash table
3813         lookup for big endian systems.
3814
3815 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
3816
3817         * icall.c: change type_is_subtype_of () signature.
3818
3819 2002-02-21  Mark Crichton  <crichton@gimp.org>
3820
3821         * rand.c, rand.h: Added random number generator for
3822         System.Security.Cryptography classes.
3823
3824         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
3825
3826         * icall.c: Added System.Security.Cryptography calls.
3827
3828 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
3829
3830         * class.c, icall.c, metadata.c: better support for pointer types.
3831         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
3832         * reflection.c: Add support for getting custom attrs for properties
3833         and simplify some code.
3834
3835 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
3836
3837         * icall.c: change getToken () and add custom attribute GetBlob()helper
3838         method.
3839         * reflection.h: add custom attrs array to the reflection builder structures.
3840         * reflection.c: encode and emit custom attributes for all the relevant
3841         reflection objects. Cache fieldref and methodref tokens. Change
3842         mono_image_create_token() interface to take a MonoDynamicAssembly.
3843         More complete custom attributes decoder. Load custom attributes for
3844         Assembly, Field, Method and Constructor objects, too. Make the
3845         returned array an Attribute[] one, not object[]. Added
3846         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
3847         custom attribute constructor.
3848
3849 2002-02-20  Dick Porter  <dick@ximian.com>
3850
3851         * icall.c:
3852         * rawbuffer.c:
3853         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
3854         problem code out for now).
3855
3856 2002-02-19  Radek Doulik  <rodo@ximian.com>
3857
3858         * object.c (mono_ldstr): use hash table to avoid multiple swapping
3859
3860 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
3861
3862         * icall.c: register the GetCustomAttributes method.
3863         * object.c, object.h: add mono_string_new_len ().
3864         * reflection.h, reflection.c: added mono_runtime_invoke(),
3865         mono_install_runtime_invoke(). Added
3866         mono_reflection_get_custom_attrs () to load custom attributes and
3867         create the attribute objects.
3868
3869 2002-02-19  Dick Porter  <dick@ximian.com>
3870         * threads-dummy-types.c:
3871         * threads-dummy-types.h:
3872         * threads-dummy.c:
3873         * threads-dummy.h:
3874         * threads-pthread-types.c:
3875         * threads-pthread-types.h:
3876         * threads-pthread.c:
3877         * threads-pthread.h:  Deleted obsolete files
3878
3879 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
3880
3881         * class.c (mono_class_vtable): runtime init the class when we
3882         allocate static class data.
3883
3884         * icall.c (ves_icall_System_Array_SetValue): check for null values.
3885
3886         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
3887         and String - but we will need generic marshalling support in the
3888         future. 
3889         (mono_init): set the domain name in a ms compatible way
3890
3891         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
3892         String[].
3893
3894 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
3895
3896         * object.c (mono_array_clone): use alloca() instead of g_malloc  
3897         for sizes
3898
3899         * appdomain.c (mono_domain_unload): impl.
3900
3901 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
3902
3903         * appdomain.c, object.c: fix intern pool implementation.
3904         * class.c: fix alignment code.
3905
3906 2002-02-16  Radek Doulik  <rodo@ximian.com>
3907
3908         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
3909         and s2 > s1, just copy lower bytes to be compatible with little
3910         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
3911         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
3912
3913         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
3914         force big_endian to be 1 for big endian machines 
3915         (ves_icall_iconv_new_decoder): ditto
3916
3917 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
3918
3919         * socket-io.c (convert_sockopt_level_and_name): If the system
3920         doesn't define SOL_IP or SOL_TCP, get them by hand using
3921         getprotobyname() and caching the values (because this could be a
3922         slow operation).
3923         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
3924         Use the appropriate struct when the system does support it. Ie,
3925         not all systems have struct ip_mreqn so use struct ip_mreq when
3926         appropriate.
3927
3928 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
3929
3930         * reflection.c: handle finally clauses.
3931
3932 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
3933
3934         * socket-io.c: use g_snprintf() instead of snprintf.
3935
3936 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
3937
3938         * reflection.c (mono_param_get_objects): Cast second argument to
3939         mono_method_get_param_names to a const char** to silence the
3940         compiler warning.
3941
3942         * appdomain.c (mono_domain_assembly_open): Put parens around the
3943         truth statement in the for-loop.
3944
3945         * unicode.c (iconv_convert): Got rid of a compiler warning about
3946         int i being unused when the system has a new iconv.
3947         (iconv_get_length): Same.
3948
3949         * image.c (load_class_names): Cast the second argument to
3950         g_hash_table_insert() to char* to hush compiler warnings about the
3951         arg being a const.
3952         (mono_image_open): Same here.
3953
3954         * socket-io.c: Don't conditionally include sys/filio.h or
3955         sys/sockio.h here anymore since we now get them from
3956         io-layer/io-layer.h
3957         (inet_pton): If the system doesn't support inet_aton, implement
3958         using inet_addr and also #define INADDR_NONE if it isn't defined
3959         by the system.
3960
3961 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
3962
3963         * metadata.c, metadata.h: added function to get packing and size info
3964         of a typedef.
3965         * reflection.h, reflection.c: handle field RVA data. Save info about
3966         the table layout if needed. Assign typedef indexes to all the types
3967         before dumping the info about them to avoid forward reference problems.
3968
3969 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
3970
3971         * socket-io.c (convert_sockopt_level_and_name): ifdef
3972         SO_ACCEPTCONN because it is not defined on my system (old debian)
3973
3974 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
3975
3976         * opcode.c: use stddef.h to get NULL.
3977
3978 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
3979
3980         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
3981         for FIONBIO, FIONREAD and SIOCATMARK.
3982         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
3983         define INADDR_NONE and besides, inet_addr() is deprecated and
3984         should not be used. Use inet_pton() instead - it also has the
3985         added bonus that it can easily handle IPv6 addresses as well.
3986         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
3987
3988 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
3989
3990         * decimal.c: remove _MSC_VER conditional.
3991
3992 2002-02-13  Dick Porter  <dick@ximian.com>
3993
3994         * socket-io.c: 
3995         * icall.c: Internal calls for Blocking, Select, Shutdown,
3996         GetSocketOption and SetSocketOption
3997
3998 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
3999
4000         * assembly.cs: better resolver: use it instead of some kludgy
4001         code.
4002
4003 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
4004
4005         * reflection.c: the best way to speed-up the compiler is to avoid
4006         infinite loops.
4007
4008 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
4009
4010         * class.c (mono_class_vtable): changed the object layout
4011         (obj->vtable->class). 
4012         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
4013
4014 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
4015
4016         * assembly.c: look for assemblies in the assembly dir, too.
4017
4018 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
4019
4020         * class.c: fix thinko in mono_class_from_type().
4021
4022 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
4023
4024         * exception.h, exception.c: added TypeLoadException.
4025         * object.h, object.c: added mono_array_clone ().
4026         * icall.c: handle throwOnError in AssemblyGetType().
4027         Added Array.Clone().
4028         * opcode.h, opcode.c: use a single value for the opcode val.
4029         Compile fix for non-gcc compilers.
4030
4031 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
4032
4033         * opcodes.c, opcodes.h: export interesting info about opcodes.
4034
4035 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
4036
4037         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
4038         icalls. 
4039
4040         * class.c (class_compute_field_layout): set element_class for enums
4041         (mono_class_create_from_typedef): set element_class for normal classes
4042
4043         * icall.c (ves_icall_System_Enum_get_value): impl.
4044
4045         * class.c (mono_class_create_from_typedef): do not set valuetype
4046         flag for System.ValueType and System.Enum
4047
4048 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
4049
4050         * unicode.c (iconv_convert): fix big endian problem.
4051
4052 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
4053
4054         * class.c: add asserts if we are ever going to scribble over memory.
4055         * socket-io.c: not all systems have AF_IRDA defined.
4056
4057 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
4058
4059         * class.c (class_compute_field_layout): do not consider static
4060         fields to compute alignment
4061
4062 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
4063
4064         * appdomain.c (mono_appdomain_get): impl.
4065         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
4066
4067 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
4068
4069         * icall.c: ignore "file://" prefix when loading an assembly.
4070
4071 2002-01-23  Dick Porter  <dick@ximian.com>
4072
4073         * socket-io.c:
4074         * icall.c:
4075         * Makefile.am: Added socket support
4076
4077 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
4078
4079         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
4080         code back.  This should return the assemblies that are loaded by
4081         the runtime on behalf of an application domain. 
4082
4083         The current implementation is still broken, it just returns every
4084         assembly loaded, but until we get real applications domain this
4085         will do.
4086
4087 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
4088
4089         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
4090         AppDomain object.
4091
4092 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
4093
4094         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
4095         the mono_class_from_name lookup.
4096         (ves_icall_get_parameter_info): ditto.
4097         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
4098         method.
4099         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
4100
4101 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
4102
4103         * class.c: load also nested classes on class init.
4104         System.ValueType instance methods gets passed boxed
4105         values, unless methods in derived classed that get a pointer to the
4106         data.
4107         * icall.c: use better name parsing code in GetType().
4108         * image.c, image.h: add mono_image_loaded ().
4109         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
4110         * reflection.c, reflection.h: added mono_reflection_parse_type().
4111
4112 2002-01-22  Veronica De Santis <veron78@interfree.it>
4113
4114         * icall.c : Added mapping of internal calls for Manual and Auto reset events
4115         * threads.c : Added the implementation of internal calls for events
4116         * threads.h : Added prototypes of internal calls for events
4117         
4118 2002-01-21  Radek Doulik  <rodo@ximian.com>
4119
4120         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
4121
4122 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
4123
4124         * class.c (mono_class_init): set min_align to 1 (instead of 0)
4125         (mono_class_value_size): use min_align
4126
4127 2002-01-20  Dick Porter  <dick@ximian.com>
4128
4129         * threads.h:
4130         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
4131         so it compiles on w32.
4132
4133 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
4134
4135         * metadata.c (mono_type_stack_size): impl.
4136
4137         * class.c (mono_class_get_field): impl. memberref token
4138
4139 2002-01-16 Veronica De Santis <veron78@@interfree.it>
4140
4141         * icall.h : Added the internal calls mapping for CreateMutex_internal
4142                     and ReleaseMutex_internal.
4143         * threads.h : Added the prototype of mutexes internal calls.
4144         * threads.c : Added the implementations of mutexes internal calls.
4145
4146 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
4147
4148         * metaparse.h: removed unused file.
4149         * reflection.c, reflection.h: added stream_data_align () function 
4150         to align data in streams and keep stream aligned. Add support for
4151         exception support in method headers.
4152
4153 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
4154
4155         * unicode.c: make iconv_convert () return the number of bytess written
4156         in the output buffer.
4157
4158 2002-01-15  Dick Porter  <dick@ximian.com>
4159         * threads.c: Make the runtime's idea of infinite timeouts coincide
4160         with the class library's
4161
4162         Fix a particularly egregious bug in mono_thread_cleanup(). That
4163         code was so utterly bogus it must have been written on a Monday.
4164
4165 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
4166
4167         * reflection.h: add subtypes field to TypeBuilder.
4168         * reflection.c: encode constants for literal fields.
4169         Handle subtypes. Fix user string token (and add a zero byte)
4170         at the end.
4171         
4172 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
4173
4174         * class.c (mono_class_init): bug fix: assign slot numbers for
4175         abstract methods.
4176
4177 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
4178
4179         * reflection.c: don't try to output a code RVA for abstract methods.
4180         Small fixes for method header format. Output parameter info to the
4181         ParamDef table. Save method overriding info to MethodImpl table.
4182         Fix property support. Allow typedef.extends to be a type in the
4183         building assembly.
4184         * verify.c: fix off-by-one error.
4185
4186 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
4187
4188         * class.c: fix mono_class_from_mono_type () for szarray types.
4189         Remove unused cache check in mono_class_from_type_spec().
4190         * icall.c: *type_from_name () functions handle simple arrays and byref.
4191         * reflection.c: handle byref and szarray types. Handle methods without
4192         body (gets P/Invoke compilation working). Handle types and fields in
4193         get_token ().
4194         * reflection.h: add rank to MonoTypeInfo.
4195
4196 2002-01-10  Dick Porter  <dick@ximian.com>
4197
4198         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
4199         internal calls
4200
4201 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
4202
4203         * icall.c: initialize class in type_from_handle ().
4204         Loop also in parent classes for get_method ().
4205         * reflection.c: properly encode class and valuetype types.
4206         Start on encoding TypeBuilder types. Handle fieldrefs.
4207         Use correct length when registering a user string.
4208         Handle ConstructorBuilder and MonoMethod in get_token ().
4209         Make mono_type_get_object () aware of cached types.
4210         * object.c: back out change to mono_string_new ().
4211
4212 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
4213         * object.c: mono_string_new should return a NULL when the string 
4214         passed in is NULL -- not try to deference it.
4215         
4216 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
4217
4218         * icall.c: hack to make IsSubType work for TypeBuilders.
4219         * reflection.c: emit constructors before methods.
4220         Retrieve param names in mono_param_get_objects().
4221
4222 2002/01/05  Nick Drochak  <ndrochak@gol.com>
4223
4224         * Makefile.am: fix list of headers and sources so automake 1.5
4225         doesn't complain. Removed \# at end of list.
4226
4227 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
4228
4229         * reflection.c: get token for a method ref. Set return type of
4230         constructor to void.
4231         * loader.c: debug message.
4232         * class.c: typo fix.
4233
4234 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
4235
4236         * icall.c: fix array init with rank > 1. FindMembers
4237         loops in parent class as well.
4238         * image.c: do not insert nested types in name cache.
4239         * reflection.c: warning fix.
4240         * reflection.h: add override method (for interface impl).
4241
4242 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
4243
4244         * metadata.c: fix customattr decoding.
4245
4246 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
4247
4248         * rawbuffer.cs: Added native Win32 implementation, avoids using
4249         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
4250
4251 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
4252
4253         * class.c: make the low-level routines handle the cache.
4254
4255 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
4256
4257         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
4258
4259 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
4260
4261         * class.c: fix mono_array_element_size() for objects.
4262         * class.h, class.c: add properties to MonoClass and load them
4263         at init time.
4264         * icall.c: check with isinst() when assigning a value to an array
4265         instead of requiring the classes to match exactly.
4266         Implemented icall for System.Type::GetType().
4267         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
4268         enums. Handle bindingflags when looking for methods and fields.
4269         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
4270         and mono_metadata_methods_from_property().
4271         * reflection.h, reflection.c: added structures for propreties,
4272         parameters and enums. Implemented mono_property_get_object() and
4273         mono_param_get_objects().
4274
4275 2001-12-18  Dick Porter  <dick@ximian.com>
4276
4277         * file-io.c: Use mono_string_to_utf16() instead of
4278         mono_string_chars()
4279
4280         * object.c: Added mono_string_to_utf16(), which copies the non
4281         NULL-terminated MonoString into a new double-null-terminated
4282         buffer.
4283
4284 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
4285
4286         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
4287
4288 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
4289
4290         * file-io.c: raise exceptions if handle is invalid.
4291
4292 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
4293
4294         * assembly.c: yet another check for mscorlib.
4295         * class.c, class.h: load nesting info for classes.
4296         * icall.c: many new functions to support the Reflection classes.
4297         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
4298         * reflection.h, reflection.c: mono_image_create_token(),
4299         mono_assembly_get_object(), mono_type_get_object(),
4300         mono_method_get_object(), mono_field_get_object(): methods to return
4301         objects that parallel the C representation of assemblies, types,
4302         methods, fields.
4303
4304 2001-12-11  Dick Porter  <dick@ximian.com>
4305
4306         * icall.c:
4307         * file-io.c: Internal calls for file IO.
4308
4309 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
4310
4311         * tabledefs.h: missing FileAttributes.
4312         * verify.h, verify.c: use is_valid_string () to simplify and check for
4313         valid strings more correctly. Fix warnings and speeling.
4314         Check more tables: Filed, File, ModuleRef, StandAloneSig.
4315         Check code: branches, maxstack, method calls.
4316
4317 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
4318
4319         * object.c (mono_object_allocate): removed static, so that the jit
4320         can allocate value types.
4321
4322         * icall.c (ves_icall_System_DateTime_GetNow): impl.
4323
4324 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
4325
4326         * class.c: init enum types right away and register the
4327         token->MonoClass map in mono_class_create_from_typedef ().
4328         * verify.h, verify.c: first cut of the verifier.
4329         * pedump.c: add --verify switch to verify metadata tables.
4330         * tabledefs.h: add some missing enums.
4331
4332 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
4333
4334         * class.c (mono_install_runtime_class_init): impl.
4335         (mono_class_init): renamed mono_class_metadata_init to
4336         mono_class_init, also removed the metadata_inited flag
4337
4338         * object.c (mono_object_isinst): use faster algorithm
4339
4340 2001-11-30  Radek Doulik  <rodo@ximian.com>
4341
4342         * mono-endian.h: reverted last change
4343         added function prototypes
4344
4345         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
4346         add mono-endian.c back
4347
4348         * mono-endian.c: returned back, as Paolo pointed out, it's needed
4349         for unaligned access, I've mistaked it with endianess. I am
4350         sorry.
4351         (mono_read16): fix reverted endianess
4352         (mono_read64): ditto
4353         (mono_read32): ditto
4354
4355 2001-11-30  Dick Porter  <dick@ximian.com>
4356
4357         * exception.c: Implement mono_exception_from_name()
4358
4359 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
4360
4361         * metadata.h, metadata.c: remove params_size and locals_size and their
4362         calculation from the metadata code: they are only usefult to the
4363         interp.
4364
4365 2001-11-29  Radek Doulik  <rodo@ximian.com>
4366
4367         * object.c (mono_ldstr): swap bytes here, it's probably not the
4368         best place, but works for me now, I'll redo it once I know mono
4369         better, also note that I add PROT_WRITE and don't reset back, also
4370         note that it's only affects big endians, so x86 should be OK
4371
4372         * mono-endian.h (read16): use just glib macros for both endians
4373
4374         * mono-endian.c: removed as glib macros are used in in
4375         mono-endian.h so we don't need to care about endianess for read
4376         macros as glib does that for us already
4377
4378 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
4379
4380         * class.h, class.h: take minimum alignment into consideration so
4381         that the fields of a class remain aligned also when in an array.
4382
4383 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
4384
4385         * loader.h, loader.c: add mono_method_get_param_names().
4386         * class.c: 0-init class fields.
4387
4388 2001-11-26  Dick Porter  <dick@ximian.com>
4389
4390         * icall.c:
4391         * threads-types.h:
4392         * threads.c: New file that handles System.Threading on all platforms
4393
4394         * object.c: 
4395         * object.h: Remove the synchronisation struct from MonoObject,
4396         replace it with a pointer that gets initialised on demand
4397
4398         * Makefile.am: Replace all the system-specific threading code with
4399         a single file that uses the new wrapper library
4400
4401 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
4402
4403         * class.c, class.h: add mono_install_trampoline() so that the runtime
4404         can register a function to create a trampoline: removes the ugly
4405         requirement that a runtime needed to export arch_create_jit_trampoline.
4406         * object.h, object.c: added mono_install_handler() so that the runtime
4407         can install an handler for exceptions generated in C code (with
4408         mono_raise_exception()). Added C struct for System.Delegate.
4409         * pedump.c: removed arch_create_jit_trampoline.
4410         * reflection.c: some cleanups to allow registering user strings and
4411         later getting a token for methodrefs and fieldrefs before the assembly
4412         is built.
4413         * row-indexes.h: updates and fixes from the new ECMA specs.
4414
4415 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
4416
4417         * class.h, class.c: add enum_basetype field to MonoClass.
4418         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
4419         to get index in the constant table reated to a field, param or
4420         property.
4421         * reflection.h, reflection.c: handle constructors. Set public-key and
4422         version number of the built assembly to 0.
4423         * row-indexes.h: update from new ECMA spec.
4424
4425 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
4426
4427         * class.h, class.c: add a max_interface_id to MonoClass.
4428         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
4429         since it's used to do that. Added mono_type_type_from_obj().
4430         Make GetType() return NULL instead of segfaulting if the type was not
4431         found. Handle simple arrays in assQualifiedName.
4432         * object.h: add a struct to represent an Exception.
4433         * reflection.c: output call convention in method signature.
4434         Add code to support P/Invoke methods and fixed offsets for fields.
4435
4436 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
4437
4438         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
4439         the value.
4440         * icall.c: use mono_array_addr instead of array->vector: fixes the
4441         reflection image writing.
4442         * reflection.c: init call convention byte to 0 in method signature.
4443         Encode the property signature. Don't output property-related methods
4444         twice. Really process the properties for a type (don't cast a field to
4445         a property, my mom always told me that).
4446         Fix 64 bit issues in pointer alignment in a different and more
4447         readable way.
4448
4449 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
4450
4451         * loader.h: Removed type class from MonoDefaults, added monotype
4452
4453         * loader.c: Loaded MonoType, removed loading of Type
4454
4455         * icall.c (my_mono_new_object): Now returns a System.MonoType,
4456         and fills in System.Type._impl with a RuntimeTypeHandle rather
4457         than the actual MonoClass *
4458
4459         (ves_icall_type_from_handle): change from type_class to
4460         monotype_class
4461
4462         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
4463         implemented
4464
4465         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
4466         implemented
4467
4468         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
4469
4470         (ves_icall_System_Reflection_Assembly_GetType): implemented
4471
4472         (ves_icall_System_MonoType_assQualifiedName): implemented
4473
4474         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
4475
4476 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
4477
4478         * assembly.c (mono_assembly_open): Implement a cache for the
4479         assemblies. 
4480
4481         (mono_assembly_close): only destroy the assembly when the last
4482         reference is gone.
4483         
4484 2001-11-09  Dick Porter  <dick@ximian.com>
4485
4486         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
4487
4488 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
4489
4490         * class.c (mono_class_metadata_init): bug fix: compute the right slot
4491
4492 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
4493
4494         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
4495         from Martin Weindel.
4496         * object.h: add mono_string_chars ().
4497
4498 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
4499
4500         * reflection.c (build_compressed_metadata): Eliminates warnings
4501         and uses 64-bit clean code.
4502
4503         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
4504         (mono_type_equal): Change signature to eliminate warnings.
4505
4506 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
4507
4508         * icall.c, loader.c: remove the internalcall array constructors.
4509         Changes to match the new MonoArray structure.
4510         * object.h, object.c: an array object doesn't allocate an extra
4511         vector. Add mono_array_new_full () to create jagged arrays easily.
4512
4513 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
4514
4515         * metadata.h, metadata.c: add mono_metadata_field_info () to
4516         retreive all the info about a field from vairous tables.
4517         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
4518         * class.h, class.c: augment MonoClassField with more info.
4519         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
4520         policy and load a field's RVA if needed.
4521
4522 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
4523
4524         * class.c (mono_class_metadata_init): create a trampoline for all
4525         virtual functions instead of actually compiling them.
4526
4527 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
4528
4529         * class.h, class.c: include name in MonoClassField.
4530         * class.c: fix fundamental type of System.Object and System.String.
4531         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
4532         tokens in ldtoken.
4533         * icall.c: remove internalcalls for the Reflection stuff that is now
4534         done in C# code.
4535         * loader.c: mono_field_from_memberref () implementation.
4536         * mono-endian.c: thinko (s/struct/union/g).
4537         * object.c, object.h: make the mono_string_* prototypes actually use
4538         MonoString instead of MonoObject.
4539         * reflection.c, reflection.h: updates for changes in the reflection
4540         code in corlib: we use C structures that map to the actual C# classes.
4541         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
4542         fat method header if needed and use the info from the ILGenerator for
4543         methods. Handle fields in types. Misc fixes.
4544
4545 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
4546
4547         * class.c (mono_class_metadata_init): bug fix: always allocate
4548         space for static class data
4549
4550 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
4551
4552         * class.c (mono_compute_relative_numbering): use relative
4553         numbering to support fast runtime type checks.
4554
4555 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
4556
4557         * class.c (mono_class_create_from_typeref): added debugging output
4558         to print class name when MonoDummy is returned instead of real class
4559
4560 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
4561
4562         * class.c (mono_class_metadata_init): interface offset table now
4563         contains pointers into the vtable - this is more efficient for the jit
4564
4565 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
4566
4567         * class.c (mono_class_metadata_init): use a temporary vtable (the
4568         old algorithm only worked for the interpreter, but not for the jit)
4569
4570 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
4571
4572         * loader.c (method_from_memberref): use mono_class_get to get the
4573         class of an array instead of using System.Array directly.
4574         (mono_get_method): also add MEMBERREF methods to the method cache
4575         which usefull for arrays.
4576
4577 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
4578
4579         * pedump.c (arch_compile_method): added to compute vtable entry
4580
4581         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
4582         number of interfaces.
4583         
4584         * class.h: merged MonoArrayClass into MonoClass
4585
4586         * class.c (mono_class_create_from_typedef): compute the vtable size and
4587         allocate space to include the vtable inside MonoClass
4588         (mono_class_metadata_init): initialize the vtable
4589
4590 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
4591
4592         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
4593         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
4594         * image.c: endian fixes by Laurent Rioux.
4595         * object.h, object.c: rename MonoStringObject to MonoString and
4596         MonoArrayObject to MonoArray. Change some function names to conform to
4597         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
4598         guint16* as first argument, so don't use char*.
4599         Provide macros to do the interesting things on arrays in a portable way.
4600         * threads-pthread.c: updates for the API changes and #include <sched.h>
4601         (required for sched_yield()).
4602         * icall.c: updates for the API changes above.
4603         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
4604         platforms that need them.
4605
4606 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
4607
4608         * class.c: set the correct type for all the fundamental
4609         type when loading the class.
4610
4611 2001-10-05  Dick Porter  <dick@ximian.com>
4612
4613         * threads-pthread.c (pthread_mutex_timedlock): Simple
4614         compatibility version for C libraries that lack this call.
4615
4616 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
4617
4618         * class.c: MonoTypes stored in MonoClass are stored as
4619         fundamental MonoTypes when the class represents a
4620         fundamental type (System.Int32, ...).
4621         The TypeHandle return by ldtoken is a MonoType*.
4622         * icall.c: ves_icall_get_data_chunk () write out all the
4623         PE/COFF stuff. Implement ves_icall_define_method (),
4624         ves_icall_set_method_body (), ves_icall_type_from_handle ().
4625         * image.c: properly skip unknown streams.
4626         * loader.h, loader.c: add type_class to mono_defaults.
4627         * metadata.c, metadata.h: export compute_size () as
4628         mono_metadata_compute_size () with a better interface.
4629         Typo and C&P fixes.
4630         * pedump.c: don't try to print the entry point RVA if there is no entry point.
4631         * reflection.c, reflection.h: many cleanups, fixes, output method
4632         signatures and headers, typedef and typeref info, compress the metadata
4633         tables, output all the heap streams, cli header etc.
4634         * row-indexes.h: typo fixes.
4635
4636 2001-10-04  Dick Porter  <dick@ximian.com>
4637
4638         * object.h: Add a synchronisation mutex struct to MonoObject
4639
4640         * object.c (mono_new_object): Initialise the object
4641         synchronisation mutexes
4642
4643         * icall.c: System.Threading.Monitor internal calls
4644         
4645         * threads-pthread.h:
4646         * threads-pthread.c: System.Threading.Monitor internal calls
4647
4648         * threads-types.h: New file, includes the system-specific thread
4649         structures
4650         
4651         * threads-pthread-types.h:
4652         * threads-pthread-types.c: New files, handle pthread-specific
4653         synchronisation types
4654
4655         * threads-dummy-types.h: 
4656         * threads-dummy-types.c: New files of dummy support for
4657         thread-specific types
4658
4659         * metadata.c:
4660         * image.c:
4661         * pedump.c: include mono-endian.h not endian.h
4662         
4663         * Makefile.am: More threads files.
4664         Name mono-endian.h not endian.h
4665
4666 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
4667
4668         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
4669         stuff and implement a few more bits.
4670         * icall.c: a field needs to be dereferenced twice. Do not use the same
4671         name for two variables in the same scope.
4672         * image.c, image.h: cleanups.
4673
4674 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
4675
4676         * class.c (mono_class_metadata_init): bug fix: compute the right size
4677
4678 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
4679
4680         * icall.c: implemented some of the Reflection internalcalls.
4681         * image.c, image.h: start writing out the PE/COFF image.
4682         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
4683         that does the reverse than decode_blob_size ().
4684         * object.c: use mono_metadata_encode_value (). Move here
4685         temporary implementation of mono_string_to_utf8 ().
4686         * rawbuffer.c: make malloc_map static.
4687
4688 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
4689
4690         * metadata.c: fix type comparison for arrays.
4691         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
4692         Added a couple of new classes to monodefaults.
4693         * icall.c: added a couple of Reflection-related internalcalls.
4694         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
4695         Added a byval_arg MonoType to MonoClass.
4696
4697 2001-09-28  Dick Porter  <dick@ximian.com>
4698
4699         * icall.c:
4700         * threads-pthread.h: 
4701         * threads-pthread.c: Implemented internal calls for
4702         LocalDataStoreSlot operations.  Applied mutexes around all shared
4703         data.  Reworked the thread creation and Start() operations to
4704         avoid a race condition.
4705         
4706         * threads-dummy.h:
4707         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
4708
4709 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
4710
4711         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
4712
4713 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
4714
4715         * class.c, loader.c: warn and return NULL instead of erroring out.
4716         * icall.c: added System.AppDomain::getCurDomain().
4717         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
4718
4719 2001-09-25  Dick Porter  <dick@ximian.com>
4720
4721         * threads-pthread.h:
4722         * threads-pthread.c: Implemented timed thread joining and added
4723         System.Threading.Thread::Join_internal internal call
4724
4725         * icall.c: Added System.Threading.Thread::Join_internal internal call
4726
4727         * threads-dummy.h:
4728         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
4729
4730 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
4731
4732         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
4733         mono_string_intern () to implement the semantics of the ldstr opcode
4734         and the interning of System.Strings.
4735         * icall.c: provide hooks to make String::IsIntern and String::Intern
4736         internalcalls.
4737
4738 2001-09-23  Dick Porter  <dick@ximian.com>
4739
4740         * threads-dummy.c: 
4741         * threads-dummy.h: New files of dummy threading routines
4742
4743         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
4744         support code based on system specifics
4745
4746         Rename PTHREAD_LIBS to THREAD_LIBS
4747         
4748 2001-09-23  Dick Porter  <dick@ximian.com>
4749
4750         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
4751         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
4752         internal calls.
4753         (mono_thread_init): Set up a Thread object instance to return when
4754         the main thread calls Thread.CurrentThread
4755         (mono_thread_cleanup): Wait for all subthreads to exit
4756
4757         * icall.c: New internal calls for System.Threading.Thread::Sleep
4758         (including Schedule) and CurrentThread
4759
4760         * threads.h: New file, to insulate thread-specific stuff from the
4761         rest of the code
4762
4763 2001-09-21  Dick Porter  <dick@ximian.com>
4764
4765         * threads-pthread.h: 
4766         * threads-pthread.c: New file, for handling pthreads-style
4767         threading support.  Start() now starts a new thread and executes
4768         the ThreadStart delegate instance.
4769
4770         * icall.c: Added the internalcall for
4771         System.Threading.Thread::Start_internal
4772
4773         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
4774
4775 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
4776
4777         * loader.c: work around the different signatures for delegates
4778         constructors csc generates in compiled code vs the ones compiled in mscorlib.
4779
4780 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
4781
4782         * class.h, class.c: add mono_class_get_field_from_name ().
4783         * *: Fix C comments and other ANSI C issues.
4784
4785 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
4786
4787         * endian.h, assembly.c: fix some endianness issues.
4788
4789 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
4790
4791         * loader.h, load.c: add delegate_class to mono_defaults.
4792         Handle runtime provided methods in mono_get_method ().
4793
4794 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
4795
4796         * loader.c (mono_get_method): use pinvoke for internal call
4797
4798         * icall.c: use pinvoke for internal call
4799
4800         * loader.c (method_from_memberref): set the method name
4801
4802 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
4803
4804         * metadata.c: help the compiler generate better code for
4805         mono_class_from_mono_type ().
4806
4807 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
4808
4809         * class.c (mono_class_metadata_init): delayed computing of the
4810         class size to mono_class_metadata_init ()
4811
4812 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
4813
4814         * class.c, class.h: add an interfaces member to MonoClass.
4815         * image.c, image.h: add assembly_name field to MonoImage
4816         from the assembly table.
4817         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
4818
4819 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
4820
4821         * class.c: Handle Array in mono_class_from_mono_type ().
4822         * metadata.c, pedump.c: some endian fixes.
4823
4824 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
4825
4826         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
4827         * metadata.c: fix small problem introduced with the latest commit.
4828
4829 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
4830
4831         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
4832         We don't need a MonoMetadata pointer anymore to compare signatures in
4833         mono_metadata_signature_equal (), update callers.
4834         Reduced memory usage an number of allocations for MonoMethodHeader and
4835         MonoMethodSignature.
4836
4837 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
4838
4839         * metadata.c: added compare for szarray.
4840
4841 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
4842
4843         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
4844         and add a couple more types to it and mono_defaults. Give an hint on
4845         classes that need implementing in our corlib and are referenced
4846         in mscorlib.
4847
4848 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
4849
4850         * class.h, class.c: keep track if a class is also an Enum.
4851         * loader.c: Implement a couple more types for use in libffi
4852         marshalling. Gives better diagnostics when failing to dlopen
4853         a library. Set method->klass for P/Invoke methods, too.
4854
4855 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
4856
4857         * class.c, class.h: add a MonoType this_arg to MonoClass that
4858         represents a pointer to an object of the class' type that
4859         can be used by the interpreter and later the type cache.
4860         Add best guess alignment info for valuetype objects.
4861
4862 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
4863
4864         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
4865         into MonoType: one less level of indirection and allocation and
4866         simplifies quite a bit of code. Added cache for MonoTypes that are
4867         used frequently, so that we don't need to allocate them all the time.
4868
4869 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
4870
4871         * class.c (mono_class_create_from_typedef): System.Enum is also a
4872         value type, although it does not derive from System.ValueType
4873         (maybe a bug in the ms compiler?)
4874
4875         * metadata.c (mono_type_size): return the right size for value types
4876
4877         * loader.c (mono_get_method): only initialize method header if not abstract
4878
4879         * class.c (mono_class_from_mono_type): use mono_default values. 
4880
4881 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
4882
4883         * *: use MonoClass pointers instead of <type_tokens>
4884         
4885         * class.h: new flag: metadata_inited.
4886
4887         * class.c (mono_class_metadata_init): impl.
4888         (mono_class_instance_size): impl.
4889         (mono_class_data_size): impl.
4890
4891 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
4892
4893         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
4894         MonoClass now has the name and name_space fields. 
4895         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
4896         mono_get_method () takes and optional MonoClass as argument.
4897         Removed mono_typedef_from_name() and added mono_class_token_from_name()
4898         instead that takes advantage of a map from class names to typedef
4899         tokens in MonoImage.
4900
4901 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
4902
4903         * metadata.c: zero is not a valid alignment boundary.
4904         Merge MONO_TYPE_VOID in default decoding code.
4905
4906 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
4907
4908         * image.h: merged MonoMetadata into MonoImage
4909
4910         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
4911         identify the type of elements.
4912
4913 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
4914
4915         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
4916         * cil-coff.h: split MonoMSDOSHeader and add size info.
4917         * image.c: add some consistency checks.
4918         * metadata.c: fix row size computation: one programmer
4919         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
4920         add explanation for the locator routine.
4921         Fix decoding of size in method header.
4922         
4923 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
4924
4925         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
4926         (g_concat_dir_and_file): Bring g_concat_dir_and_file
4927         function from gnome-libs.  This uses the right path separator
4928         based on the OS, and also works around a bug in some systems where
4929         a double slash is not allowed. 
4930         (default_assembly_name_resolver): Use g_concat_dir_and_file
4931         (mono_assembly_open): ditto.
4932
4933 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
4934
4935         * metadata.c (mono_metadata_signature_equal): impl.
4936
4937         * *: void is now a realy MonoType (instead of using NULL)
4938         
4939         * metadata.c (do_mono_metadata_parse_type): use
4940         mono_metadata_parse_type to parse void value.
4941
4942 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
4943
4944         * metadata.c, metadata.h: in the signature and method header store
4945         only the space required for holding the loca vars and incoming arguments.
4946
4947 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
4948
4949         * metadata.c (do_mono_metadata_parse_type): treat void like any
4950         other type (instead of assigning NULL);
4951
4952 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
4953
4954         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
4955
4956 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
4957
4958         * image.c (do_mono_image_open): added a cache for arrays.
4959
4960 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
4961
4962         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
4963         decode a single column from a row in a metadata table and changes
4964         to take advantage of it in the typedef locator (gives a nice speed up).
4965         Store offset info for function params.
4966
4967 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
4968
4969         * image.h (MONO_IMAGE_IS_CORLIB): removed 
4970
4971 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
4972
4973         * assembly.c: how could mono_assembly_close () had ever worked?
4974         * metadata.c, metadata.h: provide offset info for local vars.
4975         Implement mono_type_size () to take care of alignment as well
4976         as size (it was mono_field_type_size in cli/class.c before).
4977
4978 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
4979
4980         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
4981
4982         * assembly.h (CORLIB_NAME): set to corlib.dll
4983
4984         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
4985
4986 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
4987
4988         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
4989         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
4990         tokentype.h: massive namespace cleanup.
4991
4992 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
4993
4994         * metadata.h, metadata.c: decode exception clauses when parsing method header.
4995
4996 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
4997
4998         * metadata.c (mono_metadata_free_type): added check for type !=
4999         NULL (void) before calling mono_metadata_free_type()
5000
5001 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
5002
5003         * metadata.h, row_indexes.h: added header with enumerations to use
5004         to index in the columns from tables in metadata and to decode coded
5005         tokens: we should start using this instead of embedding magic numbers
5006         all over the code.
5007
5008 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
5009
5010         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
5011         Move metadata_t info from cli_image_info_t to MonoImage, where
5012         it's easily accessible. Changed all the uses accordingly.
5013         Added the method and class caches to MonoImage.
5014         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
5015         and mono_metadata_decode_value () signature to be more consistent
5016         with the other parse functions (and simplify code). Taken advantage
5017         of zero-length array allocation with GCC. Removed reduntant (and
5018         wrong) MonoFieldType struct and use MonoParam instead. Changed
5019         mono_metadata_parse_field_type () to use common code for parsing.
5020         Added mono_metadata_typedef_from_field () and
5021         mono_metadata_typedef_from_method () to lookup a typedef index from a
5022         field or method token.
5023         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
5024
5025 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
5026
5027         * metadata.c (mono_metadata_parse_field_type): Implement. 
5028         (do_mono_metadata_parse_type): Split engine from
5029         mono_metadata_parse_type, so that we can create smaller structures
5030         for things that just have one pointer to the MonoType (look at
5031         the MonoFieldType)
5032
5033 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
5034
5035         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
5036         as Jan Gray found out, it is incorrect. 
5037
5038 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
5039
5040         * assembly.c: Implement asssembly loading.  This loads an image
5041         and loads all the referenced assemblies.  Come to think of it, we
5042         could always do lazy loading of the assemblies. 
5043
5044         * image.c (mono_image_open): Keep loaded images in a hashtable.
5045
5046         * image.h (MonoImage): Add reference count.
5047
5048 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
5049
5050         * assembly.c (mono_assembly_open): Keep track of the file name in
5051         case the assembly has no ASSEMBLY table.
5052
5053         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
5054         from get.c here.
5055
5056 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
5057
5058         * metadata.c, metadata.h: decode local vars in method header
5059         parse function. Change callers accordingly.
5060
5061 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
5062
5063         * metadata.h, cil-coff.h: protect against multiple inclusion.
5064         Added some new structures to hold information decoded from metadata:
5065         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
5066         and relevant decoding/free functions.
5067         * metadata.c: implement decoding functions. Add warning for out of bounds
5068         index in mono_metadata_locate(). Implement mono_get_method () to retreive
5069         all the info about a method signature and invocation. Remove check on
5070         uninitialized local var in parse_mh() and fix memory leak.
5071
5072 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
5073
5074         * metadata.h: More macros.
5075
5076         * tokentype.h: New file.
5077
5078 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
5079
5080         * assembly.c: added a consistency check and initialize
5081         some structures with g_new0().
5082         * metadata.c: fixed a couple more bugs in table size computation
5083         and add other checks for out-of bound access to metadata.
5084
5085 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
5086
5087         * metatada.c: fix bugs computing table sizes. Spew a
5088         warning when index in string heap is out of bounds.
5089
5090 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
5091
5092         * metadata.h: Add a couple of macros to manipulate tokens. 
5093
5094 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
5095
5096         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
5097         cli_section_tables).
5098
5099 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
5100
5101         * metadata.c (mono_metadata_user_string): New function, provides
5102         access to the UserString heap. 
5103
5104 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
5105
5106         * metadata.c: Add inline documentation.
5107
5108 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
5109
5110         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
5111         files. 
5112
5113 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
5114
5115         * typeattr.h: New file, TypeAttribute flags. 
5116
5117 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
5118
5119         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
5120         mono_assembly_ensure_section): Section loading code.
5121         (load_section_tables): Load the sections.
5122
5123         * mono/metadata/metadata.c (mono_metadata_locate_token,
5124         mono_metadata_locate): Functions to locate the information
5125         definition given a token or a table and an index.
5126         (mono_metadata_compute_table_bases): New.
5127         (compute_size): New function to compute the sizes of the various
5128         tables.
5129
5130         * mono/metadata/metadata.h: Finish listing the different index
5131         types. 
5132
5133         * mono/metadata/pedump.c: Improve to dump new information.
5134
5135 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
5136
5137         * mono/metadata/metadata.c: Entered all the tables matching
5138         Beta2. 
5139
5140         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
5141
5142
5143
5144