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